*{
    box-sizing: border-box;
}
:root {
    --primary: #F17921;
    --dark: #000000;
    --light: #F0F0F0;
    --gray:#8B8B8B;
    --font2: 'Lato', sans-serif;
}
body {
    font-size: 16px;
    color: var(--dark);
    line-height: 140%;
    overflow-x: hidden;
    background-color: var(--light);
    font-family: 'Montserrat', sans-serif;
}
.content-main{
    padding-top:266px;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 600;
}
*{
    outline:none !important;
}
a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.4s;
}
a:hover {
    color: var(--dark);
    text-decoration: none;
}
p:last-child {
    margin-bottom: 0;
}
ul{
    list-style: none;
}
html button {
    box-shadow: none !important;
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
}
html .container {
    max-width: 1260px;
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
}
main{
    max-width: 1260px;
    margin:0 auto;
    background-color: #fff;
}
section{
    padding-top: 80px;
    padding-bottom: 80px;
}
html .btn {
    border: 0!important;
    color:#fff ;
    background: var(--dark) !important;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
    position: relative;
    z-index: 2;
    font-family: var(--font2);
    transition: all 0.2s;
    border-radius: 0;
    min-width: 125px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 0 0 0 transparent !important;
    overflow: hidden;
}
html .btn:hover {
    color:#fff ;
    background: var(--dark) !important;
}
html .btn:before {
    content: "";
    background:var(--light);
    width: 10px;
    height: 130%;
    position: absolute;
    left: auto;
    right: 180%;
    top: -15%;
    z-index: -1;
    transition: all 0.3s;
    box-shadow: 0 0 0 transparent !important;
    transform: skew(-10deg);
    opacity: 0.5;
}
html .btn:hover:before {
    right: -40%;
}
html .btn.btn-light{
    border-color:#fff!important;
    color:#fff;
}
html .btn.btn-light:hover{
    color:var(--dark);
}
html .btn.btn-light:before{
    background:#fff;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 99;
    transition: all 0.3s;
}
.modal-open header{
    margin-right: 17px;
}
.header-topbar {
    padding-top: 18px;
}
header .logo a,
header .logo img {
    display: block;
}
header ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.header-social {
    display: flex;
    align-items: center;
}
ul.header-social li + li {
    margin-left: 25px;
}
ul.header-social li a{
    color:var(--gray);
}
ul.header-social li a:hover{
    color:var(--dark)
}
.header-bottombar {
    padding: 35px 0 44px;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    transition: all 0.3s;
}
.header-search-field {
    position: relative;
}
.header-search-field .field {
    width: 570px;
    position: relative;
}
.header-search-field .field input {
    display: block;
    width: 100%;
    border: 1px solid rgba(0,0,0,0.15);
    font-size: 18px;
    height: 56px;
    padding: 0 70px 0 20px;
    font-family: var(--font2);
}
.header-search-field .field .icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}
ul.header-auth-link {
    display: flex;
    align-items: center;
    font-family: var(--font2);
}
ul.header-auth-link > li {
    position:relative;
}
ul.header-auth-link > li + li {
    position: relative;
    padding-left: 14px;
    margin-left: 14px;
}
ul.header-auth-link > li + li:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--dark);
    left: 0;
    height: 18px;
    margin: auto;
}
ul.header-auth-link > li > a {
    color: var(--dark);
    line-height: 30px;
    display: inline-block;
    vertical-align: top;
}
ul.header-auth-link > li > a:hover{
    color:var(--gray);
}
ul.header-auth-link > li.parent_link > a:after {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 6px;
    height: 6px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg);
    margin: 10px 0  0 8px;
}
ul.header-auth-link > li ul {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 145px;
    border: 1px solid var(--light);
    background: #fff;
    padding: 5px ;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.05);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s;
    visibility: hidden;
}
ul.header-auth-link > li:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
ul.header-auth-link > li ul li a {
    display: block;
    color: var(--dark);
    padding: 5px 15px;
    font-family: var(--font2);
    font-size: 15px ;
}
ul.header-auth-link > li ul li a:hover{
    background:var(--light);
}




.header-cart-btn {
    position: relative;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}
.header-cart-btn> span {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    min-width: 15px;
    color: #fff;
    background: #FF0000;
    line-height: 15px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 50%;
    padding: 0 3px;
    margin: 2px;
}
.header-menubar {
    padding: 25px 0;
    transition: all 0.3s;
}
header nav > ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
header nav > ul > li + li{
    margin-left: 32px;
}
header nav > ul > li > a{
    line-height:38px;
    display: block;
    color:var(--gray);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    position:relative;
}
header nav > ul > li.acitve > a,
header nav > ul > li > a:hover{
    color:var(--dark);
}
header nav > ul > li.nav-sale-item > a {
    color: #0CAAD9;
}
header nav > ul > li > a .navlink_budge {
    display: inline-block;
    vertical-align: top;
    position: absolute;
    left: 10px;
    top: -13px;
    font-size: 8px;
    font-weight: 600;
    background: #CB1A1A;
    color: #fff;
    line-height: 16px;
    padding: 0 10px;
}
header nav > ul > li > a .navlink_budge:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    border-top: 8px solid #CB1A1A;
    margin: auto;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}
.fixed header {
    top: -45px;
}
.fixed header .header-bottombar {
    padding: 15px 0;
}
.fixed header .header-menubar {
    padding: 10px 0;
}


