.faq {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%
}

@media (min-width:576px) {
    .faq {
        max-width: calc(540px + 2 * 15px)
    }
}

@media (min-width:768px) {
    .faq {
        max-width: calc(720px + 2 * 15px)
    }
}

@media (min-width:992px) {
    .faq {
        max-width: calc(960px + 2 * 15px)
    }
}

@media (min-width:1200px) {
    .faq {
        max-width: calc(1140px + 2 * 15px)
    }
}

@media (min-width:1440px) {
    .faq {
        max-width: calc(1200px + 2 * 15px)
    }
}

@media (min-width:2400px) {
    .faq {
        max-width: calc(1500px + 2 * 15px)
    }
}

.faq .faq-title {
    font-size: 40px;
    line-height: 50px;
    color: #12225c;
    margin-bottom: 38px
}

@media (max-width:1439px) {
    .faq .faq-title {
        font-size: 36px;
        line-height: 46px
    }
}

@media (max-width:767px) {
    .faq .faq-title {
        font-size: 30px;
        line-height: 40px
    }
}

@media (max-width:768px) {
    .faq .faq-title {
        margin-bottom: 24px
    }
}

.faq .field-question {
    font-size: 20px;
    line-height: 26px;
    position: relative;
    cursor: pointer;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    word-break: break-word;
    justify-content: space-between;
    margin-bottom: 0;
    color: #12225c
}

@media (max-width:768px) {
    .faq .field-question {
        padding: 20px 30px 20px 15px;
        font-size: 16px
    }
}

.faq .field-question::after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background-image: url(../../../assets/images/svg/chevron-down-main.svg);
    background-size: cover;
    transition: transform .5s;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 16px;
    top: calc(50% - 8px)
}

@media (max-width:768px) {
    .faq .field-question::after {
        position: absolute;
        right: 10px
    }
}

@media (max-width:768px) {
    .faq .field-question {
        word-wrap: break-word
    }
}

.faq .faq-item {
    background-color: #fff;
    margin-bottom: 15px
}

.faq .faq-item.active .field-question::after {
    transform: rotate(180deg)
}

.faq .faq-item:last-child {
    margin-bottom: 0
}

.faq .field-answer {
    font-size: 16px;
    line-height: 22px;
    display: none
}

.faq .field-answer-raw {
    border-top: 1px solid #b0b8ba;
    padding: 30px 0;
    margin: 0 30px
}

@media (max-width:768px) {
    .faq .field-answer-raw {
        margin: 0 15px;
        padding: 15px 0
    }
}

.faq .field-linktext {
    margin-top: 50px;
    font-size: 16px;
    line-height: 22px
}

.faq div.feedback[data-type=error] {
    color: #c92c18;
    font-size: 16px;
    max-width: 600px;
    margin: auto;
    padding-bottom: 35px
}

.faq div.feedback[data-type=success] {
    font-size: 16px;
    max-width: 600px;
    margin: auto;
    padding-bottom: 35px
}

@media (max-width:768px) {
    .faq .faq-feedback {
        flex-direction: column;
        padding: 30px 15px 0
    }
}

.faq .faq-feedback .faq-feedback-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    margin: auto;
    padding: 35px 0
}

@media (max-width:768px) {
    .faq .faq-feedback .faq-feedback-inner {
        padding: 0;
        display: block;
        width: 100%
    }
}

.faq .faq-feedback .faq-feedback-inner p {
    margin-bottom: 12px;
    line-height: 1
}

.faq .faq-feedback .faq-feedback-inner button p {
    margin: 5px 0
}

@media (max-width:768px) {
    .faq .faq-feedback .faq-feedback-inner .buttons-wrapper {
        display: flex;
        justify-content: space-between;
        width: 100%
    }

    .faq .faq-feedback .faq-feedback-inner .buttons-wrapper button {
        flex: 1
    }
}

@media (max-width:576px) {
    .faq .faq-feedback .faq-feedback-inner .buttons-wrapper button {
        padding: 8px
    }
}

.faq .faq-feedback div[data-buttonswrapper] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 32px
}

@media (max-width:768px) {
    .faq .faq-feedback div[data-buttonswrapper] {
        margin-left: 0;
        margin-top: 18px
    }
}

.faq .faq-feedback button {
    border: 1px solid transparent;
    background-color: #fff;
    margin: 0 10px;
    font-size: 16px;
    transition: border-color .5s
}

.faq .faq-feedback button:hover {
    outline: 0
}

.faq .faq-feedback button:focus {
    outline: 0
}

.faq .faq-feedback button[data-yesbutton] {
    padding: 8px 54px 8px 40px;
    background-image: url(../../../images/thumbup.svg);
    background-size: 14px 14px;
    background-position: calc(50% + 22px) center;
    background-repeat: no-repeat
}

@media (max-width:576px) {
    .faq .faq-feedback button[data-yesbutton] {
        background-position: calc(50% + 32px) center
    }
}

.faq .faq-feedback button[data-yesbutton].selected {
    color: #14964f;
    background-image: url(../../../images/thumbup-green.svg)
}

