.accordion > * {
    margin-bottom: 20px;
}

.accordion {
    margin-top: 30px;
}

.accordion-items {
    border: 1px solid #2FC6F6;
}

.accordion-item {
    position: relative;
    background-color: #F8FDFF;
    color: #212121;
    cursor: pointer;
    font-weight: 600;
    padding: 20px 60px 20px 20px;
    width: 100%;
    text-align: left;
    border: 0;
    outline: none !important;
    transition: background-color .3s ease;
}

.accordion-item:hover {
    background-color: #FFF;
}

/* стрелка вниз */
.accordion-item::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 1px solid #212121;
    border-bottom: 1px solid #212121;
    transform: translateY(-70%) rotate(45deg);
    transition: transform .3s ease;
}

/* активное состояние */
.accordion-item.active {
    background-color: #fff;
}

/* стрелка вверх */
.accordion-item.active::after {
    transform: translateY(-30%) rotate(225deg);
}


.panel-item {
    color: #777777;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: white;
    box-shadow: inset 0 20px 20px -20px rgba(47, 198, 246, 0.2);
    transition: max-height .4s ease, padding .3s ease;
}

.panel-item p {
    margin: 0;
    padding: 15px 0;
}