.become-link > a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.sidebar-nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #EBEBEB;
}
.sidebar-nav > ul> li + li {
    border-top: 1px solid #EBEBEB;
}
.sidebar-nav > ul> li > a {
    display: block;
    font-size: 16px;
    color: var(--dark);
    padding: 13px 20px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 28px;
}
.sidebar-nav > ul> li > a:hover{
    text-indent: 10px;
    color: var(--gray);
}
.sidebar-nav > ul> li.active > a {
    color:#fff;
    background-color: var(--dark);
}
.sidebar-nav > ul> li.line_viewall > a {
    background: #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar-nav > ul> li.line_viewall > a:hover {
    background:var(--dark);
    color:#fff;
}
html .text-primary {
    color: var(--primary) !important;
}
.main-slider .item {
    background-position: center center;
    background-size: cover;
    padding: 0 112px;
    display: flex;
    align-items: center;
    min-height: 602px;
    position: relative;
    z-index: 1;
}
.main-slider .item:before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top:0;
    right:0;
    bottom:0;
    z-index: -1;
    background: #000;
    opacity: 0.1;
}
.main-slider .item h2 {
    color: #fff;
    font-size: 43px;
    font-weight: 700;
    margin: 0px 0 88px;
}
.main-slider .item h5 {
    font-size: 21px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0 0 60px;
}
.banner-gif {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-gif .g_item + .g_item {
    margin-left: 30px;
}
.main-slider.owl-carousel .owl-nav {
    opacity: 0;
    transition: all 0.4s;
}
.main-slider.owl-carousel:hover .owl-nav {
    opacity: 1;
}
.main-slider.owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    background: url("../images/slider-arrow.svg") no-repeat center center;
    margin: auto 25px;
    font-size: 0;
    opacity: 0.6;
    transition: all 0.4s;
}
.main-slider.owl-carousel .owl-nav button.owl-next{
    transform: rotate(180deg);
    left: auto;
    right:0;
}
.main-slider.owl-carousel .owl-nav button:hover{
    opacity: 1;
}
.main-slider.owl-carousel .owl-dots {
    opacity:0;
    transition: all 0.4s;
    position: absolute;
    right:0;
    bottom:0;
    display: flex;
    align-items: center;
    margin:25px;
}
.main-slider.owl-carousel:hover .owl-dots {
    opacity: 1;
}
.main-slider.owl-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 10px;
    border: 2px solid var(--dark);
    margin-left: 15px;
    display: block;
    transition: all 0.3s;
}
.main-slider.owl-carousel .owl-dots .owl-dot.active,
.main-slider.owl-carousel .owl-dots .owl-dot:hover {
    background: var(--dark);
}
.sidebar-widget {
    margin-bottom: 24px;
}
.sidebar-minibanner {
    position: relative;
}
.sidebar-minibanner .img {
    position: relative;
}
.sidebar-minibanner .img h3 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    margin: 24px;
    color: #fff;
    font-weight: 700;
    font-size: 28px;
}
.mini-banner-box {
    background: var(--light);
    margin: 0 0 35px;
    padding: 30px 30px 30px 20px;
}
.mini-banner-box h3 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 50px;
}
.mini-banner-box h3 a{
    color:var(--dark);
}
.mini-banner-box h3 a:hover{
    color:var(--primary);
}
.mini-banner-box .shopnow_link {
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}
.mini-banner-box .shopnow_link:hover{
    color:var(--primary);
}
.mini-banner-box .img a {
    display: block;
}
.mini-banner-box .img img {
    height: 142px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s;
    transform-origin: left top;
}
.mini-banner-box:hover .img img {
    transform: scale(1.05);
}
.main-slider {
    margin-bottom: 25px;
}
.section-title {
    margin: 0 0 15px;
}
.section-title h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.section-title .v_all_link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray);
}
.section-title .v_all_link:hover {
    color: var(--dark);
}
.product-box .img {
    height: 384px;
    overflow: hidden;
    margin:0 0 20px;
    position: relative;
}
.product-box .img img,
.product-box .img > a {
    height: 100%;
    display: block;
    width: 100%;
}
.product-box .img img{
    transition: all 0.4s;
    object-fit: cover;
}
.product-box:hover .img img{
    transform:scale(1.2);
}
.product-box {
    text-align: center;
    margin: 0 0 48px;
}
.product-box h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.product-box h3 a{
    color:var(--dark);
}
.product-box h3 a:hover{
    color:var(--primary);
}
.product-box .p_price {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px;
}
.product-box .p_price span {
    color: #00a3ff ;
    font-size: 12px;
    margin-left: 10px;
}
.product-box .p_action {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.product-box .p_action > * + * {
    margin-left: 12px;
}
.product-box .p_action .btn{
    font-size: 13px;
}
.product-box .product-box-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.product-box .delete-icon {
    position: absolute;
    top: 0;
    right: 0;
}





html .btn.btn-icon {
    min-width: 40px;
    padding: 0;
}
html .btn.btn-outline {
    background: #fff !important;
    color: var(--dark) !important;
    border: 1px solid var(--dark) !important;
    line-height: 38px;
}
html .btn.btn-outline:hover {
    background: var(--dark) !important;
    color: #fff !important;
}
.compare-toggle label {
    display: block;
}
.compare-toggle label input {
    display: none;
}
.compare-toggle label .c_toggle_d {
    display: none;
}
.compare-toggle label input:checked ~ span .c_toggle_d {
    display: block;
}
.compare-toggle label input:checked ~ span .c_toggle_o {
    display: none;
}
.compare-toggle label input:checked ~ span.btn{
    background: var(--dark) !important;
    color: #fff !important;
}
.ads_banner {
    height: 237px;
    background: #3B0B0B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 0 48px;
}
.ads_banner h3 {
    font-size: 54px;
    font-weight: 700;
    margin: 0;
}
ul.sidebar-p-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.sidebar-p-links li  + li {
    margin-top:15px;
}
ul.sidebar-p-links p {
    font-size: 14px;
    font-family: var(--font2);
    color: var(--gray);
}
ul.sidebar-p-links h4 {
    margin: 0 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}
ul.sidebar-p-links h4 a {
    color:var(--dark);
}
ul.sidebar-p-links h4 a:hover {
    color:var(--dark);
    text-decoration: underline;
}
.footer-topbar {
    padding: 55px 15px;
    border-top: 1px solid rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.footer-point-box {
    position: relative;
    padding-left: 86px;
    min-height: 77px;
}
.footer-point-box .icon {
    width: 77px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border: 3px solid var(--gray);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}
.footer-point-box .icon  svg {
    fill: var(--gray);
}
.footer-point-box  h5 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0px 0 20px;
    padding-top: 5px;
}
.footer-point-box p {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
}
.footer-main {
    padding: 55px 50px 80px;
}
footer h4 {
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 22px;
    font-size: 24px;
}
ul.foot_links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font2);
}
ul.foot_links li + li {
    margin-top: 12px;
}
ul.foot_links li a {
    color: var(--gray);
    font-weight: 500;
    font-size: 18px;
    position: relative;
    padding-left: 20px;
    display: inline-block;
    vertical-align: top;
}
ul.foot_links li a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--dark);
}
ul.foot_links li a:hover {
    color: var(--dark);
}
ul.foot_info {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--gray);
    font-weight: 500;
    font-size: 18px;
    font-family: var(--font2);
}
ul.foot_info li + li{
    margin-top:10px;
}
ul.foot_info li{
    position: relative;
    padding-left: 35px;
}
ul.foot_info .icon {
    position: absolute;
    left: 0;
    top: 0;
}
html .modal-body {
    padding: 50px 33px;
}
.modal-head-wrap{
    margin-bottom:20px;
}
.modal-body h3 {
    text-transform: uppercase;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}
