.calc-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.calc-container label {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: var(--color-text);
}

.calc-wizard {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc((100% - 20px) / 12 * 8);
}
.calc-thickness-filter {
    background: var(--color-gray-100);

    border-radius: 20px;
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calc-thickness-filter .selector {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}
.calc-thickness-filter .selector .step {
    background: var(--color-white);
    border-radius: 30px;
    padding: 8px 16px;
    flex: 1;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    cursor: pointer;
    max-width: 83px;
}
.calc-thickness-filter .selector .step.active {
    background: var(--color-text);
    color: var(--color-white);
}

/** Список покрытий толщины */
.calc-product-list {
    background: var(--color-gray-100);

    border-radius: 20px;
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.calc-product-item {
    border-top: 2px solid var(--color-white);
    padding: 24px 0 20px;
    display: flex;
    flex-direction: row;
    gap: 24px
}
.calc-product-item a {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-decoration: underline;
}
.calc-product-params {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.calc-product-param {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}
.calc-param-values {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.calc-product-actions {
    flex: none;
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    justify-content: center;
}
.calc-product-price {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;

}
.param-percent-value {
    background: var(--color-white);
    border-radius: 30px;
    padding: 2px 8px;
    width: 49px;
    height: 28px;
    cursor: pointer;
}
.param-percent-value.active {
    background: var(--color-text);
    color: var(--color-white);

}



.calc-action-add {
    cursor: pointer;
    border-radius: 8px;
    padding: 10px 32px 12px;
    background: var(--color-text);
    color: var(--color-white);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
}
/** Правая часть */
.calc-basket {
    border-radius: 20px;
    padding: 24px 24px 28px;
    background: var(--color-gray-100);
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}


.product-item {
    background: white;
    border-radius: 0.25rem;
}
.product-item a {
    display: block;
    flex: none;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    background: #EAEAEA;
    border-radius: 0.25rem;
    padding: 0.25rem;
    margin-bottom: 0.25rem;
}
.filter {
    background: white;
    border-radius: 0.25rem;
}
.product-item .sku {
    border-bottom: #EAEAEA 0.5px solid;
    align-items: center;
    padding-bottom: 0.125rem;
    padding-top: 0.125rem;
}
.product-item .sku:last-child {
    border-bottom: none;
}


.color-value {
    border-radius: 4px;
    padding: 3px;
    border: transparent 1px solid;
    cursor: pointer;
}

.color-value.active {
    border: 1px solid #4c4843;
}
.color-value-block {
    border-radius: 2px;
    width: 32px;
    height: 32px;
}



.color-block span {
    font-size: 0.75rem;
    font-weight: bold;
}

.product-item .sku .price {
    flex: 1;
    font-size: 1rem;
    text-align: right;
}
.product-item .sku .cmd {
    background: #46af4e;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}
.xsd-form-control {
    min-width: 2rem;
}


.calc-result {
    background: white;
    border-radius: 0.25rem;
}
.calc-item-name {
    display: block;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}


.calc-basket-item {
    padding: 16px 0;
    border-top: 2px solid #fff;
    position: relative;
}
.calc-basket-item .btn-close {
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    top: 20px;
    background-image: url('images/close.svg');
    cursor: pointer;
}

.calc-basket-item-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 8px;
    display: block;
}

.calc-basket-item-s-block {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}
.calc-basket-item-s-block span {
    flex: 1;
    text-align: right;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
}
.calc-basket-item-s-control {
    display: flex;
    flex-direction: row;
    border-radius: 8px;
    background: var(--color-white);
    width: 144px;
    height: 48px;
    align-items: center;
}
.calc-basket-item-s-control input {
    border: none;
    text-align: right;
    height: 48px;
    flex: 1;
    width: auto;
    min-width: 1px;
}
.calc-basket-item-s-btn {
    width: 36px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: uns;
}
.no-select {
    -webkit-user-select: none;  /* Chrome, Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
    user-select: none;          /* Современные браузеры */
}
.calc-basket-total {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 2px solid #fff;
}
.calc-order-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}
.calc-order-form .calc-order-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.calc-order-form .calc-order-control input {
    border: none;
    background: white;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 16px;
}
@media (max-width: 768px) {
    .calc-container {
        flex-direction: column;
    }
    .calc-wizard,
    .calc-basket {
        width: 100%;
    }
    .calc-product-item {
        flex-direction: column;
    }
    .calc-product-param {
        flex-direction: column;
        align-items: flex-start;
    }
    .calc-param-values {
        flex-wrap: wrap;
    }
    .calc-product-actions {
        flex-direction: row;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }
    .calc-thickness-filter {
        padding: 20px 20px 24px;
    }
}