:root {
    --primary-color: #caa048;
}

.status-label .cancelled {
    color: red;
}

.status-label .done {
    color: green;
}

.status-label .ready {
    color: green;
}

.modal-header .title {
    font-size: 20px;
    margin: 0;
}

/*Top Admin Line*/
.admin-line {
    background-color: #233237;
    padding: 15px;
    color: #eeeeee;
    position: relative;
    z-index: 1001;
    margin: 0!important;
    height: 50px;
    width: 100%;
}

.admin-line li {
    display: inline-block;
}

.admin-line a {
    font-size: 14px;
    padding: 0 10px;
    color: #fff;
}

@media (max-width: 991px) {
    .admin-line {
        display: none;
    }
}

.cab-item {
    margin-bottom: 30px;
}

.cab-item a {
    display: block;
    height: 240px;
    padding: 20px;
    text-align: center;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: #fff;
}

.cab-item a:hover {
    color: var(--primary-color);
}

.cab-item a .img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 150px;
}

.cab-item a .img-box svg {
    max-width: 80px;
    max-height: 80px;
    fill: var(--primary-color);
}

.order-tabs {
    margin-bottom: 60px;
}

.order-tabs .nav-tabs .nav-link {
    background: #f4f4f4;
    border-bottom: 0 !important;
}

.order-tabs .nav-tabs .nav-link.active {
    background: #fff;
    color: var(--primary-color);
}

.order-tabs .card-body {
    padding: 40px;
    background: #fff;
}

.order-table table {
    width: 100%;
}

.order-table table tr th {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #333333;
    padding: 15px;
    border-bottom: 2px solid #eaeaea;
}

.order-table table tr th:first-child {
    padding-left: 0;
}

.order-table table tr td {
    font-size: 14px;
    color: #333333;
    padding: 30px 15px;
    border-bottom: 2px solid #eaeaea;
    vertical-align: top;
    line-height: 24px;
}

.order-table table tr td:first-child {
    padding-left: 0;
}

.order-table table tr td:last-child {
    text-align: right;
    padding-right: 0;
}

.order-table.bonus-table table tr td:last-child {
    text-align: left;
}

.order-table table tr td span {
    font-size: 12px;
    color: #666666;
    display: block;
    margin-top: 10px;
}

.order-table table tr td span.green {
    color: #2da157;
}

.order-table table tr:last-child td {
    border-bottom: 0;
}

.product-list .inner {
    overflow: hidden;
    max-height: 135px;
}

.product-list .item {
    margin-bottom: 25px;
}

.product-list .item p {
    margin-bottom: 10px;
    color: #333333;
    text-align: left;
}

.product-list .item .line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -8px;
}

.product-list .item .line span {
    margin: 0;
    padding: 0 8px;
}

.product-list .view-all {
    margin-top: 20px;
    text-align: center;
}

.product-list .view-all a {
    display: inline-block;
    vertical-align: top;
    position: relative;
    font-weight: 500;
    font-size: 10px;
    text-transform: uppercase;
    padding-right: 10px;
    color: #333333;
    text-decoration: none;
}

