:root {
    --plgchk-white: #FFF;
    --plgchk-white-2: #F2F2F2;
    --plgchk-white-3: #E5E5E5;
    --plgchk-white-4: #C1C3CC;
    --plgchk-white-5: #F3F5FF;
    --plgchk-white-hover: #1441990a;
    --plgchk-white-active: #14419914;
    --plgchk-grey: #9595A0;
    --plgchk-grey-2: #5267ef1a;
    --plgchk-grey-2-hover: #1441991a;
    --plgchk-grey-2-active: #14419924;
    --plgchk-grey-3: #CFD1D6;
    --plgchk-grey-4: #CFCFCF;
    --plgchk-grey-5: #D9DEE7;
    --plgchk-grey-6: #818C9C;
    --plgchk-grey-7: #3B3D53;
    --plgchk-grey-8: #333;
    --plgchk-grey-box-shadow: #5a678a29;
    --plgchk-black: #0F0F13;
    --plgchk-black-2: #303037;
    --plgchk-black-3: #1F1F24;
    --plgchk-black-4: #484855;
    --plgchk-black-5: #1C022A;
    --plgchk-black-hover: #2B2B39;
    --plgchk-black-active: #08080A;
    --plgchk-blue: #005FF9;
    --plgchk-blue-2: #194FBB;
    --plgchk-blue-3: #2066F2;
    --plgchk-blue-4: #103072;
    --plgchk-blue-5: #F2F7FF;
    --plgchk-blue-6: #EAF4FF;
    --plgchk-blue-7: #ECF4FF;
    --plgchk-blue-8: #144199;
    --plgchk-blue-9: #1D5BD8;
    --plgchk-blue-10: #D6E5F6;
    --plgchk-blue-11: #6485F8;
    --plgchk-blue-12: #598EFF;
    --plgchk-blue-hover: #005CF1;
    --plgchk-blue-active: #0059EA;
    --plgchk-orange: #F3722D;
    --plgchk-orange-hover: #EC6720;
    --plgchk-orange-active: #DC5F1B;
    --plgchk-purple: #400E59;
    --plgchk-purple-2: #F6EFFF;
    --plgchk-purple-3: #D6C6E8;
    --plgchk-purple-4: #9B91C8;
    --plgchk-purple-5: #810AC0;
    --plgchk-purple-6: #D8DFFE;
    --plgchk-purple-7: #E9E5FF;
    --plgchk-purple-8: #A272CE;
    --plgchk-purple-9: #A3B4F7;
    --plgchk-purple-10: #6642bc4d;
    --plgchk-purple-11: #692CFA;
    --plgchk-green: #EFFFEE;
    --plgchk-green-2: #A2DBA6
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #0bc07833
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px #810ac000
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #810ac000
    }
}

@keyframes pulse_white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #ffffffb3
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px #fff0
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #fff0
    }
}

.custom-btn {
    display: inline-block;
    max-width: max-content;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    border: none;
    outline: none;
    border-radius: 8px;
    transition: color .3s ease, background-color .3s ease;
    text-decoration: none;
    cursor: pointer
}

.custom-btn:disabled {
    opacity: .64;
    cursor: not-allowed
}

.custom-btn.cb-orange {
    color: var(--plgchk-white);
    background-color: #0BC078
}

.custom-btn.cb-orange:hover {
    background-color: #13bb77
}

.custom-btn.cb-orange:active {
    background-color: #0cac6c
}

.custom-btn.cb-blue {
    color: var(--plgchk-white);
    background-color: #13bb77
}

.custom-btn.cb-blue:hover {
    background-color: #D3FA78
}

.custom-btn.cb-blue:active {
    background-color: #107b50
}

.custom-btn.cb-grey {
    color: #1F1F24;
    background-color: #E8EDED;
}

.custom-btn.cb-grey:hover {
    color: #0BC078;
    background-color: var(--plgchk-grey-2-hover)
}

.custom-btn.cb-grey:active {
    color: #0BC078;
    background-color: var(--plgchk-grey-2-active)
}

.custom-btn.cb-black {
    color: var(--plgchk-white-2);
    background-color: #121928
}

.custom-btn.cb-black:hover {
    color: var(--plgchk-white-2);
    background-color: var(--plgchk-black-hover)
}

