.prices {
    padding: 30px 0 0 0;
    opacity: 0;
    transition: opacity .3s ease;
}

.prices.loaded {
    opacity: 1;
}

.prices-set {
    margin-top: 35px;
}

.prices-text {
    margin: 20px 0;
}

.price-table {
    font-size: 18px;
    margin-bottom: 0;
}

.price-table td {
    position: relative;
}

thead {
    min-width: 100%;
}

thead th {
    min-width: 100%;
    font-weight: 400;
    box-sizing: border-box;
    padding: 40px 0;
    display: none;
}

thead th:first-child {
    font-weight: 600;
    padding-left: 60px;
    width: 360px;
}

.price-th {
    align-items: center;
    position: relative;
    white-space: nowrap;
}

thead td {
    padding: 20px 0;
}

.price-desc-wrp {
    background-color: var(--grey-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: 15px;
}

.price-desc-wrp:before {
    content: '?';
}

.price-desc {
    box-sizing: border-box;
    width: 160px;
    padding: 20px 15px;
    position: absolute;
    bottom: 40px;
    left: 30px;
    transform: translateX(-50%);
    background-color: var( --grey-color);
    opacity: 0;
    visibility: hidden;
    white-space: normal;
    text-align: center;
    transition: all .3s ease;
}

.price-desc:before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var( --grey-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: rotate( 45deg) translateX(-50%) translateY(0);
}

.price-th:hover .price-desc {
    opacity: 1;
    visibility: visible;
}

@media screen and (min-width: 1350px) {
    .price-desc {
        width: 260px;
    }
}

.unfold-icon {
    width: 16px;
    margin-right: 20px;
    position: relative;
}

.unfold-icon:before,
.unfold-icon:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white-color);
    transition: all .3s ease;
}

.unfold-icon:after {
    transform: rotateZ( -90deg) translateX(1px);
    transform-origin: center;
}

.active .unfold-icon:after {
    transform: rotateZ( 0deg) translateX(1px);
    transform-origin: center;
}

tbody tr {
    display: none;
}

tbody tr.action-header {
    display: table-row;
    cursor: pointer;
    position: relative;
    top: 1px;
}

tbody tr.action-header td {
    position: relative;
    padding: 30px 0 15px 60px;
    font-weight: 600;
}

tbody .unfold-icon {
    position: absolute;
    left: 20px;
    top: 40px;
}

tbody tr.active td {
    background-color: var(--black-color);
}

.price-content-td {
    max-width: 300px;
    width: 300px;
}

.price-content:nth-last-col td {
    padding-bottom: 40px;
}

.price-content-text {
    max-width: 250px;
    font-size: 12px;
    box-sizing: border-box;
    padding: 15px 0 15px 25px;
    margin: 0 0 0 60px;
    border-left: 1px solid #23222B;
}

.prices-action {
    padding: 0 0 50px 0;
    text-align: center;
}

.prices-action .action {
    width: 300px;
    padding: 25px 35px;
}

.prices-mobile {
    display: none;
}

@media screen and (max-width: 960px) {
    .price-table {
        display: none;
    }
    .prices-mobile {
        display: block;
    }
}


/* mobile */


/* .toggled {
    display: none;
} */

.prices-mobile-title {
    font-size: 30px;
}

.prices-m-class {
    margin: 30px 0 5px 0;
}

.class-select {
    font-size: 12px;
    display: inline-block;
    margin-right: 30px;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.class-select:last-child {
    margin-right: 0;
}

.class-select.active {
    border-color: var(--red-color);
}

.prices-m-info {
    font-size: 12px;
    margin-bottom: 15px;
}

.pml-toggle {
    display: none;
}

.prices-m-listitem.active {
    background-color: var(--black-color);
}

.prices-m-listitemtitle {
    font-size: 15px;
    font-weight: 600;
    padding: 20px 0;
}

.unfold-icon {
    margin-right: 15px;
}

.prices-m-list {
    margin: 0 -20px 0;
}

.prices-m-listitem {
    padding: 0 20px;
}

.prices-m-listitemContent {
    justify-content: space-between;
    font-size: 12px;
    box-sizing: border-box;
    padding: 15px 0 15px 25px;
    margin: 0 0 0 30px;
    border-left: 1px solid #44424c;
    display: none;
    box-sizing: border-box;
}

.active .prices-m-listitemContent {
    display: flex;
}

.pml-name {
    max-width: 70%;
    width: 70%;
}

.pml-price {
    white-space: nowrap;
}