.product-page__table {}

.product-page__table table {
    width: 100%;
    border-collapse: collapse;
}

.product-page__table table tbody {
    vertical-align: top;
    width: 100%;
}

.product-page__table table thead {
    background: #f6f6f6;
}

.product-page__table table tbody td {
    padding: 0;
}

.product-page__table table td:not(:last-child)>* {
    padding-right: 15px;
}

.product-page__table table tr:not(:last-child) td>* {
    margin-bottom: 15px;
}

.product-page__table table thead tr td {
    padding: 10px 8px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #6f6d7a;
}

.info-blocks__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-page__table .info-block {
    display: grid;
    grid-template-columns: 14px auto;
    gap: 8px;
}

.product-page__table .info-block__indicator {
    min-width: 14px;
    max-width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: transparent;
    transform: translateY(3px);
}

.product-page__table .info-block__indicator.green {
    background-color: #0CA577;
}

.product-page__table .info-block__indicator.yellow {
    background-color: #F4C947;
}

.product-page__table .info-block__indicator.orange {
    background-color: #F86235;
}

.product-page__table .info-block__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #0d0d0d;
    display: flex;
    flex-direction: column;
}

.product-page__table .info-block__text>* {
    display: flex;
}

.product-page__table table .info-block__text .gray {
    color: #6f6d7a;
}

.product-page__table table .prices-list {
    display: flex;
}

.product-page__table table .prices-list .prices-list__block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-page__table table .prices-list .prices-list__value {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #0d0d0d;
}

.product-page__table table .prices-list .prices-list__text-value {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    color: #0d0d0d;
    display: flex;
    align-items: center;
}

.product-page__table table .prices-list .prices-list__label {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #6f6d7a;
}