.modal-close {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    color:var(--dark);
    transition: all 0.4s;
    background: transparent;
}
.modal-close:hover{
    color:var(--gray);
}
.modal-body h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--font2);
    margin: 0 0 25px;
}
.l_with_btn {
    border: 2px solid #5784EA;
    background: transparent;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 14px;
    height: 72px;
    color: #194BBC;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.4s;
}
.l_with_btn svg,
.l_with_btn img{
    margin-right:15px;
}
.l_with_btn:hover{
    color:#fff;
    background: #194BBC;
    border-color:transparent;
}
html .modal {
    --bs-modal-width: 600px;
}
.l_with_btn.l_with_btn_google {
    border-color: #E65353;
    color: #E65353;
}
.l_with_btn.l_with_btn_google:hover {
    background: #E65353;
    color:#fff;
    border-color:transparent;
}
.by-sign-in {
    font-size: 12px;
    font-weight: 500;
    margin-top:38px;
    color: var(--gray);
}
.by-sign-in a {
    color: var(--dark);
}
.by-sign-in a:hover {
    color: var(--gray);
    text-decoration: underline;
}
html .btn.btn-lg {
    min-width: 260px;
    line-height: 72px;
    font-size: 24px;
}
html .btn.btn-lg::before {
    width:20px;
}
.l_with_or {
    font-size: 16px;
    margin: 0 0 20px;
    font-family: var(--font2);
}
.l_with_btnset {
    margin-bottom: 30px;
}
.form-field {
    margin: 0 0 20px;
}
.form-field label {
    font-size: 16px;
    font-family: var(--font2);
    margin: 0 0 8px;
    font-weight: 500;
}
.form-field .form-select,
.form-field .form-control {
    height: 72px;
    box-shadow: 0 0 0 transparent !important;
    border-radius: 0;
    border: 1px solid #707070;
    padding: 0 20px;
    font-size: 20px;
    font-family: var(--font2);
}
.header-search-field ul.dropdown-menu {
    width: 100%;
    border-radius: 0;
    margin-top: -4px !important;
    box-shadow: 1px 3px 10px 0 rgba(0,0,0,0.3);
    padding: 2px 5px;
}
.header-search-field ul.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 5px;
    font-size: 18px;
    color: var(--dark);
    font-family: var(--font2);
}
.header-search-field ul.dropdown-menu .dropdown-item .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.header-search-field ul.dropdown-menu .dropdown-item:active,
.header-search-field ul.dropdown-menu .dropdown-item:hover{
    background: var(--light);
}
.field-otp-text {
    font-size: 16px;
    font-family: var(--font2);
    margin-top: 10px;
}
.radio-fields {
    font-size: 16px;
    font-family: var(--font2);
    margin: 0 0 20px;
}
.radio-fields ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.radio-fields ul li + li {
    margin-left: 18px;
}
.radio-fields ul li label input {
    display: none;
}
.radio-fields ul li label {
    position: relative;
    padding-left: 20px;
}
.radio-fields ul li label span:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--dark);
    border-radius: 50%;
    transition: all 0.3s;
}
.radio-fields ul li label input:checked ~ span:before {
    background: var(--dark);
    box-shadow: 0 0 0px 2px #fff inset;
}
.back_modal_link {
    color: var(--dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
}
.back_modal_link:hover{
    color:var(--gray);
}
.back_modal_link svg{
    margin-right: 6px;
}
.field-edit-link {
    position: absolute;
    right: 0;
    top: 0;
    margin: 23px;
}
.field-edit-link a {
    color: var(--dark);
    font-size: 20px;
    font-weight: 500;
}
.field-edit-link a:hover {
    color: var(--primary);
}
.resend-otp {
    text-align: right;
    margin-top: 6px;
    font-weight: 500;
    font-family: var(--font2);
}









.product-gallery .product_g_big,
.product-gallery .product_g_thumbs{
    margin-bottom: 25px;
}
.product_g_big  .item {
    height: 700px;
    width: 100%;
    overflow: hidden;
}
.product_g_big .item a{
    display: block;
    height: 100%;
}
.product_g_big .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s;
}
.product_g_big .item img:hover{
    transform: scale(1.2);
}
.product_g_thumbs .item {
    height: 120px;
    overflow: hidden;
    width: 100%;
}
.product_g_thumbs .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s;
}
.product_g_thumbs .item img:hover{
    transform: scale(1.2);
}

html .btn.btn-lg.btn-icon {
    min-width: 73px;
}
html .btn.btn-primary{
    background: #F0651F !important;
    border-color: #F0651F !important;
}

.product-content .text,
.highlight-text,
.discription-text,
.specification-text,
.rating-text {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(0 0 0 / 20%);
}
.product-content .text .share-btn {
    position: absolute;
    top: 0;
    right: 0;
}
html .btn.btn-md {
    min-width: 210px;
    line-height: 48px;
    font-size: 17px;
}
html .btn.btn-icon.btn-md {
    min-width: 48px;
    line-height: 48px;
}
.product-content {
    padding-left: 20px;
}
.product-content .text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.product-content .text .rating .review {
    margin-right: 15px;
    margin-left: 15px;
    padding-right: 15px;
    position: relative;
}
.product-content .text .rating .review:after{
    content: "";
    display: block;
    background: #000;
    width: 1px;
    height: 15px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.product-content .text .rating .review {
    margin-right: 15px;
    margin-left: 15px;
    padding-right: 15px;
    position: relative;
    font-size: 16px;
    font-family: var(--font2);
}
.product-content .text .rating .write-review{
    font-size: 16px;
    font-family: var(--font2);
}
.product-content .text .rating .write-review a{
    color:var(--dark);
}
.product-content .text .rating .write-review a:hover{
    color:var(--gray)
}
.rating {
    margin-bottom: 20px;
}
.product-content .text h5 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    vertical-align: bottom;
}
.product-content .text h5 del {
    font-weight: 400;
    font-size: 20px;
}
.product-content .text p{
    font-family: lato;
    color: #8B8B8B;
}
.product-content .text p > span {
    color: #0031FF;
    font-weight: 600;
}
.product-content h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}
.product-content ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.product-content ul li {
    font-family: var(--font2);
}
.product-content .discription-text p {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font2);
}
.product-content .specification-text ul {
    margin-bottom: 20px;
}
.product-content .specification-text p{
    font-family: lato;
    color: var(--gray);
    font-weight: 600;
}
.rating-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.rating-wrap .review {
    margin-left: 20px;
    font-family: var(--font2);
    line-height: 100%;
}
.rating-wrap .rate {
    font-weight: 600;
    font-size: 12px;
}
.rating-wrap .rate a{
    color:var(--dark);
}
.rating-wrap .rate a:hover{
    color:var(--gray)
}
.rating-text .image {
    display: flex;
    align-items: center;
    margin: 0 -4px;
}
.rating-text .image .item{
    overflow: hidden;
    padding: 0 4px;
    position: relative;
}
.rating-text .image .item img{
    width: 70px;
    height: 70px;
    object-fit: cover;
}
.rating-text .image .item span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: 600;
}
.just_wow-text p {
    font-family: var(--font2);
    font-size: 16px;
    font-weight: 600;
}
.rating-text h6 {
    font-size: 12px;
    margin: 15px 0 5px;
    font-weight: 600;
}
.rating-text h6 span {
    color: var(--gray);
}
.rating-text:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.product-gallery {
    position: sticky;
    top: 150px;
}

.faq-section {
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 50px;
    border-top: 1px solid rgb(0 0 0 / 20%);
    position: relative;
}
.faq-section h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 26px;
    text-transform: uppercase;
}
.faq-section ul {
    padding: 0;
    margin-bottom: 50px;
}
.faq-section ul + ul{
    margin-bottom: 0;
}
.faq-section ul li {
    font-weight: 600;
    font-size: 20px;
    font-family: var(--font2);
    vertical-align: bottom;
    margin-bottom: 15px;
}
.faq-section ul li:last-child {
    margin-bottom: 0;
    font-weight: 400;
}
.faq-section ul li span{
    font-weight: 400;
}
.all-qna {
    position: absolute;
    bottom: 50px;
    right: 0;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}