.custom-btn.cb-black:active {
    color: var(--plgchk-white-3);
    background-color: var(--plgchk-black-active)
}

.custom-btn.cb-white,
.custom-btn.cb-white-b {
    color: #0BC078;
    background-color: var(--plgchk-white)
}

.custom-btn.cb-white:hover,
.custom-btn.cb-white-b:hover {
    color: #0BC078;
    background-color: var(--plgchk-white-hover)
}

.custom-btn.cb-white:active,
.custom-btn.cb-white-b:active {
    color: #0BC078;
    background-color: var(--plgchk-white-active)
}

.custom-btn.cb-white-b {
    border: 1px solid #0BC078;
}

.custom-checkbox-label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px
}

.custom-checkbox-label .custom-checkbox-title {
    display: inline-block;
    color: var(--plgchk-black-2);
    font-size: 14px;
    font-weight: 400;
    line-height: 120%
}

.custom-checkbox-label .custom-checkbox {
    display: inline-block;
    width: 28px;
    height: 18.67px;
    position: relative;
    background-color: var(--plgchk-grey-3);
    border-radius: 18px;
    transition: all .5s ease
}

.custom-checkbox-label .custom-checkbox::after {
    content: '';
    display: inline-block;
    width: 16.67px;
    height: 16.67px;
    border-radius: 50%;
    border: 2px solid;
    border-color: var(--plgchk-white-4);
    background-color: var(--plgchk-white);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s ease
}

.custom-checkbox-label input[type="checkbox"] {
    display: inline-block;
    width: 1px;
    height: 0
}

.custom-checkbox-label:has(input[type="checkbox"]:checked) .custom-checkbox {
    background-color: #0BC078
}

.custom-checkbox-label:has(input[type="checkbox"]:checked) .custom-checkbox::after {
    background-color: var(--plgchk-white);
    border-color: #0BC078;
    left: calc(100% - 16.67px)
}

.custom-square-checkbox-label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px
}

.custom-square-checkbox-label .custom-square-checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1.5px solid;
    border-color: var(--plgchk-grey);
    background-color: var(--plgchk-white);
    background-image: none;
    background-position: 50%;
    background-size: 14px auto;
    background-repeat: no-repeat;
    transition: background-color .5s ease;
    border-radius: 4px
}

.custom-square-checkbox-label:has(input[type="checkbox"]:checked) .custom-square-checkbox {
    background-color: #0BC078;
    border-color: #0BC078;
    background-image: url(../images/check-icon-white.svg)
}

.custom-square-checkbox-label .custom-square-checkbox-title {
    color: var(--plgchk-black-2);
    font-size: 15px;
    font-weight: 400;
    line-height: 140%
}

.custom-square-checkbox-label input[type="checkbox"] {
    display: inline-block;
    width: 1px;
    height: 0
}

body label {
    display: block;
    margin: 0 0 16px
}

body .label-title {
    display: block;
    color: var(--plgchk-black-4);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin: 0 0 6px
}

body input[type="email"],
body input[type="text"],
body input[type="password"],
body textarea {
    display: block;
    width: 100%;
    border: .5px solid var(--plgchk-grey);
    color: var(--plgchk-black-2);
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    padding: 12px;
    border-radius: 8px;
    outline: none;
    resize: none
}

body input[type="email"]::placeholder,
body input[type="text"]::placeholder,
body input[type="password"]::placeholder,
body textarea::placeholder {
    opacity: .8
}

section.faq {
    padding: 120px 0
}

section.faq .faq-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 101px
}

section.faq .faq-content .faq-text-block {
    max-width: 407px
}

section.faq .faq-content .faq-text-block .faq-text-top {
    color: #0DA050;
    font-family: 'Euclid Circular A', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 16px
}

section.faq .faq-content .faq-text-block .faq-text-title {
    color: var(--plgchk-black);
    font-family: 'Euclid Circular A', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    margin: 0 0 28px
}

section.faq .faq-content .faq-text-block .faq-text-subtitle {
    color: var(--plgchk-black-2);
    font-size: 18px;
    font-weight: 500;
    line-height: 145%;
    margin: 0 0 60px
}

