#cartTable {
    width: 100%;
    border-collapse: collapse;
}

.cart-table {
    margin: 20px 0 80px 0;
}

.cartTable table,
th {
    padding: 20px;
}

.cartTable table,
th {
    width: 5%;
    text-align: left;

}

.cartTable table,
th:first-child {
    width: 90%;
    text-align: left;
}

.cartTable th,
td {
    padding: 20px;
    text-align: center;
    border-top: 2px solid #f3f3f3;
    border-bottom: 2px solid #f3f3f3;
    vertical-align: middle;
}

.cartTable th {
    /* background-color: #f2f2f2; */
}

.cart-wrapper {
    min-height: 70vh;
}

.item-cart {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    cursor: pointer;
}

.item-cart-img {
    width: 60px;
    height: 60px;
}

.item-cart-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-cart-desc {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.delete-btn {
    background-color: #ffffff;
    border: none;
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.delete-btn:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #999999;
    left: 0;
    top: 50%;
    transform: rotate(-45deg);
    border-radius: 4px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.delete-btn:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #999999;
    left: 0;
    top: 50%;
    transform: rotate(45deg);
    border-radius: 4px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.item-cart-desc p:nth-child(1) {
    font-weight: 700;
    border-bottom: 1px solid #999999;
}

.item-cart-desc p:nth-child(1) span {
    font-weight: normal;
}

.item-cart-desc p:nth-child(2) {
    font-size: 12px;
    color: #999999;
}

.item-cart-desc p:nth-child(3) {
    font-size: 12px;
}

.form-title {
    line-height: 66px;
    border-bottom: 5px solid #242424;
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 22px;
}

.form-container {
    display: flex;
    gap: 20px;
    margin: 0 0 60px 0;
}

.form-desc p {
    line-height: 24px;
    font-size: 14px;
}

.form-main form label {
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.form-main form input[type="text"] {
    width: 100%;
    margin: 6px 0 0 0;
    display: inline-block;
    background: #FFF;
    border: 2px solid #d9d9d9;
    border-radius: 2px;
    width: 100%;
    height: 40px;
    font: inherit;
    line-height: 1.42857;
    color: inherit;
    padding: 7px 14px;
    vertical-align: middle;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.form-main form input[type="email"] {
    width: 100%;
    margin: 6px 0 0 0;
    display: inline-block;
    background: #FFF;
    border: 2px solid #d9d9d9;
    border-radius: 2px;
    width: 100%;
    height: 40px;
    font: inherit;
    line-height: 1.42857;
    color: inherit;
    padding: 7px 14px;
    vertical-align: middle;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.form-main form input[type="tel"] {
    width: 100%;
    margin: 6px 0 0 0;
    display: inline-block;
    background: #FFF;
    border: 2px solid #d9d9d9;
    border-radius: 2px;
    width: 100%;
    height: 40px;
    font: inherit;
    line-height: 1.42857;
    color: inherit;
    padding: 7px 14px;
    vertical-align: middle;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.form-main form input[type="radio"] {
    display: none;
}

.custom-radio {
    display: inline-block;
    position: relative;
    border: 2px solid #D9D9D9;
    border-radius: 10px;
    width: 10px;
    height: 10px;
    vertical-align: top;
    margin-right: 6px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    -moz-transition: background-color 0.3s, border-color 0.3s;
    -ms-transition: background-color 0.3s, border-color 0.3s;
    -o-transition: background-color 0.3s, border-color 0.3s;
}

/* Стили для выбранной радиокнопки */
input[type="radio"]:checked+.custom-radio {
    /* background-color: #000; */
}

input[type="radio"]:checked+.custom-radio:before {
    content: "";
    background-color: #242424;
    border-radius: 6px;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 2px;
    top: 2px;
}

/* Стили для состояния при наведении */
.custom-radio:hover {
    border-color: #999999;
}

.type-client {
    display: flex;
    align-items: center;
    gap: 6px;
}

.type-client label {
    margin: 0 0 0 4px !important;
    display: flex;
    align-items: center;
    cursor: pointer;

}

.spec-input {
    display: flex;
    gap: 20px;
}

.form-main form input[type="checkbox"] {
    width: auto;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

.req-star {
    color: red;
    font-size: 12px;
    vertical-align: top;
}

textarea {
    display: inline-block;
    background: #FFF;
    border: 2px solid #d9d9d9;
    border-radius: 2px;
    width: 100%;
    height: 150px;
    font: inherit;
    line-height: 1.42857;
    color: inherit;
    padding: 10px 0 0 14px;
    margin: 6px 0 0 0;
    vertical-align: middle;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.fields-list li:first-child {
    margin: 0 0 0 0;
}

.fields-list li:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fields-list li:last-child label {
    font-weight: 400;
    text-transform: lowercase;
}

.fields-list li:last-child input {
    display: inline-block;
    background: none;
    border: 2px solid #242424;
    border-radius: 2px;
    min-width: 175px;
    height: 40px;
    line-height: 37px;
    padding: 0 25px;
    margin-bottom: 0;
    font-size: 12px;
    letter-spacing: 0.7px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    -webkit-user-select: none;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
}

.fields-list li:last-child input:hover {
    transition: background-color 0.3s, border-color 0.3s;
    background-color: #242424;
    color: #ffffff;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
}

.fields-list li {
    margin: 14px 0 0 0;
}

.page-information-main {
    min-height: inherit;
}

.page-information {
    min-height: inherit;
    margin-bottom: 0;
}

.breadcrumbs-nav li {
    position: relative;
}

.catalog-main-img {
    position: absolute;
    right: 0;
    top: -30px;
    right: -30px;
}
@media(max-width: 991px) {
    .item-cart-desc p {
        text-align: left;
        
    }
    .item-cart-desc p:nth-child(1) {
        border: none;
    }
    .item-cart {
        display: flex;
        flex-direction: column;
    }
}


@media(max-width: 600px) {
    .cartTable table,
    th {
        padding: 10px 10px;
    }
    .cartTable th, td {
        padding: 10px 0;
    }
    .delete-btn {
        margin: 0 10px;
    }
    .quantity {
        width: 50px;
    }
    .add-area {
        justify-content: flex-end;
    }
}