/*
Theme Name: Elessi Theme Child
Theme URI: https://elessi.nasatheme.com
Description: This is a child theme for Elessi Theme
Author: NasaTheme team
Author URI: https://nasatheme.com
Template: elessi-theme
Version: 1.0
*/


/*************** ADD YOUR CUSTOM CSS IN THIS AREA ***************/


/* ==========================================
   GREENTEE FAQ PAGE
   ========================================== */

/* FAQ container */
.schema-faq {
    max-width: 768px;
    margin: 30px auto 50px !important;
    padding: 0 15px;
}

/* ==========================================
   PAGE HEADING
   ========================================== */

.entry-title,
.page-title {
    max-width: 768px !important;
    margin: 30px auto 0 !important;
    padding: 0 15px !important;
    text-align: left;
}

/* Elessi page header */
.page-header {
    max-width: 768px !important;
    margin: 30px auto 0 !important;
    padding: 0 15px !important;
}

/* ==========================================
   FAQ BOX
   ========================================== */

.schema-faq .schema-faq-section {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

/* Question */
.schema-faq .schema-faq-question {
    position: relative;
    display: block;
    margin: 0;
    padding: 18px 55px 18px 18px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #17233c;
    cursor: pointer;
}

/* Plus icon */
.schema-faq .schema-faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #e00000;
}

/* Minus icon */
.schema-faq .schema-faq-section.active
.schema-faq-question::after {
    content: "−";
}

/* Answer hidden */
.schema-faq .schema-faq-answer {
    display: none;
    padding: 0 18px 20px;
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Answer shown */
.schema-faq .schema-faq-section.active
.schema-faq-answer {
    display: block;
}

/* Hover */
.schema-faq .schema-faq-question:hover {
    color: #e00000;
}

/* Active */
.schema-faq .schema-faq-section.active {
    border-color: #e00000;
}

/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 767px) {

    .entry-title,
    .page-title,
    .page-header {
        max-width: 100% !important;
        padding: 0 15px !important;
    }

    .schema-faq {
        max-width: 100%;
        margin-top: 25px !important;
        padding: 0 12px;
    }

    .schema-faq .schema-faq-question {
        padding: 16px 45px 16px 15px;
        font-size: 15px;
    }

    .schema-faq .schema-faq-answer {
        padding: 0 15px 16px;
        font-size: 14px;
    }
}