.accordion {
    overflow: hidden;
    background: linear-gradient(311.15deg, #E4EDF8 -7.43%, #F9FCFF 65.82%);
    border-radius: 1.25rem;
    cursor: pointer;
    position: relative;
    max-width: 41.25rem;
    width: 100%;
}

.accordion::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}
.accordion:hover::before {
    opacity: .02;
}

.accordion__button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    z-index: 2;
}

.accordion__button::before {
    width: .25rem;
    height: .25rem;
    min-width: .25rem;
    margin-right: 1.25rem;
    background-image: url('/assets/img/accordion-bullet.svg');
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
}

.accordion__button > p {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    line-height: 1;
    font-size: 1.25rem;
    margin-right: 2rem;
    color: #333333;
}

.accordion__state {
    margin-left: auto;
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    position: relative;
}

.accordion__state::before,
.accordion__state::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.accordion__state::before {
    background-image: url('/assets/img/faq-state-open.svg');
}

.accordion__state::after {
    display: none;
    background-image: url('/assets/img/faq-state-close.svg');
}

.accordion__dropdown {
    z-index: 2;
    display: none;
    padding-left: 3.43rem;
    padding-right: 5.3rem;
    padding-bottom: 2rem;
}

.accordion__dropdown > :not(:first-child) {
    margin-top: 1rem;
}

.accordion__dropdown p {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    font-size: 1rem;
    color: #000;
}

.accordion__dropdown p.faded {
    opacity: .2;
}

@media (max-width: 767px) {
    .accordion {
        border-radius: .75rem;
    }
    .accordion__button {
        padding: 1rem;
    }
    .accordion__state {
        width: 1rem;
        min-width: 1rem;
        height: 1rem;
    }
    .accordion__button > p {
        font-size: 1rem;
        margin-right: 1rem;
    }
    .accordion__dropdown {
        padding-left: 2.6rem;
        padding-right: 3rem;
        padding-bottom: 1rem;
    }
    .accordion__dropdown p {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .accordion__button > p {
        font-size: 1rem;
    }
    .accordion__dropdown p {
        font-size: .75rem;
    }
}


/* Active state */
.accordion.active {
    background: #FFFFFF;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.09);
}

.accordion.active .accordion__button p {
    color: #0D99FA;
}

.accordion.active .accordion__state::before {
    display: none;
}


.accordion.active .accordion__state::after {
    display: block;
}

.accordion.active .accordion__dropdown {
    display: block;
}