/*cart*/
.cart-container {
    position: absolute;
    top: 43px;
    right: 0;
    width: 350px;
    z-index: 11;
    background-color: #fff;
    padding: 10px 15px 20px;
    text-align: left;
    display: none;
    border-top: 2px solid #d9d9d9;
    font-family: "Inter", sans-serif;

    -webkit-box-shadow: 0 15px 25px 0 rgba(0, 0, 0, .25);
    -moz-box-shadow: 0 15px 25px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 15px 25px 0 rgba(0, 0, 0, .25);
}

.cart-container:before {
    content: "";
    width: 100%;
    height: 25px;
    position: absolute;
    left: 0;
    top: -26px;
}

.cart-widget:after {
    content: "";
    height: 2px;
    width: 350px;
    position: absolute;
    right: 0;
    bottom: -21px;
    background-color: var(--color-primary);
    display: none;
    z-index: 11;
}

.cart-widget:hover:after {
    display: block;
}

.cart-widget:hover .cart-container {
    display: block;
}

.cart-container .cart-result {
    border-bottom: 1px solid #ddd;
    max-height: 340px;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
}

.cart-container .cart-result .product-image img {
    width: 100%;
}

.cart-container .cart-result .result-row {
    padding: 15px 0;
    border-bottom: 1px solid #d9d9d9;
}

.cart-container .cart-result .result-row:last-of-type {
    border: 0;
}

.cart-container .cart-result .product-title {
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    position: relative;
    display: block;
    margin: 0 0 10px 0;
}

.cart-container .cart-result .product-remove {
    position: relative;
    top: -4px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    font-weight: normal;
    color: #82817C;
}

.cart-container .cart-result .product-mill {
    color: #cecece;
}

.cart-container .cart-total {
    font-size: 15px;
    padding: 14px 0 10px 0;
    color: #7F8282;
    font-weight: 500;
}

.cart-container .cart-result .product-amount {
    color: #716F6F;
    font-size: 12px;
    font-weight: 500;
}

.cart-container .cart-result .product-amount span {
    font-size: 14px;
    line-height: 18px;
    color: #40414E;
    font-weight: 600;
    vertical-align: text-top;
    margin-right: 4px;
}

.cart-container .cart-result .product-amount small {
    font-size: 14px;
    line-height: 18px;
    color: #6A6665;
}

.cart-container .empty-cart {
    padding: 20px;
    text-align: center;
    color: #cecece;
}

.cart-container .empty-cart img {
    margin: 0 auto 15px;
    display: block;
    height: 60px;
}

.cart-container .cart-total span {
    float: right;
    color: #37394A;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
}

.cart-container .btn {
    width: 100%;
    display: block;
    margin: 5px 0 0 0;
    font-family: "Alumni Sans", sans-serif;
}

.cart-empty {
    text-align: center;
}

.cart-empty img {
    height: 150px;
    margin: 0 0 10px 0;
}

.cart {
    padding: 45px 0 100px;
}

.cart h1 {
    margin: 0 0 8px 0;
    font-weight: bold;
}

.back-to-shop {
    font-size: 15px;
    color: #868695;
    text-decoration: underline;
}

.back-to-shop i {
    font-size: 17px;
    margin-right: 2px;
}

.back-to-shop + .cart-headings {
    margin-top: 20px;
    font-size: 15px;
}

.guarante-cart img {
    margin-right: 5px;
}

.cart-list {
    background-color: var(--color-light);
    padding: 10px 0;
}
.cart-list .cart-row.out-of-stock{
    opacity: 0.6;
    border:1px solid;
    border-color:red;
}

.promo-code {
    padding: 25px 25px 25px 25px;
    margin: 0 0 25px 0;
    border: 1px solid #ccc;
}

.cart h4 {
    font-size: 22px;
    line-height: 26px;
}

.cart .sticky-top .delivery-hint span {
    color: #2A6E00;
    display: block;
    margin-bottom: 8px;
}

.cart .sticky-top .delivery-hint p {
    font-size: 14px;
}

.promo-code input {
    padding-left: 15px;
}

.promo-code p {
    margin-bottom: 15px;
}

.promo-code .btn {
    display: block;
    padding: 12px 14px;
}

.promo-code .btn img {
    margin-top: -4px;
}

.promo-code .btn:hover {
}

.cart-list .product-name {
    margin: 0 0 5px 0;
    display: inline-block;
    line-height: 24px;
    color: #000;
}