section.faq .faq-content .faq-text-block .different-question-block {
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(270deg, #D3FA78 -62.64%, #D3FA78 73.75%)
}

section.faq .faq-content .faq-text-block .faq-icon {
    display: block;
    margin: 0 0 24px
}

section.faq .faq-content .faq-text-block .title {
    color: #0F0F13;
    font-family: 'Euclid Circular A', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    margin: 0 0 16px
}

section.faq .faq-content .faq-text-block .subtitle {
    color: #1F1F24;
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
    margin: 0 0 24px
}

section.faq .faq-content .faq-text-block .contact-support-btn {
    padding: 16px 28px
}

section.faq .faq-content .faq-questions-block {
    width: 100%
}

section.faq .faq-content .faq-questions-block .faq-accordion-item {
    padding: 28px 0
}

section.faq .faq-content .faq-questions-block .faq-accordion-item:not(:last-child) {
    border-bottom: 1px solid var(--plgchk-white-4)
}

section.faq .faq-content .faq-questions-block .faq-accordion-question {
    display: block;
    width: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 0 30px 0 0;
    font-family: 'Euclid Circular A', sans-serif;
    color: var(--plgchk-black);
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    text-align: left;
    position: relative
}

section.faq .faq-content .faq-questions-block .faq-accordion-question::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/down-arrow.svg);
    transition: transform .5s ease;
    position: absolute;
    right: 0;
    top: 0
}

section.faq .faq-content .faq-questions-block .faq-accordion-question:not(.collapsed):after {
    transform: rotate(180deg)
}

section.faq .faq-content .faq-questions-block .faq-accordion-answer .answer-text {
    color: var(--plgchk-black-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
    margin: 0;
    padding: 20px 0 0
}

.any-question-block {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 24px
}

.any-question-block .text {
    color: var(--plgchk-black-2);
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 0 5px 13px;
    background: var(--plgchk-white);
    border-radius: 32px 0 0 32px;
    position: relative;
    min-width: max-content
}

.any-question-block .text::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 32px;
    background-image: url(../images/white-triangle-to-right.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%)
}

.any-question-block .any-question-btn img {
    border-radius: 50%;
    box-shadow: 0 4px 20px var(--plgchk-purple-10);
    animation: pulse_white 3s infinite
}

@media (max-width: 1199px) {
    section.faq {
        padding: 60px 0
    }

    section.faq .faq-content {
        gap: 30px
    }
}

@media (max-width: 991px) {
    section.faq .faq-content {
        flex-direction: column
    }

    section.faq .faq-content .faq-text-block,
    section.faq .faq-content .faq-questions-block {
        width: 100%;
        max-width: 100%
    }
}

@media (max-width: 575px) {
    section.faq {
        padding: 56px 0 40px
    }

    section.faq .faq-content {
        gap: 24px
    }

    section.faq .faq-content .faq-text-block .faq-text-top {
        font-size: 14px;
        margin: 0 0 12px
    }

    section.faq .faq-content .faq-text-block .faq-text-title {
        font-size: 28px;
        margin: 0 0 21px
    }

    section.faq .faq-content .faq-text-block .faq-text-subtitle {
        font-size: 16px;
        margin: 0 0 40px
    }

    section.faq .faq-content .faq-text-block .different-question-block {
        padding: 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 24px
    }

    section.faq .faq-content .faq-text-block .faq-icon {
        display: inline-block;
        margin: 0;
        flex-basis: 60px
    }

    section.faq .faq-content .faq-text-block .title {
        display: inline-block;
        font-size: 19px;
        flex-basis: calc(100% - 84px)
    }

    section.faq .faq-content .faq-text-block .subtitle {
        font-size: 15px
    }

    section.faq .faq-content .faq-text-block .contact-support-btn {
        padding: 14px;
        display: block;
        max-width: 100%;
        width: 100%;
        text-align: center
    }

    section.faq .faq-content .faq-questions-block .faq-accordion-item {
        padding: 16px 0
    }

    section.faq .faq-content .faq-questions-block .faq-accordion-question {
        font-size: 18px
    }

    section.faq .faq-content .faq-questions-block .faq-accordion-answer .answer-text {
        font-size: 15px;
        padding: 16px 0 0
    }
}