.similear-product-section {
    padding-bottom: 50px;
    border-top: 1px solid rgba(0,0,0,0.15);
    padding-top: 25px;
}
.similear-product-section h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 30px;
}
.similear-product-carousel .item .image {
    margin-bottom: 15px;
}
.similear-product-carousel .item .text p {
    font-size: 14px;
    font-family: var(--font2);
    font-weight: 600;
}
.similear-product-carousel .item .text .rating {
    display: inline-block;
    color: #FFF;
    background: #000;
    padding: 0 5px;
    border-radius: 2px;
    min-width: 64px;
    line-height: 30px;
    text-align: center;
}
.similear-product-carousel .item .text .rating-success {
    background: #33AD16;
}
.similear-product-carousel .item .text .price {
    display: flex;
    align-items: center;
}
.similear-product-carousel .item .text .price h5 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
}
.similear-product-carousel .item .text .price h6 {
    margin-bottom: 0;
    margin-left: 20px;
    font-size: 14px;
    font-family: var(--font2);
}
.similear-product-carousel .item .text .price h6 del{
    color: var(--gray);
}
html .similear-product-section .similear-product-carousel .owl-nav button {
    font-size: 0;
    width: 40px;
    height: 40px;
    background: rgb(0 0 0 / 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #707070;
    transition: all 0.4s;
    position: absolute;
    top: 123px;
    left: 15px;
    transform: translateX(30px);
    visibility: hidden;
    opacity: 0;
}
.similear-product-section:hover .similear-product-carousel .owl-nav button{
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}
html .similear-product-section .similear-product-carousel .owl-nav button:hover {
    background: #000;
    border-color: #000;
}
html .similear-product-section .similear-product-carousel .owl-nav button.owl-next{
    left: auto;
    right: 15px;
    transform: translateX(-30px) rotate(180deg);
}
.similear-product-section:hover .similear-product-carousel .owl-nav button.owl-next{
    transform: translateX(0) rotate(180deg);
}
html .similear-product-section .similear-product-carousel .owl-nav button:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.569' height='16' viewBox='0 0 7.569 16'%3E%3Cpath id='angle-left' d='M13.719 16a.667.667 0 0 1-.473-.193L7.8 10.357a3.333 3.333 0 0 1 0-4.719L13.246.192a.669.669 0 1 1 .947.947L8.747 6.584a2 2 0 0 0 0 2.826l5.446 5.446A.667.667 0 0 1 13.719 16Z' transform='translate(-6.821 0.004)' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
}
html .fancybox__thumbs {
    display: none;
}
html .btn.btn-add-cart.btn-lg {
    min-width: 280px;
}

.cart_body_content {
    min-height: 43vh;
    padding-bottom: 50px;
    padding-top:40px;
}
.cart-menubar {
    border-bottom: 1px solid rgba(0,0,0,0.15);
    padding:25px 0;
}
.cart-menubar  ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-menubar ul li a {
    background: transparent;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    display: block;
    line-height: 32px;
    text-transform: uppercase;
    color: var(--gray);
    position: relative;
    padding: 0 0 0 40px;
}
.cart-menubar ul li a .icon {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--light);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.cart-menubar ul li {
    position: relative;
    padding-right: 80px;
    margin-right: 10px;
}
.cart-menubar ul li:last-child{
    padding-right: 0;
    margin-right: 0;
}
.cart-menubar ul li:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 2px;
    background: var(--gray);
    width: 70px;
    margin: auto;
}
.cart-menubar ul li:last-child:before {
    display: none;
}
.cart-menubar ul li.active a {
    color:var(--dark);
}
.cart-menubar ul li.active a .icon{
    background: var(--dark);
    color:#fff;
}
.cart_head h3 {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
}
.cart_head h3 span {
    color: var(--gray);
    text-transform: none;
    font-weight: 500;
}
.cart_head {
    margin-bottom: 15px;
}
.cart_items .item {
    border: 1px solid #8B8B8B;
    padding: 0 0 0 200px;
    margin: 0 0 30px;
    position: relative;
}
.cart_items .item .img {
    width: 200px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}
.cart_items .item .img img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.cart_items .item .text {
    padding: 30px;
}
.cart_items .item h3 {
    font-size: 24px;
    font-family: var(--font2);
    font-weight: 600;
    margin: 0 0 20px;
}
.cart_items .item h3 a {
    color:var(--dark);
}
.cart_items .item h3 a:hover {
    color:var(--gray);
}
.cart_items .item h5 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    font-family: var(--font2);
}
.cart-plus-minus {
    display: flex;
    align-items: center;
}
.cart-plus-minus .qtybutton {
    width: 24px;
    height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath id='add' d='M12 0A12 12 0 1 0 24 12 12 12 0 0 0 12 0Zm0 22A10 10 0 1 1 22 12 10 10 0 0 1 12 22Zm5-10a1 1 0 0 1-1 1H13v3a1 1 0 0 1-2 0V13H8a1 1 0 0 1 0-2h3V8a1 1 0 0 1 2 0v3h3A1 1 0 0 1 17 12Z' fill='%238b8b8b'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    font-size: 0;
    transition: all 0.4s;
    cursor: pointer;
}
.cart-plus-minus .qtybutton:hover{
    opacity: 0.5;
}
.cart-plus-minus .dec.qtybutton {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath id='add' d='M12 0A12 12 0 1 0 24 12 12 12 0 0 0 12 0Zm0 22A10 10 0 1 1 22 12 10 10 0 0 1 12 22Zm5-10a1 1 0 0 1-1 1H8a1 1 0 0 1 0-2h8A1 1 0 0 1 17 12Z' fill='%238b8b8b'/%3E%3C/svg%3E");
}
.cart-plus-minus input {
    width: 40px;
    margin: 0;
    border: 0;
    text-align: center;
    height: 24px;
    font-size: 24px;
    font-family: var(--font2);
}
.cart_action {
    margin-top: 60px;
}
.cart_action button {
    font-size: 20px;
    border: 0;
    background: transparent;
    font-family: var(--font2);
    padding: 0;
    transition: all 0.4s;
    line-height: 30px;
    display: inline-block;
    vertical-align: top;
}
.cart_action button svg{
    margin-right: 8px;
}
.cart_action button:hover{
    color:var(--primary);
}
.c_price {
    font-size: 24px;
    font-weight: 700;
}
.c_price del {
    font-weight: 500;
    font-size: 20px;
}
.cart_sidebar_widget {
    background: var(--light);
    margin: 0 0 30px;
    padding: 20px;
}
.cart_sidebar_widget h3 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font2);
    text-transform: uppercase;
    margin: 0 0 15px;
}
.cart_sidebar_widget .table tr, 
.cart_sidebar_widget .table td, 
.cart_sidebar_widget .table th {
    border: 0;
}
.cart_sidebar_widget .table td, 
.cart_sidebar_widget .table th {
    padding: 6px 0;
    font-size: 20px;
    font-family: var(--font2);
}
.cart_sidebar_widget .table th {
    font-weight: 700;
}
.cart_sidebar_widget.cart_sidebar_coupon_widget {
    background: transparent;
    border: 1px solid var(--gray);
}
.cart_sidebar_widget h4 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font2);
    margin: 0 0 10px;
}
.coupon_list .item label {
    display: block;
    position: relative;
}
.coupon_list .item {
    position: relative;
}
.coupon_list .item label input {
    display: none;
}
.coupon_list .item label span {
    display: block;
    font-size: 20px;
    font-family: var(--font2);
    line-height: 32px;
    padding: 10px 50px 10px 50px;
    text-transform: uppercase;
    position: relative;
    border-radius: 5px;
    transition: all 0.4s;
}
.coupon_list .item label span:before {
    content: "";
    display: block;
    position: absolute;
    left: 18px;
    top: 19px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--dark);
    border-radius: 50%;
    transition: all 0.3s;
}
.coupon_list .item label input:checked ~ span:before {
    background: var(--dark);
    box-shadow: 0 0 0px 2px #fff inset;
}
.coupon_list .item label input:checked ~ span {
    background-color: rgba(12,170,217,0.1);
}
.coupon_list .item .item_close {
    position: absolute;
    right: 5px;
    top: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}
