:root {
    --main-color: #FA5B01;
}


/*******************/
.tb_klarna_section .modal {
    max-width: 900px !important;
}

.modal-overlay {
    display: none;
    background-color: rgba(0, 0, 0, 0.35);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.modal-overlay.show {
    display: block;
}

.modal {
    max-width: 440px;
    background-color: #fff;
    -webkit-boder-radius: 8px;
    border-radius: 8px;
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 50%);
    box-shadow: 0 0 20px rgb(0 0 0 / 50%);
    display: block;
}

.modal-head {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eef3f7;
}

.popup-close {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    position: absolute;
    right: 15px;
    top: 20px;
}

.modal-ctnt {
    padding: 40px 30px;
    max-height: 96vh;
    overflow: auto;
}

.modal-ctnt ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.modal-ctnt ul li {
    margin-bottom: 10px;
}

.modal-ctnt ul li label {
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: #3c364e;
    margin-bottom: 5px;
}

.modal-ctnt input[type="submit"] {
    margin-top: 30px;
}

.modal-ctnt ul li input,
.modal-ctnt ul li select,
.modal-ctnt ul li textarea {
    height: 48px;
    width: 100%;
    padding: 0 15px;
    background-color: #fbfdfe;
    border: 1px solid #eef3f7;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.forgot_pass {
    text-align: right;
}

.forgot_pass a:hover,
.forgot_pass a:focus {
    text-decoration: underline;
}

.ed-hide {
    display: none;
}

.changeAuthModal {
    display: block;
    margin-bottom: 10px;
}


/***************Error/Success Message******************/

.msg-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: scroll;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(245, 246, 249, 0.75);
    background-size: cover;
    background-attachment: fixed;
    z-index: 9999999;
}

.msg-overlay.show {
    display: flex;
}

.msg {
    display: none;
    width: 300px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 50px rgba(106, 97, 151, 0.1);
    box-shadow: 0 0 50px rgba(106, 97, 151, 0.1);
    background-color: var(--white);
    text-align: center;
    position: relative;
    padding: 50px 30px;
    z-index: 999999;
}

.error.show .msg-error {
    display: block;
}

.success.show .msg-success {
    display: block;
}

.close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.close-btn svg {
    fill: var(--gray1);
}

.close-btn:hover svg {
    fill: var(--dark-gray);
}

.msg-img {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msg-txt {
    font-size: 14px;
    line-height: 22px;
    color: var(--gray1);
    font-weight: 400;
}

.msg-txt span {
    margin-bottom: 15px;
    display: block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}

.error .msg-txt span {
    color: var(--red);
}

.success .msg-txt span {
    color: var(--green);
}

.msg button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    min-width: 130px;
    height: 40px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 0;
    cursor: pointer;
}

.msg button svg {
    fill: var(--white);
    margin-right: 10px;
}

.error .msg button {
    background-color: var(--red);
}

.success .msg button {
    background-color: var(--green);
}

.msg button:hover,
.msg button:focus {
    background-color: var(--secondary-color);
}


/***************************/


/* Notification Msg */

.notification_dv {
    background-color: transparent !important;
}

.notification_dv .msg {
    width: 320px;
    padding: 12px 15px;
    position: fixed;
    right: 20px;
    top: 50px;
    -webkit-box-shadow: 0 0 100px rgb(106 97 151 / 70%);
    box-shadow: 0 0 100px rgb(106 97 151 / 70%);
}

.notification_dv .msg-img {
    margin-bottom: 0;
    width: 50px;
    margin-right: 10px;
    display: inline-block
}

.notification_dv .msg-txt {
    width: calc(100% - 70px);
    text-align: left;
    display: inline-block
}

.notification_dv .msg-txt span {
    margin-bottom: 0;
}

.sites.tb_orderdv {
    margin-top: 20px;
}

.msg-txt p {
    white-space: normal;
    word-break: break-word;
}


/* Loader Css*/

.product_loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255 255 255 / 80%);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    vertical-align: middle;
    display: flex;
    align-items: flex-end;
}

.pos_relative {
    position: relative;
    min-height: 500px;
}

.vertical_center {
    display: table;
    height: 100vh;
    width: 100%;
    text-align: center;
}

.center_dv {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.vertical_center span {
    width: 70px;
    height: 70px;
    position: relative;
    display: inline-block;
    border-radius: 50px;
    position: absolute;
    -webkit-animation: loadingCircles 1.5s infinite;
    -moz-animation: loadingCircles 1.5s infinite;
    animation: loadingCircles 1.5s infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

.vertical_center :nth-child(2) {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.vertical_center :nth-child(3) {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}

.product_loader.show_loader {
    opacity: 1;
    visibility: visible;
}

.product_loder span {
    box-shadow: 0px 0px 0px 0px var(--primary-color);
}

@-webkit-keyframes loadingCircles {
    0% {
        -webkit-transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--primary-color);
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--primary-color);
    }
}

@-moz-keyframes loadingCircles {
    0% {
        -moz-transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--primary-color);
    }
    100% {
        -moz-transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--primary-color);
    }
}

