.price-item {
    margin-bottom: 35px;
    color: var(--white);
    position: relative;
    transition: 0.5s;
}
.price-item__image {
    min-height: 350px;
    background-size: cover;
    border-radius: var(--brad-regular);
    padding: 35px;
}
.price-item .price-item__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: var(--brad-regular);
}
.price-item__buttons {
    opacity: 0;
    z-index: 9;
    display: flex;
    position: absolute;
    bottom: 35px;
    right: 35px;
}
.price-item__buttons > * {
    margin-left: 35px;
}
.price-item__title {
    opacity: 1;
    position: relative;
    z-index: 9;
}
.price-item:hover .price-item__image::after, .price-item.opened .price-item__image::after {
    opacity: 0.7;
}
.price-item:hover .price-item__buttons, .price-item.opened .price-item__buttons {
    opacity: 1;
}

.price-table__block {
    display: none;
    position: relative;
    padding-bottom: 150px;
    transition: 0.5s;
}
.price-item.opened .price-table__block {
    display: block;
}
.price-table__row {
    margin: 25px;
}
.price-table__block-title {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0px 15px 15px;
}
.price-table__block-content {
    display: flex;
    justify-content: space-between;
}
.price-table-col {
    background-color: #fff;
    color: #000;
    padding: 15px;
    line-height: 200%;
    border-radius: 15px;
}
.general-characteristics {
    width: 45%;
}
.price-table__wrapper {
    width: 52%;
}
.price-table__wrapper > table {
    width: 100%;
}
.general-characteristics__top, .price-table__wrapper > table thead td {
    font-weight: bold;
}