.coupon_list .item .item_close:hover {
    opacity: 0.5;
}
.sidebar_return p {
    font-size: 20px;
    font-family: var(--font2);
    margin: 0  0 22px;
}
.sidebar_return a {
    font-weight: 600;
    font-family: var(--font2);
    font-size: 20px;
}
.cart_sidebar_coupon_widget .btn {
    min-width: 0;
}
.form-field .form-select.form-select-sm,
.form-field .form-control.form-control-sm {
    height: 40px;
    font-size: 18px;
    padding: 0 12px;
}
.form-field .form-select.form-select-md,
.form-field .form-control.form-control-md {
    height: 48px;
    font-size: 14px;
    padding: 0 15px;
}
.form-field .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23.991' height='11.842' viewBox='0 0 23.991 11.842'%3E%3Cpath id='angle-down' d='M1.51 6.079a1.492 1.492 0 0 1 1.06.44l7.673 7.672a2.5 2.5 0 0 0 3.536 0L21.44 6.529A1.5 1.5 0 1 1 23.561 8.65L15.9 16.312a5.5 5.5 0 0 1-7.778 0L.449 8.64A1.5 1.5 0 0 1 1.51 6.079Z' transform='translate(-0.009 -6.079)'/%3E%3C/svg%3E");
    background-size: 24px auto;
}
.cart_head h5 {
    margin: 12px 0 0;
    font-size: 20px;
    font-family: var(--font2);
    color: var(--gray);
}
.address_item_link {
    padding: 0 40px;
    margin: 10px 0;
}
.address_item_link a {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font2);
}
.address_items .item {
    position: relative;
    border: 1px solid transparent;
    padding: 30px 40px;
    margin: 0 0 5px;
    z-index: 1;
    transition: all 0.4s;
}
.address_items .item:hover{
    border-color:var(--light);
}
.address_items .item h4 {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font2);
    margin: 0 0 20px;
}
.address_items .item h4 span {
    color: var(--gray);
}
.address_items .item h4  b {
    color: #0CAAD9;
}
.address_items .item p {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font2);
    line-height: 140%;
}
.address_items .item .text{
    padding-right: 70px;
    pointer-events: none;
}
.address_items .item label{
    cursor: pointer;
}
.address_items .item label,
.address_items .item label span{
    display: block;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index:-1;
}
.address_items .item label span{
    display: flex;
    padding:25px;
    background-color: var(--light);
    opacity: 0;
    justify-content: flex-end;
    transition: all 0.4s;
}
.address_items .item label input:checked ~ span{
    opacity: 1;
}
.address_items .item label input{
    display: none;
}
.cash_delivery_text {
    text-align: center;
}
.cash_delivery_text h5 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font2);
    margin: 0 0 5px;
}
.cash_delivery_text h6 {
    margin: 0;
    font-size: 20px;
    font-family: var(--font2);
}
.gst-invoice-wrap label {
    display: block;
    position: relative;
    padding: 0 0 0 40px;
    margin-right: 50px;
    cursor: pointer;
}
.gst-invoice-wrap label input{
    display: none;
}
.gst-invoice-wrap label .gst_data {
    font-size: 20px;
    font-family: var(--font2);
    font-weight: 500;
    color: var(--gray);
    display: none;
    line-height: 140%;
    margin-top:10px;
}
.gst-invoice-wrap label .gst_label {
    display: block;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font2);
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.4s;
}
.gst-invoice-wrap label .gst_label:before {
    content: "";
    display: block;
    position: absolute;
    left: -40px;
    top: 0;
    width: 21px;
    height: 20px;
    border: 2px solid var(--dark);
    border-radius: 4px;
    background-position: center center;
    background-repeat: no-repeat;
}
.gst-invoice-wrap label input:checked ~ .gst_label:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.831' height='9.605' viewBox='0 0 13.831 9.605'%3E%3Cpath id='Path_39' data-name='Path 39' d='M8.4 14.315l-3.268-3.26a.835.835 0 0 0-1.179 0h0a.831.831 0 0 0 0 1.176l3.268 3.26a1.671 1.671 0 0 0 2.359 0l7.716-7.7a.831.831 0 0 0 0-1.176h0a.835.835 0 0 0-1.179 0Z' transform='translate(-3.707 -6.374)'/%3E%3C/svg%3E");
}
.gst-invoice-wrap label input:checked ~ .gst_data {
    display: block;
}
.gst-invoice-wrap label input:checked ~ .gst_label{
    opacity: 1;
}
.gst-invoice-wrap {
    position: relative;
}
html .gst_data_edit {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    font-family: var(--font2);
    color: var(--dark);
}
html .gst_data_edit:hover {
    color: var(--primary);
}
.billingaddres_wrap {
    border-top: 1px solid rgba(0,0,0,0.15);
    padding-top: 50px;
    margin-top: 40px;
}
.billingaddres_head {
    padding: 0 40px 5px;
}
.billingaddres_head h2 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font2);
    margin: 0 0 25px;
}
.same_delivery_label label input {
    display: none;
}
.same_delivery_label label {
    display: inline-block;
    vertical-align: top;
    padding-left: 26px;
    font-size: 20px;
    font-family: var(--font2);
    position: relative;
}
.same_delivery_label label span:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 4px;
    width: 17px;
    height: 17px;
    border: 2px solid var(--dark);
    border-radius: 4px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px auto;
}
.same_delivery_label label input:checked ~ span:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.831' height='9.605' viewBox='0 0 13.831 9.605'%3E%3Cpath id='Path_39' data-name='Path 39' d='M8.4 14.315l-3.268-3.26a.835.835 0 0 0-1.179 0h0a.831.831 0 0 0 0 1.176l3.268 3.26a1.671 1.671 0 0 0 2.359 0l7.716-7.7a.831.831 0 0 0 0-1.176h0a.835.835 0 0 0-1.179 0Z' transform='translate(-3.707 -6.374)'/%3E%3C/svg%3E");
}



.make_default_label label input {
    display: none;
}
.make_default_label label {
    display: inline-block;
    vertical-align: top;
    padding-left: 26px;
    font-size: 16px;
    font-family: var(--font2);
    position: relative;
}
.make_default_label label span:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 4px;
    width: 17px;
    height: 17px;
    border: 2px solid var(--dark);
    border-radius: 4px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px auto;
}
.make_default_label label input:checked ~ span:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.831' height='9.605' viewBox='0 0 13.831 9.605'%3E%3Cpath id='Path_39' data-name='Path 39' d='M8.4 14.315l-3.268-3.26a.835.835 0 0 0-1.179 0h0a.831.831 0 0 0 0 1.176l3.268 3.26a1.671 1.671 0 0 0 2.359 0l7.716-7.7a.831.831 0 0 0 0-1.176h0a.835.835 0 0 0-1.179 0Z' transform='translate(-3.707 -6.374)'/%3E%3C/svg%3E");
}



