.price_list {
    margin: 30px 0;
    font-size: 1rem;
}

.price_list > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px;
}

.price_list > div:hover {
    background-color: #f5f5f5;
}

.price_list > div > div {
    flex: 1 0 16%;
    min-width: 16%;
    padding: 5px;
    text-align: center;
}

.price_list > div > div:first-child {
    flex: 1 0 35%;
    text-align: left;
    max-width: 35%;
}

.price_list > div > div:last-child {
    text-align: right;
}

#priceModal button,
.price_list > div > div > button {
    background-color: #239bd2;
    color: #fff;
    font-weight: bold;
    font-size: .8rem;
    padding: 10px 15px;
    text-transform: uppercase;
}

.price_list > div.price_list_head {
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: bold;
}

.price_list > div.price_list_head:hover {
    background-color: transparent;
}

.price_list > div.price_list_head > div {
    color: #239bd2;
    padding: 0;
}

.price_list > div[data-site] {
    display: none;
}

.price_list.msk > div[data-site='msk'],
.price_list.spb > div[data-site='spb'] {
    display: flex !important;
}

.price_list_city {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 15px;
}

.price_list_city input {
    display: none;
}

.price_list_city label {
    width: 125px;
    line-height: 30px;
    font-size: 12px;
    text-align: center;
    background-color: #eee;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.price_list_city input:checked + label {
    background-color: #239bd2;
    color: #fff;
}

#priceModal {
    max-width: 600px;
}

#priceModal a {
    color: #3b9fd8;
    text-decoration: underline;
}

@media (max-width: 767px) {
    
    .price_list > div > div:first-child,
    .price_list > div > div:last-child {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .price_list > div.price_list_head > div:first-child {
        display: none;
    }
    
    .price_list > div > div > button {
        width: 100%;
    }
    
    .price_list_city {
        justify-content: center;
    }
    
}