.cart-list .product-name:hover {
    color: var(--color-primary-blue);
}

.cart-list .product-img img {
    width: 100%;
}

.cart-list .product-old-price {
    color: #716F6F;
    font-size: 12px;
}

.cart-list .product-desc {
    font-size: 15px;
    line-height: 20px;
    color: #5A5E5E;
}

.cart-list .product-desc div {
    margin-bottom: 5px;
}

.cart-list .product-prices .old-price {
        color: #5A5E5E;
        text-decoration: line-through;
        line-height: 25px;
}

.cart-list .product-prices .price {
    color: #D72C36;
}

.cart-list .cart-product-price {
    font-size: 15px;
    color: #40414E;
    font-weight: 500;
}

.product-quantity {
    position: relative;
    border: 1px solid #CCCCCC;
    font-family: 'Alumni Sans', sans-serif;
}

.product-quantity input[type=number] {
    width: 100%;
    text-align: center;
    border: 0;
    height: 42px;
    font-size: 18px;
    line-height: 42px;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.product-quantity button {
    background-color: #fff;
    border: 0;
    color: #ABACB2;
    position: absolute;
    font-size: 25px;
    top: 0;
    height: 42px;
    width: 40px;
    outline: none;
}

.product-quantity .minus {
    left: 0;
    border-right: 1px solid #ccc;
}

.product-quantity .plus {
    right: 0;
    border-left: 1px solid #ccc;
}

.cart-list .product-quantity input[type=number] {
    height: 35px;
    font-size: 16px;
    line-height: 45px;
    background: transparent;
}

.cart-list .product-quantity button {
    height: 35px;
    background: transparent;
    width: 29px;
    color: var(--color-primary);
    font-weight: 700;
}

.cart-list .product-quantity button.minus {
    line-height: 15px;
}

.cart-list .total-price {
    font-size: 16px;
    line-height: 19px;
    color: #000;
    font-weight: 700;
    padding-right: 18px;
}

.cart-list .remove-product {
    opacity: 1;
    width: auto;
    margin: 0;
    position: static;
}

.cart-list .remove-product img {
    width: auto;
}

.cart-list .btn-icons {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: -17px;
    margin-right: 5px;
}

.cart-list .btn-icons img:hover {
    opacity: 0.7;
}

.cart-list .btn-icons .add-shopping-cart {
    margin-bottom: 10px;
    display: block;
}

.cart-delivery-hint {
    background-color: #EDDDCD;
    padding: 11px 15px;
    margin: 20px 0 20px 0;
    font-size: 15px;
}

.cart-headings {
    padding: 10px 25px;
    color: #5A5E5E;
}

.cart-list .cart-row {
    padding: 15px;
    border-bottom: 4px solid #fff;
}

.cart-list .cart-row .package-discounts .badge {
    font-size: 13px;
    margin: 5px 0;
}

.cart-list .cart-row:last-of-type {
    border: 0;
}

.total {
    padding: 25px 25px 4px 25px;
    border: 1px solid #CCCCCC;
    border-bottom: 0;
}

.total.with-border {
    border-bottom: 1px solid #CCCCCC;
    padding: 25px 0 10px 0;
}

.total.with-border h3 {
    padding: 0 20px;
}

.total.with-border .sum {
    padding: 16px 20px 0 20px;
}

.total h3 {
    margin: 0 0 25px 0;
    color: var(--color-primary);
    font-size: 22px;
    line-height: 30px;
    text-transform: inherit;
    text-align: center;
}

.total .product-row {
    margin: 0;
    background: var(--color-light);
    border-bottom: 3px solid #fff;
    padding: 15px 10px;
}
.total .product-row.out-of-stock{
    opacity: 0.6;
    border:1px solid;
    border-color:red;
}

.total .product-row .product-img {
    margin-right: 15px;
}

.checkout .total .product-row .product-name {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.total .product-row .product-desc {
    font-size: 13px;
    line-height: 18px;
}

.total .product-row .product-old-price {
    text-decoration: line-through;
    font-size: 12px;
}

.total .product-row .product-quantity input {
    background: transparent;
    color: #5A5E5E;
}

.total .product-row .product-quantity button {
    background: transparent;
    color: var(--color-primary);
}

.total .total-hint {
    padding: 20px 25px 20px 60px;
    position: relative;
    border-top: 1px solid #e3e2e2;
    background-color: #FBFAF9;
    margin: 0 0 0 0;
}

.total .total-hint p {
    color: #6A6665;
}

.total .total-hint p:last-of-type {
    margin: 0;
}

.total .total-hint img {
    position: absolute;
    top: 25px;
    left: 20px;
}

.total .sum ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.total .sum ul li span {
    text-align: right;
}

.total .sum ul li span.total-price {
    position: relative;
}

.total-action {
    padding: 10px 25px 25px 25px;
    border: 1px solid #ccc;
    border-top: 0;
    background-color: #fff;
    margin-bottom: 35px;
}

.total-action .pay-online {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.total-action .pay-online li {
    margin-right: 5px;
    margin-top: 10px;
}

.total-action .pay-online li a:hover {
    opacity: 0.7;
}

.total-action .pay-online li:last-child {
    margin-right: 0;
}

.total-action .checkbox {
    margin: 0 0 8px 0;
}

.total-action .checkbox .form-group {
    margin-bottom: 9px;
}

.total-action .sum {
    margin-bottom: 30px;
}

.total-action .btn {
    display: block;
    font-size: 16px;
}

.guarante-cart {
    text-align: center;
    margin: 14px 0 0 0;
}

.sticky-top {
    top: 180px;
    z-index: 3;
}

.remove-product:focus {
    outline: none;
}


.remove-product {
    outline: none;
    border: 0;
    background-color: transparent;
    margin-left: 10px;
    position: absolute;
    top: 4px;
    right: 8px;
    width: 24px;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

button.remove-product:hover img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7481%) hue-rotate(301deg) brightness(100%) contrast(100%);
}
@media(min-width: 1200px) and (max-width: 1250px){
    .remove-product {
        top: -3px;
        right: -5px;
    }
}

.remove-product:hover {
    opacity: 1;
}


.mb-cart-heading {
    display: none;
}

.checkout {
    padding: 0 0 100px 0;
}

.checkout .payment-method {
    margin: 0 0 15px 0;
}

.order-payment {
    background-color: #FBFAF9;
    padding: 25px;
}

.order-payment .payment-method {
    position: relative;
}

.order-payment .payment-method.payment-card label img {
    height: 19px;
}

.order-payment .payment-method label .payment-icon {
    position: absolute;
    top: 28px;
    right: 20px;
}

.order-payment .payment-method label .payment-icon img {
    max-height: 40px;
    display: block;
}

.order-delivery {
    border: 1px solid #CCCCCC;
    padding: 25px 25px 5px 25px;
    margin: 0 0 25px 0;
}

.order-delivery h3,
.order-payment h3 {
    margin: 0 0 25px 0;
    font-size: 22px;
    line-height: 26px;
}

.order-delivery .delivery-method {
    position: relative;
    margin: 0 0 20px 0;
}

.order-delivery .delivery-method input[type=radio],
.order-payment input[type=radio] {
    position: absolute;
    top: 50%;
    left: 18px;
    margin-top: -6.5px;
}

.order-delivery .delivery-method input[type=radio]:checked ~ label,
.order-payment input[type=radio]:checked ~ label {
    background-color: var(--color-primary);
}

.order-delivery .delivery-method label,
.order-payment label {
    padding: 15px 20px 15px 40px;
    width: 100%;
    cursor: pointer;
    background: var(--color-light);
    min-height: 98px;
}

.order-payment label,
.order-payment input[type="radio"]:not(:checked) + label,
.order-payment input[type="radio"]:checked + label {
    padding: 20px 74px 20px 44px
}

.order-delivery .delivery-method label:hover,
.order-payment label:hover {
   background: var(--color-primary);
}

.order-delivery .delivery-method label:hover .delivery-name,
.order-delivery .delivery-method label:hover .delivery-desc,
.order-payment label:hover .delivery-name,
.order-payment label:hover .delivery-desc {
    color: #fff;
}

.order-delivery .delivery-method input[type=radio]:checked ~ label .delivery-name,
.order-delivery .delivery-method input[type=radio]:checked ~ label .delivery-desc {
    color: #fff;
}

.order-delivery .delivery-method label .delivery-name,
.order-payment label .payment-name {
    color: #40414E;
    font-size: 15px;
    font-weight: 700;
    line-height: 16px;
    margin: 0 0 8px 0;
}

.order-delivery .delivery-method label .delivery-desc,
.order-payment label .payment-desc {
    color: #5A5E5E;
    font-size: 15px;
    line-height: 22px;
    min-height: 44px;
}

.order-delivery h4 {
    margin: 0 0 15px 0;
    font-weight: bold;
}


.order-delivery .delivery-type {
    position: relative;
    margin: 0 0 20px 0;
}

.order-delivery .delivery-type input[type=radio] {
    position: absolute;
    top: 50%;
    left: 18px;
    margin-top: -6.5px;
}

.order-delivery .delivery-type input[type=radio]:checked ~ label {
    background-color: #fff;
    border-color: #0C2372;
    padding-right: 70px;
}

.order-delivery .delivery-type label {
    border: 1px solid #ccc;
    padding: 20px 10px 20px 45px;
    width: 100%;
    margin: 0;
    cursor: pointer;
    background: #fff;
}

.order-delivery .delivery-type label:hover {
    border-color: #0C2372;
}

.order-delivery .delivery-type label:hover:before,
.order-payment label:hover:before {
    border: 6px solid #40414E !important;
}

.order-delivery .delivery-type label .delivery-type-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -15px;
}

.order-delivery .delivery-type label .delivery-type-icon img {
    max-height: 25px;
    display: block;
}

.order-delivery .delivery-type label .delivery-type-name {
    color: #40414E;
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
}

.order-delivery .delivery-type label .delivery-type-desc {
    font-size: 12px;
    line-height: 16px;
}

.order-info {
   border: 1px solid #ccc;
    padding: 25px 25px 10px 25px;
    margin: 0 0 25px 0;
}

.date-info {
    border: 1px solid #CCCCCC;
    padding: 25px;
    margin: 0 0 25px 0;
}

.date-info h4 {
    font-size: 22px;
    line-height: 26px;
    color: var(--color-primary);
}

.order-info.payment-info {
    padding: 0;
}

.order-info h3 {
    margin: 0 0 25px 0;
    font-size: 22px;
    line-height: 26px;
}

.order-info label {
    margin: 0 0 4px 0;
    font-weight: 500;
    color: #333333;
}

.order-info .form-msg {
    color: var(--color-primary);
    font-size: 12px;
    margin: 5px 0 0 0;
}

.order-info .form-group textarea {
    min-height: 52px;
    height: 52px;
    padding-top: 14px;
}

.gift {
    border: 1px solid #CCCCCC;
    margin-bottom: 25px;
    padding: 25px 25px 25px 25px;
}

.gift h3 {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 5px;
}

.gift p {
    font-size: 14px;
    margin: 0;
}

.choose-date .btn {
    width: 100%;
}

.container .message-div {
    height: 50px;
    text-align: center;
    padding: 12px 0;
    background-color: #0C2372;
    text-decoration: solid;
    color: white;
    font-size: 22px;
    line-height: 26px;
    margin: 15px 0 15px 0;
}

.add-for-free {
    padding-top: 26px;
    margin-top: 4px;
}

.add-for-free  .delivery-info {
    font-weight: 500;
}

.add-for-free  .delivery-info p {
    color: #5A5E5E;
    font-size: 14px;
}


/*cart modal*/

.cart-modal .modal-content {
        padding: 0 8px;
}

.cart-modal .cart-result {
    max-height: 245px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 10px;
}

.cart-modal .modal-title img {
    margin: -4px 4px 0 0;
}

.cart-modal .cart-result::-webkit-scrollbar {
     width: 0.4rem;
 }

.cart-modal .cart-result::-webkit-scrollbar-track {
     border-radius: 10px;
     background: var(--color-light);
 }

.cart-modal .cart-result::-webkit-scrollbar-thumb {
     background: var(--color-primary);
     border-radius: 10px;
     cursor: pointer;
 }

.cart-modal .product-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-right: 18px;
}