.breadcrumb-wrap {
    padding: 30px 0;
}
.breadcrumb-wrap .breadcrumb {
    margin: 0;
    font-family: var(--font2);
}
.breadcrumb .breadcrumb-item {
    font-size: 24px;
    font-weight: 500;
}
.breadcrumb .breadcrumb-item:before{
    color: var(--dark);
}
.breadcrumb .breadcrumb-item a {
    color: var(--dark);
}
.breadcrumb .breadcrumb-item a:hover{
    color: var(--primary);
}
.filter-side-bar {
    border: 1px solid #E6E6E6;
    padding: 15px;
    font-family: var(--font2);
}
.filter-side-bar h2 {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 600;
}
.filter-side-bar h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}
.filter-side-bar .p_sidebar_widget {
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid rgb(0 0 0 / 20%);
}
.filter-side-bar .p_sidebar_widget:last-child {
    margin: 0;
    padding: 0;
    border-bottom: 0;
}
.filter-side-bar ul {
    margin: 0;
    padding: 0;
}
.filter-side-bar ul li {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
.filter-side-bar ul li:last-child{
    margin-bottom: 0;
}
.filter-side-bar ul li .form-check {
    margin-bottom: 0;
    position: relative;
}
.filter-side-bar ul li .form-check input {
    display: none;
}
.filter-side-bar ul li .form-check label:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 4px;
    width: 17px;
    height: 17px;
    border: 2px solid var(--gray);
    border-radius: 4px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px auto;
}
.filter-side-bar ul li .form-check input:checked ~ label:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.831' height='9.605' viewBox='0 0 13.831 9.605'%3E%3Cpath id='Path_39' data-name='Path 39' d='M8.4 14.315l-3.268-3.26a.835.835 0 0 0-1.179 0h0a.831.831 0 0 0 0 1.176l3.268 3.26a1.671 1.671 0 0 0 2.359 0l7.716-7.7a.831.831 0 0 0 0-1.176h0a.835.835 0 0 0-1.179 0Z' transform='translate(-3.707 -6.374)'/%3E%3C/svg%3E");
    border-color:var(--dark);
}




.filter-side-bar .noUi-target {
    border: 0;
    box-shadow: none;
    height: 3px;
    background: #8B8B8B;
}
.filter-side-bar .noUi-target .noUi-connect {
    background: #F0651F;
}
.filter-side-bar .noUi-target .noUi-handle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 0;
    box-shadow: none;
    right: 0;
    top: 1px;
    bottom: 0;
    margin: auto;
    background: #F0651F;
}
.filter-side-bar .noUi-target .noUi-handle:before,
.filter-side-bar .noUi-target .noUi-handle:after{
    display: none;
}
.filter-side-bar .noUi-target .noUi-handle .noUi-tooltip {
    transform: translate(0);
    border: 0;
    background: none;
    padding: 0;
    left: -15px;
    top: 100%;
    bottom: 0;
}
.filter-side-bar ul.price-range-list {
    padding-bottom: 50px;
}
.filter-side-bar ul.discount-list{
    padding-bottom: 25px;
}
.product-items-head {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgb(0 0 0 / 20%);
}
.product-items-head h3 {
    font-size: 18px;
    margin-bottom: 0;
    font-family: var(--font2);
}
.product-items-head .form-select {
    min-width: 200px;
    border-radius: 0;
    border-color: var(--gray);
    font-family: var(--font2);
    box-shadow: none;
    font-size: 18px;
}
.product-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    margin-bottom: 40px;
}
.product-banner h3 {
    margin-bottom: 0;
    display: inline-block;
    background: var(--dark);
    color: #FFF;
    line-height: 100px;
    min-width: 300px;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
}

.my-account-page .section-title h2 {
    font-size: 24px;
    font-weight: 600;
}
.page-list ul {
    margin: 0;
    padding: 0;
    background: #F5F5F5;
    border: 1px solid rgb(0 0 0 / 20%);
    border-right: 0;
    border-top: 0;
}
.page-list ul li a {
    background: rgb(255 255 255 / 26%);
    border-top: 1px solid rgb(0 0 0 / 20%);
    line-height: 36px;
    min-width: 100%;
    font-size: 20px;
    color: var(--dark);
    padding: 10px 10px 10px 24px;
    position: relative;
    font-family: var(--font2);
    display: block;
}
.page-list ul li a:hover{
    color: var(--primary)
}
.page-list ul li.active a{
    font-weight: 600;
    background: #FFF;
}
.page-list ul li.active a:before{
    content: "";
    display: block;
    background: var(--dark);
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
.form-wrap {
    border: 1px solid rgb(0 0 0 / 20%);
    padding: 35px 55px 25px;
}
.form-wrap h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: var(--font2);
}
.form-wrap .form-field label {
    font-size: 14px;
    margin: 0 0 10px;
}
.form-field .form-control-sm {
    height: 48px;
    font-size: 14px;
    padding: 0 15px;
}
.form-field .form-control-xs {
    height: 40px;
}
.form-wrap .field-edit-link {
    margin: 12px;
}
.form-wrap .field-edit-link a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}
.form-wrap .field-edit-link a:hover{
    color: var(--dark);
}
.form-wrap .radio-fields span {
    color: var(--gray);
}
.form-wrap .radio-fields span:before{
    border-color: var(--gray);
}
.form-wrap .radio-fields ul li label input:checked ~ span{
    color: var(--dark);
}
.form-wrap .radio-fields ul li label input:checked ~ span:before{
    border-color: var(--dark);
}
html .btn-primary {
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
}
html .btn-primary:hover{
    border-color: var(--dark) !important;
    background: var(--dark) !important;

}
html .form-wrap .btn {
    line-height: 46px;
    font-size: 17px;
    min-width: 150px;
}
.add-address-btn {
    margin-bottom: 40px;
}
.add-address-btn .add-address {
    border: 1px solid #E6E6E6;
    display: block;
    line-height: 70px;
    padding: 0 30px;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font2);
}
.add-address-btn .add-address .icon {
    vertical-align: middle;
    display: inline-block;
    margin-top: -7px;
    margin-right: 24px;
}
.manage-address-list ul {
    margin: 0;
    padding: 0;
}
.manage-address-list ul li {
    padding: 25px;
    border: 1px solid#E6E6E6;
    background: #FFF;
    position: relative;
    transition: all 0.4s;
    font-family: var(--font2);
}
.manage-address-list ul li.active {
    background: rgb(33 171 215 / 7%);
}
.manage-address-list ul li h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.manage-address-list ul li h4 span{
    font-weight: 400;
}
.default-address {
    background: #0ca9d97e;
    color: #FFF;
    font-size: 12px;
    margin-left:6px;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
    line-height: 32px;
    border-radius: 2px;
    display: inline-block;
    vertical-align: top;
}
.manage-address-list ul li p {
    font-size: 16px;
    font-weight: 600;
}
.manage-address-list ul li .field-edit-link {
    margin: 0;
    top: 25px;
    right: 45px;
}
.manage-address-list ul li .field-trash-link {
    position: absolute;
    margin: 0;
    bottom: 25px;
    right: 45px;
}
.manage-address-list ul li .field-trash-link a {
    display: block;
    color: var(--gray);
}
.manage-address-list ul li .field-trash-link a:hover{
    color: var(--dark);
}
.resend-otp-link {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 4px;
}
html .form-wrap .form-submit-btn .btn {
    line-height: 38px;
}
.product-content .text {
    padding-right: 55px;
}










