input[type=email],
input[type=search],
input[type=password],
input[type=tel],
input[type=text],
textarea {
    background-color: #fff;
    background-image: none;
    border: 1px solid #000000;
    color: #000000;
    font-size: 14px;
    height: 35px;
    margin-bottom: 22px;
    padding: 0 10px;
    width: 100%;
    border-radius: 0;
}

input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=text]:focus,
textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    border: 1px solid #000000;
}


/*----------------------------------------
      CUSTOM RADIO
  ----------------------------------------*/

.custom_radio {
    position: relative;
    display: inline-block;
}

.custom_radio label {
    padding-left: 34px;
    padding-right: 10px;
    margin-bottom: 0;
    line-height: 24px;
}

.custom_radio input[type="radio"] {
    position: absolute;
    visibility: hidden;
    height: 0px;
}

.custom_radio label::before {
    border: 0px solid #333;
    border-radius: 100%;
    content: "";
    display: block;
    height: 26px;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 26px;
}

.custom_radio label::after {
    border: 0px solid #333;
    border-radius: 100%;
    content: "";
    display: block;
    height: 20px;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 20px;
    z-index: 5;
    background: #3c74e7;
}

.custom_radio input[type="radio"]:checked~label::before {
    background: transparent;
    border: 1px solid #333;
}

.custom_radio [type="radio"]:checked+label {
    font-weight: 500;
}

.custom_radio.red label::after {
    background: red;
}

.custom_radio.blue label::after {
    background: blue;
}

.custom_radio.green label::after {
    background: green;
}

.custom_radio.yellow label::after {
    background: yellow;
}


/*----------------------------------------
      CUSTOM CHECKBOX ELEMENT
  ----------------------------------------*/

.custom_checkbox {
    display: inline-block;
    position: relative;
}


/* Base for label styling */

.custom_checkbox [type="checkbox"]:not(:checked),
.custom_checkbox [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

.custom_checkbox [type="checkbox"]:not(:checked)+label,
.custom_checkbox [type="checkbox"]:checked+label {
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    margin-bottom: 0;
    line-height: 20px;
    padding-right: 10px;
    font-size: 12px;
    color: #333;
    display: block;
}

.custom_checkbox [type="checkbox"]:checked+label {
    font-weight: 500;
}


/* checkbox aspect */

.custom_checkbox [type="checkbox"]:not(:checked)+label:before,
.custom_checkbox [type="checkbox"]:checked+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    border-radius: 0px;
}


/* checked mark aspect */