@keyframes loadingCircles {
    0% {
        transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--primary-color);
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--primary-color);
    }
}

.notification_dv .msg-img img {
    max-width: 100%;
}

.notification_dv .msg-img {
    vertical-align: text-bottom;
}


/* End Loader Css*/


/**/


/*************************** Cart Popup HTML **********************/

.cart_modal {
    max-width: 1080px;
    width: 100%;
}

.cart_modal table {
    width: 100%;
    text-align: left;
}

.btn {
    background-color: #8FCE35;
    color: #fff;
}

.btn:hover,
.btn:focus {
    background-color: #575b74;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.btn-icon span img {
    display: block;
    max-width: 40%;
    width: 100%;
}

.cart_sec table thead th,
.cart_sec table thead td {
    font-size: 18px;
    color: #3c364e;
    font-weight: 700;
}

.cart_sec table tbody td,
.cart_sec table tfoot td {
    font-size: 18px;
    color: #3c364e;
    font-weight: 700;
}

.cart_sec table thead tr th,
.cart_sec table thead tr td {
    text-transform: uppercase;
}

.cart_sec table thead tr th,
.cart_sec table thead tr td,
.cart_sec table tbody tr td {
    padding: 15px;
}

.cart_sec table tfoot tr td {
    padding: 5px 15px;
}

.cart_sec table tfoot tr:first-child td {
    padding: 0;
    height: 15px;
}

.cart_sec table thead tr th,
.cart_sec table thead tr td {
    border-bottom: 1px solid #e3eaef;
}

.cart_sec table thead tr th:nth-child(3),
.cart_sec table thead tr td:nth-child(3) {
    text-align: center;
}

.cart_sec table thead tr th:first-child,
.cart_sec table thead tr td:first-child,
.cart_sec table tbody tr td:first-child {
    padding-left: 60px;
    padding-right: 60px;
}

.cart_sec table thead tr th:last-child,
.cart_sec table thead tr td:last-child,
.cart_sec table tbody tr td:last-child,
.cart_sec table tfoot tr td:last-child {
    padding-left: 60px;
    padding-right: 60px;
}

.cart_sec table tr td.h15 {
    padding: 0;
    height: 15px;
}

.cart_sec table tbody tr:last-child td {
    border-bottom: 1px solid #e3eaef;
}

.cart_sec table tfoot tr:last-child td {
    border-top: 1px solid #e3eaef;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 800;
}

.cart_sec table tfoot tr td:last-child {
    text-align: right;
}

.cart_sec table tfoot tr td.txtRight {
    text-align: right;
}

.txt20 {
    font-size: 20px !important;
    text-align: right;
}

.txt_green {
    color: #96c84e !important;
}

.sp_offer {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 14px;
    background-color: #f8ffef;
    border: 1px solid #c3ed88;
    font-size: 11px;
    color: #8fce35;
    font-weight: 700;
    margin-left: 45px;
    text-transform: uppercase;
}

.cProdImg {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background-color: #d9e1e8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #809fb9;
    font-weight: 700;
    margin-right: 30px;
}


/* skin 2 Spinner Input */

.skin-2 .num-in {
    display: flex;
    align-items: center;
    float: right;
    width: 120px;
    height: 50px;
    border-radius: 6px;
    background-color: #fcfcfc;
    border: 1px solid #e1e3f7;
}

.skin-2 .num-in span {
    width: 40%;
    display: block;
    height: 40px;
    float: left;
    position: relative;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #909eb2;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.skin-2 .num-in input {
    float: left;
    width: 20%;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}


/* / skin 2 */

.discount_cpn {
    display: flex;
    align-items: center;
    padding-left: 60px;
}

.discount_cpn svg {
    fill: #8fce35;
    margin-right: 20px;
}

.discount_cpn span {
    margin-right: 20px;
}

.discount_cpn_inpt_sec {
    width: 269px;
    height: 50px;
    border-radius: 6px;
    background-color: #fcfcfc;
    border: 1px solid #e1e3f7;
    display: flex;
    align-items: stretch;
}

.discount_cpn_inpt_sec input {
    background: none;
    border: 0;
    display: block;
    height: 100%;
    width: calc(100% - 60px);
    padding-left: 20px;
    font-size: 15px;
}

.discount_cpn_inpt_sec input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #909eb2;
    opacity: 1;
    font-size: 15px;
    font-weight: 500;
}