/* payment-successful page */
.payment_msg {
    text-align: center;
    padding-top: 50px;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 70px;
}
.payment_msg .icon {
    width: 80px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.payment_msg h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 140%;
}
.payment_msg p{
    font-size:20px ;
    font-family: var(--font2);
    margin-bottom: 0;
    line-height: 36px;
}






/* payment-faild page */
.payment_faild {
    text-align: center;
    padding-top: 120px;
    width: 430px;
    margin: 0 auto;
}
.payment_faild .icon {
    margin-bottom: 39px;
}
.payment_faild h2{
    font-size:24px ;
    font-weight:bold ;
    margin-bottom: 77px;
}
.payment_faild p {
    font-size: 20px;
    font-family: var(--font2);
    margin-bottom: 0;
    line-height: 36px;
}
.payment_faild a{
    margin-top: 46px;
}
.header-title {
    padding:28px 0;
}
.header-title h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.header-title p {
    font-size: 20px;
    font-family: var(--font2);
    color: var(--gray);
    margin-top: 15px;
}
.myaccount-content {
    padding-bottom: 50px;
}
.new-pass-text {
    font-family: var(--font2);
}
.order-history-content {
    padding-top: 35px;
    padding-bottom: 40px;
}
.order-history-items .item {
    border: 1px solid var(--light);
    padding: 28px;
    margin: 0 0 20px;
}
.order-history-items .item h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
.order-history-items .item h2 a{
    color:var(--dark);
}
.order-history-items .item h2 a:hover{
    color:var(--primary);
}
.order-history-items .item h2 span {
    color: var(--gray);
    margin-left: 20px;
    display: inline-block;
    vertical-align: top;
}
.oh_item_link {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font2);
}
.order-history-items .item h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}
.order-history-items .item h3 span {
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 13px;
    margin-top: 4px;
}
.oh_view_link a {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font2);
    color: var(--dark);
}
.oh_view_link a:hover{
    color: var(--primary);
}
.order-history-items .item .inner_item + .inner_item {
    border-top: 1px solid var(--light);
    padding-top: 24px;
    margin-top: 24px;
}
.cart_sidebar_widget.cart_sidebar_delivery_address {
    background: transparent;
    border: 1px solid #E6E6E6;
    font-family: var(--font2);
}
.cart_sidebar_widget.cart_sidebar_delivery_address p{
    font-size: 20px;
    line-height: 140%;
}
.order_view_id {
    background: #808080;
    padding: 20px;
    font-family: var(--font2);
    color: #fff;
}
.order_view_id h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
}
.order_view_box {
    padding: 28px;
    border: 1px solid #E6E6E6;
}
.order_view_card {
    display: flex;
}
.order_view_card .img {
    width: 200px;
    margin-right: 30px;
}
.order_view_card .text {
    flex-grow: 1;
    font-family: var(--font2);
}
.order_view_card h3 {
    font-size: 24px;
    margin: 0 0 15px;
    font-weight: 600;
}
.order_view_card .text .qty_label {
    font-size: 20px;
    margin: 0 0 12px;
}
.order_view_card .price {
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin: 0 0 60px;
}
.order_view_card p {
    color: var(--gray);
}
.text-gray {
    color: var(--gray);
}
.order_tracking {
    margin-top: 35px;
    font-family: var(--font2);
}
.order_tracking h2 {
    color: var(--primary);
    font-size: 20px;
    margin: 0;
}
.order_tracking .cancel_order_link {
    font-size: 20px;
    font-weight: 600;
}
.order_track_list {
    margin-top: 30px;
    padding-bottom: 10px;
    position: relative;
}
.order_track_list:before {
    width: 16px;
    height: 16px;
    background: #fff;
    border:2px solid #8B8B8B;
    content: "";
    z-index: 1;
    display: block;
    position: absolute;
    left: 0;
    bottom:0;
    border-radius: 50%;
}
.order_track_list .item {
    position: relative;
    padding-left: 33px;
    padding-bottom: 25px;
}
.order_track_list .item:before {
    width: 16px;
    height: 16px;
    background: #8B8B8B;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    border-radius: 50%;
}
.order_track_list .item:after {
    content: "";
    display: block;
    width: 5px;
    background: #8B8B8B;
    position: absolute;
    top: 6px;
    bottom: -10px;
    left: 5px;
}
.order_track_list .item.item_completed:before ,
.order_track_list .item.item_completed:after{
    background: var(--primary);
}
.order_track_list .item h4 {
    font-size: 20px;
    margin: 0 0 10px;
}
.order_track_list .item p {
    font-size: 20px;
    line-height: 140%;
}
.order_detail_content {
    padding-bottom: 50px;
}
.order_view_card .text h5 {
    font-size: 20px;
    color: var(--gray);
}
.return_form {
    border-top: 1px solid #E6E6E6;
    padding-top: 30px;
    margin-top: 30px;
    font-family: var(--font2);
}
.return_form h2 {
    font-size: 24px;
    margin: 0 0 25px;
}
.form-field textarea.form-control.form-control-md {
    padding-top: 15px;
    height: 80px;
    resize: none;
}
.return-id-wrap {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font2);
    margin: 0 0 15px;
}
.msg {
    line-height: 28px;
    padding: 20px;
    font-size: 20px;
    font-family: var(--font2);
}
.msg.msg_info{
    background: rgba(12,170,217,0.1);
}
.brand-head {
    border-top: 1px solid rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.15);
    margin: 0 0 20px;
    padding: 20px 0;
}
.brand-head h3 {
    margin: 0;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
}
.brands-wrap {
    position: relative;
    padding-left: 60px;
}
.brands-wrap h3 {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    font-size: 24px;
}
.header-menubar .row {
    --bs-gutter-x: 0;
}
.shop_by_brands_tab ul.nav{
    margin-bottom: 38px;
}
.shop_by_brands_tab ul.nav li {
    margin-right: 10px;
    margin-bottom: 10px;
}
.shop_by_brands_tab ul.nav li:last-child{
    margin-right: 0px;
}
.shop_by_brands_tab ul.nav li button {
    border: 1px solid #707070!important;
    border-radius: 0 !important;
    color: #000 !important;
    font-size: 20px !important;
    font-family: var(--font2) !important;
    height: 48px !important;
    width: 48px !important;
    padding: 0;
}
.shop_by_brands_tab .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color:#fff !important;
    background-color: #F0651F;
    border-color: #F0651F !important;
}
.shop_by_brands_tab .brand_logo ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin:  0 -15px;
    padding:0;
}
.shop_by_brands_tab .brand_logo ul li{
    width: 16.66%;
    padding: 0 15px;
    margin: 0 0 40px;
}
.shop_by_brands_tab .brand_logo ul li h6{
    font-size: 16px;
    text-align: center;
    margin:15px 0 0 ; 
}
.brand_logo .img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand_logo .img img{
    max-height: 100%;
}
.brand_logo {
    margin-bottom: 40px;
}
.category-head {
    border-top: 1px solid rgba(0,0,0,0.15);
    padding: 30px 0;
}
.category-head h3 {
    margin: 0;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
}
.category_wrap .product-list {
    margin-top: 20px;
}
.category_wrap h2{
    margin: 0;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
}
.view-all-link a {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font2);
}