.product-page__table table .controls-block {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.product-page__table table .control-block__inputs {
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-page__table table .control-block__inputs .product__extra-field {
    margin-right: 0;
}


.product-page__table .calc-price {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 30px;
    line-height: 110%;
    text-align: right;
    color: #0d3b93;
    white-space: nowrap;
}



.product-page__table .product__params-item-tip-wrapper {
    bottom: 100% !important;
    left: -100% !important;
    right: unset !important;
    top: unset !important;
    transform: unset !important;
    padding: 0 !important;
    padding-bottom: 16px !important;
    /* white-space: unset !important; */
}

.product-page__table .product__params-item-tip-content::after {
    transform: rotate(-45deg) !important;
    bottom: -6px !important;
    left: 15px !important;
    right: unset !important;
    top: unset !important;
}

@media (max-width: 767.02px) {
    .product-page__table table tbody {
        display: table;
        margin-top: 16px;
    }

    .product-page__table tr {
        display: grid;
        grid-template-columns: 110px auto;
        width: 100%;
        row-gap: 4px;
    }

    .product-page__table tbody tr:not(:last-child) {
        padding-bottom: 9px;
        border-bottom: 2px solid #e9e9e9;
        margin-bottom: 16px;
    }

    .product-page__table table .control-block__inputs>*:first-child {
        width: 110px;
    }

    .product-page__table table .control-block__inputs>*:last-child {
        width: 78px;
    }

    .product-page__table table .prices-list {
        gap: 12px;
        padding-right: 0 !important;
    }

    .product-page__table tbody td {
        display: contents;
    }

    .product-page__table .info-blocks__list {
        grid-row: 1/3;
        grid-column: 1;
        width: fit-content;
    }

    .product-page__table .info-block__indicator {
        min-width: 11px;
        max-width: 11px;
        height: 11px;
    }

    .product-page__table .prices-list {
        flex-direction: row;
        grid-column: 2 / 5;
    }

    .product-page__table table .controls-block {
        display: grid;
        gap: 10px;
        align-items: center;
        grid-column: 1 / 5;
    }

    .product-page__table table .control-block__inputs {
        grid-row: 1;
        grid-column: 1;
        flex-direction: row;
        gap: 8px;
    }

    .product-page__table .info-block__text {
        font-size: 12px;
        font-weight: 400;
    }

    .product-page__table .info-block__text .info-block__text-first{
        display: none;
    }

    .controls-block__price {
        display: contents;
    }

    .product-page__table .calc-price {
        grid-column: 2;
        white-space: nowrap;
    }

    .product-page__table .button {
        grid-column: 1 / 3;
    }

    .product-page__table table .prices-list .prices-list__value {
        font-size: 13px;
    }

    .product-page__table table .prices-list .prices-list__label {
        font-size: 13px;
    }

    .product-page__table .calc-price {
        font-size: 18px;
    }

    .product-page__table .button {
        padding: 10px;
    }

    .product-page__table .button .button__text {
        font-size: 14px;

    }

    .product-page__table .product__extra-field span {
        font-size: 12px;
    }

    .product-page__table table .prices-list .prices-list__text-value {
        font-size: 13px;
    }

    .product-page__table table .col-basket {
        display: none;
    }

    .product-page__table table thead tr td {
        font-size: 14px;
        min-width: 100px;
    }

    .product-page__table table thead tr {
        display: flex;
        flex-direction: row;
    }
}

@media (min-width: 768px) and (max-width: 1199.02px) {
    .product-page__table table tbody {
        display: table;
        margin-top: 16px;
    }

    .product-page__table tr {
        display: grid;
        grid-template-columns: 110px auto;
        width: 100%;
    }

    .product-page__table tbody tr:not(:last-child) {
        border-bottom: 2px solid #e9e9e9;
        margin-bottom: 16px;
    }

    .product-page__table table .control-block__inputs>*:first-child {
        width: 130px;
    }

    .product-page__table .product-page__prices-block-tip-icon {
        transform: translateY(2px);
    }


    .product-page__table table .control-block__inputs>*:last-child {
        width: 100px;
    }

    .product-page__table table .prices-list {
        gap: 24px;
        padding-right: 0 !important;
        grid-row: 1;
        grid-column: 3 / 5;
    }

    .product-page__table tbody td {
        display: contents;
    }

    .product-page__table .info-blocks__list {
        grid-row: 1/3;
        grid-column: 1 / 3;
        width: fit-content;
    }

    .product-page__table .info-block__indicator {
        min-width: 11px;
        max-width: 11px;
        height: 11px;
    }

    .product-page__table .prices-list {
        flex-direction: row;
        grid-column: 2 / 5;
    }

    .product-page__table table .controls-block {
        display: flex;
        align-items: center;
        justify-content: unset;
        grid-row: 2;
        grid-column: 3 / 5;
        justify-content: space-between;
    }

    .product-page__table table .control-block__inputs {
        grid-row: 1;
        grid-column: 1;
        flex-direction: row;
        gap: 8px;
    }

    .product-page__table .info-block__text {
        font-size: 16px;
        font-weight: 400;
    }

    .controls-block__price {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .product-page__table .calc-price {
        grid-column: 2;
        white-space: nowrap;
    }

    .product-page__table .button {
        grid-column: 1 / 3;
    }

    .product-page__table table .prices-list .prices-list__value {
        font-size: 16px;
    }

    .product-page__table table .prices-list .prices-list__label {
        font-size: 14px;
    }

    .product-page__table .calc-price {
        font-size: 20px;
    }

    .product-page__table .product__extra-field span {
        font-size: 16px;
    }

    .product-page__table table .prices-list .prices-list__text-value {
        font-size: 16px;
    }

    .product-page__table table .col-basket {
        display: none;
    }

    .product-page__table table thead tr td {
        font-size: 14px;
        min-width: 160px;
    }

    .product-page__table table thead tr {
        display: flex;
        flex-direction: row;
    }
}

@media (min-width: 1200px) and (max-width: 1399.02px) {
    .product-page__info {
        grid-template-columns: 44% 54% !important;
    }

    .product-page__left,
    .product-page__images,
    .product-page__main-image {
        height: 450px !important;
    }

    .product-page__table .calc-price {
        font-size: 26px;
    }

    .product-page__table table .prices-list .prices-list__text-value,
    .product-page__table table .prices-list .prices-list__value {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .product-page__table table tbody tr td>*:first-child {
        margin-top: 24px;
        padding-top: 15px;
        border-top: 2px solid #e9e9e9;
    }

    .product-page__table table .prices-list {
        flex-direction: column;
        gap: 16px;
    }

    .product-page__table .controls-block__price {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-end;
    }
}