.discount_cpn_inpt_sec input::-moz-placeholder {
    /* Firefox 19+ */
    color: #909eb2;
    opacity: 1;
    font-size: 15px;
    font-weight: 500;
}

.discount_cpn_inpt_sec input:-ms-input-placeholder {
    /* IE 10+ */
    color: #909eb2;
    opacity: 1;
    font-size: 15px;
    font-weight: 500;
}

.discount_cpn_inpt_sec input:-moz-placeholder {
    /* Firefox 18- */
    color: #909eb2;
    opacity: 1;
    font-size: 15px;
    font-weight: 500;
}

.discount_cpn_inpt_sec button {
    width: 60px;
    height: 100%;
    border: 0;
    border-radius: 6px;
    background: #8fce35;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.discount_cpn_inpt_sec button svg {
    fill: #fff;
    margin: 0;
}

.discount_cpn_inpt_sec input:focus,
.discount_cpn_inpt_sec button:focus {
    outline: none;
}

.discount_cpn_inpt_sec button:focus,
.discount_cpn_inpt_sec button:hover {
    background-color: #000;
}

.cart_modal .popup-close {
    top: 15px;
}


/*ShippingAddress Popup*/

#ShippingAddress .modal-head {
    padding: 15px 30px;
}

#ShippingAddress .modal-head h2 {
    font-size: 21px;
    font-weight: 500;
    margin: 0;
}

#ShippingAddress .popup-close {
    top: 15px;
}

#ShippingAddress .modal-ctnt {
    padding: 20px 30px;
}

#ShippingAddress .address_bx_main li {
    margin-bottom: 15px;
}

#ShippingAddress .address_bx_main li .address_bx {
    padding: 15px 15px;
    border-radius: 4px;
    background-color: #FBFDFE;
    border: 1px solid #EEF3F7;
}

#ShippingAddress .address_bx_main li .address_text {
    font-weight: 500;
    font-size: 13px;
}

#ShippingAddress .modal-ctnt ul li input[type="radio"] {
    width: 14px;
    height: 14px;
}

#ShippingAddress .modal-ctnt .select_address {
    text-align: right;
}

#ShippingAddress .address_bx_main .co_btn {
    height: 40px;
    min-width: 150px;
    font-size: 14px;
    display: inline-flex;
}

#buyNowProduct .co_btn {
    float: right;
}

.cart_sec table tbody td.tb_product_offer {
    text-align: center;
    color: #69A903;
}


/*UpSell Page CSS*/

#upsellPro .modal {
    max-width: 600px;
}

#upsellPro .modal .modal-head {
    padding: 15px 30px;
    display: none;
}

#upsellPro .modal .modal-head h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

.upSellMain {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    float: none;
}

.upSellHD {
    position: relative;
    background-color: var(--main-color);
    /* border-radius: 8px 8px 0 0; */
    padding: 5px 15px;
    text-align: center;
}

.upSellHD svg {
    width: 42px;
    height: 42px;
    fill: #fff;
    margin-right: 15px;
}

.upsell {
    margin: 0;
}

.upsell h1 {
    font-size: 21px;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upsell .upSellHD h1 {
    margin-bottom: 0;
}

.upsell h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: #f4476c;
    margin-bottom: 5px;
}

.upsell h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: #384750;
    margin-bottom: 10px;
}

.upSellContent {
    /* border: 4px dashed var(--main-color);
    border-top: 0;
    border-radius: 0 0 10px 10px; */
    padding: 25px 15px;
    display: flex;
    align-items: center;
}

.uscImg {
    width: 40%;
    padding-right: 20px;
    padding-left: 20px;
    position: relative;
}

.uscImg img {
    width: auto;
    max-width: 100%;
    display: block;
}

.uscTxt {
    width: 60%;
}

.supplyFor {
    background-color: #384750;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    max-width: 200px;
    margin-top: 15px;
}

.supplyFor>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sfLeft {
    background-color: var(--main-color);
    padding: 15px;
    width: 180px;
    text-align: center;
}

.sfRight {
    padding: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding: 8px 15px;
}

