.faq-section {
    border-top: 1px solid #D6D2C6;
    content-visibility: visible;
}
.faq-title-toggle .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.faq-title-toggle .title {
    margin-bottom: 0;
    font-size: var(--font-size-h3-small);
}
.faq-title-toggle .btn-toggle {
    position: static;
}
.faq-title-toggle .btn-toggle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.faq-section .toggle-text {
    padding-top: 40px;
}
.faq-item-title .title {
    color: var(--color-primary);
}
.faq-item-content table {
    margin: 0;
    font-weight: 300;
    letter-spacing: 0;
    border: none;
}
.faq-item-content table * { 
    border: none;
}
.faq-item-content table strong {
    font-weight: 500;
}
.faq-item {
    margin-bottom: 40px;
}
.faq-item-content ul {
    margin: 0 0 var(--font-size-base);
    letter-spacing: 0;
}
.faq-item-content table tr {
    border-bottom: 1px solid #dcd7ca;
}
.faq-item-content table td {
    padding: 20px;
    vertical-align: top;
}
.faq-item-content table td:first-child {
    padding-left: 0;
}
.faq-item-title .title .number {
    display: inline-block;
    margin-right: 10px;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    font-family: inherit;
}
.faq-item-content {
    padding-left: 46px;
}
.faq-item-title {
    cursor: pointer;
}
.faq-title-toggle.active.scrolled {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background-color: #FFF;
    padding: 32px 0;
    left: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    transition: 0.6s ease-in-out;
}
.admin-bar .faq-title-toggle.active.scrolled {
    top: 32px;
}
@media (max-width:1024px) {
    .faq-title-toggle .title {
        width: 85%;
        padding-right: 15px;
    }
    .faq-item-title .title {
        font-size: var(--font-size-h3-big);
        line-height: 1.2;
    }
}
@media (max-width:767px) {
    .faq-item-content {
        padding-left: 0;
    }
    .faq-item-content table td {
        padding: 10px 5px;
    }
    .faq-item-content table td:last-child {
        padding-right: 0;
    }
    .faq-item-title .title .number {
        margin-right: 5px;
    }
    .faq-item-content table {
        text-align: center;
    }
    .faq-item-content table strong {
        font-weight: 400;
    }
    .admin-bar .faq-title-toggle.active.scrolled {
        top: var(--height_header);
    }
    .faq-title-toggle.active.scrolled.below-header {
        top: 0;
    }
}