.price-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 193, 108, 0.20);
    padding: 15px 60px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.price-top.active .price-top-arrow{
    transform: rotate(180deg);
}
.price-top-arrow svg{
    border-radius: 4px;
}
.price-top-arrow rect,
.price-top-arrow path{
    stroke:var(--main);
}
.price-top.active .price-top-arrow rect,
.price-top.active .price-top-arrow path{
    stroke: #fff;
}

.price-top.active{
    background:var(--main);
    margin-bottom: 0;
}
.price-items{
    display: none;
    margin-bottom: 0;
    transition: all 1s ease;
}
.price-items.active{
    display: block;
    margin-bottom: 30px;
    transition: all 1s ease;
}
.price-top-name{
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 100%;
    color: #6C6C6C;
}
.price-top.active .price-top-name{
    color: #FFF;
}
.price-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 193, 108, 0.39);
    padding: 28px 60px;
}
@media(max-width:768px){
    .price-top-name {
        font-size: 20px;
    }
}
@media(max-width:620px){
    .price-top {
        padding: 15px 20px;
    }
    .price-item {
        padding: 28px 20px;
    }
}
@media(max-width:450px){
    .price-item_name{
        font-size: 13px;
    }
    .price-item_price{
        font-size: 13px;
    }
    .price-top-name {
        font-size: 15px;
    }
    .price-item {
        padding: 28px 5px;
    }
    .price-top {
        padding: 15px 5px;
    }
}