.sfRight>div {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.sfPrice {
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 5px;
}

.sfTotal {
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
    color: #fff000;
}

.sfLogos {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.sfLogos img {
    margin-right: 10px;
}

.upSellBottom {
    padding: 15px 15px;
    margin-top: 0;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.upsEncryption {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.upsEncryption svg {
    width: 32px;
    height: auto;
    fill: #3c364e;
    margin-right: 15px;
}

.upSellBottom .btn {
    height: 40px;
    min-width: 180px;
    max-width: none;
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    background-color: var(--main-color);
}

.upsVC {
    margin-top: 10px;
    height: 0;
}

.upsNoThanks {
    display: inline-block;
    color: #384750;
    font-size: 14px;
    line-height: 18px;
    margin-top: 15px;
    background: none;
    border: none;
    cursor: pointer;
}

.upsNoThanks:hover {
    color: var(--main-color);
}

.uscSave {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background-color: var(--main-color);
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    top: 25%;
    right: 10%;
    -webkit-text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.uscSave span {
    font-size: 36px;
    display: block;
}

#upsellPro .popup-close{
    z-index: 99;
    top: 12px;
    right: 12px;
}

/* #upsellPro .popup-close svg{
    fill: #fff;
} */
#upsellPro .modal-ctnt{
    padding: 0;
}
.modal-overlay#upsellPro{
    background-color: transparent;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}


/*Checkout Page CSS*/

.checkout {
    margin: 0 auto;
    border: 1px solid var(--main-color);
    border-radius: 6px;
    padding: 15px 0;
}

.checkout h1 {
    font-size: 21px;
    line-height: 28px;
    font-weight: 700;
    color: #384750;
    text-align: center;
    margin: 0;
}

.checkout h2 {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.checkout h3 {
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    color: #384750;
    border-bottom: 1px solid var(--main-color);
    margin-bottom: 20px;
}

.checkoutHD {
    padding: 5px 25px;
}

.checkoutContent {
    padding: 10px 0 0;
}

.coBillingHD {
    background-color: var(--main-color);
    padding: 5px 25px;
    color: #fff;
}

.coBillingContent {
    padding: 25px 25px;
}

.coBillingContentIn {
    display: flex;
    justify-content: space-between;
}

.coBillingIn {
    border: 1px solid var(--main-color);
    width: 49%;
    padding: 15px;
    border-radius: 10px;
}

.coProductInfo ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin-top: 15px;
    color: #909eb2;
}

.coProductPrice {
    color: #384750;
    font-weight: 700;
    padding-left: 15px;
}

.coPaymentInfo ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.coPaymentInfo ul li {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.coPaymentInfo ul li.w48 {
    width: 48%;
}

.coPaymentInfo ul li input {
    height: 50px;
    width: 100%;
    padding: 0px 15px;
    border-radius: 4px;
    background-color: #FBFDFE;
    border: 1px solid #EEF3F7;
}

.coPaymentInfo ul li label {
    /*position: absolute;
    top: 16px;
    left: 15px;*/
}

.coPaymentInfo ul li label img {
    height: 18px;
    width: auto;
    max-width: none;
}

.coBillingBottom {
    margin-top: 25px;
    text-align: center;
}

.coBillingBottom .btn {
    display: inline-block;
    min-width: 300px;
    max-width: none;
    padding-left: 25px;
    padding-right: 25px;
    height: 80px;
    font-size: 24px;
    margin-bottom: 15px;
}


/***/

.uscImg {
    padding-left: 0;
}


/* My Order Page CSS */

.myOrderMain {
    margin-top: 55px;
    padding: 0 15px;
}

.myOrderMain .content-head {
    margin-bottom: 20px;
}

.myOrder {
    margin: 0 auto;
    border: 1px solid var(--main-color);
    border-radius: 15px;
    padding: 0;
}

.myOrderMain .coBillingHD {
    border-radius: 13px 13px 0 0;
}

.myOrderMain .coBillingHD h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.myOrderMain .coBillingContentIn {
    display: block;
}

.orderBox {
    background-color: #fafafa;
    width: 100%;
    margin-bottom: 15px;
}

.obProductDtl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.obProdImgNm {
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.ob_img {
    width: 100px;
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;
}

.ob_img img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}

.ob_content {
    width: 70%;
    padding-left: 5%;
}

.ob_name {
    font-size: 16px;
    font-weight: 500;
    margin-left: 15px;
}

.ob_price {
    font-size: 16px;
    font-weight: 700;
    color: var(--main-color);
}

.obPriceCalculation {
    border-top: 1px solid var(--main-color);
}

.obPriceCalculation .ob_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}

.obPriceCalculation .ob_price span {
    color: #212529;
    width: 90%;
    text-align: right;
}

.ob_dt_stts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    background-color: var(--main-color);
    padding: 10px;
    border-radius: 5px;
}

.ob_date span,
.ob_status span,
.ob_trackLink span {
    font-weight: 500;
    margin-right: 5px;
}

.ob_trackLink span {
    display: block;
}

.ob_trackLink {
    border-top: 1px solid var(--main-color);
    padding-top: 15px;
}

.ob_trackLink a {
    display: inline-block;
    font-weight: normal;
    word-wrap: break-word;
    white-space: normal;
}

.ob_trackLink a:hover {
    color: #3c364e;
    text-decoration: underline;
}

.searchOrder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
}

.searchOrder input[type="email"] {
    height: 50px;
    width: 100%;
    max-width: 300px;
    padding: 5px 25px;
    margin-right: 15px;
    border-radius: 4px;
    background-color: #FBFDFE;
    border: 1px solid var(--main-color);
}

