body{
    margin: 0;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}


/* Preloader Start */
.preloader{
    display: none;
    position: fixed;
    background-color: rgba(0,0,0,.7);
    width: 100%;
    height: 100%;
    z-index: 999999;
    top: 0;
}
.preloader-inner {
    text-align: center;
    top: 40%;
    position: absolute;
    width: 100%;
}
.preloader p {
    margin: 0;
    color: #fff;
    font-size: 28px;
}
.preloader-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.preloader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: preloader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.preloader-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.preloader-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.preloader-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes preloader-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Preloader End */



/* Popup Start */
html.show-error{
    overflow: hidden;
}
.hl-popup{
    /*display: none;*/

    display: flex;
    align-items: center;

    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    overflow-x: scroll;
    padding: 15px;
    background: rgba(0, 0, 0, .7);

    left: -999%;
    opacity: 0;
    visibility: hidden;
}
.hl-popup.show{
    /*display: flex;*/
    /*align-items: center;*/
    left: 0;
    opacity: 1;
    visibility: visible;
}
.hl-popup__content {
    box-sizing: border-box;
    padding: 30px 40px 40px;
    background: #f6fcff;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 80px auto;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, .5);
    text-align: center;

    height: auto;
    max-height: 100%;
    overflow: auto;

    transition: 0.2s all ease;
    opacity: 0;
    transform: scale(0.5);
}

.hl-popup.show .hl-popup__content{
    opacity: 1;
    transform: scale(1);
}
.hl-popup__title {
    color: rgb(0, 117, 178);
    font-size: 42px;
    margin-bottom: 20px;
}
.hl-popup__text {
    margin: 5px 0 35px;
    font-size: 24px;
}

.hl-popup__close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    z-index: 20;
    opacity: 0.3;
    transition: 0.3s all ease;
}

.hl-popup__close span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #000;
}

.hl-popup__close span:nth-child(1) {
    transform: rotate(-45deg)
}

.hl-popup__close span:nth-child(2) {
    transform: rotate(45deg)
}

.hl-popup__close:hover{
    opacity: 1;
}

.hl-popup__icon {
    text-align: center;
    margin-bottom: 25px
}

.hl-popup__icon .error-icon {
    max-width: 70px
}

.hl-popup__try-again{
    text-transform: uppercase;
    color: #fff!important;
    font-size: 23px;
    background-color: #46ae46;
    border-radius: 0;
    text-align: center;
    padding: 15px 30px;
    border: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    text-decoration: none!important;
    display: inline-block;
    cursor: pointer;
}
.hl-popup__try-again:hover{
    background-color: #269651;
}
/* Popup End */

/* scroll bar Start */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: #F4F4F4;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #269651;
}
/* scroll bar End */


/* Header Start */
.header{
    background-color: #000;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    text-align: center;
}
.header p{
    margin: 0;
    /*text-transform: uppercase;*/
}
@media (max-width: 767px) {
    .header{
        font-size: 14px;
    }
}
/* Header End */

