/** Shopify CDN: Minification failed

Line 63:40 Unexpected "*"

**/
.faq-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-acc-container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-acc {
    padding: 5px;
    background: #f1d9e0;
    border-radius: 6px;
}

.faq-acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
}

.faq-acc-head h2 {
    margin: 0;
    font-size: 16px;
    font-family: 'Sora-Medium';
    color: #000;
    line-height: 1.4;
    max-width: calc(100% - 20px);
}

.faq-accordion_icon {
    display: block;
    width: 16px;
    height: 16px;
}

.faq-accordion_icon svg {width: 100%;height: auto;}

.faq-acc-content {
    padding: 12px 15px;
    background: #fff;
    border-radius: 4px;
    color: #000;
    font-family: Sora-Regular;
    line-height: 1.5;
    font-size: 14px;
    display: none;
}

.faq-acc-content p:last-child {
    margin: 0;
}
.faq-acc-head.active .faq-accordion_icon* {
    transition: all .4s ease;
}
.faq-acc-head.active .faq-accordion_icon svg path:first-child {
    opacity: 0;
}

@media (max-width: 1199px) {
    .faq-title {
        margin-bottom: 35px;
    }
}
@media (max-width: 991px) {
    .faq-acc-container {
        gap: 15px;
    }
}
@media (max-width: 749px) {
    .faq-acc-head h2 {
        font-size: 14px;
        max-width: calc(100% - 18px);
    }
    .faq-accordion_icon {
        width: 14px;
        height: 14px;
    }
    .faq-acc-head {
        padding: 8px 6px;
    }   
    .faq-acc-content {
        padding: 10px;
        font-size: 12px;
    }
    .faq-title {
        margin-bottom: 25px;
    }.faq-acc-container {
    gap: 10px;
}
}