.searchOrder input[type="submit"] {
    height: 50px;
    min-width: 170px;
    padding: 0 15px;
    background-color: var(--main-color);
}


/**/


/* Offer Page CSS */

.co_offerTop {
    padding: 15px 0;
}

.offerTopSec {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    margin: auto;
    position: relative;
}

.steps::before {
    content: "";
    display: block;
    height: 2px;
    background-color: #000;
    width: 70%;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin-top: -1px;
    z-index: -1;
}

.modal-ctnt .steps li {
    margin: 0;
}

.steps li {
    font-size: 12px;
    color: #000;
    font-weight: 500;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: 33.33%;
}

.steps li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #000;
    font-size: 14px;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
}

.steps li div {
    width: 100%;
}

.steps li.currentStep {
    color: #69A903;
}

.steps li.currentStep span {
    border: 2px solid #69A903;
    color: #69A903;
}

.steps li.completedStep {
    color: #69A903;
}

.steps li.completedStep span {
    background-color: #69A903;
    border: 2px solid #69A903;
    color: #fff;
}

.steps li.completedStep span:before {
    content: "";
    display: block;
    height: 2px;
    background-color: #69A903;
    width: 400%;
    position: absolute;
    top: 15px;
    left: 0;
    margin-top: -3px;
    z-index: -1;
}


/* Offer Section Radio */

.selectOffer {
    display: block;
    position: relative;
    padding-left: 0;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectOffer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.selectOffer .checkmark {
    position: absolute;
    top: 7px;
    left: 15px;
    height: 21px;
    width: 21px;
    background-color: #fff;
    border-radius: 3px;
}

.selectOffer:hover input~.checkmark {
    background-color: #ccc;
}

.selectOffer input:checked~.checkmark {
    background-color: #fff;
}

.selectOffer .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.selectOffer input:checked~.checkmark:after {
    display: block;
    display: block;
    content: "";
    height: 24px;
    width: 24px;
    background: url("../images/draw-check-mark.png") center center no-repeat;
    background-size: 100%;
    top: -3px;
    left: 1px;
}

.selectOffer input:checked~.selectOfferCtnt {
    border-color: var(--main-color);
    -webkit-box-shadow: 0 0 15px rgb(0 0 0 / 50%);
    box-shadow: 0 0 15px rgb(0 0 0 / 50%);
}

.selectOffer input:checked~.selectOfferCtnt .soHead {
    /* background-color: #b7e075; */
}

.selectOffer input:checked~.selectOfferCtnt .soCtnt {
    /* background-color: #e2edcf; */
}

.selectOffer input:checked~.selectOfferCtnt .soShipping,
.selectOffer input:checked~.selectOfferCtnt .soCtnt .opPriceBox {
    /* background-color: #446f00; */
}

.selectOffer input:checked~.selectOfferCtnt .soCtnt .opPriceBox .co_btn span {
    display: none;
}

.selectOffer input:checked~.selectOfferCtnt .soCtnt .opPriceBox .co_btn span.selected {
    display: block;
}

.selectOfferCtnt {
    border: 1px solid var(--main-color);
    background-color: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    font-weight: 800;
    -webkit-box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}

.soHead {
    background-color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
    padding: 0;
    -webkit-border-radius: 7px 7px 0 0;
    border-radius: 7px 7px 0 0;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.soNm {
    font-size: 16px;
    font-weight: 800;
    color: #000;
    padding: 5px 5px 5px 45px;
}

.soNm span {
    color: #f6f6f6;
}

.soRetailPrice {
    padding: 0 15px;
    margin: 0;
}

.soShipping {
    padding: 5px 15px;
    background-color: var(--main-color);
    -webkit-border-radius: 0 8px 0 0;
    border-radius: 0 0 0 0;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
}

.soShipping span {
    display: block;
    height: 24px;
    width: 24px;
    margin-right: 5px;
}

.soCtnt {
    padding: 25px 30px;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

#offerSection .popup-close {
    top: 8px;
}

#offerSection .modal-head {
    padding: 10px 15px;
    padding-right: 50px;
}

#offerSection .modal-head h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.2px;
    color: var(--main-color);
    margin: 0;
}

#offerSection .modal-ctnt {
    padding: 15px 15px;
}

.co_offerContent {
    padding: 0;
}

.soCtnt {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
}

.modal-ctnt .soCtnt {
    display: block;
}

.modal-ctnt .offerProdImg {
    width: 100%;
    padding: 0;
}

.offerProdImg {
    width: 60%;
    padding-right: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.offerProdText {
    width: 100%;
    text-align: center;
    font-weight: 400;
    margin-top: 15px;
}

.opImg {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    max-width: 100%;
    align-items: center;
    justify-content: center;
}

#offerContent_section .opImg img{
    max-width: 20%;
}

