/* Site Colors */
:root {
    --plgchk-white: #FFFFFF;
    --plgchk-white-2: #F2F2F2;
    --plgchk-white-3: #E5E5E5;
    --plgchk-white-4: #C1C3CC;
    --plgchk-white-5: #F3F5FF;
    --plgchk-white-hover: rgba(20, 65, 153, .04);
    --plgchk-white-active: rgba(20, 65, 153, .08);

    --plgchk-grey: #9595A0;
    --plgchk-grey-2: rgba(82, 103, 239, .1);
    --plgchk-grey-2-hover: rgba(20, 65, 153, .1);
    --plgchk-grey-2-active: rgba(20, 65, 153, .14);
    --plgchk-grey-3: #CFD1D6;
    --plgchk-grey-4: #CFCFCF;
    --plgchk-grey-5: #D9DEE7;
    --plgchk-grey-6: #818C9C;
    --plgchk-grey-7: #3B3D53;
    --plgchk-grey-8: #333333;
    --plgchk-grey-box-shadow: rgba(90, 103, 138, .16);

    --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: rgba(102, 66, 188, .3);
    --plgchk-purple-11: #692CFA;
    
    --plgchk-green: #EFFFEE;
    --plgchk-green-2: #A2DBA6;

}
/* END Site Colors */


/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(129, 10, 192, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(129, 10, 192, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(129, 10, 192, 0);
    }
}
@keyframes pulse_white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
/* END Animations */


/* Custom buttons */
.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: 0.64;
    cursor: not-allowed;
}

.custom-btn.cb-orange {
    color: var(--plgchk-white);
    background-color: var(--plgchk-orange);
}
.custom-btn.cb-orange:hover {
    background-color: var(--plgchk-orange-hover);
}
.custom-btn.cb-orange:active {
    background-color: var(--plgchk-orange-active);
}

.custom-btn.cb-blue {
    color: var(--plgchk-white);
    background-color: var(--plgchk-blue-3);
}
.custom-btn.cb-blue:hover {
    background-color: var(--plgchk-blue-hover);
}
.custom-btn.cb-blue:active {
    background-color: var(--plgchk-blue-active);
}

.custom-btn.cb-grey {
    color: var(--plgchk-blue-2);
    background-color: var(--plgchk-grey-2);
}
.custom-btn.cb-grey:hover {
    color: var(--plgchk-blue);
    background-color: var(--plgchk-grey-2-hover);
}
.custom-btn.cb-grey:active {
    color: var(--plgchk-blue);
    background-color: var(--plgchk-grey-2-active);
}

.custom-btn.cb-black {
    color: var(--plgchk-white-2);
    background-color: var(--plgchk-black);
}
.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: var(--plgchk-blue);
    background-color: var(--plgchk-white);
}
.custom-btn.cb-white:hover,
.custom-btn.cb-white-b:hover {
    color: var(--plgchk-blue);
    background-color: var(--plgchk-white-hover);
}
.custom-btn.cb-white:active,
.custom-btn.cb-white-b:active {
    color: var(--plgchk-blue);
    background-color: var(--plgchk-white-active);
}
.custom-btn.cb-white-b {
    border: 1px solid #005FF9;
}
/* END Custom buttons */


/* Custom checkbox */
.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: var(--plgchk-blue);
}
.custom-checkbox-label:has(input[type="checkbox"]:checked) .custom-checkbox::after {
    background-color: var(--plgchk-white);
    border-color: var(--plgchk-blue);
    left: calc(100% - 16.67px);
}
/* END Custom checkbox */


/* Custom square checkbox */
.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: var(--plgchk-blue);
    border-color: var(--plgchk-blue);
    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;
}
/* Custom square checkbox */


/* Default input & textarea */
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;
}
/* END Default input & textarea */


/* Section FAQ */
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: var(--plgchk-blue-3);
    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(to left, #8EA7FF 0%, #7490F4 44%, #4E6EE0 100%);
}
section.faq .faq-content .faq-text-block .faq-icon {
    display: block;
    margin: 0 0 24px;
}
section.faq .faq-content .faq-text-block .title {
    color: var(--plgchk-white);
    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: var(--plgchk-white-5);
    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;
}
/* END Section FAQ */


/* Any question */


.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;
}

/* END Any question */

body .abcRioButton {
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
}
body .abcRioButtonContentWrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--plgchk-white-4);
    margin: 0 0 32px;
    text-decoration: none;
}
body .abcRioButtonContentWrapper span {
    color: var(--plgchk-black);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

/* Default Media */

@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;
    }
}

/* END Default Media */