.faq-box {
    margin-top: 80px;
    margin-bottom: 160px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-box p {
    color: #e52051;
    font-size: 24px;
}

.faq-item {
    padding: 32px;
    padding-bottom: 28px;
    margin-bottom: 12px;
    width: clamp(320px, 80%, 640px);

    display: flex;
    flex-direction: row;
    justify-content: space-between;

    cursor: pointer;

    background: #654ca2;
    box-shadow: 2px 2px 5px rgb(0,0,0,0.5);

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.faq-item.expanded {
    background-color: #e52051;
}

.faq-item:nth-child(odd).expanded {
    background-color: #306eb4
}

.faq-text {
    text-align: left;
}

.faq-text-question {
    display: block;
    padding-bottom: 0px;
}

.faq-text-description {
    display: none;
    margin-top: 12px;
}

:root {
    --circle-x: 50%;
    --circle-y: 50%;
}

.faq-arrow {
    font-size: 48px;
    color: #48b280;
    
    width: 24px;
    height: 24px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.faq-arrow.rotated {
    transform: rotate(90deg);
    color: #38287e;
}

.faq-arrow:hover {
    color: #13f37e;
}

/* RESPONSIVE TOGGLE */
@media only screen and (min-width: 981px) {
    .faq-arrow {
        font-size: 48px;
    }
    
    .faq-item {
        padding: 32px;
        padding-left: 48px;
        padding-bottom: 28px;
        margin-bottom: 12px;
    }

    .faq-text-question, .rule-item {
        font-size: 24px;
    }
    
    .faq-text-description {
        font-size: 18px;
    }
}

@media only screen and (max-width: 980px) {
    .faq-arrow {
        font-size: 36px;
    }
    
    .faq-item {
        padding: 24px;
        padding-left: 36px;
        padding-bottom: 18px;
        margin-bottom: 12px;
    }

    .faq-text-question, .rule-item {
        font-size: 18px;
    }
    
    .faq-text-description {
        font-size: 14px;
    }

}