.opImg img {
    max-width: 50%;
}

.plus {
    font-size: 36px;
    font-weight: 600;
    color: var(--main-color);
    align-self: center;
}

.free {
    position: absolute;
    top: 0;
    right: 0;
    width: 96px;
}

.opFree .free {
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    margin-left: -21px;
    margin-top: -21px;
}
.opFree .free img{
    max-width: 100%;
}

.opPriceBox {
    background-color: #f6f6f6;
    color: #080808;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.opTtl {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
}

.opPrice span {
    font-size: 21px;
    font-weight: 600;
    display: inline-block;
    margin: 0;
}

.opPriceBox .co_btn {
    margin:0;
    -webkit-pointer-events: none;
    pointer-events: none;
    background-color: var(--main-color);
    min-width: 0;
    font-size: 12px;
    letter-spacing: normal;
    height: 30px;
    padding: 0 10px;
}

.opPriceBox .co_btn:hover,
.opPriceBox .co_btn:focus {
    background-color: #ddd;
    color: #242424;
}

.topRight_labels {
    width: 100%;
    padding: 15px 0;
}

.offerMainWrap {
    margin-top: 0;
}

.selected {
    display: none;
}

#offerSection .modal {
    max-width: 600px;
}

.opImg.opMainProd {
    max-width: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opImg.opMainProd.opMainProd3 img {
    position: absolute;
    top: 0;
    z-index: 0;
}

.opImg.opMainProd.opMainProd3 img:nth-child(1) {
    left: -15px;
}

.opImg.opMainProd.opMainProd3 img:nth-child(2) {
    right: -15px;
}

.opImg.opMainProd.opMainProd3 img:nth-child(3) {
    left: 0;
    top: 40px;
    z-index: 1;
}

.co_offerContent .btn {
    background-color: var(--main-color);
    height: 36px;
    min-width: 100px;
    font-size: 14px;
}

.showActivePopup {
    z-index: 999999;
}

/* Contact page CSS */

.content-section {
    position: relative;
    padding: 0px 50px;
    min-height: 100vh;
}

.contact_Keto{
    background-color: #fff;
}

.contactMain {
    float: none;
    min-height: auto;
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.contactSec{
    background-color: #fafafa;
    border: 1px solid var(--main-color);
    padding: 25px 35px;
    margin: 45px auto;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.contactSec h1{
    font-weight: 700;
    letter-spacing: -1px;
}

.contactSec h3{
    font-weight: 500;
    color: var(--main-color);
}
.contactForm{
    margin: 35px -15px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.contactForm li{
    width: 50%;
    padding: 15px;
}
.contactForm li label{
    font-weight: 600;
}
.contactForm li input{
    height: 45px;
}
.contactSec .co_btn{
    background-color: var(--main-color);
    color: #fff;
    letter-spacing: normal;
    text-transform: uppercase;
    min-height: 40px;
}

ul.form_input_app_div.pc_form_2 {
    display: flex;
    flex-wrap: wrap;
}

/*Payment Page Css*/

section.main-content.upSellMain.checkoutMain .checkout h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.checkout  .coBillingIn.coPaymentInfo .sq-card-wrapper {
    min-width: 100% !important;
}
.checkout .coBillingContentIn .coBillingIn.coPaymentInfo .btn:not(:disabled):not(.disabled) {
    cursor: pointer;
    color: white;
    background-color: #fa5b01;
}
.checkout .coBillingContentIn .coBillingIn.coPaymentInfo a#card-button:focus {
    outline: none;
    box-shadow: none;
}


.recharge_img{
    margin-bottom:10px;
}
.recharge_img,
.img_ssl_checkout {
    max-width: 100%;
}
.tb_sslCheckout_img img.img_ssl_checkout {
    width: 120px;
    margin-top: 10px;
}
/* media query */

@media(max-width:1199.98px) {
    .cart_modal {
        max-width: 750px;
    }
    .cart_sec table thead th,
    .cart_sec table thead td {
        font-size: 13px;
    }
    .cart_sec table tbody td,
    .cart_sec table tfoot td {
        font-size: 14px;
    }
    .cart_sec table thead tr th,
    .cart_sec table thead tr td,
    .cart_sec table tbody tr td {
        padding: 10px;
    }
    .cart_sec table thead tr th:first-child,
    .cart_sec table thead tr td:first-child,
    .cart_sec table tbody tr td:first-child {
        padding-left: 10px;
        padding-right: 10px;
    }
    .cart_sec table thead tr th:last-child,
    .cart_sec table thead tr td:last-child,
    .cart_sec table tbody tr td:last-child,
    .cart_sec table tfoot tr td:last-child {
        padding-left: 10px;
        padding-right: 10px;
    }
    .txt20 {
        font-size: 15px !important;
    }
    .sp_offer {
        padding: 4px 10px;
        font-size: 9px;
        margin-left: 25px;
    }
    .cProdImg {
        width: 50px;
        height: 50px;
        font-size: 14px;
        margin-right: 10px;
    }
    .skin-2 .num-in {
        width: 80px;
        height: 30px;
        border-radius: 3px;
    }
    .skin-2 .num-in span,
    .skin-2 .num-in input {
        height: 100%;
        font-size: 13px;
    }
    .discount_cpn {
        padding-left: 10px;
    }
    .discount_cpn svg,
    .discount_cpn span {
        margin-right: 10px;
    }
    .discount_cpn_inpt_sec {
        width: 100%;
        height: 36px;
        border-radius: 3px;
    }
    .discount_cpn_inpt_sec input {
        width: calc(100% - 40px);
        padding-left: 12px;
        font-size: 13px;
    }
    .discount_cpn_inpt_sec button {
        width: 40px;
        border-radius: 2px;
    }
    .cart_sec table tfoot tr td {
        padding: 5px 10px;
    }
    .cart_sec {
        padding: 15px 0 0;
    }
    .cart_modal .popup-close {
        top: 0;
        right: 0;
    }
}

@media only screen and (max-width: 991.98px) {
    /***/
    .content-section .thankYouMain {
        padding-top: 0;
    }
    .thank-you {
        margin: 30px auto;
    }
    .thankYou_icon {
        margin-left: auto;
        margin-right: auto;
        max-width: 80px;
    }
    .thankYou_icon svg {
        width: 100%;
        height: auto;
    }
    .thankYouText h1 {
        font-size: 36px;
        line-height: 44px;
    }
    .thankYouText p {
        font-size: 16px;
        line-height: 24px;
    }
    .ty_note p {
        font-size: 14px;
        line-height: normal;
    }
    .ty_order_detail h5 {
        font-size: 16px;
    }
    .ty_order_detail_sec {
        min-height: 278px;
    }
    .upSellMain {
        padding-top: 0;
    }
    .coBillingIn {
        padding: 10px 15px;
    }
    .obPriceCalculation .ob_price span {
        width: 85%;
    }
}

@media only screen and (max-width: 767.98px) {
    /***/
    .upsell h1 {
        font-size: 21px;
        line-height: 32px;
    }
    .upSellHD svg {
        margin-right: 5px;
        width: 48px;
        height: 48px;
    }
    .upSellContent {
        display: block;
        padding: 35px 25px;
        border: 2px dashed var(--primary-color);
        border-top: 0;
    }
    .uscImg {
        width: 100%;
        padding: 0;
        margin-bottom: 25px;
    }
    .uscSave {
        top: 0;
        right: 15px;
    }
    .uscTxt {
        width: 100%;
    }
    .upsell h5 {
        font-size: 18px;
    }
    .upsell h2 {
        font-size: 28px;
        line-height: 35px;
    }
    .coBillingContentIn {
        flex-wrap: wrap;
    }
    .coBillingIn {
        width: 100%;
    }
    .coProductInfo {
        margin-bottom: 25px;
    }
    /* .checkout h1 {
        font-size: 21px;
        line-height: 32px;
    }
    .checkout {
        padding: 25px 0;
    }
    .checkoutContent {
        padding: 15px 0;
    }
    .coBillingContent {
        padding: 25px 15px;
    }
    .coBillingBottom .btn {
        height: 50px;
        font-size: 21px;
        padding-left: 15px;
        padding-right: 15px;
    } */
    /* Contact page */
    .content-section{
        padding: 0 15px;
    }
    .contactSec{
        padding: 15px 15px;
    }
    .contactSec h1{
        font-size: 32px;
        line-height: normal;
    }
    .contactSec h3{
        font-size: 21px;
        line-height: normal;
    }
    .contactForm {
        margin: 15px -15px;
    }
    .contactForm li {
        width: 100%;
    }
    /**/
    #offerSection .modal-head h2 {
        font-size: 16px;
        font-weight: 600;
    }
    #offerSection .modal-ctnt {
        padding: 15px;
    }
    .selectOffer .checkmark{
        left: 10px;
        height: 18px;
        width: 18px;
    }
    .soNm{
        font-size: 14px;
        font-weight: 600;
        padding: 5px 5px 5px 35px;
    }
    .soCtnt{
        padding: 10px;
    }
    .soRetailPrice {
        padding: 0 10px;
    }
    .opPriceBox{
        flex-wrap: wrap;
    }
    .opPriceBox > span{
        display: block;
        width: 100%;
        margin:0 0 5px;
    }
    .opPriceBox .co_btn {
        margin-top: 0;
        height: 32px;
        padding: 0 10px;
        font-size: 14px;
    }
    .selectOffer{
        margin-bottom: 10px;
    }
    .co_offerContent .btn{
        height: 36px;
        min-width: 120px;
    }
    .opPrice span{
        font-size: 18px;
    }
    /**/
    #upsellPro .modal-ctnt{
        padding: 0;
    }
    #upsellPro .upSellHD{
        border-radius: 7px 7px 0 0;
    }
    #upsellPro .popup-close, #offerSection .popup-close{
        z-index: 9;
        top: 7px;
    }
    #upsellPro .upSellHD svg, .upSellHD svg{
        width: 36px;
        height: 36px;
    }
    #upsellPro .upsell h1,
    .upsell .upSellHD h1 {
        font-size: 18px;
        line-height: 24px;
    }
    #upsellPro .upSellContent{
        padding: 10px 25px;
    }
    #upsellPro .uscImg, .uscImg {
        width: 60%;
        margin: 0 auto 10px;
    }
    #upsellPro .uscTxt, .uscTxt{
        text-align: center;
    }
    #upsellPro .upsell h5, .upsell h5 {
        font-size: 15px;
        margin: 0;
    }
    #upsellPro .upsell h2, .upsell h2 {
        font-size: 18px;
        line-height: 24px;
        margin: 0;
    }
    #upsellPro .supplyFor, .supplyFor {
        text-align: left;
        max-width: 150px;
        margin: 15px auto 0;
    }
    #upsellPro .sfRight, .sfRight{
        padding: 5px 15px;
    }
    #upsellPro .sfPrice, .sfPrice{
        font-size: 15px;
        line-height: normal;
    }
    #upsellPro .sfTotal, .sfTotal {
        font-size: 24px;
        line-height: normal;
    }
    #upsellPro .upSellBottom, .upSellBottom{
        padding: 5px 15px 15px;
        font-size: 14px;
        margin: 0;
    }
    #upsellPro .upsEncryption svg, .upsEncryption svg{
        width: 24px;
        margin-right: 5px;
    }
    #upsellPro .upSellBottom .btn, .upSellBottom .btn{
        height: 42px;
        min-width: 150px;
        font-size: 16px;
        margin-top: 20px;
    }
    #upsellPro .upsVC, .upsVC {
        margin-top: 5px;
        height: 0;
    }
    #upsellPro .upsNoThanks, .upsNoThanks{
        font-size: 14px;
        line-height: 18px;
        margin-top: 10px;
    }
    
    #upsellPro p {
        margin: 18px 0 16px 25px;
    }
}