.product-list .view-all a:before {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    right: -5px;
    width: 6px;
    height: 10px;
    background: url(../img/cms/icons.png) -57px -60px no-repeat;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.product-list.open .inner {
    max-height: 2500px;
}

.product-list.open .view-all a:before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.nav-btn {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 7px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.nav-btn:hover, .nav-btn:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.nav-btn.cancel {
    color: #f73c3c;
    border-color: #fa8893;
}

.nav-btn.cancel:hover, .nav-btn.cancel:focus {
    background: #fa8893;
    color: #fff;
}
/** CART AND ORDER **/
.buy-btn {
    width: 100%;
    display: block;
    padding: 18px 40px;
}

.btn.added {
    background-color: #2da157!important;
}

.btn.added:hover {
    background-color: #64bb84!important;
}

.btn:after {
    display: none;
}


.cart-box {
    background: #fff;
    padding: 20px 40px;
}

.cart-box table {
    width: 100%;
}

.cart-box table tr td {
    padding: 28px 15px;
    border-bottom: 2px solid #eaeaea;
    position: relative;
}

.cart-box table tr td:first-child {
    padding-left: 0;
    vertical-align: middle;
    width: 135px;
    max-width: 135px;
}

.cart-box table tr td:nth-child(3) {
    text-align: center;
}

.cart-box table tr td:last-child {
    padding-left: 0;
    padding-right: 0;
    width: 18px;
    max-width: 18px;
}

.cart-box table tr:last-child td {
    border-bottom: 0;
}

.cart-box .img-box {
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.cart-box .img-box img {
    max-width: 100%;
}

.cart-box .name {
    height: 47px;
    overflow: hidden;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333333;
}

.cart-box .name a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #333333;
    font-size: 16px;
}

.cart-box .name a:hover {
    color: var(--primary-color);
}

.cart-box .code {
    margin-bottom: 0;
    color: #747474;
    position: relative;
    top: 4px;
}

.cart-box .spinner-box {
    display: inline-block;
    vertical-align: top;
    width: 120px;
    margin-bottom: 20px;
}

.cart-box .ui-spinner {
    height: 48px !important;
    padding: 0 44px;
}

.cart-box .ui-spinner-button {
    width: 44px;
    height: 48px;
}

.cart-box .ui-spinner-input {
    height: 48px;
    padding: 5px 0;
    line-height: 38px;
    font-size: 14px;
    outline: none !important;
    border: none !important;
    margin: 0;
}

.cart-box .price {
    text-align: center;
    font-size: 14px;
}

.cart-box .action-price {
    text-align: center;
    margin-bottom: 0;
    white-space: nowrap;
    position: absolute;
    bottom: 33px;
}

.cart-box .last-price {
    font-size: 14px;
    margin-right: 15px;
}

.cart-box .total-price {
    margin: -20px 0 0 0;
    color: #2da157;
    white-space: nowrap;
    /* min-height: 28px; */
    min-width: 120px;
}

.cart-box .close {
    display: block;
    opacity: 1 !important;
    width: 16px;
    height: 16px;
    padding: 0;
    background: url(../img/cms/icons.png) -97px -120px no-repeat;
    margin-top: -20px;
}

img.cart-img {
    max-width: 150px;
    max-height: 100px;
}

.cart-table td, .cart-table th {
    padding: 10px;
    border: 1px #ebebeb solid;
}

.cart-table {
    width: 100%;
    display: grid;
    margin: 50px 0 0 0;
}

.order-info {
    background: #f4f4f4;
    padding: 35px 40px 40px;
}

.order-info-additional {
    margin-top: -85px;
}

.order-info .title {
    text-align: center;
    border-bottom: 0;
    padding-bottom: 0;
    font-size: 20px;
    text-transform: uppercase;
}

.order-info .btn, .order-info .filter-btn {
    width: 100%;
    margin-bottom: 13px;
}

.order-info .btn:after, .order-info .filter-btn:after {
    display: none;
}

.order-list {
    margin-bottom: 55px;
}

.order-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 2px solid #e0e0e0;
    font-size: 14px;
    color: #333333;
}

.order-list li:last-child {
    border-bottom: 0;
}

.order-list li span {
    max-width: 48%;
}

.order-list li span:nth-child(2) {
    font-weight: 700;
    text-align: right;
}

.order-list .price {
    font-size: 14px;
    margin-bottom: 0;
}

.order-list .sale {
    color: #2da157;
}

.order-total {
    text-align: right;
    margin: 20px 20px 50px 0;
}

.order-total span {
    display: inline;
}

.order-total .title {
    position: relative;
    z-index: 1;
    font-size: 14px;
    margin-bottom: 28px;
}

.order-total .title:before {
    display: block;
    position: absolute;
    content: '';
    z-index: -1;
    top: 50%;
    margin-top: -1px;
    left: 0;
    right: 0;
    border-bottom: 2px solid #e0e0e0;
}

.order-total .title span {
    display: inline-block;
    vertical-align: top;
    padding: 0 20px;
    background: #f4f4f4;
}

.order-total .price {
    text-align: center;
    margin-bottom: 0;
    font-size: 20px;
    color: #333333;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Rubik-Regular';
}

.promocode {
    margin-bottom: 55px;
}

.promocode .apply {
    text-align: center;
}

.promocode .apply a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px dashed var(--primary-color);
}

.promocode .apply a:hover {
    border-bottom-color: transparent;
}