/* Footer Start */
.footer{
    background-color: #000;

    color: #fff;
}
.footer__inner{
    display: flex;
    max-width: 1140px;
    margin: 0 auto;
}
.footer__left{
    /*width: 30%;*/
    text-align: center;

}
.footer__right{
    /*width: 70%;*/
    flex: 1 1 auto;
}
.footer__left,
.footer__right{
    padding: 20px 10px;
}
.footer h5{
    margin: 0px 0 15px;
    font-size: 25px;
    font-weight: 600;
}
.footer p{
    margin: 0px 0 15px;
}
.footer-menu{
    padding: 0;
    margin: 0 0 15px;
    list-style: none;
}
.footer-menu li{
    display: inline-block;
    padding: 0 10px;
    border-right: 1px solid #676767;
}
.footer-menu li:first-child{
    padding-left: 0;
}
.footer-menu li:last-child{
    padding-right: 0;
    border-right: none;
}
.footer-menu a{
    color: #fff;

    text-decoration: underline;
}
@media (max-width: 767px) {
    .footer{
        text-align: center;
    }
    .footer__inner{
        display: block;
    }
    .footer__left{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer h5{
        font-size: 20px;
    }
    .footer p{
        font-size: 15px;
    }
}
@media (max-width: 500px) {
    .footer-menu li{
        display: block;
        padding: 0;
        border: none;
        margin-bottom: 10px;
    }
    .footer-menu li:last-child{
        margin-bottom: 0;
    }
}
/* Footer End */


/* Checkout Page Start */



.checkout-container{
    /*padding: 50px 0;*/
    /*background-color: #fafafa;*/
    overflow: hidden;
}
.checkout-container *{
    box-sizing: border-box;
}
.cart-form{
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
}

.cart-form__inner{
    display: flex;
}
.cart-form__left{
    width: 60%;
    border-right: 1px solid #e7e4e4;
    padding: 0 15px;
}
.products-table{
    width: 100%;
}
.cart-form__right{
    width: 40%;
    padding: 35px 40px 0;
}


.cart-section{
    margin-bottom: 30px;
}
.form-group{
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
}
.form-row{
    display: flex;
    margin: 0 -5px;
}
.form-col{
    width: 50%;
    padding: 0 5px;
}
.form-col-4{
    width: 33.33333333%;
    padding: 0 5px;
}
.form-col-5{
    width: 41.66666667%;
    padding: 0 5px;
}
.form-col-7{
    width: 58.33333333%;
    padding: 0 5px;
}
.form-col-8{
    width: 66.66666667%;
    padding: 0 5px;
}

@media (max-width: 767px) {
    .form-col-4{
        width: 100%;
    }
    .form-col-5{
        width: 100%;
    }
    .form-col-7{
        width: 100%;
    }
    .form-col-8{
        width: 100%;
    }
}



.secure-checkout{
    display: flex;
    align-items: center;
}
.secure-checkout span{
    text-transform: uppercase;
    font-size: 14px;
    margin-left: 7px;
    line-height: 1;
    font-weight: 800;
}

.cart-label{
    color: #737373;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}
.cart-label:before{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 0;
    content: '';
    border-top: 1px solid #e7e4e4;
    display: block;
}
.cart-label span{
    background-color: #fff;
    position: relative;
    z-index: 5;
    padding: 0 10px;
}
.cart-subtitle{
    font-size: 20px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
}
.cart-title{
    font-size: 28px;
    font-weight: 500;
}


.input-wrapper{
    position: relative;
    margin-bottom: 10px;
}
.form-group>.input-wrapper:last-child{
    margin-bottom: 0;
}
.input-label{
    margin: 0;
    opacity: 0;
    visibility: hidden;
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    color: #bbb;
    transition: all .2s ease-in-out;
    z-index: 1;
}
.form-control{
    display: block;
    width: 100%;
    outline: 0;
    border: 1px solid #d9d9d9;
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 5px;
    color: #000;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    box-sizing: border-box;
    font-size: 14px;
    background-color: #fff;
    z-index: 10;
    position: relative;
}
select.form-control{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-image: url("../images/arrows.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}
.input-wrapper.filled label {
    opacity: 1;
    visibility: visible;
    top: 6px;
    /*left: 15px;*/
    z-index: 11;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;

}
.input-wrapper.filled .form-control,
.iti__selected-flag{
    padding-top: 12px;
}



.iti__country-list{
    z-index: 20;
}
.iti{
    display: block;
}


.checkbox{

}
.checkbox input{
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.checkbox-icon{
    width: 15px;
    height: 15px;
    position: relative;
    border-radius: 2px;
    background-color: #F0F0F0;
    display: inline-block;
    transition: 0.1s all ease;
    /*margin-right: 10px;*/
    position: absolute;
    top: 0;
    left: 0;
}
.checkbox-icon:after{
    width: 7px;
    height: 4px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    display: block;
    content: '';
    opacity: 0;
    transition: 0.1s all ease;
    top: 3px;
    left: 3px;
    position: absolute;
    transform: rotate(-45deg);
}
.checkbox-label{
    margin: 0;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    /*display: flex;*/
    color: #4E4E4E;
    position: relative;
    padding-left: 25px;
    /*align-items: center;*/
}

.checkbox input:checked + .checkbox-label .checkbox-icon{
    background-color: #000;
}
.checkbox input:checked + .checkbox-label .checkbox-icon:after{
    opacity: 1;
}


.cart-submit{
    border-radius: 5px;
    display: block;
    width: 100%;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
}
.cart-submit[data-payment="paypal"]{
    background-color: #ffc300;
    text-align: center;
    padding: 10px 15px;
}
.cart-submit[data-payment="paypal"] img{
    max-width: 120px;
}
.cart-submit[data-payment="default"]{
    background-color: #FF6B35;
    padding: 15px 25px;
}

.cart-submit .icon-lock{
    margin: -6px 15px 0 0;
}
.cart-submit .icon-arrow{

}
.cart-submit__title{
    display: block;
    font-size: 22px;

}
.cart-submit__subtitle{
    margin-top: 10px;
    display: block;
    font-size: 13px;
}



/*Summary*/
.cart-products{
    margin: 36px 0 25px;
    border-top: 1px solid #e7e4e4;
    padding: 20px 0;
}
.cart-product__image img{
    height: auto;
    width: 80px;
}
.cart-product__name {
    font-weight: 700;
    padding: 0 10px;
    line-height: 1;
    font-size: 14px;
}
.price{
    font-size: 18px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.price.price-linear{
    flex-direction: row;
}
.price-regular{

}
.price-compare{
    font-size: .9em;
    position: relative;
}
.price-compare:before {
    position: absolute;
    width: 110%;
    height: 2px;
    content: '';
    display: block;
    background-color: #383838;
    left: -5%;
    top: 50%;
    transform: rotate(-10deg);
    z-index: 5;
}

.cart-summary{
    border-top: 1px solid #e7e4e4;
    border-bottom: 1px solid #e7e4e4;
}
.cart-summary__hr{
    /*width: 60%;*/
    height: 1px;
    background-color: rgba(60, 66, 87, 0.12);
    margin: 5px auto;
}
.cart-summary__table{
    width: 100%;
}
.cart-summary__table td{
    padding: 5px 0;
}
.cart-summary__name{

}
.cart-summary__value{
    text-align: right;
}
.cart-summary__table tfoot td{
    font-weight: 700;
    padding: 10px 0;
    border-top: 1px solid #e7e4e4;
}


.summary-toggle{
    background-color: #fafafa;
    margin: 0 -20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 12px;
    user-select: none;
}
.summary-toggle__label{
    display: flex;
    align-items: center;
}
.summary-toggle__hide{
    display: none;
}
.summary-toggle__cart-icon{
    margin-right: 10px;
}
.summary-toggle__arrow-icon{
    margin-left: 10px;
}
.summary-toggle__coupon-icon{
    margin-left: 5px;
}

.summary-toggle__total{
    display: flex;
    align-items: center;
}

.summary-section.open .summary-toggle__hide{
    display: block;
}
.summary-section.open .summary-toggle__show{
    display: none;
}
.summary-section.open .summary-toggle__arrow-icon{
    transform: rotate(180deg);
}



/*Summary*/



.checkout-footer{
    font-size: 14px;
}
.checkout-footer p{
    margin: 0;
}
.checkout-footer .footer-menu{
    margin: 0;
}
.checkout-footer .footer-menu a{
    color: #000;
}
.checkout-footer__inner{
    display: flex;
    justify-content: space-between;

}



@media(max-width: 767px){
    .summary-section{
        margin-bottom: 20px;
    }
    .summary-section .cart-section{
        margin: 0;
        display: none;
    }
    .summary-section .cart-subtitle{
        display: none;
    }

    .cart-section{
        margin-bottom: 20px;
    }
}
@media(max-width: 550px){
    .checkout-footer__inner{
        display: block;
        text-align: center;
    }
    .checkout-footer p{
        margin-bottom: 15px;
    }
}
/* Checkout Page End */


/* Checkout Page [Type 2] Start */
.checkout_2 .cart-form__left,
.checkout_2 .cart-form__right{
    width: 50%;
    border:none;
    padding: 50px 20px;
}
.checkout_2 .cart-form__left{
    padding-right: 70px;
}
.checkout_2 .cart-form__right{
    padding-left: 70px;
    position: relative;
}
.checkout_2 .cart-form__right .cart-label span{
    background-color: #fafafa;
}
.checkout_2 .cart-form__right:after{
    background-color: #fafafa;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 300%;
    z-index: -1;
}
.checkout__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.checkout__header a{
    text-decoration: none;
}
.checkout__header h1{
    text-transform: uppercase;
    line-height: 1.1;
    color: #000;
    font-size: 30px;
    margin: 0;
}

.checkout__steps{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 0 8px;
    border-bottom: 5px solid #F8F8F8;
    margin-bottom: 20px;
    justify-content: space-between;
}
.checkout__steps li{
    font-size: 15px;
    font-weight: 400;

    /*flex-grow: 1;*/
    /*flex-basis: 0;*/
    position: relative;
    padding: 0 10px;
    /*background-image: url("../images/checkout/play.png");*/
    /*background-repeat: no-repeat;*/
    /*background-position: right center;*/
    margin-right: 20px;
    padding-right: 50px;
}

.checkout__steps li:after{
    width: 10px;
    height: 10px;
    display: block;
    content: '';
    background-image: url("../images/checkout/play.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.checkout__steps li:nth-child(2){
    /*text-align: center;*/
}
.checkout__steps li:nth-child(3){
    text-align: right;
    background: none;
    margin-right: 0;
    padding-right: 0px;
}
.checkout__steps li:nth-child(3):after{
    display: none;
}

.checkout__steps .current{
    font-weight: 600;
}
.checkout__steps .current:before{
    width: 100%;
    height: 5px;
    bottom: -13px;
    content: '';
    position: absolute;
    z-index: 5;
    display: block;
    background-color: #1BBD48;
    left: 0;
}


.sale-container{
    border: 1px solid #FAE588;
    background-color: #fff2c2;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.sale-container__icon{
    margin-right: 10px;
}
.sale-container__text p{
    margin: 0;
    font-size: 16px;
}
.sale-container__text b{
    font-weight: 600;
}



.checkout_2 .cart-submit[data-payment="paypal"]{
    background-color: #F9DC5C;
    /*width: auto;*/
    /*max-width: 325px;*/
    padding: 13px 15px;
}

.checkout_2 .cart-label{
    text-transform: unset;
    font-size: 16px;
    color: #939393;
    margin-bottom: 20px;
}
.checkout_2 .cart-label:before{
    border-top: 1px solid rgba(60, 66, 87, 0.12);;
}
.checkout_2  .form-group{
    padding: 0;
    border: none;
}

.checkout_2 .input-label{
    color: #C4C4C4;
    /*font-size: 16px;*/
}
.checkout_2 .form-control{
    border-radius: 8px;
    border: 1px solid rgba(60, 66, 87, 0.12);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    font-size: 16px;
}

.checkout_2 .cart-subtitle{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.checkout_2 .shipping_group{
    margin-bottom: 20px;
}
.checkout_2 .shipping_group .input-wrapper,
.checkout_2 .payment-tabs .input-wrapper,
.checkout_2 .billing_group .input-wrapper{
    margin-bottom: 0;
}
.checkout_2 .shipping_group .form-control,
.checkout_2 .billing_group .form-control{
    border-radius: 0;
    box-shadow: none;
    border-top: none;
}
.checkout_2 .shipping_group>.input-wrapper:first-child .form-control,
.checkout_2 .billing_group>.input-wrapper:first-child .form-control{

    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-top: 1px solid rgba(60, 66, 87, 0.12);
}
.checkout_2 .billing_group>.input-wrapper:first-child .form-control{
    border-top: none;
    border-bottom: 1px solid rgba(60, 66, 87, 0.12);
}
.checkout_2 .shipping_group>.input-wrapper:last-child .form-control,
.checkout_2 .billing_group>.input-wrapper:last-child .form-control{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
}
.checkout_2 .shipping_group .form-row,
.checkout_2 .card-body .form-row{
    margin: 0;
}
.checkout_2 .billing_group .form-row:nth-child(4) .form-control{
    border-top: none;
}
.checkout_2 .shipping_group .form-col,
.checkout_2 .card-body .form-col{
    padding: 0;
}
.checkout_2 .shipping_group .form-col:first-child .form-control,
.checkout_2 .card-body .form-col:first-child .form-control{
    border-right: none;
}

.checkout_2 .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #C4C4C4;
}
.checkout_2 .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #C4C4C4;
}
.checkout_2 .form-control:-ms-input-placeholder { /* IE 10+ */
    color: #C4C4C4;
}
.checkout_2 .form-control:-moz-placeholder { /* Firefox 18- */
    color: #C4C4C4;
}


.checkout_2 .accordion{
    border: 1px solid rgba(60, 66, 87, 0.12);
}
.checkout_2 .card-toggle{
    /*height: 40px;*/
    padding: 12px;
    border-bottom: 1px solid rgba(60, 66, 87, 0.12);
}
.checkout_2 .payment-stripe .card-header__label,
.checkout_2 .payment-yaad .card-header__label{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout_2 .payment-stripe .card-toggle img,
.checkout_2 .payment-yaad .card-toggle img{
    width: auto;
}
.checkout_2 #card-cvv{
    background-image: url("../images/checkout/card-cvv.png");
    background-repeat: no-repeat;
    background-position: center right 15px;
}


.checkout_2 .card-body .form-control{
    border: none;
    box-shadow: none;
    border-radius: 0;
}
.checkout_2 .card-body{
    padding: 0;
}
.checkout_2 .card-body .form-row .form-control{
    border-top: 1px solid rgba(60, 66, 87, 0.12);
    border-bottom: 1px solid rgba(60, 66, 87, 0.12);
}
.checkout_2 .card-body .form-col:first-child .form-control{
    border-right: 1px solid rgba(60, 66, 87, 0.12);
}

.checkout_2 .payment-tabs{
    margin-bottom: 20px;
}

.checkout__security{
    display: flex;
    align-items: center;
    align-items: flex-start;
}
.checkout__security svg{
    display: inline-block;
    margin: -3px 10px 0 0;
}
.checkout__security p{
    color: #1A659E;
    font-size: 14px;
    margin: 0;
}



.checkout_2 .cart-submit[data-payment="default"]{
    background-color: #ffb945;
    color: #000;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 23px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkout_2 .cart-submit__title{
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 15px;
}

.checkout__guarantee{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.checkout__guarantee img{
    margin-right: 10px;
}
.checkout__guarantee p{
    margin: 0;
    font-size: 14px;
}


.checkout_2 .cart-product__name{
    padding-left: 0;
    font-weight: 400;
    font-size: 16px;
}
.checkout_2 .cart-products{
    border: none;
    margin: 0;
    padding: 0;
}
.checkout_2 .cart-summary{
    border: none;
}
.checkout_2 .cart-summary__table td,
.checkout_2 .products-table td{
    padding: 5px 0;
    border: none;
    font-size: 16px;
    font-weight: 400;
}
.checkout_2 .products-table .price{
    flex-direction: row;
    justify-content: flex-end;
}
.checkout_2 .products-table .price-regular{
    margin-left: 10px;
}


@media(max-width: 1200px){
    .cart-form.checkout_2{
        padding: 0;
    }
    .checkout_2 .cart-form__left{
        padding-right: 20px;
        width: 60%;
    }
    .checkout_2 .cart-form__right{
        padding-left: 20px;
        width: 40%;
    }
}
@media(max-width: 1024px){
    .checkout__steps{
        /*border-bottom-width: 5px;*/
        /*padding-bottom: 5px;*/
    }
    .checkout__steps li{
        font-size: 16px;
        background-size: 7px;
        padding: 0 5px;
        margin-right: 5px;
        padding-right: 20px;
    }
    .checkout__steps li:after{
        width: 7px;
        height: 7px;
    }
    .checkout__steps .current:before{
        /*height: 5px;*/
        /*bottom: -10px;*/
    }
}
@media(max-width: 767px){
    .checkout_2 .cart-form__left{
        width: 100%;
    }
    .checkout_2 .cart-form__right{
        width: 100%;
    }
    .checkout_2 .cart-form__inner{
        flex-direction: column;
    }

    .sale-container{
        padding: 10px;
    }
    .sale-container__icon{
        margin-right: 5px;
    }
    .sale-container__icon svg{
        width: 20px;
    }
    .sale-container__text p{
        font-size: 12px;
    }
}
@media(max-width: 400px){
    .checkout__steps{
        border-bottom-width: 5px;
        padding-bottom: 5px;
    }
    .checkout__steps li{
        font-size: 14px;
        padding: 0 15px 0 0;
    }
    .checkout__steps .current:before{
        height: 5px;
        bottom: -10px;
    }
}
/* Checkout Page [Type 2] End */


/* Checkout Page [Type 3] Start */

.checkout_3{
    max-width: 1240px;
    font-family: 'Assistant', sans-serif;
}
.checkout_3 .cart-form__left,
.checkout_3 .cart-form__right{
    /*width: 50%;*/
    border:none;
    padding: 50px 20px;
}
.checkout_3 .cart-form__left{
    width: 55%;
    padding-right: 40px;
}
.checkout_3 .cart-form__right{
    width: 45%;
    position: relative;
    padding-left: 50px;
}
.checkout_3 .cart-form__right .cart-label span{
    background-color: #fafafa;
}
.checkout_3 .cart-form__right:after{
    background-color: #F9F9F9;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 300%;
    z-index: -1;
}


.checkout_3  .sale-container{
    border:none;
    background-color: #FFFAF5;
    border-radius: 10px;
    margin-bottom: 30px;
}

.checkout_3 .express_checkout{
    padding: 40px;
    position: relative;
    border: 1px solid rgba(60, 66, 87, 0.12);
    border-radius: 20px;
    margin-bottom: 30px;
}
.checkout_3 .express_checkout-label{
    position: absolute;
    padding: 0 15px;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
}
.checkout_3 .express_checkout-label:first-child{
    top: -10px;
}
.checkout_3 .express_checkout-label:last-child{
    bottom: -10px;
}
.checkout_3 .express_checkout .cart-section{
    margin: 0;
}



.checkout_3 .cart-submit[data-payment="paypal"]{
    background-color: #F9DC5C;
    /*width: auto;*/
    /*max-width: 325px;*/
    padding: 13px 15px;
}

.checkout_3 .cart-label{
    text-transform: unset;
    font-size: 14px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
}
.checkout_3 .cart-label:before{
    border-top: 1px solid rgba(60, 66, 87, 0.12);
    display: none;
}
.checkout_3  .form-group{
    padding: 0;
    border: none;
}

.checkout_3 .input-label{
    color: #535353;
    /*font-size: 16px;*/
}
.checkout_3 .form-control{
    border-radius: 5px;
    border: 1px solid rgba(60, 66, 87, 0.12);
    font-size: 16px;
    height: 45px;
}
.checkout_3 .input-wrapper.error .form-control{
    border: 1px solid #ff4a4a;
}
.checkout_3 .form-error-message{
    display: none;
    color: #ff4a4a;
}
.checkout_3 .input-wrapper.error .form-error-message{
    display: block;
}
.checkout_3 .contact-information-section .cart-subtitle{
    margin-bottom: 10px;
}
.checkout_3 .cart-subtitle{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.checkout_3 .cart-subtitle p{
    font-size: 13px;
    font-weight: 400;
    margin: 10px 0 0;
}
.checkout_3 .cart-subtitle svg{
    margin-right: 10px;
}

.checkout_3 .shipping_group{
    margin-bottom: 20px;
}

.checkout_3 .cart-summary__hr{
    background-color: rgba(0, 0, 0, 0.3);
    margin: 15px auto;
}
/*
.checkout_3 .shipping_group .input-wrapper,
.checkout_3 .payment-tabs .input-wrapper,
.checkout_3 .billing_group .input-wrapper{
    margin-bottom: 0;
}
.checkout_3 .shipping_group .form-control,
.checkout_3 .billing_group .form-control{
    border-radius: 0;
    box-shadow: none;
    border-top: none;
}
.checkout_3 .shipping_group>.input-wrapper:first-child .form-control,
.checkout_3 .billing_group>.input-wrapper:first-child .form-control{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-top: 1px solid rgba(60, 66, 87, 0.12);
}
.checkout_3 .billing_group>.input-wrapper:first-child .form-control{
    border-top: none;
    border-bottom: 1px solid rgba(60, 66, 87, 0.12);
}
.checkout_3 .shipping_group>.input-wrapper:last-child .form-control,
.checkout_3 .billing_group>.input-wrapper:last-child .form-control{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
}
.checkout_3 .shipping_group .form-row,
.checkout_3 .card-body .form-row{
    margin: 0;
}
.checkout_3 .billing_group .form-row:nth-child(4) .form-control{
    border-top: none;
}
.checkout_3 .shipping_group .form-col,
.checkout_3 .card-body .form-col{
    padding: 0;
}
.checkout_3 .shipping_group .form-col:first-child .form-control,
.checkout_3 .card-body .form-col:first-child .form-control{
    border-right: none;
}
*/
.checkout_3 .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #7e7e7e;
}
.checkout_3 .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #7e7e7e;
}
.checkout_3 .form-control:-ms-input-placeholder { /* IE 10+ */
    color: #7e7e7e;
}
.checkout_3 .form-control:-moz-placeholder { /* Firefox 18- */
    color: #7e7e7e;
}


.checkout_3 .accordion{
    border: 1px solid rgba(60, 66, 87, 0.12);
    border-radius: 5px;
}
.checkout_3 .card-toggle{
    /*height: 40px;*/
    padding: 12px;
    border-bottom: 1px solid rgba(60, 66, 87, 0.12);
    color: #535353!important;
}
.checkout_3 .billing-tabs .card-toggle{
    border-bottom: none;
}
.checkout_3 .payment-stripe .card-header__label,
.checkout_3 .payment-yaad .card-header__label,
.checkout_3 .payment-klarna .card-header__label{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout_3 .payment-stripe .card-toggle img,
.checkout_3 .payment-yaad .card-toggle img{
    width: auto;
}
.checkout_3 #card-cvv{
    background-image: url("../images/checkout/card-cvv.png");
    background-repeat: no-repeat;
    background-position: center right 15px;
}
.checkout_3 #card-number{
    background-image: url("../images/checkout/lock_3.png");
    background-repeat: no-repeat;
    background-position: center right 15px;
}

/*
.checkout_3 .card-body .form-control{
    border: none;
    box-shadow: none;
    border-radius: 0;
}
 */
.checkout_3 .card-body{
    background-color: #fff;
}
.checkout_3 .payment-tabs .card-body{
    padding: 10px 10px 5px;
}
/*
.checkout_3 .card-body .form-row .form-control{
    border-top: 1px solid rgba(60, 66, 87, 0.12);
    border-bottom: 1px solid rgba(60, 66, 87, 0.12);
}
.checkout_3 .card-body .form-col:first-child .form-control{
    border-right: 1px solid rgba(60, 66, 87, 0.12);
}
*/
.checkout_3 .payment-tabs{
    margin-bottom: 20px;
}




.checkout_3 .cart-submit[data-payment="default"]{
    background-color: #FFC33A;
    color: #000;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 23px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease;
}
.checkout_3 .cart-submit[data-payment="default"]:hover{
    background-color: #d39e23;
}
.checkout_3 .cart-submit__title{
font-size: 30px;
font-weight: 700;
text-transform: uppercase;
margin-right: 15px;
}


.checkout_3 .cart-product__name{
padding-left: 0;
font-weight: 400;
font-size: 16px;
}
.checkout_3 .cart-products{
border: none;
margin: 0;
padding: 0;
}
.checkout_3 .cart-summary{
border: none;
}
.checkout_3 .cart-summary__table td,
.checkout_3 .products-table td{
padding: 5px 0;
border: none;
font-size: 16px;
font-weight: 400;
}
.checkout_3 .products-table .price{
flex-direction: row;
justify-content: flex-end;
}
.checkout_3 .products-table .price-regular{
margin-left: 10px;
}

.checkout_3 .promocode{
margin: 25px 0;
}
.checkout_3 .promocode__toggle{
display: none;
}
.checkout_3 .promocode__inner{
display: block;
padding: 0;
}
.checkout_3 .promocode__inner .input-wrapper{
display: flex;
}
.checkout_3 .promocode__apply{
background-color: #000;
color: #fff;
font-weight: 400;
text-transform: uppercase;
border-radius: 5px;
font-size: 20px;
position: relative;
height: 45px;
padding: 5px 25px;
margin-left: 10px;
}



.checkout_3 .reviews-section .cart-label{
font-size: 20px;
}
.checkout_3 .trustpilot-header{
text-align: center;
margin-bottom: 20px;
}
.checkout_3 .trustpilot-header img{
margin-bottom: 10px;
}
.checkout_3 .trustpilot-header p{
margin: 0;
}



.checkout_3 .review{
background-color: #fff;
margin-bottom: 20px;
border-radius: 10px;
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
padding: 20px;
}
.checkout_3 .review:last-child{
margin-bottom: 0;
}
.checkout_3 .review__status{
display: flex;
align-items: center;
}
.checkout_3 .review__status img{
margin-right: 5px;
}
.checkout_3 .review__name{
font-size: 16px;
font-weight: 600;
margin-right: 10px;
}
.checkout_3 .review__location{
font-size: 14px;
}
.checkout_3 .review__rating{
display: flex;
flex-wrap: nowrap;
margin-bottom: 10px;
}
.checkout_3 .review__rating img{
margin-right: 3px;
}
.checkout_3 .review__content{
font-size: 14px;
line-height: 1.5;
}

.checkout_3 .support_menu{
margin: 0;
padding: 0;
list-style: none;
}
.checkout_3 .support_menu li{
margin-bottom: 10px;
color: #000000;
font-size: 16px;
}
.checkout_3 .support_menu svg{
margin-right: 8px;
}
.checkout_3 .support_menu a{
color: inherit;
}

.checkout_3 .cart-product__media{
display: flex;
align-items: center;
}
.checkout_3 .cart-product__image{
position: relative;
width: 68px;
height: 68px;
overflow: hidden;
border-radius: 10px;
margin-right: 23px;
}
.checkout_3 .cart-product__image img{
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
}




.checkout_3 .summary-section-mob{
margin: 0 -20px 20px;
padding: 20px 20px 0;
background-color: #FFFAF5;
}
.checkout_3 .summary-toggle{
background-color: transparent;
padding: 20px;
font-size: 18px;
font-weight: 600;
}
.checkout_3 .summary-toggle__cart-icon{
margin-top: -4px;
}
.checkout_3 .summary-toggle__total{
font-size: 20px;
font-weight: 600;
}
.checkout_3 .summary-toggle__total-regprice{
font-size: 18px;
font-weight: 400;
text-decoration: line-through;
margin-left: 5px;
margin-bottom: -2px;
color: #747474;
}
.checkout_3 .summary-section-mob .support_menu{
margin: 20px 0 0;
}

.checkout_3 .cart-summary__total td{
font-size: 18px;
font-weight: 700;
/*padding: 0;*/
    /*line-height: 1;*/
}
.checkout_3 .cart-summary__saving td{
    padding: 0;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    color: #2DAD57;
}


.checkout_3 .shipping-section{
    padding: 11px 15px;
    border: 1px solid rgba(60, 66, 87, 0.12);
    display: flex;
    border-radius: 5px;
    align-items: center;
}
.checkout_3 .shipping-section__inner{
    display: flex;
    margin-left: 5px;
    flex: 1 0 auto;
    /*justify-content: space-between;*/
}
.checkout_3 .shipping-section__inner p{
    margin: 0;
}
.checkout_3 .shipping-section__inner span{
    margin-left: 10px;
    font-weight: 600;
}

@media(max-width: 1200px){
    .cart-form.checkout_3{
        padding: 0;
    }
    .checkout_3 .cart-form__left{
        padding-right: 20px;
        width: 60%;
    }
    .checkout_3 .cart-form__right{
        padding-left: 20px;
        width: 40%;
    }
}
@media(max-width: 1024px){

}
@media(max-width: 767px){
    .checkout_3 .checkout__header{
        justify-content: center;
        margin: 0;
    }
    .checkout_3 .cart-form__left{
        width: 100%;
        padding-top: 0;
    }
    .checkout_3 .cart-form__right{
        width: 100%;
        padding-top: 0;
    }
    .checkout_3 .cart-form__right:after{
        display: none;
    }
    .checkout_3 .cart-form__right .cart-label span{
        background-color: transparent;
    }
    .checkout_3 .cart-form__inner{
        flex-direction: column;
    }

    .checkout_3 .form-row{
        display: block;
    }
    .checkout_3 .form-col{
        width: 100%;
    }

    .checkout_3 .summary-section .cart-section{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .checkout_3 .reviews-section{
        padding: 20px;
        background-color: #FFFAF5;
    }



}
@media(max-width: 450px){
    .checkout_3 .cart-submit__title{
        font-size: 20px;
    }
}
/* Checkout Page [Type 3] End */

/* Order Bump Start */
.order-bump{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.order-bump__left{
    display: flex;
    align-items: center;
}
.order-bump__icon{
    margin-right: 15px;
}
.order-bump__description h5{
    margin: 0 0 5px;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}
.order-bump__description p{
    margin: 0;
    font-size: 15px;
    color: #000;
    font-weight: 400;
}

.order-bump.order-bump-checkbox{
    display: block;
    padding: 15px;
    background-color: #fffbcf;
    border: 2px solid #fff591;
    border-radius: 3px;
}
.order-bump-checkbox .order-bump__header{
    margin-bottom: 15px;
}
.order-bump-checkbox .order-bump__label{
    margin: 0 ;
    background-color: #ffc438;
    border-radius: 3px;
    padding: 12px 10px 10px 40px;
    position: relative;
    cursor: pointer;
    display: block;
}
.order-bump-checkbox .order-bump__label h5{
    font-size: 16px;
    margin: 0;
    line-height: 1.3;
}
.toggle__checkbox{
    position: absolute;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border: 2px solid #e3a920;
    left: 10px;
    top: 10px;
}

.toggle__checkbox:after {
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
    display: block;
    content: '';
    opacity: 0;
    transition: 0.1s all ease;
    top: 4px;
    left: 3px;
    position: absolute;
    transform: rotate(-45deg);
}

.toggle__input:checked+.order-bump__label .toggle__checkbox:after{
    opacity: 1;
}
/* Order Bump End */



/* Toggle Start */

.toggle__input{
    opacity: 0;
    position: absolute;
    visibility: hidden;
}
.toggle__label{
    margin: 0;
    width: 65px;
    height: 34px;
    border-radius: 40px;
    background-color: #d6d6d6;
    position: relative;
    cursor: pointer;
    user-select: none;
    display: block;
}
.toggle__caption{
    opacity: 0;
    transition: 0.1s all ease;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: -1px;
    transform: translateY(-45%);
    top: 50%;
    position: absolute;
}
.toggle__caption-left{
    color: #fff;
    left: 8px;
}
.toggle__caption-right{
    color: #000;
    opacity: 1;
    right: 6px;
}
.toggle__input:checked+.toggle__label{
    background-color: #000000;
}
.toggle__input:checked+.toggle__label .toggle__caption-left{
    opacity: 1;
}
.toggle__input:checked+.toggle__label .toggle__caption-right{
    opacity: 0;
}
.toggle__slider{
    width: 26px;
    height: 26px;
    top:4px;
    left: 4px;
    display: block;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.1s all ease;
}
.toggle__input:checked+.toggle__label .toggle__slider{
    left: 35px;
    /*left: unset;*/
    /*right: 4px;*/
}

/* Toggle End */

/* Checkout Reviews Start */
.review{
    display: flex;
    margin-bottom: 20px;
}
.review__image{
    position: relative;
    min-width: 70px;
    width: 70px;
    height: 70px;
    border: 1px solid #EFEFEF;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}
.review__image img{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;

}

.review__header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.review__meta{
    display: flex;
}
.review__rating{
    margin-right: 10px;
}
.review__name{
    font-size: 15px;
}

.review__status{
    font-size: 15px;
    text-align: right;
}
.review__status.verified{
   color: #1BBD48;
}

.review__content{
    font-size: 16px;
}
.review__content p{
    margin: 0;
}
@media(max-width: 1200px){
    .review__meta{
        flex-direction: column;
    }
}
/* Checkout Reviews End */

/* Checkout feature Start */
.feature{
    display: flex;
    margin-bottom: 20px;
}
.feature__icon{
    margin-right: 20px;
}
.review__title{
    font-size: 20px;
    margin-bottom: 5px;
}
.review__content{
    font-size: 16px;
}
.review__content p{
    margin: 0;
}
/* Checkout feature End */


/* Accordion Start */
.accordion {
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.card-toggle {
    background-color: #fff;
    border-bottom: 1px solid #d9d9d9;
    border-radius: 0;
    color: #000!important;
    text-align: center;
    padding: 20px 15px 20px 45px;
    height: 55px;
    max-height: 64px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.card-toggle__icon{
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #F0F0F0;
    margin-right: 8px;
    position: relative;
    transition: 0.2s all ease;
    border: 2px solid transparent;
    margin-top: -3px;
}
.card-toggle__icon:before{
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    content: '';
    display: block;
    border-radius: 50%;
    background-color: #000;
    transition: 0.2s all ease;
    opacity: 0;
}
.active .card-toggle__icon{
    border: 2px solid #000;
}
.active .card-toggle__icon:before{
    opacity: 1;
}


.card-body {
    padding: 20px;
    background-color: #fafafa;
    border-bottom: 1px solid #d9d9d9;
}
.accordion .card-content{
    display: none;
}
.accordion .card.active .card-content{
    display: block;
}
.card-toggle img{

}
.payment-stripe .card-toggle img{
    width: 20px;
}
.payment-paypal .card-toggle img{
    width: 120px;
}
.card-header__title{
    margin-left: 10px;
}
/* Accordion End */


/* Success Start */
.success-container *{
    box-sizing: border-box;
}
.success{
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px 15px 50px;
}

.success-subtitle{
    font-size: 20px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
}

.success_1 .success__shipping-details{
    padding: 30px 50px 40px;
    border: 2px solid #46ae46;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}
.success_1 .confirmation-email{
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #bfbfbf;
    font-size: 18px;
    line-height: 1.5;
}

.success_1 .success__summary {
    margin: 100px auto;
    max-width: 1120px;

}
.success_1 .success__summary h2 {
    text-align: left;
    color: #000;
    font-size: 30px;
    margin-bottom: 15px;
}
.success_1 .summary__table{
    width: 100%;

    padding: 25px 0;
    border-top: 1px solid #7f7f7f;
    border-bottom: 1px solid #7f7f7f;
    margin-bottom: 25px;
}
.success_1 .summary__table td{
    padding: 20px;
}
.success_1 .summary__table img{
    max-width: 100px;
}
.success_1 .summary__product-name {
    font-weight: 300;
    font-size: 22px;
}
.success_1 .summary__product-price {
    font-size: 24px;
    font-weight: 600;
    color: #46ae46;
    text-align: right;
}


.success_1 .summary__total-wrapper{
    clear: both;
}
.success_1 .summary__total{
    float: right;
    max-width: 300px;
}
.success_1 .summary__total td{
    padding: 10px;
}
.success_1 .summary__total-name{
    font-weight: 700;
    font-size: 20px;
}
.success_1 .summary__total-value{
    font-size: 20px;
    font-weight: 600;
    color: #46ae46;
    text-align: right;
}
/* Success End */

/* Success_2 Start */
.success_2 .success-subtitle{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.success_2 .success-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.success_2 .success-header a{
    text-decoration: none;
}
.success_2 .success-header h1{
    text-transform: uppercase;
    line-height: 1.1;
    color: #000;
    font-size: 30px;
    margin: 0;
}

.success_2 .success-top{
    max-width: 850px;
    text-align: center;
    margin: 0 auto 50px;
}
.success_2 .success-top h2{
    /*font-weight: 700;*/
    font-size: 45px;
    margin: 0 0 10px;
}
.success_2 .success-top p{
    font-size: 20px;
    margin: 0;
    line-height: 1.5;
}

.success_2 .success-content{
    display: flex;
}
.success_2 .success-content__left,
.success_2 .success-content__right{
    width: 50%;
    border: none;
    padding: 0px 20px;
}
.success_2 .success-content__left{
    padding-right: 70px;
}
.success_2 .success-content__right{
    padding-left: 70px;
}

.success_2 .success-congratulations{
    margin-bottom: 20px;
}
.success_2 .success-congratulations__heading{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.success_2 .success-congratulations img{
    margin-right: 20px;
}
.success_2 .success-congratulations h2{
    font-size: 28px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}
.success_2 .success-congratulations p{
    font-size: 20px;
    margin: 0 0 40px;
    line-height: 1.5;
}
.success_2 .success-congratulations p:last-child{
    margin-bottom: 0;
}

.success_2 .info-block{
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid #A3A3A3;
    border-radius: 3px;
    display: flex;
}
.success_2 .info-block__icon{
    margin-right: 20px;
}
.success_2 .info-block__content{

}
.success_2 .info-block h3{
    font-size: 20px;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}

.success_2 .info-block p{
    margin: 0;
}
.success_2 .info-block b{
    font-weight: 500;
}
.success_2 .info-block__customer-info{
    margin-bottom: 5px;
}
.success_2 .info-block__customer-info:last-child{
    margin-bottom: 0;
}


.success_2 .cart-product__name{
    padding-left: 0;
    font-weight: 400;
    font-size: 16px;
}
.success_2 .cart-products{
    border: none;
    margin: 0;
    padding: 0;
}
.success_2 .cart-summary{
    border: none;
}
.success_2 .cart-summary__table td,
.success_2 .products-table td{
    padding: 5px 0;
    border: none;
    font-size: 16px;
    font-weight: 400;
}
.success_2 .products-table .price{
    flex-direction: row;
    justify-content: flex-end;
}
.success_2 .products-table .price-regular{
    margin-left: 10px;
}


.success_2 .coupon-section{
    text-align: center;
}

.success_2 .coupon-section h2{
    font-size: 28px;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.success_2 .coupon-section h3{
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
}
.success_2 .coupon-section p{
    margin: 0 0 20px;
}
.success_2 .copy-input{
    background: #FFFDF6;
    border: 2px dashed #F9DC5C;
    border-radius: 3px;
    font-size: 25px;
    display: block;
    outline: none;
    width: 100%;
    text-align: center;
    padding: 9px 15px;
    font-weight: 700;
    margin-bottom: 20px;
}
.success_2 .btn{
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.1;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
    padding: 23px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.success_2 .btn__label{
    margin-right: 15px;
}
.success_2 .coupon-section .btn{
    color: #fff;
    background-color: #1BBD48;
}
.success_2 .success-info .btn{
    color: #000;
    background-color: #ffb945;
    margin-top: 20px;


}

@media (max-width: 1200px){
    .success_2 .success-content__left{
        padding-right: 20px;
        width: 60%;
    }
    .success_2 .success-content__right{
        padding-left: 20px;
        width: 40%;
    }
    .success.success_2{
        padding: 20px 0;
    }
    .success_2 .success-header{
        padding: 0 20px;
    }
    .success_2 .success-top{
        padding: 0 20px;
    }
}
@media (max-width: 767px){
    .success_2 .success-header{
        margin-bottom: 40px;
    }
    .success_2 .success-top{
        margin-bottom: 30px;
    }
    .success_2 .success-top h2{
        font-size: 35px;
    }
    .success_2 .success-top p{
        font-size: 18px;
    }
    .success_2 .success-content{
        flex-direction: column;
    }
    .success_2 .success-content__left{
        width: 100%;
    }
    .success_2 .success-content__right{
        width: 100%;
    }

    .success_2 .success-congratulations img{
        width: 60px;
    }
    .success_2 .success-congratulations h2{
        font-size: 22px;
    }
    .success_2 .success-congratulations p{
        text-align: center;
        font-size: 18px;
    }


    .success_2 .coupon-section{
        margin-bottom: 40px;
    }
    .success_2 .coupon-section h2{
        font-size: 22px;
    }

    .summary-section .success-subtitle{
        display: none;
    }

    .success_2 .btn{
        font-size: 20px;
        padding: 15px 25px;
    }
    .success_2 .btn .icon-arrow{
        width: 20px;
    }
}

    /* Success_2 End */


/* Variations Start */
.variation__input{
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.variation__label{
    cursor: pointer;
    background-color: #fff;
    border-radius: 5px;
    transition: 0.2s all ease;
    padding: 20px;
}
.variation__check-icon{
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: block;
    overflow: hidden;
    /*background-color: #F5F5F5;*/
    /*border: 1px solid #E6E6E6;*/
    transition: 0.2s all ease;
    /*border-radius: 50%;*/
    /*background-size: cover;*/
}
.variation__input:checked+.variation__label .variation__check-icon{
    /*background-image: url("../images/check.svg");*/
    /*background-color: transparent;*/
}

.variation__header{
    text-align: center;
    color: #000;
}
.variation__product-name{
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 5px;
    line-height: 1;
}
.variation__product-price{
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}



/* Style 1 */
.variations-style-1{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.variations-style-1 .variation{
    width: 50%;
    padding: 5px;
}
.variations-style-1 .variation__check-icon{
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: block;
    overflow: hidden;
    background-color: #F5F5F5;
    border: 1px solid #E6E6E6;
    transition: 0.2s all ease;
    border-radius: 50%;
    background-size: cover;
}
.variations-style-1 .variation__input:checked+.variation__label .variation__check-icon{
    background-image: url("../images/check.svg");
    background-color: transparent;
}

.variations-style-1 .variation__label{
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border: 2px dashed transparent;
    padding: 20px 10px;
    display: flex;
    align-items: center;
}
.variations-style-1 .variation__input:checked+.variation__label{
    background-color: #FAE588;
    border: 2px dashed #000000;
}

/* Style 2 */

.variations-style-2{

}
.variations-style-2 .variation{
    margin-bottom: 15px;
}
.variations-style-2 .variation__label{
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.8);
    border: 4px solid transparent;
    padding: 20px 15px;
    padding-left: 50px;
/*    display: flex;
    align-items: center;*/
    display: block;
    position: relative;
    border-radius: 3px;
    transition: unset;
}
.variations-style-2 .variation__check-icon{
    position: absolute;
    top:15px;
    left:10px;
    background-image: none!important;
    background-color: #fff;
    border: 1px solid #979797;
    border-radius: 0;
}
.variations-style-2 .variation__check-icon:before{
    position: absolute;
    display: block;
    content: '';
    opacity: 0;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    background-color: #000;
}
.variations-style-2 .variation__input:checked+.variation__label .variation__check-icon:before{
    opacity: 1;
    background-image: none;
}
.variations-style-2 .variation__header{
    text-align: left;
    /*padding-left: 35px;*/
    margin-bottom: 15px;
}
.variations-style-2 .variation__product-name{
    font-size: 15px;
}
.variations-style-2 .variation__input:checked+.variation__label{
    /*border: 4px solid #1bbd48;*/
    box-shadow: -1px 2px 4px 1px rgba(0, 0, 11, 0.1);
    border-image: linear-gradient(to right,#bd8f2f 0,#f9f1b2 66%,#bd8f2f 100%);
    border-image-slice: 1;
}

.variations-style-2 .variation__body{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.variations-style-2 .variation__body img{
    height: 80px;
}

.variations-style-2 .variation__meta{
    text-align: right;
    font-size: 16px;

    padding-right: 30px;
    padding-bottom: 5px;
}
.variations-style-2 .variation__meta>div{
    margin-bottom: 5px;
}
.variations-style-2 .variation__meta>div:last-child{
    margin-bottom: 0;
}
.variations-style-2 .variation__meta-recommended{
    font-size: 14px;
}
.variations-style-2 .variation__meta-regprice{
    color: #d0021b;
    text-decoration: line-through;
}
.variations-style-2 .variation__meta-price{
    font-weight: 700;
}

@media (max-width: 767px) {
    .variations-style-2 .variation__label{
        padding: 15px;
        padding-left: 50px;
    }
    .variations-style-2 .variation__header{
        margin-bottom: 35px;
    }
    .variations-style-2 .variation__body{
        /*flex-direction: row-reverse;*/
        display: block;
        position: relative;
    }
    .variations-style-2 .variation__meta{
        text-align: left;
        padding: 0;
    }

    .variations-style-2 .variation__body img{
        /*height: 65px;*/
        position: absolute;
        bottom: 0;
        right: 0;
    }
}


/* Style 3 */
.variations-style-3 .variation{
    margin-bottom: 15px;
}
.variations-style-3 .variation__label{
    display: block;
    position: relative;
    outline: 1px solid #F8F8F8;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    padding: 17px;
    padding-left: 55px;

}
.variations-style-3 .variation__label.variation__has-top-label{
    padding-top: 50px;
}
.variations-style-3 .variation__input:checked+.variation__label{
    background: #FFFDF7;
    outline: 5px solid #F9DC5C;
}
.variations-style-3 .variation__check-icon{
    background-color: #EAEAEA;
    /*border: 1px solid #D6D6D6;*/
    box-shadow: 0 0 0 1px #D6D6D6 inset;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: 17px;
}
.variations-style-3 .variation__check-icon:before{
    position: absolute;
    display: block;
    content: '';
    opacity: 0;
    width: 11px;
    height: 5px;
    top: 6px;
    left: 5px;
    border-bottom: 4px solid #00B107;
    border-left: 4px solid #00B107;
    border-radius: 1px;
    transform: rotate(-45deg);

}
.variations-style-3 .variation__input:checked+.variation__label .variation__check-icon{
    background-color: #fff;
    box-shadow: 0 0 0 2px #F9DC5C inset;
}
.variations-style-3 .variation__input:checked+.variation__label .variation__check-icon:before{
    opacity: 1;
}

.variations-style-3 .variation__body{
    display: flex;
    align-items: center;
}
.variations-style-3 .variation__body img{
    width: 100px;
    margin-right: 15px;
}

.variations-style-3 .variation__product-name{
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
}
.variations-style-3 .variation__meta-prices{
    display: flex;
    align-items: center;
}
.variations-style-3 .variation__meta-prices>div{
    width: 50%;
    text-align: center;
}
.variations-style-3 .variation__meta-price{
    font-weight: 600;
    font-size: 18px;
}
.variations-style-3 .variation__meta-price span{
    font-size: 20px;
}
.variations-style-3 .variation__meta-regprice{
    color: #920000;
    font-size: 16px;
    text-decoration: line-through;
}



.variations-style-3 .variation__top-label{
    position: absolute;
    text-align: center;
    top:0;
    left: 0;
    width: 100%;
    padding: 6px;
    border-radius: 5px 5px 0 0;
}
.variations-style-3 .variation__top-label span{
    font-size: 18px;
    font-weight: 600;
    margin: 0 8px;
}
/* Variations End */



/* Options Start */
.option{
    margin-bottom: 30px;
}
.option-subtitle{
    font-weight: 400;
    font-size: 16px;
    margin: 0 0 20px;
}
.option__name{
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    margin: 0 0 10px;
}
.option__variant{
    margin: 0 15px 15px;
}
.option__image-wrapper{
    text-align: center;
}
.option__image{
    max-height: 250px;
    max-width: 100%;
}
/* Options End */


/* Promocode Start */
.promocode__toggle{
    cursor: pointer;
    display: flex;
    align-items: center;
}
.promocode__icon{
    width: 25px;
    height: 25px;
    position: relative;
    display: block;
    margin-right: 20px;
    transition: 0.2s all ease-in-out;
}
.promocode-open .promocode__icon{
    transform: rotate(135deg);
}
.promocode__icon span{
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #000;
    border-radius: 5px;
    top: 40%;
}

.promocode__icon span:first-child{
    transform: rotate(90deg);
}
.promocode__icon span:last-child{

}

.promocode__inner{
    padding: 20px 0 0;
    display: none;
}
.promocode__inner .input-wrapper{
    margin: 0;
}
.promocode__apply{
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    padding: 5px 15px;
    z-index: 11;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}


/* Promocode End */


/* Cart Preloader Start */
/* -------------- preloader progress */
.cart-preloader{
    background-color: #fff;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    top: 0;
}
.cart-preloader .preloader-inner{
    max-width: 480px;
    transform: translateX(-50%);
    left: 50%;
    padding: 0 15px;
    text-align: center;
    top: 40%;
    position: absolute;
    width: 100%;
}
.preloader-inner .text {
    color: #363636;
    font-weight: 500;
    font-size: 20px;
    padding-bottom: 30px;
}
.progress-bar-wrapper {
    height: 15px;
    position: relative;
    background: #ccc;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    -webkit-box-shadow: inset 0 -1px 1px rgba(255,255,255,.3);
    -moz-box-shadow: inset 0 -1px 1px rgba(255,255,255,.3);
    box-shadow: inset 0 -1px 1px rgba(255,255,255,.3);
}
.progress-bar-wrapper .progress-bar {
    display: block;
    height: 100%;
    transition: width 1s linear;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomright: 8px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    background: #ccea1e;
    background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0,#ccea1e),color-stop(1,#ccea1e));
    background-image: -moz-linear-gradient(center bottom,#ccea1e 37%,#ccea1e 69%);
    -webkit-box-shadow: inset 0 2px 9px rgba(255,255,255,.3), inset 0 -2px 6px rgba(0,0,0,.4);
    -moz-box-shadow: inset 0 2px 9px rgba(255,255,255,.3),inset 0 -2px 6px rgba(0,0,0,.4);
    box-shadow: inset 0 2px 9px rgba(255,255,255,.3), inset 0 -2px 6px rgba(0,0,0,.4);
    position: relative;
    overflow: hidden;
    border-radius: 20px 8px 8px 20px;
}
.progress-bar-wrapper .progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent));
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    z-index: 1;
    -webkit-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    -webkit-animation: move 2s linear infinite;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomright: 8px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    overflow: hidden;
    border-radius: 20px 8px 8px 20px
}

.progress-bar-wrapper .progress-bar.finish {
    -webkit-border-top-left-radius: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-bottomleft: 8px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px
}

@keyframes move {
    0% {
        background-position: 0 0
    }
    100% {
        background-position: 50px 50px
    }
}


/* -------------- preloader progress */
.preloader-progress{
    background-color: #fff;
}
.preloader-progress .preloader-inner{
    max-width: 480px;
    transform: translateX(-50%);
    left: 50%;
    padding: 0 15px;
}
.preloader-inner .text {
    color: #363636;
    font-weight: 500;
    font-size: 20px;
    padding-bottom: 30px;
}
.progress-bar-wrapper {
    height: 15px;
    position: relative;
    background: #ccc;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    -webkit-box-shadow: inset 0 -1px 1px rgba(255,255,255,.3);
    -moz-box-shadow: inset 0 -1px 1px rgba(255,255,255,.3);
    box-shadow: inset 0 -1px 1px rgba(255,255,255,.3);
}
.progress-bar-wrapper .progress-bar {
    display: block;
    height: 100%;
    transition: width 1s linear;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomright: 8px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    background: #ccea1e;
    background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0,#ccea1e),color-stop(1,#ccea1e));
    background-image: -moz-linear-gradient(center bottom,#ccea1e 37%,#ccea1e 69%);
    -webkit-box-shadow: inset 0 2px 9px rgba(255,255,255,.3), inset 0 -2px 6px rgba(0,0,0,.4);
    -moz-box-shadow: inset 0 2px 9px rgba(255,255,255,.3),inset 0 -2px 6px rgba(0,0,0,.4);
    box-shadow: inset 0 2px 9px rgba(255,255,255,.3), inset 0 -2px 6px rgba(0,0,0,.4);
    position: relative;
    overflow: hidden;
    border-radius: 20px 8px 8px 20px;
}
.progress-bar-wrapper .progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent));
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    z-index: 1;
    -webkit-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    -webkit-animation: move 2s linear infinite;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomright: 8px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    overflow: hidden;
    border-radius: 20px 8px 8px 20px
}

.progress-bar-wrapper .progress-bar.finish {
    -webkit-border-top-left-radius: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-bottomleft: 8px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px
}

@keyframes move {
    0% {
        background-position: 0 0
    }
    100% {
        background-position: 50px 50px
    }
}

/* Cart Preloader End */



.hidden{
    display: none!important;
}
@media(max-width: 767px){
    .hidden-mob{
        display: none;
    }
}
@media(min-width: 768px){
    .hidden-pc{
        display: none;
    }
}



/* Language fixes Start */
[data-lang="de"] .toggle__label{
    width: 70px;
}
[data-lang="de"] .toggle__input:checked+.toggle__label .toggle__slider{
    left: 40px;
}
[data-lang="de"] .toggle__caption-left{
    left: 14px;
}



/* ================================================================================================== */
[data-lang="es"] .sale-container__text p{
    font-size: 15px;
}
[data-lang="es"] .sale-container{
    padding: 10px 10px;
}

[data-lang="es"] .toggle__caption-left{
    left: 14px;
}
[data-lang="es"] .toggle__caption-right{
    right: 9px;
}

/* ================================================================================================== */

[data-lang="it"] .sale-container{
    padding: 10px 5px;
}
[data-lang="it"] .sale-container__icon{
    margin-right: 5px;
}
[data-lang="it"] .sale-container__icon svg{
    width: 16px;
}
[data-lang="it"] .sale-container__text p{
    font-size: 15px;
}

[data-lang="it"] .toggle__caption-left{
    left: 14px;
}
[data-lang="it"] .toggle__caption-right{
    right: 9px;
}


/* ================================================================================================== */


@media (min-width: 1025px) {
    [data-lang="fr"] .checkout__steps li{
        padding-right: 35px;
    }
}
[data-lang="fr"] .checkout__steps li:last-child{
    padding-right: 0px;
}

[data-lang="fr"] .sale-container{
    padding: 10px 5px;
}
[data-lang="fr"] .sale-container__text p{
    font-size: 15px;
}


/* ================================================================================================== */
[data-lang="he"]{
    direction: rtl;
}

[data-lang="he"].checkout_2 .cart-form__left{
    padding-right: 20px;
    padding-left: 70px;
}
[data-lang="he"].checkout_2 .cart-form__right{
    padding-left: 20px;
    padding-right: 70px;
}
[data-lang="he"].checkout_2 .cart-form__right:after{
    right: 0;
    left: unset;
}


[data-lang="he"] .checkout__steps{
    /*display: none;*/
}
[data-lang="he"] .checkout__steps li{
    padding-right: 10px;
    padding-left: 15px;
    margin-right: 0;
    margin-left: 5px;
}
[data-lang="he"] .checkout__steps li:after{
    left: 0;
    right: unset;
    transform: translateY(-50%) rotate(180deg);
}
[data-lang="he"] .checkout__steps li:nth-child(3){
    padding-left: 0;
    margin-left: 0;
}



[data-lang="he"] .sale-container{
    padding: 10px 5px;
}
[data-lang="he"] .sale-container__icon{
    margin-right: 0;
    margin-left: 5px;
}
[data-lang="he"] .sale-container__icon svg{
    width: 18px;
}
[data-lang="he"] .sale-container__text p{
    font-size: 14px;
}


[data-lang="he"] .order-bump-checkbox .order-bump__label{
    padding: 12px 40px 10px 10px;
}
[data-lang="he"] .toggle__checkbox{
    left: unset;
    right: 10px;
}


[data-lang="he"] .input-wrapper.filled label{
    left: unset;
    right: 15px;
}

[data-lang="he"] .checkbox-label{
    padding-left: 0;
    padding-right: 25px;
}
[data-lang="he"] .checkbox-icon{
    left: unset;
    right: 0;
}

[data-lang="he"].checkout_2 .shipping_group .form-col:first-child .form-control{
    border-left: none;
    border-right: 1px solid rgba(60, 66, 87, 0.12);
}

[data-lang="he"].checkout_2 .card-body .form-col:first-child .form-control{
    border-right: none;
    border-left: 1px solid rgba(60, 66, 87, 0.12);
}

[data-lang="he"] select.form-control{
    background-position: left 10px center;
}
[data-lang="he"] .iti--allow-dropdown .iti__flag-container,
[data-lang="he"] .iti--separate-dial-code .iti__flag-container{
    right: 0;
    left: auto;
}
[data-lang="he"] .iti--allow-dropdown input,
[data-lang="he"] .iti--allow-dropdown input[type=tel],
[data-lang="he"] .iti--allow-dropdown input[type=text],
[data-lang="he"] .iti--separate-dial-code input,
[data-lang="he"] .iti--separate-dial-code input[type=tel],
[data-lang="he"] .iti--separate-dial-code input[type=text]{
    padding-left: 6px;
    padding-right: 52px;
}
[data-lang="he"] .iti__arrow{
    margin-left: 0;
    margin-right: 6px;
}
[data-lang="he"] .card-toggle__icon{
    margin-right: 0;
    margin-left: 8px;
}
[data-lang="he"].checkout_2 #card-cvv{
    background-position: center left 15px;
}

[data-lang="he"] .checkout__security svg{
    margin: -3px 0px 0 10px;
}

[data-lang="he"] .checkout__guarantee img{
    margin-right: 0;
    margin-left: 10px;
}
[data-lang="he"] .cart-submit .icon-lock{
    margin: -6px 0 0 0;
}
[data-lang="he"] .cart-submit .icon-arrow {
    transform: rotate(180deg);
    margin-right: 15px;
}
[data-lang="he"] .footer-menu li{
    padding: 0 10px;
    border-left: 1px solid #676767;
    border-right: none;
}
[data-lang="he"] .footer-menu li:first-child {
    padding-right: 0;

}
[data-lang="he"] .footer-menu li:last-child{
    padding-left: 0;
    border-left: none;
}
[data-lang="he"]  .order-bump__icon{
    margin-right: 0;
    margin-left: 15px;
}
[data-lang="he"] .promocode__icon{
    margin-right: 0;
    margin-left: 20px;
}
[data-lang="he"] .promocode__apply{
    right: unset;
    left: 0;
}
[data-lang="he"] .cart-summary__value{
    text-align: left;
}
[data-lang="he"].checkout_2 .products-table .price-regular{
    margin-left: 0;
    margin-right: 10px;
}
[data-lang="he"] .review__image{
    margin-right: 0;
    margin-left: 20px;
}
[data-lang="he"] .review__rating{
    margin-right: 0;
    margin-left: 10px;
}
[data-lang="he"] .feature__icon{
    margin-right: 0;
    margin-left: 20px;
}

[data-lang="he"] .summary-toggle__cart-icon{
    margin-right: 0;
    margin-left: 10px;
}
[data-lang="he"] .summary-toggle__arrow-icon{
    margin-right: 10px;
    margin-left: 0;
}
[data-lang="he"] .summary-toggle__coupon-icon{
    margin-right: 5px;
    margin-left: 0;
}


@media(max-width: 1200px){
    [data-lang="he"].checkout_2 .cart-form__left{
        padding-left: 20px;
    }
    [data-lang="he"].checkout_2 .cart-form__right{
        padding-right: 20px;
    }
}
@media(max-width: 500px){
    [data-lang="he"] .footer-menu li{
        padding: 0;
        border: none;
    }
}

/* Language fixes End */