@media(max-width:599.98px) {
    .discount_cpn {
        display: block;
    }
    .discount_cpn svg,
    .discount_cpn span {
        display: inline-block;
        vertical-align: middle;
    }
    .discount_cpn_inpt_sec {
        margin-top: 5px;
    }
    /***/
    .thankYouText h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .thank-you {
        padding: 25px 15px;
    }
    /* .upSellBottom .btn {
        height: 50px;
        font-size: 21px;
    } 
    .upsNoThanks {
        font-size: 16px;
    }*/
    .ob_dt_stts {
        display: block;
    }
    .obPriceCalculation .ob_price span {
        width: auto;
    }
    .searchOrder input[type="email"] {
        width: 100%;
        height: 40px;
        margin-bottom: 10px;
    }
    .searchOrder input[type="submit"] {
        height: 40px;
        min-width: 130px;
    }
    .opPrice span{
        font-size: 18px;
    }
    .opImg{
        max-width: 100%;
    }
    .opPriceBox{
        flex-wrap: wrap;
    }
    .opPriceBox .co_btn{
        margin-top: 0;
    }
}

@media only screen and (max-width: 479.98px) {
    /***/
    .supplyFor {
        display: block;
    }
    .sfLeft {
        width: 100%;
    }
    .sfRight {
        text-align: center;
    }
    .upSellBottom {
        font-size: 14px;
    }
    .checkoutHD {
        padding: 10px 15px;
    }
    .coBillingHD {
        padding: 5px 15px;
    }
    /***/
    .ob_img {
        width: 68px;
        margin-top: 5px;
    }
    .ob_content {
        width: 100%;
        padding: 0;
    }
    .searchOrder input[type="email"] {
        padding: 5px 15px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }
    .ob_name,
    .ob_price,
    .ob_dt_stts {
        font-size: 14px;
    }
    .obProductDtl,
    .obProdImgNm {
        align-items: flex-start;
    }
    .myOrderMain {
        margin-top: 35px;
    }
}

@media only screen and (max-width: 399.98px) {
    /***/
    .coPaymentInfo ul li.w48 {
        width: 100%;
    }
    .coBillingIn {
        padding: 15px;
    }
}