.faq-item {
    margin-top: 24px;
}

.faq-item .faq-item__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 130%;
    color: #292D32;
    margin: 0;
    padding: 0;
}

.faq-item .faq-item__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    border-radius: 20px;
    background: #E5F1FF;
    border: 1px solid #F6F6F6;
    width: 100%;
    box-shadow: 0px 6px 14px 0px #DBDBDB1A,
        0px 25px 25px 0px #DBDBDB17,
        0px 57px 34px 0px #DBDBDB0D,
        0px 101px 40px 0px #DBDBDB03,
        0px 157px 44px 0px #DBDBDB00;
}

.faq-item .faq-item__spinner {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f9ff;
    border-radius: 100%;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-item__spinner {
    transform: rotate(90deg);
}

.faq-item .faq-item__plus {
    height: 17px;
    width: auto;
}

.faq-item .faq-item__heading {
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #292D32;
    text-align: left;
    margin-top: 7.5px;
}

.faq-item .faq-item__content {
    padding-top: 16px;
}

.faq-item .faq-item__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #292D32;
    margin-left: 16px;
}

.faq-item .faq-item__content-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s, opacity 0.3s;
}

.faq-item.open .faq-item__content-wrapper {
    overflow: visible;
    opacity: 1;
    pointer-events: all;
}

@media screen and (max-width: 600px) {
    .faq-item {
        margin-top: 14px;
    }
}