.one-click {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.one-click a {
    display: inline-block;
    vertical-align: top;
    color: var(--primary-color);
}

.order-item {
    margin-bottom: 25px;
}

.order-item .item-in {
    display: none;
    background: #fff;
    padding: 40px 40px 60px;
}

.order-item.open {
    display: block;
}

.order-item.open .item-in {
    display: block;
}

.step-title {
    padding: 30px 40px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.step-title .num {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
    max-width: 70px;
}

.step-title .num span {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid #f0f0f0;
    background: #f0f0f0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
}

.step-title .name {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
}

.open .step-title {
    background: #f4f4f4;
}

.open .step-title .num span {
    border-color: #666666;
}


.products {
    font-size: 14px;
    color: #333333;
    text-align: right;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
}

.products span {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 230px;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.products span:before {
    display: block;
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}

.products strong {
    font-weight: 700;
}

.products .change {
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    margin-left: 27px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
}

.radio-box {
    margin-bottom: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.radio-box input {
    position: absolute;
    top: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    left: 0;
    margin: 0;
}

.radio-box input:checked {
    z-index: 1;
}

.radio-box input:checked + label {
    opacity: 1;
    cursor: default;
}

.radio-box input:not(:checked) + label:hover {
    opacity: .5;
}

.radio-box label {
    color: #333333;
    opacity: .33;
    -webkit-transition: opacity .25s ease;
    -o-transition: opacity .25s ease;
    transition: opacity .25s ease;
    cursor: pointer;
    display: inline-block;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 32px;
}

.radio-box label:first-child,
.radio-box label.first-label {
    margin-right: 90px;
}

.radio-box .toggle-outside {
    position: absolute;
    height: 32px;
    background: #f0f0f0;
    padding: 5px;
    width: 55px;
    overflow: hidden;
    -webkit-transition: .25s ease all;
    -o-transition: .25s ease all;
    transition: .25s ease all;
    top: 0;
    left: 150px;
}

.radio-box .toggle-inside {
    position: absolute;
    -webkit-transition: .25s ease all;
    -o-transition: .25s ease all;
    transition: .25s ease all;
    height: 24px;
    width: 24px;
    background: var(--primary-color);
    top: 4px;
}

.radio-box input:checked ~ .toggle-outside .toggle-inside {
    left: 5px;
}

.radio-box input ~ input:checked ~ .toggle-outside .toggle-inside {
    left: 26px;
}

.radio-1 label {
    text-transform: none;
}

.radio-1 .toggle-outside {
    left: 100px;
}

.radio-2 label {
    text-transform: none;
}

.radio-2 .toggle-outside {
    left: 185px;
}

.field-contactform-agreement input,
.field-contactform-agreement label {
    display: inline-block;
    margin-right: 10px;
}

.star {
    font-size: 14px;
    color: #ff5555;
}

.form-line {
    width: 586px;
    max-width: 100%;
}

.out-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.out-line .jcf-select {
    width: 110px;
    margin: 0 27px 0 0;
}

.form-style p {
    margin-bottom: 50px;
}

.form-style .form-group {
    margin-bottom: 20px;
}

.form-style .form-group.has-indent {
    margin-bottom: 60px;
}

.form-style .form-group.has-sel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form-style .form-group.has-sel label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
}

.form-style .form-group.has-sel .form-control {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
}

.form-style .form-control {
    background: #f0f0f0;
}

.form-style .plus-btn {
    margin-top: 31px;
    display: block;
    text-decoration: none;
    position: relative;
    height: 48px;
    width: 48px;
    margin-left: 27px;
    background: #f0f0f0;
}

.form-style .plus-btn:before {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: transparent;
}
.form-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
}

.form-btns.has-indent {
    margin-bottom: 20px;
}

.form-btns .btn, .form-btns .filter-btn {
    padding: 15px 80px;
    white-space: nowrap;
}

a.go, span.go {
    display: inline-block;
    vertical-align: top;
    margin-left: 25px;
    color: #666666;
    text-decoration: none;
}

a.go:hover, a.go:focus,
span.go:hover, span.go:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.radio-list {
    position: relative;
    padding-bottom: 10px;
}

.radio-list input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.radio-list label {
    display: block;
    margin-bottom: 15px;
    text-transform: none;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    padding-left: 40px;
    color: #333333;
    cursor: pointer;
}

.radio-list label strong {
    font-weight: 700;
}

.radio-list label:before {
    display: block;
    position: absolute;
    content: '';
    top: 2px;
    left: 0;
    z-index: 1;
    width: 20px;
    height: 20px;
    background: #f0f0f0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.radio-list label:after {
    display: block;
    position: absolute;
    content: '';
    z-index: 2;
    top: 7px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    opacity: 0;
}

.radio-list input:checked + label:after {
    opacity: 1;
}

.step-total-price {
    margin-bottom: 30px;
}

.step-total-price .price {
    text-align: left;
    margin-bottom: 0;
    font-size: 28px;
}

.step-total-price h3 {
    margin-bottom: 15px;
}

.payment {
    padding-bottom: 5px;
}

.pay-item {
    position: relative;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    cursor: pointer;
}

.pay-item input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.pay-item label {
    display: block;
    position: relative;
    margin-bottom: 0;
    height: 100%;
    padding: 40px 20px 70px;
    background: #f4f4f4;
    border: 2px solid #f4f4f4;
    cursor: pointer;
}

.pay-item label:before {
    bottom: 28px;
    left: 50%;
    margin-left: -10px;
    z-index: 1;
    width: 20px;
    height: 20px;
    background: #dedede;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.pay-item label:after {
    z-index: 2;
    bottom: 33px;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    opacity: 0;
}

.pay-item .ico-box {
    display: block;
    text-align: center;
    margin: 0 0 30px;
    padding: 0;
    height: 50px;
}

.pay-item .ico-box img {
    vertical-align: top;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.7;
}

.pay-item strong {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 26px;
    margin: 5px auto;
    max-width: 97%;
}

.pay-item p {
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    color: #333333;
    line-height: normal;
    margin-bottom: 25px;
}

.pay-item .card-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pay-item .card-icons img {
    margin: 0 10px;
}

.pay-item input:checked + label {
    background: #fff;
    border-color: var(--primary-color);
}

.pay-item input:checked + label:after {
    opacity: 1;
}

.pay-item input:checked + label .ico-box img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}

.note-info {
    margin-left: 27px;
    line-height: 18px;
    font-size: 13px;
}

.note-info a {
    display: inline-block;
    vertical-align: top;
    color: var(--primary-color);
}

.attention {
    padding: 20px;
    background: #e9f3f7;
    font-size: 12px;
    line-height: 18px;
    color: #333333;
}

.order-accept p {
    color: #333333;
}

.num-order {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 700;
    color: #333333;
}
@media (max-width: 767px) {
    .cart-box table tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
    }

    .cart-box table tr td {
        display: block;
        padding: 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .cart-box table tr td:first-child {
        border-bottom: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
        flex: 0 0 130px;
        max-width: 130px;
    }

    .cart-box table tr td:nth-child(2) {
        border-bottom: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 130px);
        flex: 0 0 calc(100% - 130px);
        max-width: calc(100% - 130px);
        padding-right: 30px;
    }

    .cart-box table tr td:nth-child(3) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 0;
    }

    .cart-box table tr td:nth-child(4) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
        flex: 0 0 49%;
        max-width: 49%;
        padding-right: 0;
    }

    .cart-box table tr td:last-child {
        width: 1%;
    }

    .cart-box .close {
        position: absolute;
        right: 0;
        top: 13px;
        margin-top: 0;
    }

    .step-title .name {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    a.go, span.go {
        margin: 15px 0 0 0;
    }

    .cab-item a {
        height: 150px;
        padding: 15px;
        font-size: 12px;
        line-height: 18px;
    }

    .cab-item a .img-box {
        height: 80px;
    }

    .cab-item a .img-box img {
        max-width: 35%;
    }

    .order-tabs .card-body {
        padding: 15px;
    }

    .order-table {
        overflow: visible;
    }

    .order-table table {
        max-width: 100%;
    }

    .order-table table tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .order-table table tr th {
        display: none;
    }

    .order-table table tr td {
        display: block;
        padding: 5px 10px;
    }

    .order-table table tr td:first-child, .order-table table tr td:nth-child(2), .order-table table tr td:nth-child(3) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333%;
        flex: 0 0 33.3333333%;
        max-width: 33.3333333%;
        padding-left: 10px;
        text-align: center;
    }

    .order-table table tr td:nth-child(4), .order-table table tr td:nth-child(5), .order-table table tr td:nth-child(6), .order-table table tr td:nth-child(7) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-table table tr td:nth-child(4) span, .order-table table tr td:nth-child(5) span {
        position: relative;
        display: inline-block;
        vertical-align: top;
        margin-top: 0;
    }

    .order-table table tr td:nth-child(4) span:before, .order-table table tr td:nth-child(5) span:before {
        display: inline-block;
        vertical-align: top;
        content: '-';
        color: #666666;
        margin-right: 3px;
    }

    .order-table table tr td:nth-child(6) {
        border-bottom: 0;
    }

    .order-table table tr td:nth-child(7) {
        text-align: center;
        padding: 5px 10px 15px;
    }

    .product-list {
        max-width: 100%;
    }

    .product-list .item {
        margin-bottom: 10px;
    }

    .product-list .item p {
        margin-bottom: 0;
        white-space: normal;
    }

    .product-list .item .line {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .product-list .inner {
        max-height: 105px;
    }

    .product-list .view-all {
        margin-top: 10px;
    }

    .order-table table tr:last-child td:nth-child(7) {
        border-bottom: 2px solid #eaeaea;
    }
}
@media (max-width: 577px) {
    .cart-box {
        padding: 15px;
    }

    .cart-box .name {
        height: auto;
    }

    .cart-box .img-box {
        height: 60px;
        width: 60px;
    }

    .cart-box table tr td {
        padding: 10px 5px;
    }

    .cart-box table tr td:first-child {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
        flex: 0 0 70px;
        max-width: 70px;
    }

    .cart-box table tr td:nth-child(2) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 70px);
        flex: 0 0 calc(100% - 70px);
        max-width: calc(100% - 70px);
    }

    .order-info {
        padding: 15px;
    }

    .form-btns {
        display: block;
        text-align: center;
        margin-top: 0;
    }

    a.go, span.go {
        margin: 15px 0 0 0;
    }

    .step-title {
        padding: 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .step-title .name {
        font-size: 14px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 47px);
        flex: 0 0 calc(100% - 47px);
        max-width: calc(100% - 47px);
    }

    .step-title .num {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 47px;
        flex: 0 0 47px;
        max-width: 47px;
    }

    .step-title .num span {
        width: 32px;
        height: 32px;
        line-height: 28px;
        font-size: 14px;
    }

    .products {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 15px 0 0 47px;
        text-align: left;
    }

    .order-item .item-in {
        padding: 20px 15px;
    }

    .radio-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 315px;
        max-width: 100%;
    }

    .radio-box label.first-label {
        margin-right: 0;
    }

    .radio-box label {
        font-size: 10px;
    }

    .radio-box .toggle-outside {
        left: 112px;
    }

    .out-line .jcf-select {
        margin-right: 15px;
        width: 90px;
    }

    .form-style .plus-btn {
        margin-left: 15px;
    }

    .radio-box .toggle-outside {
        left: 127px;
    }

    .pay-item label {
        padding: 10px 40px 10px 70px;
    }

    .pay-item label strong {
        font-size: 12px;
        line-height: 18px;
    }

    .pay-item label .ico-box {
        left: 10px;
        top: 15px;
        width: 50px;
    }

    .pay-item label .ico-box img {
        max-width: 100%;
    }

    .cabinet-box {
        margin-left: -7px;
        margin-right: -7px;
    }

    .cabinet-box div[class^="col-"] {
        padding-left: 7px;
        padding-right: 7px;
    }

    .cab-item {
        margin-bottom: 15px;
    }

    .cab-item a .img-box {
        margin-bottom: 10px;
    }

    .nav-btn {
        width: 100%;
    }
}
@media (max-width: 370px) {
    .radio-box,
    .form-style .plus-btn {
        display: none;
    }

    .out-line {
        display: block;
    }

    .out-line .form-line {
        max-width: 100%;
    }

    .order-table table tr td,
    .order-table table tr td:first-child,
    .order-table table tr td:last-child {
        padding: 5px;
    }

    .order-table table tr td:last-child {
        padding-bottom: 15px;
    }
}
/** CART AND ORDER END **/

div iframe {
    max-width: 100%;
}