.custom_checkbox [type="checkbox"]:not(:checked)+label:after,
.custom_checkbox [type="checkbox"]:checked+label:after {
    content: '\2714';
    position: absolute;
    left: 2px;
    font-size: 12px;
    line-height: 0.8;
    color: #000;
    -webkit-transition: all .2s;
    transition: all .2s;
    top: 5px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* checked mark aspect changes */

.custom_checkbox [type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom_checkbox [type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/*----------------------------
      PLACEHOLDER FONT SIZE
  -----------------------------*/

 ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 14px;
    color: #000;
}

 ::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 14px;
    color: #000;
}

 :-ms-input-placeholder {
    /* IE 10+ */
    font-size: 14px;
    color: #000;
}

 :-moz-placeholder {
    /* Firefox 18- */
    font-size: 14px;
    color: #000;
}

.btn_common {
    border-radius: 0px;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 41px;
    padding: 0 13px;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
    -webkit-transition: background-color .25s ease-in-out, border-color .25s ease-in-out, color .25s ease-in-out;
    transition: background-color .25s ease-in-out, border-color .25s ease-in-out, color .25s ease-in-out;
    background-color: #3a3a3a;
    border-color: #3a3a3a;
    color: #ffffff;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn_common:hover {
    background-color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    color: #3a3a3a;
}

.btn_common:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn_transparent {
    border-radius: 0px;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 41px;
    padding: 0 30px;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
    -webkit-transition: background-color .25s ease-in-out, border-color .25s ease-in-out, color .25s ease-in-out;
    transition: background-color .25s ease-in-out, border-color .25s ease-in-out, color .25s ease-in-out;
    background-color: transparent;
    border-color: #3a3a3a;
    color: #3a3a3a;
}

.btn_transparent:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn_white {
    border-radius: 0px;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 41px;
    padding: 0 30px;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    -webkit-transition: background-color .25s ease-in-out, border-color .25s ease-in-out, color .25s ease-in-out;
    transition: background-color .25s ease-in-out, border-color .25s ease-in-out, color .25s ease-in-out;
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn_white:hover {
    background-color: #fff;
    -webkit-transition: background-color .25s ease-in-out, border-color .25s ease-in-out, color .25s ease-in-out;
    transition: background-color .25s ease-in-out, border-color .25s ease-in-out, color .25s ease-in-out;
    color: #000;
}

.btn_white:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.sassy_accordion .acc_header div {
    border-top: 1px solid #dfdfdf;
    cursor: pointer;
    display: block;
    line-height: 55px;
    margin: 0;
    padding: 0 20px;
    position: relative;
    text-align: left;
    position: relative;
    font-size: 16px;
    font-style: normal;
}

.sassy_accordion .acc_header div:after {
    content: "+";
    font-size: 30px;
    position: absolute;
    right: 16px;
    top: 0;
}

.sassy_accordion .acc_header div.collapsed:after {
    content: "";
    font-size: 30px;
    width: 17px;
    height: 1px;
    background: #000;
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.d_flex_start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.d_flex_btwn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.d_flex_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.d_flex_end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.d_flex_inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.d_none {
    display: none;
}

.m_0 {
    margin: 0 !important;
}

.mt_0 {
    margin-top: 0 !important;
}

.mt_5 {
    margin-top: 5px !important;
}

.mt_10 {
    margin-top: 10px !important;
}

.mt_15 {
    margin-top: 15px !important;
}

.mt_20 {
    margin-top: 20px !important;
}

.mr_0 {
    margin-right: 0 !important;
}

.mr_5 {
    margin-right: 5px !important;
}

.mr_10 {
    margin-right: 10px !important;
}

.mr_15 {
    margin-right: 15px !important;
}

.mr_20 {
    margin-right: 20px !important;
}

.mb_0 {
    margin-bottom: 0 !important;
}

.mb_5 {
    margin-bottom: 5px !important;
}

.mb_10 {
    margin-bottom: 10px !important;
}

.mb_15 {
    margin-bottom: 15px !important;
}

.mb_20 {
    margin-bottom: 20px !important;
}

.ml_0 {
    margin-left: 0 !important;
}

.ml_5 {
    margin-left: 5px !important;
}

.ml_10 {
    margin-left: 10px !important;
}

.ml_15 {
    margin-left: 15px !important;
}

.ml_20 {
    margin-left: 20px !important;
}

.p_0 {
    padding: 0 !important;
}

.p_5 {
    padding: 5px !important;
}

.p_10 {
    padding: 10px !important;
}

.p_15 {
    padding: 15px !important;
}

.p_20 {
    padding: 20px !important;
}

.pt_0 {
    padding-top: 0 !important;
}

.pt_5 {
    padding-top: 5px !important;
}

.pt_10 {
    padding-top: 10px !important;
}

.pt_15 {
    padding-top: 15px !important;
}

.pt_20 {
    padding-top: 20px !important;
}

.pr_0 {
    padding-right: 0 !important;
}

.pr_5 {
    padding-right: 5px !important;
}

.pr_10 {
    padding-right: 10px !important;
}

.pr_15 {
    padding-right: 15px !important;
}

.pr_20 {
    padding-right: 20px !important;
}

.pb_0 {
    padding-bottom: 0 !important;
}

.pb_5 {
    padding-bottom: 5px !important;
}

.pb_10 {
    padding-bottom: 10px !important;
}

.pb_15 {
    padding-bottom: 15px !important;
}

.pb_20 {
    padding-bottom: 20px !important;
}

.pl_0 {
    padding-left: 0 !important;
}

.pl_5 {
    padding-left: 5px !important;
}

.pl_10 {
    padding-left: 10px !important;
}

.pl_15 {
    padding-left: 15px !important;
}

.pl_20 {
    padding-left: 20px !important;
}

.width_100p {
    width: 100px !important;
}

.width_120p {
    width: 120px !important;
}

.width_150p {
    width: 150px !important;
}

.width_180p {
    width: 180px !important;
}

.width_200p {
    width: 200px !important;
}

.width_240p {
    width: 240px !important;
}

* {
    margin: 0;
    padding: 0;
}


/*---------------------------------------
  COMMON STYLES
  -----------------------------------------*/

body {
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

a:hover,
a:focus {
    -webkit-box-shadow: 0 0px transparent;
    box-shadow: 0 0px transparent;
    text-decoration: none;
    color: inherit;
    outline: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.no-padding-left {
    padding-left: 0;
}

.no-padding-right {
    padding-right: 0;
}

.margin_five {
    margin-left: -5px;
    margin-right: -5px;
}

.padding_five {
    padding-left: 5px;
    padding-right: 5px;
}

.main_title h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.main_title p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
}

.main_title p a {
    color: inherit;
}

@media (min-width: 1200px) {
    .custom_container {
        max-width: 1440px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
}


/*
  =======================================================================
  [Table of contents]
  =========================================================================
  01. COMMON STYLES
  02. HEADER
  03. NAV
  04. WELCOME SECTION
  */


/*-------------------------------
      HEADER AREA
  ---------------------------------*/

.header_top {
    background-color: #f7f3eb;
    text-align: center;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.header_top .close_h_top {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.header_top p {
    margin-bottom: 0;
}

.overflow_hidden {
    overflow-y: hidden;
}

.header_area.header_home {
    background: transparent;
}

.header_area {
    background: #ffffff;
}

.header_home {
    -webkit-transition: background .25s;
    transition: background .25s;
}

.header_home .navbar-brand .black_logo {
    display: none;
}

.header_home.custom_home_header {
    background-color: #ffffff;
    -webkit-transition: background .25s;
    transition: background .25s;
}

.header_home.custom_home_header .black_logo {
    display: block;
}

.header_home.custom_home_header .white_logo {
    display: none;
}

.header_home.custom_home_header .main_header .header_cart_wrap .h_cart_menu {
    color: #666;
}

.header_home .main_header.home_header_bg {
    background-color: #ffffff;
}

.header_home .main_header.home_header_bg .black_logo {
    display: block;
}

.header_home .main_header.home_header_bg .white_logo {
    display: none;
}

.header_home .main_header.home_header_bg .nav-link {
    color: #666666 !important;
}

.header_home .main_header.home_header_bg .header_cart_wrap .h_cart_menu {
    color: #666;
}

.navbar-brand img {
    width: 150px;
}

@media (max-width: 1024px) {
    .navbar-brand img {
        width: 100px;
    }
}

.navbar {
    padding: 0;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.navbar-collapse {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

@media (max-width: 1023px) {
    .navbar-collapse {
        display: none;
    }
}

.navbar-nav {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.navbar-nav>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 48px;
    position: relative;
}

@media (max-width: 1024px) {
    .navbar-nav>li {
        padding-bottom: 20px;
    }
}

.header_home .nav-link {
    color: #fff !important;
}

.header_home.custom_home_header .nav-link {
    color: #666666 !important;
}

.header_home .main_header .header_cart_wrap .h_cart_menu {
    color: #fff;
}

.nav-link {
    color: #666666 !important;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0 20px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.ml-auto .nav-link {
    margin: 0 12px;
}

@media (max-width: 1024px) {
    .ml-auto .nav-link span {
        display: none;
    }
}

.header_search_desktop {
    position: relative;
}

.header_search_desktop input {
    margin-bottom: 0;
}

.header_search_desktop button {
    position: absolute;
    right: 5px;
    top: 60%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    border: none;
    font-size: 15px;
}

.header_sign_wrap>button.dropdown-toggle,
.header_sign_wrap>button.dropdown-toggle:hover,
.header_sign_wrap>button.dropdown-toggle:focus {
    outline: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border: none !important;
    color: #666666 !important;
}

.header_sign_wrap>button.dropdown-toggle:after,
.header_sign_wrap>button.dropdown-toggle:hover:after,
.header_sign_wrap>button.dropdown-toggle:focus:after {
    display: none;
}

.header_sign_wrap .show>button.dropdown-toggle,
.header_sign_wrap .show>button.dropdown-toggle:hover,
.header_sign_wrap .show>button.dropdown-toggle:focus {
    outline: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border: none !important;
    color: #666666 !important;
}

.header_sign_wrap .show>button.dropdown-toggle:after,
.header_sign_wrap .show>button.dropdown-toggle:hover:after,
.header_sign_wrap .show>button.dropdown-toggle:focus:after {
    display: none;
}

.header_sign_wrap .dropdown-menu {
    padding: 15px;
    border: 0px solid transparent;
    background: #f7f3eb;
    left: 50%;
    transform: translateX(-70%);
    width: 250px;
    margin-top: 19px;
}

.header_sign_wrap .dropdown-menu .header_search_form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header_sign_wrap .dropdown-menu input {
    margin-bottom: 10px !important;
    line-height: 29px !important;
    height: 29px !important;
}

.header_sign_wrap .dropdown-menu .btn_common {
    line-height: 29px !important;
}

.main_header {
    position: relative;
}

@media (max-width: 1023px) {
    .main_header {
        display: none;
    }
}

.main_header .navbar {
    padding: 20px 0px 0px 30px;
}

@media (max-width: 1024px) {
    .main_header .navbar {
        padding: 10px 15px 0px;
    }
}

.main_header .megamenu {
    position: absolute;
    left: 0;
    width: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    top: 100%;
    -webkit-transition: height .25s ease-in-out, opacity .25s ease-in-out;
    transition: height .25s ease-in-out, opacity .25s ease-in-out;
    padding: 20px 20px 0px;
}

.main_header .megamenu.megamenu_open {
    opacity: 1;
    visibility: visible;
    -webkit-transition: height .25s ease-in-out, opacity .25s ease-in-out;
    transition: height .25s ease-in-out, opacity .25s ease-in-out;
    background: #f7f3eb;
}

.main_header .megamenu_content {
    background: #f7f3eb;
    max-width: 1280px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main_header .megamenu_content .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

.main_header .megamenu_content h2 {
    font-size: 14px;
    color: #666666;
    text-transform: capitalize;
}

.main_header .megamenu_content .megamenu_list h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
}

.main_header .megamenu_content .megamenu_list h2 a {
    font-size: 14px;
    color: #666666;
}

.main_header .megamenu_content .megamenu_list h2 a:hover {
    text-decoration: underline;
}

.main_header .megamenu_content ul li {
    padding-bottom: 7px;
}

.main_header .megamenu_content ul li a {
    font-size: 14px;
    color: #666666;
}

.main_header .megamenu_content ul li a:hover {
    text-decoration: underline;
}

.main_header .megamenu_content .megamenu_img {
    text-align: center;
}

.main_header .megamenu_content .megamenu_img img {
    margin-bottom: 20px;
    width: 100%;
}

.main_header .ml-auto .megamenu.megamenu_open {
    height: 80px;
}

.main_header .header_search .header_search_form {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    width: 80%;
}

.main_header .header_search .header_search_form input {
    margin-bottom: 0;
    background: transparent;
    height: 40px;
}

.main_header .header_search .header_search_form .close_search {
    background: transparent;
    border: none;
    margin-left: 20px;
}

.main_header .header_search .header_search_form .close_search:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    border: none;
}

.main_header .header_sign input {
    margin-bottom: 0;
    background: transparent;
    height: 40px;
}

.main_header .header_sign button.btn_common {
    padding: 0 20px;
    line-height: 40px;
    background: transparent;
    font-size: 12px;
    color: #000;
}

.main_header .header_sign button.btn_common:hover {
    background-color: #ffffff;
}

.main_header .header_cart_wrap {
    position: relative;
}

.main_header .header_cart_wrap .h_cart_menu {
    padding: 0.5rem 1rem;
    color: #666666;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.main_header .header_cart_wrap .header_cart {
    position: absolute;
    right: -345px;
    background: #f7f3eb;
    opacity: 0;
    width: 345px;
    visibility: hidden;
    z-index: 1;
    top: 38px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    padding: 60px 20px 40px 40px;
}

.main_header .header_cart_wrap.open .h_cart_menu {
    background: #f7f3eb;
}

.main_header .header_cart_wrap.open .header_cart {
    right: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.header_cart .close_cart {
    cursor: pointer;
    height: 30px;
    left: 10px;
    position: absolute;
    top: 10px;
    width: 30px;
}

.header_cart .close_cart img {
    width: 100%;
}

.header_cart .m_cart_t {
    border-bottom: 1px solid #979797;
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 100%;
    text-transform: uppercase;
}

.header_cart .m_cart_t .hide_m_nav {
    margin-right: 15px;
}

.header_cart .cart_header_table {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 20px;
}

.header_cart .cart_header_table .header_cart_left h2 {
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 20px;
    margin: 0;
    text-transform: uppercase;
}

.header_cart .cart_header_table .header_cart_left h2 a {
    color: inherit;
}

.header_cart .cart_header_table .header_cart_left ul li span {
    font-weight: 600;
}

.header_cart .cart_header_table .header_cart_left .num_count_wrapper {
    margin: 10px 0px 0px;
}

.header_cart .cart_header_table .header_cart_left .num_count_wrapper input {
    background: transparent;
}

.header_cart .cart_header_table .header_cart_left .num_count_wrapper .del_cart {
    margin-left: 15px;
    cursor: pointer;
}

.header_cart .cart_header_table .table {
    margin-bottom: 0;
}

.header_cart .h_cart_total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #979797;
    border-top: 1px solid #979797;
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 10px 0;
}

.header_cart .h_cart_total>a {
    color: inherit;
}

.header_cart .h_cart_total .h_t_p {
    font-weight: 600;
    padding-right: 10px;
    text-transform: uppercase;
}

.main_header_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ffffff;
    padding: 0px 15px;
    width: 100%;
    height: 46px;
}

@media (min-width: 1024px) {
    .main_header_mobile {
        display: none;
    }
}

.main_header_mobile .navbar-light .navbar-toggler,
.main_header_mobile .navbar-light .navbar-toggler:focus {
    color: #000;
    border: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main_header_mobile .m_header_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main_header_mobile .m_header_left .toggler {
    background: transparent;
    border: none;
}

.main_header_mobile .m_header_left .toggler:focus {
    border: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.main_header_mobile .m_header_left .toggler i {
    font-size: 15px;
}

.main_header_mobile .m_header_left .m_search {
    font-size: 15px;
    margin-left: 10px;
    cursor: pointer;
}

.main_header_mobile .m_header_left .m_search .header_search {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #f7f3eb;
    display: none;
}

.main_header_mobile .m_header_left .m_search .header_search .header_search_form {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
}

.main_header_mobile .m_header_left .m_search .header_search .header_search_form input {
    margin-bottom: 0;
    background: transparent;
    height: 26px;
}

.main_header_mobile .m_header_left .m_search .header_search .header_search_form .close_search {
    background: transparent;
    border: none;
    margin-left: 20px;
}

.main_header_mobile .m_header_left .m_search .header_search .header_search_form .close_search:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    border: none;
}

.main_header_mobile .m_header_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 1023px) {
    .main_header_mobile .m_header_logo .navbar-brand {
        margin-right: 0;
    }
}

.main_header_mobile .m_header_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main_header_mobile .m_header_right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main_header_mobile .m_header_right ul li {
    margin-left: 10px;
}

.main_header_mobile .m_header_right ul li i {
    color: #000;
    font-size: 15px;
}


/*---------------------------
          MOBILE OVERLAY
      ----------------------------*/

body.mobile_nav_open {
    position: fixed;
    overflow: hidden;
}

.mobile_overlay.mobile_overlay_open {
    opacity: 1;
    visibility: visible;
    -webkit-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
}

.mobile_overlay {
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    z-index: 40;
}


/*---------------------------
          HEADER LEFT  MENU
      ----------------------------*/

.show_from_left {
    opacity: 0;
    visibility: hidden;
    padding: 0;
    position: fixed;
    width: 320px;
    max-width: 100%;
    left: -100%;
    top: 0;
    height: 100%;
    background-color: #f7f3eb;
    -webkit-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    z-index: 50;
}

.show_from_left.open_h_menu {
    left: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
}

.show_from_right {
    opacity: 0;
    visibility: hidden;
    padding: 0;
    position: fixed;
    width: 320px;
    max-width: 100%;
    right: -100%;
    top: 0;
    height: 100%;
    background-color: #f7f3eb;
    -webkit-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    z-index: 50;
    padding: 20px;
}

.show_from_right.open_h_menu {
    right: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
}

.mobile_second_nav {
    top: 80px;
}

.m_sign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #000;
    overflow: hidden;
    padding: 15px;
}

.m_sign>a {
    width: 150px;
    padding: 0 12px;
}

.m_sign ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.m_sign ul li {
    margin-left: 10px;
}

.m_sign ul li a {
    color: #000;
    font-size: 17px;
}


/*---------------------------
          MOBILE NAV
        ----------------------------*/

.mobile_submenu {
    overflow-y: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 15px;
}

.mobile_nav {
    border-bottom: 1px solid #000;
    overflow: hidden;
    padding: 15px;
}

.mobile_nav>ul>li {
    display: block;
    line-height: 48px;
    border-bottom: 1px solid #efefef;
    padding: 0 10px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.mobile_nav>ul>li>a {
    color: #666;
}

.mobile_nav .has_child {
    position: relative;
}

.mobile_nav .has_child::after {
    content: "";
    position: absolute;
    top: 21px;
    right: 10px;
    width: 10px;
    height: 10px;
    border: 2px solid #9b9a9a;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile_submenu li {
    position: relative;
}

.mobile_submenu li a {
    display: block;
    line-height: 48px;
    border-bottom: 1px solid #efefef;
    padding: 0 10px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
}

.mobile_submenu .back {
    position: absolute;
    top: 11px;
    right: 0px;
    height: 26px;
    line-height: 26px;
    color: #666;
    width: 60px;
    text-align: center;
    font-weight: normal;
    border-radius: 0 2px 2px 0;
    font-size: 9px;
}

.mobile_submenu .back:before {
    content: "";
    position: absolute;
    top: 9px;
    right: 10px;
    width: 10px;
    height: 10px;
    border: 2px solid #9b9a9a;
    border-width: 0px 0px 2px 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*----------------------------------
      BANNER AREA
  ----------------------------------*/

.banner_area {
    position: relative;
}

.banner_area .banner_text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner_area .banner_text h2 {
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    color: #fff;
    letter-spacing: 5px;
}

@media (max-width: 1023px) {
    .banner_area .banner_text h2 {
        font-size: 24px;
    }
}

.banner_area .banner_text h3 {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    max-width: 609px;
    width: 100%;
}

@media (max-width: 1023px) {
    .banner_area .banner_text h3 {
        font-size: 12px;
    }
}

@media (max-width: 1023px) {
    .banner_area video {
        height: 65vh;
        -o-object-fit: cover;
        object-fit: cover;
    }
}


/*----------------------------------
      HOME PRODUCT AREA
  ----------------------------------*/

.home_product_area {
    padding: 30px 0px;
}

@media (max-width: 1023px) {
    .home_product_area {
        padding: 25px 0px 0px;
    }
}

.home_product_area .home_product_inner {
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}

.home_product_area .home_product_inner img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}

.home_product_area .home_product_inner .h_p_inner_text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.home_product_area .home_product_inner .h_p_inner_text h2,
.home_product_area .home_product_inner .h_p_inner_text h3 {
    font-size: 24px;
    letter-spacing: 3px;
    margin: 0;
    font-weight: 500;
    color: #fff;
}

.home_product_area .home_product_inner:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}


/*----------------------------------
      HOME SLIDER AREA
  ----------------------------------*/

.home_slider_area {
    padding: 20px 0px;
}

.home_slider_area .home_slide {
    margin-top: 45px;
}

@media (max-width: 1023px) {
    .home_slider_area .home_slide {
        margin-top: 20px;
    }
}

.home_slider_area .home_slide .home_slider_inner {
    text-align: center;
}

.home_slider_area .home_slide .home_slider_inner .h_slide_img {
    position: relative;
    overflow: hidden;
}

.home_slider_area .home_slide .home_slider_inner .h_slide_img img {
    width: 100%;
}

.home_slider_area .home_slide .home_slider_inner .h_slide_img span {
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    border: 1px solid #3a3a3a;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: #3a3a3a;
    text-transform: uppercase;
}

.home_slider_area .home_slide .home_slider_inner .h_slide_img span:hover {
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: rgba(255, 255, 255, 0.6);
    color: #000000;
}

.home_slider_area .home_slide .home_slider_inner .h_slide_img:hover span {
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 1;
    bottom: 0px;
}

.home_slider_area .home_slide .home_slider_inner h2 {
    font-size: 12px;
    color: #3a3a3a;
    margin-bottom: 0;
    margin-top: 15px;
    text-transform: uppercase;
}

.home_slider_area .home_slide .home_slider_inner p {
    font-size: 12px;
    color: #3a3a3a;
    text-transform: uppercase;
}

.home_slider_area .home_slide .slick-slide {
    margin: 0 10px;
}

.home_slider_area .home_slide .slick-list {
    margin: 0 -10px;
}

@media (max-width: 1023px) {
    .home_slider_area .home_slide .slick-list {
        padding: 0 33.33% 0 0 !important;
    }
}

.home_slider_area .home_slide .slick-arrow {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    border: none;
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 60px;
    line-height: 0;
    outline: none;
    padding: 0;
    width: 40px;
    z-index: 100;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.home_slider_area .home_slide .slick-arrow i {
    color: #000;
    font-size: 20px;
}

@media (max-width: 1023px) {
    .home_slider_area .home_slide .slick-arrow {
        display: none !important;
    }
}

.home_slider_area .home_slide .arrow_left {
    left: -4%;
}

.home_slider_area .home_slide .arrow_right {
    right: -4%;
}


/*----------------------------------
      INSTAGRAM AREA
  ----------------------------------*/

.instagram_area {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1023px) {
    .instagram_area {
        margin-top: 20px;
    }
}

.instagram_area .instagram_slider .instagram_inner {
    position: relative;
}

.instagram_area .instagram_slider .instagram_inner span.inst_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    font-size: 40px;
    color: #fff;
}

.instagram_area .instagram_slider .instagram_inner:hover span.inst_icon {
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 1;
}

.instagram_area .instagram_slider .instagram_inner span.shop_insta {
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    border: 1px solid #3a3a3a;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: #3a3a3a;
    text-transform: uppercase;
}

.instagram_area .instagram_slider .instagram_inner span.shop_insta:hover {
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: rgba(255, 255, 255, 0.6);
    color: #000000;
}

.instagram_area .instagram_slider .instagram_inner:hover span.shop_insta {
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 1;
    bottom: 0px;
}

.instagram_area .instagram_slider .slick-slide {
    margin: 0 10px;
}

.instagram_area .instagram_slider .slick-list {
    margin: 0 -10px;
}

.instagram_area .instagram_slider .slick-arrow {
    background-color: #666;
    background-position: 50%;
    background-repeat: no-repeat;
    border: none;
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 60px;
    line-height: 0;
    outline: none;
    padding: 0;
    width: 40px;
    z-index: 100;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.instagram_area .instagram_slider .slick-arrow i {
    color: #fff;
    font-size: 20px;
}

@media (max-width: 1023px) {
    .instagram_area .instagram_slider .slick-arrow {
        display: none !important;
    }
}

.instagram_area .instagram_slider .arrow_left {
    left: 1%;
}

.instagram_area .instagram_slider .arrow_right {
    right: 1%;
}


/*-----------------------------------
      FOOTER NEWSLETTER AREA
  -----------------------------------*/

.footer_newsletter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #f7f3eb;
    margin-top: 40px;
    margin-bottom: 25px;
}

@media (max-width: 1023px) {
    .footer_newsletter {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.footer_newsletter .footer_newsletter_img {
    position: relative;
    width: 50%;
}

@media (max-width: 1023px) {
    .footer_newsletter .footer_newsletter_img {
        width: 100%;
    }
}

.footer_newsletter .footer_newsletter_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1023px) {
    .footer_newsletter .footer_newsletter_img img {
        position: relative;
    }
}

.footer_newsletter .footer_newsletter_img:before {
    padding-top: 66.66666666666666%;
    content: "";
    position: relative;
    display: block;
}

@media (max-width: 1023px) {
    .footer_newsletter .footer_newsletter_img:before {
        padding-top: 0;
    }
}

.footer_newsletter .footer_newsletter_text {
    width: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1023px) {
    .footer_newsletter .footer_newsletter_text {
        width: 100%;
    }
}

.footer_newsletter .footer_newsletter_text .footer_newsletter_text_inner {
    max-width: 350px;
    margin: 0 auto;
}

@media (max-width: 1023px) {
    .footer_newsletter .footer_newsletter_text .footer_newsletter_text_inner {
        padding: 40px 15px;
    }
}

.footer_newsletter .footer_newsletter_text .footer_newsletter_text_inner h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 5px;
}

@media (max-width: 1023px) {
    .footer_newsletter .footer_newsletter_text .footer_newsletter_text_inner h2 {
        font-size: 20px;
    }
}


/*----------------------------
      FOOTER AREA
  -----------------------------*/

.footer_area {
    background: #f7f3eb;
}

.footer_area h2 {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    margin: 10px 0;
    text-transform: uppercase;
}

.footer_area .footer_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 1023px) {
    .footer_area .footer_menu {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.footer_area .footer_menu .footer_menu_inner {
    padding: 20px 40px 20px 0px;
}

@media (max-width: 1023px) {
    .footer_area .footer_menu .footer_menu_inner {
        width: 100%;
        padding: 30px 0px 0px;
        text-align: center;
    }
}

.footer_area .footer_menu .footer_menu_inner ul li {
    padding-bottom: 3px;
}

.footer_area .footer_menu .footer_menu_inner ul li a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000;
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.footer_area .footer_menu .footer_menu_inner ul li a:hover {
    text-decoration: underline;
}

.footer_area .footer_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 20px 0px;
}

@media (max-width: 1023px) {
    .footer_area .footer_social {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.footer_area .footer_social ul li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
}

.footer_area .footer_social ul li a {
    color: #000;
    font-size: 24px;
}

@media (max-width: 1023px) {
    .footer_area .footer_social ul li a {
        font-size: 20px;
    }
}

.footer_area .footer_bottom {
    background: #fff;
    line-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1023px) {
    .footer_area .footer_bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        line-height: 25px;
        padding: 20px 0px;
    }
}

.footer_area .footer_bottom p {
    margin-bottom: 0;
    font-size: 80%;
}

.footer_area .footer_bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1023px) {
    .footer_area .footer_bottom ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer_area .footer_bottom ul li a {
    padding: 0 10px;
    text-decoration: underline;
    color: #000;
    letter-spacing: 1px;
}

.footer_area .footer_bottom ul li a:hover {
    text-decoration: none;
}


/****************************
      PRODUCT PAGE
  ****************************/


/*----------------------------
      PRODUCT BANNER AREA
  -----------------------------*/

.product_banner_area .product_banner_inner p {
    margin: 20px 0px;
}

@media (max-width: 1023px) {
    .product_banner_area .product_banner_inner p {
        display: none;
    }
}


/*----------------------------
     PRODUCT AREA
  -----------------------------*/

.product_area .product_filter {
    padding: 40px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

@media (max-width: 1023px) {
    .product_area .product_filter {
        display: none;
    }
}

.product_area .product_filter .product_filter_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product_area .product_filter .product_filter_left>span:first-child {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    margin: 0;
}

.product_area .product_filter .product_filter_left .product_main_filter>button {
    line-height: 35px;
    padding: 0 14px;
}

.product_area .product_filter .product_filter_left .product_main_filter>button i {
    margin-right: 10px;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10;
    display: none;
    background-color: #f5f5f5;
    padding: 20px;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .p_f_c_inner>h2 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 40px;
    text-transform: uppercase;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .p_f_c_inner ul li {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 5px 0px;
    color: #000;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .p_f_c_inner ul li a {
    color: #000000;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .p_f_c_inner ul li a:hover {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .p_f_c_inner ul li:hover label {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .p_f_c_inner ul li.active {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .p_f_c_inner ul li.active a {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .filter_color_wrap>h2 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 40px;
    text-transform: uppercase;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .filter_color_wrap ul li {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 5px 0px;
    color: #000;
    cursor: pointer;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .filter_color_wrap ul li:hover {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .filter_color_wrap ul li .filter_color span {
    padding: 2px;
    border-radius: 50%;
    border: 1px solid transparent;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .filter_color_wrap ul li .filter_color span img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .filter_color_wrap ul li.active {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter .product_filter_left .product_main_filter .product_filter_content .filter_color_wrap ul li.active span {
    border: 1px solid #000;
}

.product_area .product_filter .product_filter_left .product_main_filter {
    margin: 0 15px;
}

.product_area .product_filter .product_filter_right select {
    background-color: #fff;
    background-image: url(/images/select-arrow.svg?d248c8b9fd448e546592e3e33787c536);
    background-position: 95%;
    background-repeat: no-repeat;
    background-size: 10px;
    border: none;
    font-size: 12px;
    height: 30px;
    letter-spacing: 1px;
    line-height: 30px;
    padding: 0 10px;
    text-transform: uppercase;
    width: 180px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #000000;
    border-radius: 0;
    font-weight: 400;
}

.product_area .product_filter .product_filter_right select:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #000000;
}

@media (min-width: 1024px) {
    .product_area .product_filter_mobile {
        display: none;
    }
}

.product_area .product_filter_mobile>p {
    text-align: center;
    margin-top: 15px;
}

.product_area .product_filter_mobile>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 30px;
}

.product_area .product_filter_mobile>ul>li {
    width: 33.3333%;
    padding: 10px 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1px;
    padding-right: 15px;
    text-transform: uppercase;
}

.product_area .product_filter_mobile>ul>li.active {
    background-color: #dfdee0;
}

.product_area .product_filter_mobile>ul>li::after {
    content: "";
    background-position: 95%;
    background-repeat: no-repeat;
    height: 6px;
    position: absolute;
    right: 3px;
    top: 14px;
    width: 13px;
    background-image: url(/images/select-arrow.svg?d248c8b9fd448e546592e3e33787c536);
}

.product_area .product_filter_mobile>ul>li.active::after {
    content: "";
    background-position: 95%;
    background-repeat: no-repeat;
    height: 6px;
    position: absolute;
    right: 0px;
    top: 13px;
    width: 15px;
    background-image: url(/images/icon-close.svg?e7fe751d44563c01ffcf3568ff10b591);
}

.product_area .product_filter_mobile .product_filter_content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10;
    display: none;
    background-color: #dfdee0;
    padding: 20px;
}

.product_area .product_filter_mobile .product_filter_content .p_f_c_inner>h2 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 40px;
    text-transform: uppercase;
}

.product_area .product_filter_mobile .product_filter_content .p_f_c_inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product_area .product_filter_mobile .product_filter_content .p_f_c_inner ul li {
    width: 50%;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 5px 0px;
    color: #000;
}

.product_area .product_filter_mobile .product_filter_content .p_f_c_inner ul li a {
    color: #000000;
}

.product_area .product_filter_mobile .product_filter_content .p_f_c_inner ul li a:hover {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter_mobile .product_filter_content .p_f_c_inner ul li:hover label {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter_mobile .product_filter_content .p_f_c_inner ul li.active {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter_mobile .product_filter_content .p_f_c_inner ul li.active a {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter_mobile .product_filter_content .p_f_c_inner ul.full_width li {
    width: 100%;
}

.product_area .product_filter_mobile .product_filter_content .filter_color_wrap>h2 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 40px;
    text-transform: uppercase;
}

.product_area .product_filter_mobile .product_filter_content .filter_color_wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product_area .product_filter_mobile .product_filter_content .filter_color_wrap ul li {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 5px 0px;
    color: #000;
    cursor: pointer;
    width: 50%;
}

.product_area .product_filter_mobile .product_filter_content .filter_color_wrap ul li:hover {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter_mobile .product_filter_content .filter_color_wrap ul li .filter_color span {
    padding: 2px;
    border-radius: 50%;
    border: 1px solid transparent;
}

.product_area .product_filter_mobile .product_filter_content .filter_color_wrap ul li .filter_color span img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.product_area .product_filter_mobile .product_filter_content .filter_color_wrap ul li.active {
    color: #3a3a3a;
    font-weight: 500;
}

.product_area .product_filter_mobile .product_filter_content .filter_color_wrap ul li.active span {
    border: 1px solid #000;
}

.product_area .product_filter_mobile .product_filter_content .clear_filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 15px 0px;
}

.product_area .product_filter_mobile .product_filter_content .clear_filter button {
    line-height: 32px;
}

.product_area .product_filter_mobile .product_filter_content .clear_filter button:last-child {
    margin-left: 5px;
}

.product_area .product_filter_mobile .product_filter_content .clear_filter button:first-child {
    margin-right: 5px;
}


/*---------------------------
      MAIN PRODUCT AREA
  ---------------------------*/

.main_product_area .product_custom_margin {
    margin-left: -10px;
    margin-right: -10px;
}

@media (max-width: 767px) {
    .main_product_area .product_custom_margin {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
}

.main_product_area .product_custom_padding {
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 767px) {
    .main_product_area .product_custom_padding {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
}

.main_product_area .product_wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.main_product_area .product_wrapper .main_product_img {
    position: relative;
    border: 1px solid #eee;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.main_product_area .product_wrapper .main_product_img img {
    width: 100%;
}

.main_product_img .pre_order {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 2;
}

.main_product_img .pre_order img {
    width: 80px !important;
}

.main_product_area .product_wrapper .main_product_img .img_hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.main_product_area .product_wrapper .main_product_img:hover .img_hover {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.main_product_area .product_wrapper .main_product_text {
    position: relative;
    text-align: center;
}

.main_product_area .product_wrapper .main_product_text h2 {
    margin: 10px 0;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
}

.main_product_area .product_wrapper .main_product_text h2 a {
    color: #000;
}

.main_product_area .product_wrapper .main_product_text h2 a:hover {
    color: #3a3a3a;
}

.main_product_area .product_wrapper .main_product_text p {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 5px;
}

.main_product_area .product_wrapper .color_variation {
    text-align: center;
    margin: 10px 0px;
}

.main_product_area .product_wrapper .color_variation li {
    display: inline-block;
}

.main_product_area .product_wrapper .color_variation li img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    padding: 2px;
    border: 1px solid #000;
}

.main_product_area .product_wrapper h3 {
    font-size: 10px;
    text-transform: capitalize;
    color: #000;
}

.main_product_area .product_load_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 40px 0px 80px;
}


/****************************
  PRODUCT SINGLE PAGE
  ****************************/

.single_product_left {
    padding-right: 20px;
    margin-left: -15px;
    margin-right: -15px;
}

@media (max-width: 1023px) {
    .single_product_left {
        padding-right: 0px;
    }
}

@media (max-width: 1023px) {
    .single_product_left .single_product_left_inner {
        display: none;
    }
}

.single_product_left .single_product_left_inner .single_product_left_thum {
    float: left;
    width: 15%;
    margin-top: -2px;
}

.single_product_left .single_product_left_inner .single_product_left_thum .slick-slide li {
    margin-bottom: 0px;
    border: 1px solid #fff;
    cursor: pointer;
}

.single_product_left .single_product_left_inner .single_product_left_thum .slick-slide li img {
    width: 100%;
}

@media (min-width: 1024px) {
    .single_product_left .single_product_left_mobile {
        display: none;
    }
}

.single_product_left .single_product_left_mobile .slick-arrow {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    border: none;
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 40px;
    line-height: 0;
    outline: none;
    padding: 0;
    width: 30px;
    z-index: 100;
    position: absolute;
    bottom: -40px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.single_product_left .single_product_left_mobile .slick-arrow i {
    color: #000;
    font-size: 20px;
}

.single_product_left .single_product_left_mobile .arrow_left {
    left: 2%;
}

.single_product_left .single_product_left_mobile .arrow_right {
    right: 2%;
}

.single_product_img {
    display: block;
    width: 83%;
    height: auto;
    overflow: hidden;
    float: left;
    margin-left: 1%;
}

@media (max-width: 1023px) {
    .single_product_img {
        margin-left: 0px;
        width: 100%;
    }
}


/*----------------------------------
  SINGEL PRODUCT DESCRIPTION
  ----------------------------------*/

@media (max-width: 1023px) {
    .single_product_description {
        margin-top: 50px;
    }
}

.single_product_description h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.single_product_description h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 20px 0px;
}

.single_product_description p {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

.single_product_description .variation {
    margin: 30px 0px;
}

.single_product_description .variation h4 {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    margin: 10px 0;
}

.single_product_description .variation h4 span {
    font-size: 12px;
    font-weight: 300;
    padding-left: 5px;
    text-transform: none;
}

.single_product_description .variation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.single_product_description .variation ul li {
    cursor: pointer;
    margin-right: 5px;
}

.single_product_description .color_variation li {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid transparent;
}

.single_product_description .color_variation li img {
    padding: 2px;
    border-radius: 50%;
}

.single_product_description .color_variation li.active {
    border: 1px solid #a0a0a0;
}

.single_product_description .size_variation ul {
    margin: 15px 0px;
}

.single_product_description .size_variation ul li {
    border: 1px solid transparent;
    border-radius: 50%;
    font-size: 12px;
    line-height: 32px;
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.single_product_description .size_variation ul li.active {
    border: 1px solid #a0a0a0;
}

.single_product_description .inv_check_date p {
    font-weight: bold;
    border: 1px solid #ccc;
    padding: 5px 5px;
    max-width: fit-content;
    background: #ecc124;
}

@media (max-width: 1023px) {
    .single_product_description .add_to_car_btn button {
        width: 100% !important;
    }
}

.single_product_table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    display: table;
}

.single_product_table table thead tr th {
    border-bottom: 2px solid #dee2e6;
    text-align: center;
    background: #000;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
    width: 33.3333%;
    font-size: 12px;
    color: #fff;
}

.single_product_table table tr td:first-child {
    text-align: left;
    overflow: hidden;
}

.single_product_table table td {
    vertical-align: middle;
    border-top: 0;
    padding: 2px;
    text-align: center;
    font-size: 12px;
    white-space: nowrap;
}

.single_product_table table td a {
    color: inherit;
}

.single_product_table table tr td img {
    width: 30px;
}

.single_product_table table .num_count_wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
}

@media (max-width: 767px) {
    .single_product_table table .num_count_wrapper .minus,
    .single_product_table table .num_count_wrapper .add {
        display: none;
    }
    .single_product_table table .num_count_wrapper input {
        border: 1px solid #000;
    }
}

.table_summation {
    border: 1px solid #000;
    margin-bottom: 30px;
}

.table_summation .table_summation_left p,
.table_summation .table_summation_right p {
    float: left;
    background: #000;
    color: #fff;
    margin: 0;
    padding: 0 10px;
    margin-right: 15px;
    line-height: 35px;
}

@media (max-width: 767px) {
    .table_summation .table_summation_left p,
    .table_summation .table_summation_right p {
        margin-right: 0;
    }
}

.table_summation_left span,
.table_summation_right span {
    line-height: 35px;
}


/*----------------------------------
  SIZE GUIDE
  ----------------------------------*/

.size_guide {
    margin: 20px 0px;
}

.size_guide .span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
}

.size_guide .span i {
    margin-right: 10px;
}

.size_guide_popup>img {
    width: 200px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    margin-bottom: 30px;
}

.size-guide-table {
    width: 100%;
    margin-bottom: 20px;
    display: table;
}

.size-guide-table thead tr th,
.size-guide-table thead tr td,
.size-guide-table tbody tr th,
.size-guide-table tbody tr td {
    font-size: 12px;
    padding: 3px 5px;
    border: none;
    text-align: center;
}

#size_guide .modal-content {
    position: relative;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    outline: none;
    background-clip: padding-box;
    border-radius: 8px;
}

#size_guide button.close,
#size_guide button.close:hover,
#size_guide button.close:focus {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    position: absolute;
    left: 15px;
    top: 10px;
    z-index: 20;
    opacity: 1;
    color: #333;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}


/*-------------------------------
      INCREASE DECREASE CART
  -------------------------------*/

.num_count_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0px;
}

.num_count_wrapper>span {
    margin-right: 15px;
    font-size: 16px;
    font-weight: 500;
}

.num_count_wrapper .num_count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px !important;
}

.num_count_wrapper .num_count input {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 5px;
    margin: 0;
    border: 1px solid #000;
    border-width: 1px 0px 1px 0px;
    font-size: 12px !important;
}

.num_count_wrapper .num_count button {
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all .2s;
    transition: all .2s;
    width: 30px;
    height: 30px;
    border-radius: 0;
    font-size: 12px !important;
}

.num_count_wrapper .num_count button:hover {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: all .2s;
    transition: all .2s;
}

.num_count_wrapper .num_count button:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.num_count_wrapper .num_count .minus {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #000;
}

.num_count_wrapper .num_count .add {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #000;
}


/*-------------------------------
      PRODUCT SIZE TAB
  -------------------------------*/

.product_size_tab {
    /* border-bottom: 1px solid #dfdfdf; */
    /* border-top: 1px solid #dfdfdf; */
    padding: 40px 20px;
    margin: auto;
    max-width: 960px;
    width: 100%;
    /* margin-top: 50px; */
    margin-top: 0px;
}

@media (max-width: 1023px) {
    .product_size_tab {
        display: none;
    }
}

.product_size_tab h2 {
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.3;
}

.product_size_tab .p_s_t_inner .p_s_t_content {
    padding-left: 40px;
    margin: 15px 0px;
}

.product_size_tab .p_s_t_inner .p_s_t_content p {
    font-size: 12px;
}

.product_size_tab .p_s_t_inner .p_s_t_content p a {
    color: inherit;
    font-weight: 600;
}

.product_size_tab .p_s_t_inner .p_s_t_content ul {
    list-style: square;
}

.product_size_tab .p_s_t_inner .p_s_t_content ul li {
    font-size: 12px;
}

.product_size_tab_mobile {
    margin: 40px 0px;
}

@media (min-width: 1024px) {
    .product_size_tab_mobile {
        display: none;
    }
}

.product_size_tab_mobile .card-header {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #fff;
    font-size: 14px;
}

.product_size_tab_mobile .card-header button {
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: block;
    height: 55px;
    line-height: 55px;
    padding: 0 20px;
    position: relative;
    color: #000;
    font-size: 14px;
}

.product_size_tab_mobile .card-header button:after {
    content: "";
    font-size: 30px;
    width: 12px;
    height: 1px;
    background: #000;
    position: absolute;
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product_size_tab_mobile .card-header button.collapsed:after {
    content: "+";
    position: absolute;
    right: 12px;
    color: #000;
    height: auto;
    width: auto;
    background: transparent;
}

.product_size_tab_mobile .card-header button:focus {
    text-decoration: none;
}

.product_size_tab_mobile .card-body {
    padding: 0;
}

.product_size_tab_mobile .p_s_t_content {
    padding-left: 40px;
    margin: 15px 0px;
}

.product_size_tab_mobile .p_s_t_content p {
    font-size: 12px;
}

.product_size_tab_mobile .p_s_t_content p a {
    color: inherit;
    font-weight: 600;
}

.product_size_tab_mobile .p_s_t_content ul {
    list-style: square;
}

.product_size_tab_mobile .p_s_t_content ul li {
    font-size: 12px;
}


/*------------------------------
      RELATED PRODUCT AREA
  -------------------------------*/

.related_product_area {
    margin: 50px 0px;
    padding-left: 15px;
    padding-right: 15px;
}

.related_product_area .related_title h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
}

.related_product_area .related_slider {
    margin-top: 40px;
}

.related_product_area .related_slider .related_slider_inner .main_product_text {
    position: relative;
    text-align: center;
}

.related_product_area .related_slider .related_slider_inner .main_product_text h2 {
    margin: 10px 0;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
}

.related_product_area .related_slider .related_slider_inner .main_product_text h2 a {
    color: #000;
}

.related_product_area .related_slider .related_slider_inner .main_product_text h2 a:hover {
    color: #3a3a3a;
}

.related_product_area .related_slider .related_slider_inner .main_product_text p {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 5px;
}

.related_product_area .related_slider .slick-list {
    padding: 0 8% 0 0 !important;
}

.related_product_area .related_slider .slick-slide {
    margin: 0 10px;
}

.related_product_area .related_slider .slick-list {
    margin: 0 -10px;
}

.related_product_area .related_slider .slick-arrow {
    background-color: #666;
    background-position: 50%;
    background-repeat: no-repeat;
    border: none;
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 40px;
    line-height: 0;
    outline: none;
    padding: 0;
    width: 30px;
    z-index: 100;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.related_product_area .related_slider .slick-arrow i {
    color: #fff;
    font-size: 20px;
}

@media (max-width: 1023px) {
    .related_product_area .related_slider .slick-arrow {
        display: none !important;
    }
}

.related_product_area .related_slider .arrow_left {
    left: 1%;
}

.related_product_area .related_slider .arrow_right {
    right: 1%;
}

.recent_view .slick-track {
    margin-right: 0;
    margin-left: 0;
}


/*******************************
      CART PAGE
  *******************************/

.cart_area {
    margin-bottom: 50px;
}

.cart_area .cart_title h2 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 25px !important;
    margin-top: 25px !important;
}

@media (max-width: 1023px) {
    .cart_area .cart_title h2 {
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .cart_area .cart_title .btn_common {
        display: none;
    }
}

@media (max-width: 1023px) {
    .cart_area .cart_left .cart_table {
        display: none;
    }
}

.cart_area .cart_left tr th {
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.cart_area .cart_left tr td {
    border-top: 1px solid #000;
    font-size: 14px;
}

@media (max-width: 1023px) {
    .cart_area .cart_left tr td {
        border: none;
    }
}

.cart_area .cart_left .cart_product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart_area .cart_left .cart_product>a {
    display: block;
    margin-right: 15px;
}

.cart_area .cart_left .cart_product>a img {
    width: 160px;
}

@media (max-width: 1023px) {
    .cart_area .cart_left .cart_product>a img {
        width: 140px;
    }
}

.cart_area .cart_left .cart_product .cart_product_name {
    position: relative;
}

.cart_area .cart_left .cart_product .cart_product_name h2 {
    line-height: 12px;
    margin-bottom: 8px;
}

.cart_area .cart_left .cart_product .cart_product_name h2 a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
}

.cart_area .cart_left .cart_product .cart_product_name ul li {
    font-size: 12px;
}

.cart_area .cart_left .cart_product .cart_product_name .edit_cart button {
    line-height: 28px;
    width: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0;
    font-size: 12px;
}

.cart_area .cart_left .cart_price {
    font-weight: bold;
}

.cart_area .cart_left .close {
    cursor: pointer;
    font-size: 16px;
}

@media (min-width: 1024px) {
    .cart_area .cart_left .car_table_mobile {
        display: none;
    }
}

@media (max-width: 1023px) {
    .cart_area .cart_right {
        margin-left: -15px;
        margin-right: -15px;
    }
}

.cart_area .cart_right .order_summery {
    background: #f7f3eb;
    padding: 25px;
    max-width: 355px;
}

@media (max-width: 1023px) {
    .cart_area .cart_right .order_summery {
        max-width: 100%;
        width: 100%;
        padding: 25px 15px;
    }
}

.cart_area .cart_right .order_summery h3 {
    border-bottom: 1px solid #000;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    margin-top: 10px;
}

.cart_area .cart_right .order_summery .table {
    margin-bottom: 0;
}

.cart_area .cart_right .order_summery .table tr td {
    padding: 2px 0;
    border: none;
}

.cart_area .cart_right .order_summery .table tr td:first-child {
    font-weight: bold;
}

.cart_area .cart_right .order_summery .table tr td:last-child {
    text-align: right;
}

.cart_area .cart_right .order_summery>p {
    border-top: 1px solid #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: bold;
    padding-top: 10px;
    margin-top: 10px;
}

.cart_area .checkout_btn {
    margin-top: 30px;
}


/**************************************
      CHECKOUT  PAGE
  ***************************************/


/*--------------------------------------
      Common Form
  ----------------------------------------*/

.common_form .form-group {
    position: relative;
    z-index: 2;
}

.common_form .form-group label {
    color: #000;
    position: absolute;
    left: 15px;
    top: 12px;
    z-index: -1;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.common_form .form-group.hasvalue label {
    position: absolute;
    top: 4px;
    z-index: -1;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.common_form .form-group input {
    padding: 11px 10px;
    background: transparent;
    font-size: 14px;
    -webkit-transition: all .3s;
    transition: all .3s;
    height: auto;
    border-radius: 5px;
    border-color: #d9d9d9;
}

.common_form .form-group.hasvalue input {
    padding: 19px 10px 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.common_form .form-group select {
    padding: 13px 10px;
    height: auto !important;
    font-size: 14px;
    background: transparent;
}

.common_form .form-group select option {
    opacity: 0;
}

.common_form .form-group.hasvalue select option {
    opacity: 1;
}

.common_form .form-group.hasvalue select {
    padding: 19px 10px 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.common_form .form-group input:focus,
.common_form .form-group select:focus {
    outline: none;
    border-color: #979797;
    -webkit-box-shadow: 0 0 0 1px #979797;
    box-shadow: 0 0 0 1px #979797;
}


/*--------------------------------------
     checkout Area
  ----------------------------------------*/

.checkout_area {
    padding: 20px 0px;
    position: relative;
}

.checkout_header {
    width: 50%;
}

.checkout_header img {
    max-height: 4.28571em;
}

.checkout_header .breadcrumb {
    background: transparent;
    padding-left: 0;
    margin-bottom: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.checkout_header .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding: 0;
    color: #6c757d;
    content: "";
    background: url(/images/arrow-right.png?a2dd22ad3ac406a46e39e8ed389536ab);
    width: 15px;
    height: 15px;
    background-size: contain;
    position: absolute;
    top: 4px;
    left: -8px;
}

.checkout_header .breadcrumb li:first-child {
    padding-left: 0;
}

.checkout_header .breadcrumb li {
    position: relative;
    padding: 0px 10px;
}

.checkout_header .breadcrumb li a {
    color: #979797;
}

.checkout_header .breadcrumb .breadcrumb-item.active {
    color: #333;
}

.checkout_left {
    padding-right: 30px;
}

.checkout_left h2 {
    font-size: 17.99px;
    color: #333333;
    margin-bottom: 20px;
}

.checkout_registration_form>h2 {
    font-size: 17.99px;
    color: #333333;
    padding: 15px 0px;
    margin-bottom: 5px;
}

.checkout_registration_form h2 span a {
    color: #979797;
}

.checkout_registration_form h2 span {
    float: right;
    font-size: 14px;
}

.checkout_registration_form .form-group {
    position: relative;
    -webkit-transition: all .1s;
    transition: all .1s;
}

.checkout_registration_form .form-group label {
    color: #000;
}

.checkout_registration_form .form-group input {
    padding: 11px 10px;
    background: transparent;
    font-size: 14px;
}

.checkout_registration_form .form-group select {
    padding: 13px 10px;
    height: auto !important;
    font-size: 14px;
}

.checkout_registration_form .form-group input:focus,
.checkout_registration_form .form-group select:focus {
    outline: none;
    border-color: #979797;
    -webkit-box-shadow: 0 0 0 1px #979797;
    box-shadow: 0 0 0 1px #979797;
}

.checkout_registration_form .form-group.active_input label {
    /*opacity: 1;
      top: 0;*/
}

.checkout_registration_form .custom-control-input:focus~.custom-control-label::before {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form_registration_btn {
    margin-top: 20px;
}

.form_registration_btn a {
    color: #979797;
    float: left;
    margin-top: 25px;
}

.form_registration_btn svg {
    width: 10px;
    color: #979797;
}

.form_registration_btn button,
.form_registration_btn button:hover,
.form_registration_btn button:focus {
    cursor: pointer;
    display: inline-block;
    background-color: #000000;
    background-clip: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px transparent solid;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    padding: 1.4em 1.7em;
    text-align: center;
    position: relative;
    float: right;
    outline: none;
    font-size: 14px;
}

.checkout_footer {
    margin-top: 10px;
    padding: 1em 0;
    border-top: 1px solid #e6e6e6;
}

.checkout_footer ul li {
    display: inline-block;
}

.checkout_footer ul li a {
    font-size: 0.85714em;
    margin-right: 1.5em;
    margin-bottom: 0.5em;
    color: #979797;
    -webkit-transition-timing-function: all .3s;
    transition-timing-function: all .3s;
}

.checkout_footer ul li a:hover {
    color: #858585;
    -webkit-transition-timing-function: all .3s;
    transition-timing-function: all .3s;
}


/*-------------------------------
      checkout RIGHT
  -------------------------------*/

.checkout_right {
    position: relative;
    z-index: 5;
}

.checkout_right .card {
    background: transparent;
    border: none;
}

.checkout_right .card .card-header button {
    color: #979797;
    display: block;
    width: 100%;
    text-align: left;
}

.checkout_right .card .card-header button span {
    float: right;
}

.checkout_right .card .card-header button svg {
    margin-right: 10px;
}

.checkout_right .card .card-body {
    padding-left: 0;
    padding-right: 0;
}

.table-borderless td,
.table-borderless th {
    border: 0;
}


/*.checkout_right .checkout_product_showcase tr td:first-child {
      padding-left: 0;
  }*/

.checkout_right .checkout_product_showcase tr td {
    font-weight: bold;
}

.checkout_right .checkout_table tr td {
    border: none;
    vertical-align: middle;
}

.checkout_right .checkout_table tr td:first-child {
    width: 60px;
}

.checkout_right .checkout_table tr td:last-child {
    text-align: right;
}

.checkout_right {
    padding: 20px 0px 0px 20px;
}

.checkout_right .checkout_product {
    position: relative;
    width: 64px;
    height: auto;
    border-radius: 8px;
    background: #fff;
    position: relative;
    border: 1px solid #f0e4bc;
}

.checkout_right .checkout_product img {
    width: 64px;
    height: 64px;
}

.checkout_right .checkout_product span {
    font-size: 0.85714em;
    font-weight: 500;
    line-height: 1.75em;
    white-space: nowrap;
    text-align: center;
    border-radius: 1.75em;
    background-color: rgba(114, 114, 114, 0.9);
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 1.75em;
    height: 1.75em;
    padding: 0 0.58333em;
    position: absolute;
    right: -0.75em;
    top: -0.75em;
    z-index: 3;
}

.checkout_promo_code {
    /*display: -webkit-box;
      display: -ms-flexbox;
      display: flex;*/
}

.checkout_promo_code {
    position: relative;
    padding-right: 100px;
}

.checkout_promo_code .form-group {
    /*-webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;*/
}

.checkout_promo_code button:disabled {
    background: #dddddd;
}

.checkout_promo_code button {
    position: absolute;
    right: 0;
    top: 0;
    background: #000;
    opacity: 1;
    color: #fff;
    width: 86px;
    height: 48px;
}

.checkout_promo_code button:hover {
    color: #fff;
}

.checkout_promo_code input {
    padding: 11px 10px;
    height: auto;
    border-radius: 5px;
    border-color: #d9d9d9;
}

.checkout_promo_code input:focus {
    outline: none;
    border-color: #979797;
    -webkit-box-shadow: 0 0 0 1px #979797;
    box-shadow: 0 0 0 1px #979797;
}

.total_cost {
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    padding: 7px 0px;
}

.total_cost table {
    margin-bottom: 0;
}

.total_cost tr td {
    padding: 8px;
    color: #535353;
}

.total_price {
    padding: 25px 0px;
}

.total_price p span {
    float: right;
    line-height: 21px;
}

.total_price p span strong {
    color: #323232;
    font-size: 24px;
}

@media (min-width: 992px) {
    .checkout_area:after {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        content: "";
        background: #FAFAFA;
        -webkit-box-shadow: 1px 0 0 #e1e1e1 inset;
        box-shadow: 1px 0 0 #e1e1e1 inset;
    }
    .checkout_right .card .card-header {
        display: none;
    }
    .checkout_right {
        margin-top: -80px;
    }
}

@media (max-width: 991px) {
    .checkout_header {
        width: 100%;
    }
    .checkout_header img {
        max-width: 150px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .checkout_header .breadcrumb {
        display: none;
    }
}

@media (max-width: 991px) {
    .checkout_right {
        padding: 20px 0px 0px 0px;
    }
    .checkout_left {
        padding-right: 0px;
    }
}

@media (max-width: 767px) {
    .checkout_registration_form h2 span {
        float: none;
        display: block;
        margin-top: 10px;
    }
    .form_registration_btn button,
    .form_registration_btn button:hover,
    .form_registration_btn button:focus {
        width: 100%;
    }
    .form_registration_btn a {
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
    .checkout_right .card .card-header button svg {
        display: none;
    }
}


/***********************************************
      SHIPPING PAGE
  ************************************************/

.shipping_contact_details {
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    margin: 20px 0px;
}

.shipping_contact_details table {
    margin-bottom: 0;
}

.shipping_contact_details tr td a {
    color: inherit;
}

.shipping_contact_details tr td:last-child {
    padding-right: 15px;
    text-align: right;
}

.shipping_calculation ul {
    border: 1px solid #d3d3d3;
    border-radius: 5px;
}

.shipping_calculation ul li:last-child label {
    border-bottom: 1px solid #d3d3d3;
}

.shipping_calculation ul li label {
    border-bottom: 1px solid #d3d3d3;
    padding: 18px;
    margin-bottom: 0;
}

.shipping_calculation ul li label h2 {
    font-size: 14px;
    margin-bottom: 1px;
}

.shipping_calculation ul li label h2 b {
    color: #000;
}

.shipping_calculation ul li label p {
    color: #727272;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 0;
}

.shipping_calculation ul li label span {
    color: #000;
    font-size: 15px;
    font-weight: 300;
    position: absolute;
    top: 18px;
    right: 15px;
}

.shipping_calculation ul li label span b {
    font-weight: 700;
}

.shipping_calculation ul li:last-child label {
    border: none;
}

.shipping_calculation [type="radio"]:checked,
.shipping_calculation [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.shipping_calculation [type="radio"]:checked+label,
.shipping_calculation [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    line-height: 20px;
    display: block;
    color: #666;
}

.shipping_calculation [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #d9d9d9;
    border-radius: 100%;
    background: #fff;
    margin-top: -11px;
}

.shipping_calculation [type="radio"]:checked+label:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #d9d9d9;
    border-radius: 100%;
    background: #979797;
    margin-top: -11px;
}

.shipping_calculation [type="radio"]:checked+label:after,
.shipping_calculation [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 4px;
    height: 4px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 22px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin-top: -4px;
    background: #fff;
}

.shipping_calculation [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.shipping_calculation [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/*************************************
      CHECKOUT PAGE
  **************************************/

.checkout_left h2 {
    margin-bottom: 5px;
}

.checkout_form {
    border-radius: 5px;
    margin-bottom: 20px;
}

.shipping_calculation.checkout_form ul {
    border-bottom: none;
}

.checkout_form .credit_card_form {
    padding: 20px 20px 5px;
    background-color: #fafafa;
    border: 1px solid #d3d3d3;
    border-top: none;
}

.credit_card_form .form-group {
    position: relative;
    z-index: 2;
}

.credit_card_form .form-group label {
    color: #000;
    position: absolute;
    left: 15px;
    top: 12px;
    z-index: -1;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.credit_card_form .form-group input {
    padding: 11px 10px;
    background: transparent;
    font-size: 14px;
    -webkit-transition: all .3s;
    transition: all .3s;
    height: auto;
    border-radius: 5px;
}

.credit_card_form .form-group select {
    padding: 13px 10px;
    height: auto !important;
    font-size: 14px;
}

.credit_card_form .form-group.hasvalue label {
    position: absolute;
    top: 4px;
    z-index: -1;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.credit_card_form .form-group.hasvalue input {
    padding: 19px 10px 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.credit_card_form .form-group input:focus,
.credit_card_form .form-group select:focus {
    outline: none;
    border-color: #979797;
    -webkit-box-shadow: 0 0 0 1px #979797;
    box-shadow: 0 0 0 1px #979797;
}

.credit_card_form .form-group svg {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.checkout_tab {
    margin-bottom: 20px;
}

.checkout_tab ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    border-radius: 5px;
    border: 1px solid #d3d3d3;
}

.checkout_tab ul.tabs li:last-child {
    border: none;
}

.checkout_tab ul.tabs li {
    display: block;
    margin-bottom: 0;
    cursor: pointer;
    border-bottom: 1px solid #d3d3d3;
    margin-top: -1px;
}

.checkout_tab ul.tabs li p {
    font-size: 14px;
    margin-bottom: 1px;
    color: #333;
}

.checkout_tab .tab-content {
    display: none;
}

.checkout_tab .tab-content.current {
    display: inherit;
}

.checkout_tab ul.tabs li label {
    padding: 18px;
    margin-bottom: 0;
}

.checkout_tab .tab-content .common_form {
    padding: 20px 20px 5px;
    background-color: #fafafa;
    border: 1px solid #d3d3d3;
    border-top: none;
}

.checkout_tab ul.tabs li [type="radio"]:checked,
.checkout_tab ul.tabs li [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.checkout_tab ul.tabs li [type="radio"]:checked+label,
.checkout_tab ul.tabs li [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    line-height: 20px;
    display: block;
    color: #666;
}

.checkout_tab ul.tabs li [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #d9d9d9;
    border-radius: 100%;
    background: #fff;
    margin-top: -11px;
}

.checkout_tab ul.tabs li.current [type="radio"]:checked+label:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #d9d9d9;
    border-radius: 100%;
    background: #979797;
    margin-top: -11px;
}

.checkout_tab ul.tabs li [type="radio"]:checked+label:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #d9d9d9;
    border-radius: 100%;
    background: #fff;
    margin-top: -11px;
}

.checkout_tab ul.tabs li [type="radio"]:checked+label:after,
.checkout_tab ul.tabs li [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 4px;
    height: 4px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 22px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin-top: -4px;
    background: #fff;
}

.checkout_tab ul.tabs li [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.checkout_tab ul.tabs li [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.checkout_remember {
    padding: 18px;
    border-radius: 5px;
    border: 1px solid #d3d3d3;
    margin-bottom: 1rem;
}

.checkout_remember .custom-checkbox {
    margin-bottom: 0;
}


/**********************************
      REGISTER AREA
  **********************************/

.register_area {
    margin: 0px 0px 20px;
}

.register_area h2 {
    font-size: 24px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.register_area .register_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1023px) {
    .register_area .register_btn {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 1023px) {
    .register_area .register_btn button {
        width: 100% !important;
    }
}

@media (max-width: 1023px) {
    .register_area .register_btn button.ml_10 {
        margin-left: 0 !important;
        margin-top: 10px;
    }
}

.register_area .register_content input {
    font-size: 12px;
}

.register_area .r_g_l {
    padding-right: 30px;
}

@media (max-width: 1023px) {
    .register_area .r_g_l {
        padding-right: 0;
    }
}

.register_area .r_g_r {
    padding-left: 30px;
}

@media (max-width: 1023px) {
    .register_area .r_g_r {
        padding-left: 0;
        padding-top: 30px;
    }
}

.custom_register_area {
    position: relative;
}

.custom_register_area:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    content: "";
    -webkit-box-shadow: 1px 0 0 #000 inset;
    box-shadow: 1px 0 0 #000 inset;
}

@media (max-width: 1023px) {
    .custom_register_area:after {
        display: none;
    }
}


/********************************
      MY ACCOUNT PAGE
  ********************************/

.myacount_area {
    padding: 20px 0px 70px;
    min-height: 700px;
}

@media (max-width: 767px) {
    .myacount_area {
        min-height: auto;
        padding-bottom: 20px;
    }
}

.my_account_content_inner {
    margin-bottom: 30px;
}

.product_left_subtitle {
    font-size: 18px;
    position: relative;
    color: #222;
    font-weight: 700;
}

.product_left_subtitle:after {
    margin-bottom: 5px;
    letter-spacing: .04rem;
    color: #aaa;
    content: "\A   \2013";
    background: 0 0;
    position: static;
    display: block;
    height: auto;
    width: auto;
}

.my_account_content_inner h2 {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid #aaa;
    font-size: 18px;
    letter-spacing: .02rem;
    text-transform: uppercase;
    color: #222;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 5px;
}

.my_account_content_inner h2 a,
.my_account_content_inner a {
    float: right;
    text-decoration: underline;
    color: #767676;
    text-transform: none;
    font-size: 11px;
    font-weight: normal;
}

.my_account_content_inner p {
    color: #767676;
    text-transform: none;
    font-size: 11px;
    margin: 5px 0px;
}

.my_account_content_inner ul {
    margin-bottom: 15px;
}

.my_account_content_inner ul li {
    color: #767676;
    text-transform: none;
    font-size: 11px;
    line-height: 2;
}

.my_account_content_inner ul li b {
    color: #222;
    font-weight: normal;
}

.my_account_content_inner ul li a {
    float: none;
    display: block;
}

@media (max-width: 767px) {
    .myaccount_menu {
        display: none;
    }
}

.myaccount_menu ul {
    margin-bottom: 15px;
}

.myaccount_menu ul li a {
    display: inline-block;
    text-decoration: none;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    margin-bottom: 5px;
}

.myaccount_menu_mobile {
    position: relative;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .myaccount_menu_mobile {
        display: none;
    }
}

.myaccount_menu_mobile h3 {
    position: relative;
    display: block;
    text-align: center;
    padding: 12px;
    width: 100%;
    height: 44px;
    border: 1px solid #aaa;
    font-size: 14px;
    color: #222;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.myaccount_menu_mobile h3.open:before {
    font-family: 'LineIcons' !important;
    content: "\EA43";
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.myaccount_menu_mobile h3:before {
    float: right !important;
    font-family: 'LineIcons' !important;
    content: "\EA45";
    font-size: 14px;
    font-weight: 900;
    -webkit-transition: all .3s;
    transition: all .3s;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #767676;
}

.myaccount_menu_mobile ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #aaa;
    border-top: none;
    background-color: #fff;
    color: #767676;
    z-index: 5;
    display: none;
    text-align: left;
}

.myaccount_menu_mobile ul li {
    width: 100%;
}

.myaccount_menu_mobile ul li a {
    display: block;
    padding: 15px;
    color: #767676;
    text-decoration: none;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
}

.myaccount_menu_mobile ul li.active a {
    background-color: #f5f5f5;
    pointer-events: none;
}

@media (max-width: 767px) {
    .show_lang_desk {
        display: none;
    }
}

@media (min-width: 768px) {
    .show_lang_mob {
        display: none;
    }
}


/*# sourceMappingURL=main.css.map */