.faq .faq-feedback button[data-yesbutton].not-active {
    color: #6e757a;
    background-image: url(../../../images/thumbup-grey.svg)
}

.faq .faq-feedback button[data-yesbutton].disabled {
    color: #6e757a;
    background-image: url(../../../images/thumbup-grey.svg)
}

.faq .faq-feedback button[data-nobutton] {
    padding: 8px 40px 8px 54px;
    background-image: url(../../../images/thumbdown.svg);
    background-size: 14px 14px;
    background-position: calc(50% - 22px) center;
    background-repeat: no-repeat
}

@media (max-width:576px) {
    .faq .faq-feedback button[data-nobutton] {
        background-position: calc(50% - 32px) center
    }
}

.faq .faq-feedback button[data-nobutton].selected {
    color: #c92c18;
    background-image: url(../../../images/thumbdown-red.svg)
}

.faq .faq-feedback button[data-nobutton].not-active {
    color: #6e757a;
    background-image: url(../../../images/thumbdown-grey.svg)
}

.faq .faq-feedback button[data-nobutton].disabled {
    color: #6e757a;
    background-image: url(../../../images/thumbdown-grey.svg)
}

.faq .faq-feedback-form {
    padding: 30px 0 0 0
}

.faq .faq-feedback-form .textarea textarea {
    width: 100%;
    margin: 0
}

.faq .faq-feedback-form .validation-message {
    font-size: 11px;
    color: #c92c18
}

.faq .faq-feedback-form .buttons-section {
    margin: 20px 0
}

.faq .faq-feedback-form .buttons-section button[type=submit] {
    padding: 12px 20px;
    border: 2px solid #11377c;
    border-radius: 95px
}

.faq .faq-feedback-form .buttons-section button[type=reset] {
    background-color: transparent;
    box-shadow: none;
    color: #12225c;
    transition: color .5s;
    border: none
}

.faq .faq-feedback-form .buttons-section button[type=reset]:hover {
    box-shadow: none;
    color: #0954b5
}

.faq .faq-feedback-form .textarea {
    position: relative
}

.faq .faq-feedback-form .textarea .counter {
    position: absolute;
    right: 6px;
    bottom: 16px
}

.faq .faq-button {
    margin-top: 50px
}

.faq .field-validation-error {
    font-size: 12px;
    color: #c92c18;
    padding-bottom: 10px;
    display: block
}

.toggle-category-mobile-navigation {
    display: none
}

@media (max-width:768px) {
    .toggle-category-mobile-navigation {
        display: block;
        margin: 25px 15px 18px 15px;
        font-size: 14px;
        line-height: 21px;
        color: #000
    }
}

.faq .faq-item {
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .14);
    transition: box-shadow .3s
}

.faq .faq-item:hover {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .24)
}

.faq .faq-feedback {
    background-color: rgba(230, 232, 241, .3)
}

@media (max-width:768px) {
    .faq .faq-feedback {
        padding-bottom: 30px
    }
}

.faq .faq-feedback .faq-feedback-inner {
    max-width: 600px;
    gap: 16px;
    align-items: center
}

@media (max-width:991px) {
    .faq .faq-feedback .faq-feedback-inner {
        gap: 42px
    }
}

.faq .faq-feedback .faq-feedback-inner>div:first-child {
    font-size: 20px
}

@media (max-width:768px) {
    .faq .faq-feedback .faq-feedback-inner>div:first-child {
        margin-bottom: 16px;
        padding: 0;
        font-size: 16px;
        text-align: center
    }
}

.faq .faq-feedback .faq-feedback-inner .buttons-wrapper {
    display: flex;
    gap: 20px
}

.faq .faq-feedback button {
    box-shadow: 0 0 6px #00000014;
    border-radius: 10px;
    color: #0954b5;
    margin: 0
}

.faq .faq-feedback button:hover {
    border-color: #0954b5
}

body.professional:not(.on-page-editor) .faq h4 {
    color: #fff
}

body.professional:not(.on-page-editor) .faq .faq-item {
    background-color: #191919;
    border: 1px solid #fff
}

body.professional:not(.on-page-editor) .faq .faq-item .field-question {
    color: #fff
}

body.professional:not(.on-page-editor) .faq .faq-item .field-question::after {
    background-image: url(../../../images/chevron-down-white.svg)
}

body.professional:not(.on-page-editor) .faq .faq-item .field-answer {
    border-top: 1px solid #fff;
    color: #fff
}

body.professional:not(.on-page-editor) .faq .field-linktext {
    color: #fff;
    font-size: 14px;
    margin-top: 40px
}

body.professional:not(.on-page-editor) .faq .field-linktext a {
    color: #86b5f4
}

body.professional:not(.on-page-editor) .faq .faq-button {
    margin-top: 40px
}

body.professional:not(.on-page-editor) .faq .faq-button.arrow-link a::after {
    border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) #86b5f4
}

body.professional:not(.on-page-editor) .faq .faq-feedback {
    background: 0 0
}

body.professional:not(.on-page-editor) .faq .faq-feedback-form .buttons-section button[type=reset] {
    color: #86b5f4
}