/* FAQ */
.cpx-faq__item {
    border-radius: 0px;
}

.cpx-faq__item+.cpx-faq__item {
    border-top: 1px solid var(--e-global-color-c0c5761);
}

.cpx-faq__item__question {
    position: relative;
    padding: 1.2em 0em;
    padding-left: 2em;
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.3;
    list-style: none;
    color: var(--e-global-color-text);
    transition: color 0.3s ease;
}

.cpx-faq__item__question:hover {
    color: var(--e-global-color-primary);
}

.cpx-faq__item__question::-webkit-details-marker {
    display: none;
}

.cpx-faq__item__question::before,
.cpx-faq__item__question::after {
    content: '';
    position: absolute;
    background-color: var(--e-global-color-c0c5761);
    transition: all 0.3s ease;
}

.cpx-faq__item__question::before {
    left: 0;
    top: 47%;
    width: 16px;
    height: 2px;
    transform: translateY(-50%);
}

.cpx-faq__item__question::after {
    left: calc(0px + 7px);
    top: calc(47% - 8px);
    width: 2px;
    height: 16px;
    transform-origin: center;
}

.cpx-faq__item[open] .cpx-faq__item__question::before,
.cpx-faq__item[open] .cpx-faq__item__question::after {
    transform: rotate(90deg);
    /* background-color: var(--e-global-color-primary); */
    background-color: var(--e-global-color-77df036);
}

.cpx-faq__item[open] .cpx-faq__item__question::before {
    opacity: 0;
}

.cpx-faq__item[open] .cpx-faq__item__question {
    color: var(--e-global-color-text);
}

.cpx-faq__item__answer {
    padding: 0 1em 1em;
    line-height: 1.6;
    background-color: color-mix(in srgb, var(--e-global-color-1b95cf9), #fff 5%);
    border-radius: 0px;
    padding: 20px;
    padding-left: 37px;
    margin-bottom: 1em;
    color: var(--e-global-color-text);
}

.cpx-faq__item__answer p:last-child {
    margin-bottom: 0;
}

.cpx-faq__tag-title {
    color: var(--e-global-color-text);
}