@charset "utf-8";

/* CSS Document */
/* ----------------
RESET CSS
----------------- */
body {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0;
    background: #fff;
    color: #000000;
    text-align: center;
    font-family: 'Aribau Grotesk';
    font-weight: 400;
}

div,
ul,
h1,
h2,
h3,
h4,
h5,
li,
p,
img,
form,
input,
textarea {
    margin: 0;
    padding: 0;
}

header,
section,
footer,
aside,
nav,
main,
article,
figure {
    display: block;
}

table,
tr,
td {
    border: 0;
}

a {
    outline: none;
    color: inherit;
    text-decoration: none;
}

img {
    border: none;
    height: auto;
}

li {
    list-style: none;
}

* {
    box-sizing: border-box;
}

.img-full {
    max-width: 100%;
}

.clearall {
    clear: both;
    font-size: 1px;
    line-height: 1px;
    height: 1px;
}

/* ====FONTS==== */
@font-face {
    font-family: 'Wix Madefor Text';
    src: url('WixMadeforText-Regular.woff2') format('woff2'),
        url('WixMadeforText-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wix Madefor Text';
    src: url('WixMadeforText-Medium.woff2') format('woff2'),
        url('WixMadeforText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wix Madefor Text';
    src: url('WixMadeforText-SemiBold.woff2') format('woff2'),
        url('WixMadeforText-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wix Madefor Text';
    src: url('WixMadeforText-Bold.woff2') format('woff2'),
        url('WixMadeforText-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wix Madefor Text';
    src: url('WixMadeforText-ExtraBold.woff2') format('woff2'),
        url('WixMadeforText-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aribau Grotesk';
    src: url('AribauGrotesk-Regular.woff2') format('woff2'),
        url('AribauGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aribau Grotesk';
    src: url('AribauGrotesk-Black.woff2') format('woff2'),
        url('AribauGrotesk-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aribau Grotesk';
    src: url('AribauGrotesk-Light.woff2') format('woff2'),
        url('AribauGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aribau Grotesk';
    src: url('AribauGrotesk-Medium.woff2') format('woff2'),
        url('AribauGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aribau Grotesk';
    src: url('AribauGrotesk-Italic.woff2') format('woff2'),
        url('AribauGrotesk-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aribau Grotesk';
    src: url('AribauGrotesk-Bold.woff2') format('woff2'),
        url('AribauGrotesk-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* =====MAIN_CSS_START===== */
.container {
    width: 1170px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* ====Top-Fix-Bar==== */
.top-fix-bar {
    float: left;
    width: 100%;
    margin-bottom: 80px;
}

.header {
    float: left;
    width: 100%;
    height: 80px;
    margin-top: -80px;
    top: 80px;
    position: relative;
    background: #fff;
}

.fixed-nav .header {
    position: fixed;
    z-index: 11;
    -webkit-transition: margin .3s ease-out;
    transition: margin .3s ease-out;
    margin-top: 0;
    top: 0;
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
}

.logo {
    float: left;
    margin-top: 20px;
    width: 150px;
}

.limit_stock_text {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-top: 27px;
    font-size: 16px;
    line-height: 26px;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.limit_stock_text:before {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 8px 0 0;
    width: 9px;
    height: 9px;
    background: #31d100;
    border-radius: 50%;
    content: "";
    animation: fade 1s ease-in-out infinite;
}

@keyframes fade {
    0% {
        opacity: 100%;
    }

    50% {
        opacity: 30%;
    }

    100% {
        opacity: 100%;
    }
}

.limit_stock_text span {
    display: inline-block;
    width: 50px;
    color: #ff0000;
}

.header_right {
    float: right;
    text-align: left;
    position: relative;
    padding-left: 35px;
    width: 210px;
    margin-top: 12px;
}

.phone_icon {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -19px;
    width: 20px;
}

.header_right p {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
}

.call_num {
    float: left;
    width: 100%;
    font-size: 22px;
    color: #000;
    font-weight: 800;
}

/* ====Banner==== */
.banner {
    float: left;
    width: 100%;
    padding: 45px 0 50px;
    background: #151b2b;
}

.banner_box {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center;
}

.bnr_box_rated_text {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
}

.bnr_star {
    display: inline-block;
    vertical-align: middle;
    margin: -6px 6px 0 0;
    width: 100px;
}

.tick_bnr {
    display: inline-block;
    vertical-align: middle;
    margin: -4px 5px 0;
    width: 17px;
}

.banner_box_head {
    float: left;
    width: 100%;
    font-size: 50px;
    line-height: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 10px;
}

/* ====section_1==== */
.section_1 {
    float: left;
    width: 100%;
    padding: 55px 0;
}

.sec1_left {
    float: left;
    width: 41%;

}

.sec1_slider_box {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}

.sec1_slider {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
}

ul.sec1_left_point {
    float: left;
    width: 100%;
    margin-top: 15px;
}

ul.sec1_left_point li {
    float: left;
    width: 100%;
    padding: 12px 10px 12px 35px;
    border-bottom: 1px solid #ebebeb;
    text-align: left;
    font-size: 20px;
    line-height: 26px;
    color: #000;
    font-weight: bold;
    background: url(../images/s1_point.png) no-repeat left 14px;
    background-size: 20px;
}

ul.sec1_left_point li:last-child {
    border-bottom: none;
}

.slLeft_guarantee_box {
    float: left;
    width: 100%;
    margin-top: 15px;
    border: 1px solid #e8e5e0;
    background: #e8e5e0;
    position: relative;
    border-radius: 10px;
    padding: 20px 40px 30px;
    overflow: hidden;
}

.slLeft_guarantee_box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    height: 80px;
    background: rgba(172, 148, 128, .4);
}

.guarantee_seal {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0;
    position: relative;
    width: 117px;
}

.guarantee_head {
    float: left;
    width: 100%;
    font-size: 28px;
    line-height: 32px;
    color: #000;
    font-weight: 800;
    margin-top: 15px;
}

.guarantee_text {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    font-weight: normal;
    margin-top: 15px;

}

.guarantee_text a {
    font-weight: bold;
}

.sec1_right {
    float: right;
    width: 55%;
}

.s1_right_heading {
    float: left;
    width: 100%;
    font-size: 39px;
    line-height: 46px;
    color: #000000;
    font-weight: 800;

}

.h_right {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    text-align: left;
    font-weight: 400;

}

.s1_right_heading span {
    font-weight: 600;
    position: relative;
}

.s1_right_heading span:after {
    position: absolute;
    content: "";
    top: 50%;
    right: -2px;
    left: -2px;
    border-top: 3px solid #ff0000;
    transform: rotate(-12deg);
}

.form_box {
    float: left;
    width: 100%;
    background: #ebebf2;
    border: 2px solid #fff;
    border-radius: 15px;
    margin-top: 15px;
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.1);
}

ul.form_steps {
    float: left;
    width: 100%;
    background: #151b2b;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    border-radius: 15px 15px 0px 0px;
    overflow: hidden;
}

ul.form_steps li {
    float: left;
    width: 50%;
    border-top: none;
    padding: 25px 10px 25px 20px;
    cursor: pointer;
    text-align: left;
    background: #151b2b;
    position: relative;
    color: #fff;
    border-radius: 5px 5px 0 0;
}

ul.form_steps li.active {
    background: #ebebf2;
    border-radius: 5px 30px 0 0;
    color: #000000;
}

ul.form_steps li.step2.active {
    border-radius: 30px 5px 0 0;
}

ul.form_steps li.check_tick {
    position: relative;
}

ul.form_steps li.check_tick:after {
    opacity: 1;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 25px;
    height: 25px;
    background: url(../images/chk_tik.png) no-repeat center center;
    background-size: 100%;
    content: "";
}

ul.form_steps li.active.check_tick:after {
    opacity: 0;
}

.step_num {
    display: inline-block;
    vertical-align: middle;
    font-size: 60px;
    line-height: 55px;
    font-weight: 800;
}

.step_txt {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 55px);
    font-size: 22px;
    line-height: 26px;
    font-weight: 800;
    margin-left: 10px;
}

.timer_strip {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}

.timer_strip_col {
    width: 50%;
}

.timer_strip_col_1 {
    background: #e8e5e0;
    padding: 10px 10px;
    text-align: left;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.3);
}

.timer_strip_col_2 {
    background: #ac9480;
    padding: 10px 10px 10px 30px;
    text-align: left;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.3);
}

.stop_watch,
.ship_van {
    display: inline-block;
    vertical-align: middle;
}

.ship_van {
    width: 40px;
}

.timer_strip_col_1>div {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 40px);
    padding-left: 10px;
}

.timer_strip_col_2>div {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 50px);
    padding-left: 10px;
}

.timer_text1 {
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    font-weight: bold;
}

.timer_text2 {
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    font-weight: 800;
    text-transform: uppercase;
}

.timer_text2 span {
    color: #f10909;
}

.form_inner {
    float: left;
    width: 100%;
    padding: 25px;
}

.formElements {
    float: left;
    width: 100%;
    margin: 7px 0;
    position: relative;
}

.formElements.half {
    width: calc(50% - 10px);
}

.formElements.half.fr {
    float: right;
}

.half2 {
    width: calc(33.33% - 10px);
}

.formElements.fldctr {
    margin: 7px 15px;
}

.inputField,
.selectField {
    float: left;
    width: 100%;
    font-family: 'Wix Madefor Text';
    font-weight: normal;
    font-size: 18px;
    color: #000;
    text-align: left;
    outline: none;
    border: 1px solid #b7b7b7;
    height: 55px;
    padding: 0 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.selectField {
    background: url(../images/select_fldbg.png) no-repeat 96% center #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.formBtn {
    float: left;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 25px;
    color: #fff;
    font-family: 'Wix Madefor Text';
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    padding: 14px 10px 16px;
    box-shadow: 0 4px 7px 1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 4px 7px 1px rgba(0, 0, 0, 0.3);
    background: #2fa010;
}

.formBtn:after {
    display: inline-block;
    vertical-align: middle;
    margin: -5px -10px 0 20px;
    content: '';
    background: url(../images/btn_arw.png) no-repeat center center;
    background-size: 100%;
    width: 33px;
    height: 33px;
}

.hurry_txt {
    float: left;
    width: 100%;
    margin: 28px 0;
    border-bottom: 1px solid #ccc;
    height: 1px;
}

.hurry_txt p {
    display: inline-block;
    vertical-align: top;
    background: #ebebf2;
    padding: 0 10px;
    margin-top: -12px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    color: #000000;
}

.hurry_txt span {
    color: #ff0000;
    font-weight: bold;
}

.safe_checkout_seal {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    margin: 10px 0 10px;
}

.slect_head_row {
    justify-content: space-between;
    display: flex;
    padding-bottom: 10px;
    border-bottom: 1px solid #c3c3c3;
}

.slect_head_row p {
    font-size: 22px;
    line-height: 20px;
    color: #000;
    font-weight: 700;
    text-align: left;
}

.slect_head_row p.fl {
    width: 12%;
}

.slect_head_row p.fr {
    /* width: 15%; */
    text-align: right;
}

.slect_head_row p.ctr {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    width: 70%;
}

.selectBox {
    float: left;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 25px;
}

.select_row {

    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 6px 0;
    align-items: center;
}

.select_qty {
    width: 10%;
    border: 1px solid #cacad4;
    background: #fff;
    background: url(../images/qty_arrw.png) no-repeat 85% center #fff;
    background-size: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 31px;
    padding: 0 12px;
    font-family: 'Wix Madefor Text';
    font-size: 16px;
    line-height: 28px;
    color: #000;
    font-weight: 700;
    outline: none;
    border-radius: 3px;
}

.item_name_row {
    width: 95%;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
}

.item_name {
    float: left;
    width: 80%;
    color: #000;
    font-weight: normal;
    letter-spacing: 0.3px;
}

.price_qty {
    float: right;
    text-align: right;
}

.payment_box {
    float: left;
    width: 100%;
    margin: 15px 0 10px;
    text-align: left;
}

.accept_card {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    font-weight: normal;
    margin-bottom: 10px;
}

.payment_card {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 10px;
    width: 180px;
}

.lock-bg,
.help-icon {
    color: #919191;
    width: 17px;
    position: absolute;
    right: 15px;
    top: 0px;
    cursor: pointer;
}

.offerBox {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    border: 2px dashed #000000;
    margin: 15px 0 5px;
    border-radius: 10px;
    background: #fff;
}

.ofrbx_top {
    float: left;
    width: 100%;
    background: #faf247;
    padding: 14px 20px 16px;
    text-align: left;
    border-radius: 10px 10px 0 0;
}

.fieldToggle {
    display: inline-block;
    vertical-align: middle;
    color: #000000;
    font-size: 18px;
    line-height: 20px;
    cursor: pointer;
    position: relative;
    padding-left: 10px;
}

.fieldToggle input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.fieldToggle input[type=checkbox]+span {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    border: 1px solid #808080;
    position: relative;
}

.fieldToggle input[type=checkbox]+span {
    position: absolute;
    left: 0;
}

.fieldToggle input[type=checkbox]:checked+span:after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    background: url(../images/tik.svg) no-repeat center center;
    background-size: 100%;
    left: 1px;
    top: 1px;
}

.ofrbx_top .fieldToggle {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 34px;
}

.lft_arow {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 15px 0 0;
}

.ofrbx_top .fieldToggle p {
    font-size: 20px;
    line-height: 24px;
    color: #079f38;
    font-weight: 700;
    font-family: 'Wix Madefor Text';
}

.ofr_chk {
    background: #fff;
    margin-top: 3px;
    margin-left: 5px;
}

.ofrbx_mdl {
    float: left;
    width: 100%;
    padding: 15px 18px;
    border-radius: 0 0 10px 10px;
    position: relative;
    text-align: left;
    background: #ffffff;
}

.offrbx_txt1 {
    float: right;
    width: calc(100% - 175px);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
}

.offrbx_txt1 span {
    color: #ff0000;
    font-weight: 500;
}

.offr_bx_img {
    float: left;
}

.privacy_text {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    font-weight: 500;
    margin: 12px 0;
}

.privacy_text img {
    display: inline-block;
    vertical-align: middle;
    margin: -5px 5px 0 0;
}

.tadda {
    animation-name: tadda;
    -webkit-animation-name: tadda;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.prdbx {
    border: 1px solid #d4d4d4;
    margin-top: 14px;
    position: relative;
    padding: 10px 10px 10px 40px;
    background: #fff url(../images/select.png) 10px center no-repeat;
    transition: transform ease 2s;
    -webkit-transition: transform ease 2s;
    height: 98px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prdbx-lft {
    text-align: left;
    margin-top: 6px;
}

.prdbx-rgt {
    font-weight: 500;
    font-size: 18px;
}

.qtbx1 {
    font-size: 18px;
    font-weight: 500;
}

.prdbx.active {
    background: #faf247 url(../images/selected.png) 10px center no-repeat;
    transform: scale(1.11);
}

.deal-nw {
    font-weight: 600;
    color: #f00;
    margin-bottom: 5px;
    display: block;
    font-size: 20px;
}

@keyframes tadda {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0px);
    }
}

.section_1 .container {
    display: flex;
    justify-content: space-between;
}


/* ====Section_2==== */
.section_2 {
    float: left;
    width: 100%;
    padding: 60px 0 20px;
}

.common_heading {
    float: left;
    width: 100%;
    font-size: 50px;
    line-height: 56px;
    color: #000;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-center {
    text-align: center;
}

.review_block {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.review_col {
    width: 92%;
    margin: 0 auto;
}

.review_box {
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    margin-top: 30px;
    overflow: hidden;
    box-shadow: 0 6px 9px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 6px 9px 1px rgba(0, 0, 0, 0.1);
}

.review_img {
    display: block;
    margin: 0 auto 0;
    width: 100%;
}

.review_cont {
    float: right;
    width: 100%;
    text-align: left;
    padding: 20px 15px 25px;
    background: #F8F7F5;
}

.review_box_text1 {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-weight: 700;
}

.review_box_text1 span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 14px;
    color: #878787;
    font-weight: 400;
    margin-top: -2px;
}

.review_box_text1 span img {
    display: inline-block;
    vertical-align: middle;
    margin: -4px 3px 0 5px;
    width: 17px;
}

.review_star {
    float: left;
    margin: 10px 0 0;
    width: 100px;
}

.review_box_text2 {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.3px;
    color: #000000;
    margin-top: 10px;
}

.smile {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 0 0 0;
}

/* ====Section_3==== */
.section_3 {
    float: left;
    width: 100%;
    padding: 60px 0;
}

.faq-container {
    display: inline-block;
    vertical-align: top;
    max-width: 970px;
    width: 100%;
    margin: 20px 0 10px;
}

.up-slide-dwn {
    float: left;
    width: 100%;
    border: 1px solid #ddeaee;
    background: #fff;
    padding: 0 0;
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.accordion {
    float: left;
    width: 100%;
    text-align: left;
    background: url(../images/close_btn.png) no-repeat right 30px center;
    padding: 18px 30px 20px 25px;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
}

.acdn-heading.accordion-open {
    background: url(../images/open_btn.png) no-repeat right 30px center #fff;
    background-size: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddeaee;
}

.accordion.last.acdn-heading.accordion-open {
    padding-bottom: 20px;
}

.acdn-content {
    float: left;
    width: 100%;
    text-align: left;
    background: #fff;
    padding: 20px 25px 15px;
}

.acdn-para {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 0.2px;
}

/* ====footer==== */
.footer {
    float: left;
    width: 100%;
    padding: 35px 0;
    border-top: 1px solid #cfcfcf;
}

.footer_text {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    color: #0d0d0d;
    margin: 8px 0;
}

.footer_text a {
    padding: 0 9px;
}

/* ======================= */
.showTab,
.showMob {
    display: none;
}

.showDesk {
    display: block;
}

.hideDesk {
    display: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.white {
    color: #fff;
}

/* CSS FOR MODAL */
#app_common_modal,
#error_handler_overlay {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647;
    background: #333;
    background: rgba(255, 255, 255, .8);
    display: none;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

#app_common_modal .app_modal_body,
#error_handler_overlay .error_handler_body {
    max-width: 600px;
    -webkit-background-clip: padding-box;
    font-family: Verdana, Geneva, sans-serif;
    box-sizing: border-box;
    outline: 0;
}

#error_handler_overlay .error_handler_body {
    margin: 100px auto;
    width: 95%;
    padding: 20px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

#app_common_modal_close,
#error_handler_overlay_close {
    position: absolute;
    right: -10px;
    top: -10px;
    color: #FFF;
    background-color: #333;
    border: 2px solid #FFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    line-height: 26px;
    padding: 0;
    margin: 0;
}

#app_common_modal .app_modal_body {
    margin: 100px auto;
    min-width: inherit;
    width: 95%;
    min-height: 400px;
    padding: 2.5%;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

#app_common_modal .app_modal_body iframe {
    min-height: 400px;
    width: 100%;
    border: 1px solid #d5d6ef;
}

.exitpop-content {
    position: fixed;
    height: 400px;
    width: 708px;
    margin: -200px 0 0 -354px;
    top: 50%;
    left: 50%;
    text-align: left;
    padding: 0;
    border: none;
    z-index: 2147483647;
}

.exitpopup-overlay {
    background: rgba(0, 0, 0, .6);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2147483647;
    display: none;
}

.exitpop-content img {
    display: block;
    margin: 0 auto;
    position: relative;
    text-align: center;
    max-width: 100%;
    height: auto;
}

.exitpop-discountbar {
    background-color: red;
    border-bottom: 4px dashed #fff;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 9999;
    display: none;
}

.app-load-spinner {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    margin: auto;
    background-color: #333;
    border-radius: 100%;
}

#loading-indicator::after,
#loading-indicator::before {
    box-sizing: border-box;
    left: 50%;
    position: absolute;
    top: 50%;
}

.all-card-types li {
    float: left;
    margin-right: 20px;
}

#loading-indicator {
    background-color: rgba(0, 0, 0, .5);
    bottom: 0;
    box-sizing: border-box;
    font-size: 1px;
    height: 100%;
    left: 0;
    margin: 0 !important;
    padding: 0 !important;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 2147483646;
}

#loading-indicator::before {
    background: url(../images/loading.gif) center center no-repeat rgba(0, 0, 0, 0);
    content: "";
    height: 70px;
    margin-left: -35px;
    margin-top: -70px;
    width: 70px;
    z-index: 2;
}

#loading-indicator::after {
    background: #fff;
    border-radius: 5px;
    color: #000;
    content: "Processing, one moment please... ";
    font-family: arial;
    font-size: 17px;
    height: 110px;
    line-height: 98px;
    margin-left: -150px;
    margin-top: -75px;
    padding-top: 35px;
    text-align: center;
    width: 300px;
    z-index: 1;
}

.giveaway_1 {
    background: #f8f7f5;
}

.giveaway_1 .container {
    align-items: center;
}

.giveaway_2 .container {
    display: flex;
    align-items: center;
}

.offrbx_txt strong {
    font-weight: bold;
    color: #ff0000;
}

.img-responsive {
    max-width: 100%;
}

.s1_right_heading2 {
    font-size: 28px;
}

.btn-md {
    max-width: 360px;
    float: none;
}



@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes scaleout {
    0% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

/********Order Summery***********/
ul.totallist {
    padding: 16px 0 0 0;
}

.dsplay {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
}

ul.totallist li {
    width: 100%;
    padding: 10px 0;
    display: inherit;
    justify-content: space-between;
    border-bottom: 1px solid #d4d4d4;
}

.tottxt1 {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
}

.totl-rgt {
    width: 25%;
    text-align: right;
}

.crt-prd-container {
    display: flex;
    flex-direction: column;
}

.cart-product,
.bump-product {
    flex-wrap: nowrap;
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 6px;
}


/* =====Media-Querry===== */
@media only screen and (max-width:1200px) {
    .container {
        width: 1004px;
    }

    .slLeft_guarantee_box {
        padding: 20px 30px 30px;
    }



    .stop_watch,
    .ship_van {
        width: 30px;
    }

    .timer_strip_col_1 {
        padding: 14px 10px;
    }

    .timer_text1 {
        font-size: 12px;
        line-height: 16px;
    }

    .timer_strip_col_2 {
        padding: 10px 10px 10px 20px;
    }

    .timer_text2 {
        font-size: 18px;
        line-height: 26px;
    }

    .formBtn {
        font-size: 28px;
    }
}

@media only screen and (max-width:1023px) {
    .container {
        width: 750px;
    }

    .showDesk {
        display: none;
    }

    .showTab {
        display: block;
    }

    .logo {
        width: 130px;
        margin-top: 24px;
    }

    .header_right {
        width: 190px;
    }

    .header_right p {
        font-size: 16px;
    }

    .call_num {
        font-size: 19px;
    }

    .limit_stock_text {
        font-size: 14px;
    }

    .banner_box_head {
        font-size: 38px;
        line-height: 46px;
    }

    .sec1_left {
        width: 42%;
    }

    ul.sec1_left_point li {
        padding: 12px 0px 12px 27px;
        font-size: 18px;
        line-height: 25px;
        background-size: 17px;
        background-position: 0 17px;
    }

    .slLeft_guarantee_box {
        padding: 20px 15px 30px;
    }

    .guarantee_head {
        font-size: 25px;
        line-height: 30px;
    }

    .sec1_right {
        width: 56%;
    }

    .common_heading {
        font-size: 42px;
    }

    ul.form_steps {
        margin-bottom: 15px;
    }

    ul.form_steps li {
        padding: 15px 10px 15px 10px;
    }

    .step_num {
        font-size: 45px;
        line-height: 45px;
    }

    .step_txt {
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.5px;
        width: calc(100% - 40px);
        margin-left: 5px;
    }

    ul.form_steps li.check_tick:after {
        width: 22px;
        height: 22px;
        top: 12px;
        right: 12px;
    }

    .timer_strip {
        margin-top: 15px;
    }

    .timer_strip_col_2 {
        padding: 10px;
    }

    .timer_strip_col_2>div {
        width: calc(100% - 35px);
    }

    .timer_text2 {
        font-size: 15px;
        line-height: 22px;
    }

    .form_inner {
        padding: 15px 15px 20px;
    }

    .formBtn {
        font-size: 24px;
    }

    .hurry_txt p {
        font-size: 16px;
    }

    .ofrbx_top {
        padding: 12px 10px 14px;
    }

    .formElements.fldctr {
        margin: 7px 7px;
    }

    .half2 {
        width: calc(33.33% - 5px);
    }

    /* .slect_head_row p.ctr {
        width: 66%;
    } */

    .item_name_row {
        width: 85%;
    }

    .select_qty {
        width: 12%;
    }

    .inputField,
    .selectField {
        padding: 0 10px;
        font-size: 16px;
    }

    .lft_arow {
        display: none;
    }

    .ofrbx_top .fieldToggle p {
        font-size: 19px;
        line-height: 21px;
    }

    .ofrbx_mdl {
        padding: 15px;
    }

    .offr_bx_img {
        width: 85px;
    }

    .offrbx_txt1 {
        width: calc(100% - 95px);
    }

    .review_block {
        padding: 0 90px;
    }

    .review_col {
        width: 48%;
    }

    .prdbx.active {
        transform: scale(1.1);
    }
}

@media only screen and (max-width:767px) {
    .container {
        width: 100%;
        padding: 0 15px;
        max-width: 600px;
        box-sizing: border-box;
    }

    .showDesk {
        display: none;
    }

    .showMob {
        display: block;
    }

    .hideMob {
        display: none;
    }

    .top-fix-bar {
        margin-bottom: 60px;
    }

    .header {
        height: 60px;
        margin-top: -60px;
        top: 60px;
    }

    .logo {
        margin: 18px 0 0;
        width: 100px;
    }

    .limit_stock_text {
        padding-left: 15px;
        width: 165px;
        letter-spacing: 0.2px;
        float: right;
        font-size: 12px;
        line-height: 18px;
        margin-top: 13px;
        text-align: left;
    }

    .limit_stock_text:before {
        position: absolute;
        left: 0;
        top: 6px;
        margin: 0 0 0 0;
        width: 7px;
        height: 7px;
    }

    .limit_stock_text span {
        width: 42px;
    }

    .header_right {
        display: none;
    }

    .banner {
        padding: 28px 0 30px;
    }

    .bnr_star {
        width: 80px;
    }

    .bnr_box_rated_text {
        font-size: 14px;
        line-height: 18px;
    }

    .tick_bnr {
        margin: -3px 5px 0;
        width: 14px;
    }

    .banner_box_head {
        font-size: 30px;
        line-height: 34px;
    }

    .section_1 {
        padding: 28px 0 40px;
    }

    .sec1_left {
        width: 100%;
    }

    ul.sec1_left_point li {
        font-size: 17px;
        line-height: 25px;
    }

    ul.sec1_left_point {
        margin-top: 5px;
    }

    .sec1_right {
        width: 100%;
        margin-top: 20px;
    }

    /* .s1_right_heading {
        font-size: 24px;
        line-height: 32px;
    } */

    ul.form_steps {
        margin-bottom: 5px;
    }

    ul.form_steps li {
        padding: 12px 5px 15px 8px;
    }

    ul.form_steps li.active {
        border-radius: 5px 20px 0 0;
    }

    ul.form_steps li.step2.active {
        border-radius: 20px 5px 0 0;
    }

    .step_num {
        font-size: 35px;
        line-height: 35px;
    }

    .step_txt {
        font-size: 13px;
        line-height: 17px;
        width: calc(100% - 35px);
    }

    .stop_watch,
    .ship_van {
        width: 25px;
    }

    .ship_van {
        width: 29px;
    }

    .timer_strip_col_1>div {
        width: calc(100% - 40px);
        padding-left: 5px;
    }

    .timer_strip_col_2>div {
        width: calc(100% - 35px);
    }

    .timer_text2 {
        font-size: 13px;
        line-height: 19px;
    }

    .timer_strip_col_2 {
        padding: 10px 10px 10px 15px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    ul.form_steps li.check_tick:after {
        right: 8px;
        top: 10px;
        width: 16px;
        height: 16px;
    }

    .slLeft_guarantee_box {
        margin-top: 30px;
    }

    .form_inner {
        padding: 10px 10px 15px;
    }

    .formElements {
        margin: 5px 0;
    }

    .formElements.half {
        width: 100%;
    }

    .formBtn {
        font-size: 20px;
        padding: 16px 10px 18px;
        margin-top: 15px;
    }

    .formBtn:after {
        width: 20px;
        height: 20px;
        margin: -3px -5px 0 12px;
    }

    .hurry_txt {
        margin: 30px 0 15px;
    }

    .hurry_txt p {
        font-size: 15px;
        line-height: 20px;
    }

    .slect_head_row p {
        font-size: 15px;
        line-height: 20px;
    }

    .slect_head_row p.ctr {
        width: 63%;
    }

    .item_name_row {
        width: 83%;
        font-size: 13px;
        line-height: 20px;
        letter-spacing: 0;
    }

    .select_qty {
        width: 13%;
        font-size: 13px;
        line-height: 16px;
        padding: 0 10px;
    }

    .payment_box {
        margin: 10px 0;
    }

    .payment_card {
        width: 150px;
    }

    .half2 {
        width: calc(50% - 5px);
    }

    .formElements.fldctr {
        margin: 7px 0 7px 10px;
    }

    .half2.fr {
        width: 100%;
    }

    .ofrbx_top .fieldToggle p {
        font-size: 16px;
        line-height: 22px;
    }

    .offr_bx_img {
        width: 65px;
    }

    .offrbx_txt1 {
        width: calc(100% - 70px);
        font-size: 15px;
        line-height: 20px;
    }

    .section_2 {
        padding: 25px 0 10px;
    }

    .common_heading {
        font-size: 30px;
        line-height: 36px;
        text-align: center;
    }

    .review_block {
        padding: 0 25px;
    }

    .review_box {
        margin-top: 25px;
    }

    .review_col {
        width: 100%;
    }

    .review_box_text2 {
        font-size: 17px;
        line-height: 25px;
    }

    .section_3 {
        padding: 25px 0 30px;
    }

    .up-slide-dwn {
        margin-top: 10px;
    }

    .accordion {
        padding: 15px 25px 15px 10px;
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0.3px;
        background-position: 97% center;
    }

    .acdn-heading.accordion-open {
        background-position: 97% center;
        padding-bottom: 15px;
    }

    .acdn-content {
        padding: 15px 10px;
    }

    .acdn-para {
        font-size: 17px;
        line-height: 25px;
        letter-spacing: 0.3px;
        margin-bottom: 12px;
    }

    .footer {
        padding: 20px 0;
    }

    .footer_text {
        font-size: 15px;
        line-height: 20px;
        margin: 5px 0;
    }

    .footer_text a {
        padding: 0 4px;
    }

    #app_common_modal .app_modal_body,
    #error_handler_overlay .error_handler_body {
        margin: 20px auto;
    }

    #app_common_modal .app_modal_body iframe {
        min-height: 360px;
    }

    #app_common_modal .app_modal_body {
        margin: 2% auto;
    }

    .qtbx1,
    .prdbx-rgt {
        font-size: 16px;
    }

    .deal-nw,
    .h_right {
        font-size: 18px !important;
    }

    .prdbx-lft-txt {
        font-size: 14px;
    }

    .s1_right_heading,
    .sec1_slider_box {
        text-align: center;
        font-size: 24px;
    }

    .sec1_left .img-responsive {
        margin: auto;
        display: block;
    }

    .section_1 .container {
        flex-direction: column;
    }

    .giveaway_2 .sec1_left {
        order: 2;
    }

    .s1_right_heading2 {
        font-size: 24px;
        margin-top: 10px;
    }

    .img-ratting {
        width: 180px;
    }

}