.price__item-head {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.price__item-title-wrapper {
    display: flex;
    align-items: center;
    width: 66.66%;
}

.price__item-column-name {
    width: 33.33%;
    text-align: right;
}

.price-list__item.dropdown {
    position: relative;
    flex-direction: column;
}

.price-list__item.dropdown::after {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background: url(/local/templates/mainpage/img/new/arrowdown.png) no-repeat center center;
    position: absolute;
    top: 32px;
    right: 50px;
    transform: translateY(-50%);
}

.price-list__item.dropdown.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.price-list__itemprices {
    max-height: 0;
    overflow: hidden;
    transition: .5s;
}

.price-list__item.dropdown.active .price-list__itemprices {
    max-height: 1000px;
}

.price-list__itemprices-item:first-child {
    margin-top: 20px;
}

.price-list__itemprices-item {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 10px;
    font-family: "montserrat";
    font-size: 16px;
    line-height: 25px;
    color: #4F4247;
}

.price-list__itemprices-item:nth-child(odd) {
    background-color: #F9F7F4;
}

.price-list__item:nth-child(odd) .price-list__itemprices-item:nth-child(odd) {
    background-color: #FFF;
}