.faq__accordion {
    display: flex;
    flex-direction: column;
}

.faq__empty,
.faq__accordion-item {
    box-shadow: 0px 0px 7px 0px rgb(212 212 212);
    border-radius: 25px;
    margin-bottom: 25px;
    padding: 25px;
}

.faq__empty p,
.faq__accordion-header {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    cursor: pointer;

    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    color: var(--e-global-color-primary);
    text-transform: uppercase;
    font-family: "Montserrat", Sans-serif;
}

.faq__accordion-header--icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.faq__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.faq__accordion-content > div {
    margin-top: 25px;
}

.faq__accordion-content > div > p {
    margin: 0;
    color: var(--e-global-color-text);
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.faq__accordion-content > div > p a {
    color: #c36 !important;
    text-decoration: none;
}

.faq__accordion-item--active .faq__accordion-header--icon {
    transform: rotate(180deg);
}

.custom-accordion .custom-accordion__header {
	list-style: none;
    position: relative;
    font-weight: 600;
    line-height: 100%;
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.custom-accordion .custom-accordion__content {
    margin-top: 30px;
}

.custom-accordion .custom-accordion__content * {
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.custom-accordion .custom-accordion__header::-webkit-details-marker {
    display: none;
}

/* Default closed state (toggle icon) */
.custom-accordion .custom-accordion__header::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-0.000115871 0.378534L11.3136 0.378534L5.65674 6.03539L-0.000115871 0.378534Z' fill='black'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 30%;
}

/* Open state (collapse icon) */
.custom-accordion .custom-accordion__item[open] .custom-accordion__header::after {
    background: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-0.000115871 6.3783L11.3136 6.3783L5.65674 0.721448L-0.000115871 6.3783Z' fill='black'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.custom-accordion details.custom-accordion__item {
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    box-shadow: 0px 0px 7px 0px rgb(212 212 212);
}