.cart-modal .modal-header .btn-close {
    box-shadow: none;
}

.cart-modal .product-image img {
    width: 65px;
}

.cart-modal .product-remove {
    position: absolute;
    top: 3px;
    right: 10px;
    cursor: pointer;
}

.cart-modal .result-row {
    padding: 20px 10px 15px 10px;
    margin-bottom: 10px;
}

.cart-modal .result-row:last-child {
    margin-bottom: 0;
}

.cart-modal .add-for-free .delivery-info {
    font-size: 14px;
}

.cart-modal .modal-body .btn {
    margin-bottom: 10px;
}

.cart-modal .product-block .product-name {
    color: #000;
    font-size: 15px;
    line-height: 22px;
    min-height: 66px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.cart-modal .product-block .product-prices .old-price {
    font-size: 15px;
}

.cart-modal .product-block .product-prices .price {
    font-size: 16px;
}

.come-from-modal.left .modal-dialog,
.come-from-modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 450px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.come-from-modal.left .modal-content,
.come-from-modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
}

.come-from-modal.left .modal-body,
.come-from-modal.right .modal-body {
    padding: 15px 15px 0;
}
.come-from-modal.right.fade .modal-dialog {
    right: -450px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.come-from-modal.right.fade.show .modal-dialog {
    right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 4000px) {
    .cart .cart-list .btn-icons {
        margin-top: -2px;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .promo-code {
        padding: 20px 15px 22px 15px;
        margin: 0 0 20px 0;
    }
    .total {
        padding: 20px 15px 4px 15px;
    }

    .total-action {
        padding: 0 15px 20px 15px;
        margin-bottom: 20px;
    }

    .total-action .btn {
        font-size: 15px;
    }


}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .cart-list .product-name {
        font-size: 15px;
        line-height: 22px;
    }

    .total .sum ul li {
        font-size: 15px;
    }


    .cart-list .cart-row {
        padding: 25px 15px;
    }
    .order-delivery .delivery-method label .delivery-desc, .order-payment label .payment-desc {
        font-size: 12px;
        line-height: 18px;
        min-height: auto;
    }

    .order-delivery .delivery-method label, .order-payment label {
        min-height: 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .total .product-row .product-name {
        font-size: 12px;
        line-height: 18px;
        margin: 0 0 10px 0;
    }

    .total .product-row .product-old-price {
        text-align: right;
    }

    .promo-code {
        margin: 20px 0;
    }

    .total .product-row .total-sum {
        font-size: 14px;
    }

    .total-action {
        margin-bottom: 25px;
    }

    .total-action .pay-online {
        justify-content: space-evenly;
    }

    .total-action .pay-online a img {
        min-width: 70px;
    }

    .gift, .date-info, .order-delivery, .order-info {
        margin-bottom: 20px;
    }


}

@media only screen and (min-width: 0px) and (max-width: 991px) {
    .cart-list,
    .order-payment {
        margin-bottom: 20px;
    }
    .cart-list .cart-row {
        position: relative;
    }
    .cart-list .cart-row .col-lg-3.position-relative {
        position: static !important;
    }

    .cart-list .cart-row .btn-icons {
        display: flex;
        align-items: center;
        margin: 0 10px 0 0;
    }

    .cart-list .btn-icons .add-shopping-cart {
        margin: 0 10px 0 0;
    }

    .cart-list .total-price {
        padding-right: 0;
    }

    .total .product-row .product-img img {
        max-width: 100px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .cart-list .cart-list .product-old-price {
        text-align: center;
    }

    .cart-list .product-img {
        text-align: center;
    }

    .cart-list .cart-product-price,
    .cart-list .total-price {
        text-align: center;
        display: block;
        font-size: 14px;
        margin-top: 12px;
    }

    .cart-list .product-quantity button {
        width: 26px;
        font-size: 20px;
        font-weight: 500;
    }

    .cart-list .cart-row .btn-icons {
        margin: 6px 0 0 10px;
        right: auto;
        left: 0;
    }

    .cart-list .cart-row .btn-icons img {
        height: 20px;

    }

    .cart-widget:after {
        bottom: -12px;
        z-index: 15;
        width: 315px;
    }

    .cart-container {
        top: 37px;
        width: 315px;
    }

    .cart-container:before {
        display: none
    }

    .cart {
        padding: 35px 0 40px;
    }

    .cart h4 {
        font-size: 20px;
    }

    .cart-headings {
        display: none;
    }

    .cart-list .product-desc {
        margin: 0 0 10px 0;
    }

    .cart-list {
        margin: 20px 0 15px 0;
    }

    .cart-list .product-name {
        font-size: 14px;
        line-height: 21px;
    }

    .cart-list .cart-row {
        padding: 30px 12px 15px 12px;
        border-bottom: 6px solid #fff;
    }

    .mb-cart-heading {
        margin: 15px 0 8px 0;
        display: block;
        color: #5A5E5E;
        font-size: 14px;
    }

    .total .product-row .product-name {
        font-size: 13px;
        line-height: 21px;
        margin: 0 0 6px 0;
        display: block;
    }

    .total.with-border {
        padding: 15px 0 10px 0;
    }

    .total .product-row .product-old-price {
        text-align: right;
    }

    .promo-code p,
    .total h3 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .add-for-free {
        padding-top: 20px;
    }

    .add-for-free .btn {
        margin-left: 35px;
    }

    .cart-widget:hover .cart-container,
    .cart-widget:hover:after {
        display: none;
    }

    .total {
        padding: 20px 14px 4px 14px;
    }

    .total .sum ul li {
        font-size: 14px;
    }

    .cart-list .product-desc {
        font-size: 13px;
    }

    .total-action {
        padding: 0 14px 15px 14px;
        margin-bottom: 20px;
    }

    .container .message-div {
        font-size: 20px;
        line-height: 26px;
        margin: 0 0 15px 0;
        padding: 12px 10px;
    }

    .gift {
        padding: 10px 15px 16px 15px;
        margin-bottom: 15px;
    }

    .gift h3,
    .order-delivery h3,
    .order-payment h3 {
        font-size: 22px;
        line-height: 26px;
    }

    .checkout {
        padding: 0 0 55px 0;
    }

    .checkout .total .product-row .product-name {
        font-size: 14px;
    }

    .total .product-row .product-price {
        font-size: 15px;
    }

    .order-delivery .delivery-type {
        margin: 0 0 15px 0;
    }

    .select2-container {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .total .product-row .total-sum,
    .total .product-row .quantity {
        font-size: 13px;
    }

    .cart-list .product-old-price {
        text-align: center;
        margin-top: 4px;
    }

    .total-action .btn {
        font-size: 15px;
    }

    .total-action .pay-online {
        margin-top: 10px;
    }

    .checkout .product-quantity button {
        height: 32px;
        width: 34px;
        line-height: 25px;
    }

    .checkout .product-quantity button.minus {
        margin-top: -1px;
    }
    .checkout .product-quantity input[type=number] {
        height: 32px;
    }

    .remove-product img {
        width: 20px;
    }

    .total.with-border .sum {
        padding: 16px 15px 0 15px;
    }

    .order-delivery .delivery-method label .delivery-name,
    .order-payment label .payment-name,
    .order-delivery .delivery-type label .delivery-type-name {
        font-size: 14px
    }

    .order-delivery .delivery-method label, .order-payment label {
        padding: 10px 10px 10px 45px;
        display: block !important;
        min-height: auto;
    }

    .order-delivery .delivery-type label {
        padding: 16px 10px 16px 45px;
    }

    .total .product-row {
        padding: 15px;
    }

    .total.with-border h3 {
        padding: 0 15px;
    }

    .cart-empty img {
        height: 100px;
    }

    .order-delivery .delivery-method {
        margin: 0 0 15px 0;
    }

    .order-payment {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    .order-payment .payment-method label .payment-name {
        font-size: 14px;
        line-height: 18px;
        margin: 0 0 5px 0;
    }

    .promo-code {
        padding: 12px 15px 20px 15px;
        margin: 15px 0;
    }

    .promo-code .btn {
        padding: 10px 14px;
    }

    .order-payment .payment-method label .payment-icon {
        top: 50%;
        right: 10px;
        margin-top: -15px;
    }

    .order-payment .payment-method label .payment-icon img {
        min-height: auto;
        max-width: 30px;
    }

    .order-payment label,
    .order-payment input[type="radio"]:not(:checked) + label,
    .order-payment input[type="radio"]:checked + label {
        padding: 15px 55px 15px 44px;
    }

    .date-info, .order-delivery, .order-info, .order-payment {
        padding: 20px 15px 10px 15px;
        margin: 0 0 15px 0;
    }

}

@media only screen and (min-width: 0px) and (max-width: 575px) {
    /*.promo-code .btn {*/
    /*    padding: 8px 15px 7px 15px;*/
    /*    width: 100%;*/
    /*}*/

    .come-from-modal.left .modal-dialog, .come-from-modal.right .modal-dialog {
        width: 100%;
    }

    .come-from-modal.right.fade .modal-dialog {
        right: -101%;
    }

    .come-from-modal.right.fade.show .modal-dialog {
        right: 0;
    }

    .come-from-modal.left .modal-body, .come-from-modal.right .modal-body {
        padding: 15px 0 0;
    }

    .cart-modal .modal-header {
        padding: 12px 5px 0 5px;
    }

    .cart-modal .modal-footer {
        padding: 10px 0;
    }

    .cart-modal .product-block .product-prices .old-price {
        display: block;
        margin-bottom: 5px;
    }
}