.nax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.switch-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-area-btn {
    width: 100%;
}

label.change-unit-switch {
    position: relative;
}

.slider1 {
    position: relative;
    cursor: pointer;
    background-color: #0000001a;
    transition: .4s;
    width: 40px;
    display: flex;
    height: 16px;
    border-radius: 34px;
}


.slider1:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: -1px;
    bottom: -3px;
    background-color: #ff5e2b;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

input:checked+.slider1:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translate(22px);
    border-radius: 50%;
}

.qty-area-field.quantity {
    width: 100%;
    display: flex;
}
span.nax-quantity-label {
    font-weight: 700;
    color: #000;
}
.nax-row.row-quantity {
    flex-direction: column;
    padding: 10px 0;
}

.qty-area-field.quantity input.input-text.qty.text {
    width: calc(100% - 50px);
}

.nax-row .total-text .text {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.nax-row .price {
    font-size: 25px;
    font-weight: 700;
}

.nax-row .price-sufix {
    color: #767676;
}
p.nax-custom-text {
    margin: 0;
}