.checkmark {
    width: 22px;
}
.checkmarkDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #85EA9F;
}
.checkmarkDot--off {
    background-color: #D7D7DE;
}

.table {
    font-size: 1rem;
    display: grid;
    /*row-gap: 2rem; !* Расстояние между строками *!*/
    position: relative;
}
.table__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
}
.table--4 .table__row{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.table__header {
    border-bottom: 1px solid #D8D8DF;
}
.table__header--sticky {
    top: 60px;
    position: sticky;
    z-index: 10;
    background-color: white;
}
.table__cell {
    padding: 1rem 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.table__cell--sub {
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0.5rem 0.25rem 0.5rem 2.5rem;
}
.table__cell--init {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--black-80);
}
.table__cell--state {
    display: flex;
    justify-content: center;
    align-items: center;
}
.table__cell--header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 0;
    justify-content: space-between;
    text-align: center;
}
.table__container:nth-child(2n+1) {
    background-color: #F8F8F8;
}
.table__row--parent > .table__cell:first-child {
    padding: 1rem 0.25rem 1rem 1.75rem;
}
.table__cell--arrow {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.table__cell--arrow::before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 7px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23302234' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    position: absolute;
    left: 8px;
}
[aria-expanded="true"] .table__cell--arrow::before {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5L5 1L1 5' stroke='%23DD9E26' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.table__cell--actions button {
    margin-right: 0.5rem;
}
.table__btn-order {
    background-color: var(--main-light);
}
.table__icon-text {
    align-items: flex-start;
    /*flex-grow: 1;*/
}


@media screen and (max-width: 880px) {
    .table--firstCellToUp .table__cell:nth-child(1) {
        grid-column: 1 / -1;
    }

    .table--firstCellToUp .table__row {
        grid-template-columns: 1fr 1fr 1fr 1fr 0fr;
    }
    .table__cell--arrow {
        padding: 1rem 0.25rem 1rem 1.25rem;
    }
    .table__cell {
        padding: 1rem 0.25rem;
    }
    .table__cell--state {
        padding: 1rem 0;
    }
    .table__cell--header {
        padding: 5px;
        text-align: center;
        gap: 4px;
    }
    .table__icon-text {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .table__btn-order {
        padding: 0.4rem;
        font-size: 12px;
    }
    .mobile-hidden {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .table__cell--header {
        font-size: 11px;
    }
    .table-price {
        font-size: 0.75rem;
    }
    .tabs-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .tabs__tab {
        padding: 0.375rem 0.7rem;
        font-size: 14px;
    }
    .table-price .table__cell {
        flex-direction: column;
    }
    .table__cell--init {
        font-size: 0.75rem;
    }
}
@media screen and (max-width: 480px) {
    .table__price {
        display: block;
    }
}