/* Compare-products Page */
.compare_product{
    border-bottom:1px solid #d9d9d9 ;
}
.compare_product h3 {
    margin-bottom: 33px;
    margin-top: 28px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
.diffrent_product{
    padding-top: 54px;
    margin-bottom: 60px;
}
.diffrent_product .product-box .p_action {
    justify-content: start;
}
.diffrent_product .product-box{
    margin-bottom: 0;
}
.diffrent_product .form-check label{
    font-family: var(--font2);
    font-size: 20px;
}
.diffrent_product .form-check input{
    box-shadow: none;
    border-color: #000;
}
.diffrent_product .form-check-input:checked {
    background-color: var(--gray);
    border-color: var(--gray) !important;
    box-shadow: none;
}
.compare_product_table h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    font-family: var(--font2);
}
.compare_product_table table{
    border: 1px solid #d9d9d9;
}
.compare_product_table table tr th,
.compare_product_table table tr td{
    height: 62px;
    border-bottom: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
}
.compare_product_table table tr th {
    background-color: #FAFAFA;
    font-size: 20px;
    text-align: right;
    font-family: var(--font2);
    font-weight: 500;
    padding-right: 20px;
}
.compare_product_table table tr td{
    font-size: 24px;
    text-align: center;
    font-family: var(--font2);
}
.compare_product_table + .compare_product_table{
    margin-top: 60px;
}
.modal-body.our_newsletter h3 {
    font-size: 28px;
    margin-bottom: 20px;
}
.modal-body.our_newsletter h4 {
    font-size: 20px;
    font-family: var(--font2);
    margin: 0 0 50px;
    line-height: 30px;
}
.modal-body.our_newsletter h4 {
    font-size: 20px;
    font-family: var(--font2);
    margin: 0 0 50px;
    line-height: 30px;
    text-transform: none;
}
html .modal-body.our_newsletter {
    padding: 50px;
}
html .modal-xl {
    --bs-modal-width: 995px;
}


/* About Us Page */
.about_us_head{
    padding-bottom: 36px;
    padding-top: 22px;
}
.about_us_head h3 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin:0;
}
.about_us_banner {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 126px 0;
    position: relative;
    z-index: 5;
    background-position: center center;
    text-align: center;
}
.about_us_banner:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 50%);
    z-index: -1;
}
.about_us_banner h3 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
}
.about_us_text{
    background-color: #F0F7F7;
    padding: 86px 77px;
}
.about_us_text p{
    text-align: center;
    font-size: 24px;
    font-family: var(--font2);
    line-height: 36px;
}
.about_us_section{
    background-color: #E0EEEE;
}
.about_us_inner{
    padding: 75px;
}
.about_us_section .image img{
    width: 100%;    
}
.about_us_section .text{
    padding-left: 26px;
}
.about_us_section .text h4 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 48px;
    text-transform: uppercase;
}
.about_us_section .text p{
    font-size: 20px;
    font-family: var(--font2);
    line-height: 36px;
}
.about_us_section .about_us_inner:nth-child(even){
    background-color: #F0F7F7;
}
.about_us_section .about_us_inner:nth-child(even) .row > .img_col{
    order: 1;
}
.about_us_section .about_us_inner:nth-child(even) .row .text{
    padding-left:0 ;
    padding-right: 26px;
}
.text-page {
    padding: 0 50px 50px;
    font-family: var(--font2);
}
.text-page p {
    font-size: 20px;
    line-height: 160%;
    word-break: break-all;
    margin: 0 0 28px;
}
.header-title.text-page-title {
    padding-left: 50px;
    padding-right: 50px;
}



.starting-up {
    background-color: #E2F6FC;
    padding: 60px 80px;
}
.starting-up .blog-content {
    padding-left: 20px;
}
.blog-content h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom:35px;
    text-transform: uppercase;
}
.blog-content p {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 25px;
    font-family: var(--font2);
    font-weight: 600;
}
.blog-content p {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 20px;
}
section.blog-list {
    padding: 60px 80px;
}
section.blog-list > ul > li .img {
    margin-bottom: 30px;
    overflow: hidden;
    height: 245px;
}
section.blog-list > ul > li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}
section.blog-list > ul > li .img:hover img {
    transform: scale(1.1);
}
section.blog-list > ul > li h3 {
    font-size: 25px;
    line-height: 140%;
    font-weight: bold;
    margin-bottom: 0;
}
section.blog-list > ul > li h3 a{
    color:var(--dark);
}
section.blog-list > ul > li h3 a:hover{
    color:var(--primary);
}
section.blog-list > ul > li p {
    font-size: 20px;
    line-height: 140%;
    font-weight: 400;
    font-family: var(--font2);
}
section.blog-list > ul {
    margin: 0 -50px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
section.blog-list > ul > li {
    margin-bottom: 50px;
    width: 50%;
    padding: 0 50px;
}
section.blog-list > ul > li:nth-last-child(-n+2) {
    margin-bottom: 0;
}




/* Become A Member Page */
.become_member_form {
    padding-top: 26px;
    font-family: var(--font2);
}
.become_member_form h6{
    font-size: 20px;
    margin-bottom: 40px;
}
html .become_member_form .btn.btn-lg {
    line-height: 70px;
}
.become_member_form .form-field p {
    font-size: 18px;
    font-weight: 600;
}
.become_member_form .form_document{
    margin-bottom: 52px;
}
.become_member_form .form_document p{
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
}
.become_member_form .form_document ul{
    margin: 0;
    padding: 0;
    font-weight: 600;
}
.become_member_form .form_document ul li{
    padding-left: 40px;
    position: relative;
    font-size: 18px;
}
.become_member_form .form_document ul li b{
    font-weight: normal;
    position: absolute;
    top: 0;
    left: 0;
}
.become_member_form .form-field label {
    font-size: 20px;
    margin-bottom: 15px;
}
.become_member_form .become_otp .form-control{
    height: 72px;
    width: 72px;
}
.become_member_form .document_image{
    display: flex;
    align-items: end;
    margin-bottom: 40px;
}
.become_member_form .document_image img{
    margin-right: 29px;
}
.become_member_form .document_image a{
    font-size: 20px;
}
.become_member_form .form_resgister {
    margin-top: 54px;
}
.custom-field{
    margin-bottom: 20px;
}
.custom-field label{
    font-size: 20px;
}
.file-field-design {
    position: relative;
}
.file-field-design span {
    background: #fff;
    border: 1px solid #707070;
    position: absolute;
    right: 0;
    top: 0;
    height: 72px;
    line-height: 72px;
    padding: 0 30px;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
.custom-field .form-control.file-field-design {
    line-height: 60px;
    border-radius: 0;
    width: 535px;
    border-color: #707070;
    font-size: 20px;
    font-family: var(--font2);
}
.file-field-design input[type="file"] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}
.file-field-design input[type="file"]::-webkit-file-upload-button{
    cursor: pointer; 
}
.min-0{
    min-width: 0 !important;
}