/*
Theme Name: Deal4U
Author: choudharysaab
Description: Multi-Purpose HTML5 E-Commerce Template
Version: 1.0.0
*/


/* -------------------------------------------
[Table of contents]

1.0 - Global Style
2.0 - Helper Classes
      2.1 - Loader
3.0 - Header 
      3.1 - Top Header
      3.2 - Header
4.0 - Navigation
5.0 - Side Menu 
6.0 - index
      6.1 - Swiper Slider
      6.2 - Service Section
      6.3 - Best Deal Section
      6.4 - Top Category Section
       
7.0 - Footer Section
8.0 - Login Page
9.0 - About Page
10.0 - Contact Us Page
11.0 - Whislist Page
12.0 - Cart Page 
13.0 - Shop Page  
14.0 - Single Product  Page
15.0 - Go To Top Button 
16.0 - Blog Page Style 
17.0 - Single Blog Page Style 

------------------------------------------- */


/*  1.0 Global Style
========================================================================== */
:root {
    /* Primary */
  --color-primary: #ffa600;
  
  /* Text colors */
  --text-primary: #202121;
  --text-dark: #333;
  --text-medium: #666;
  --text-muted: #757575;
  --text-light: #d9d9d9;

  /* Status / accent colors */
  --color-success: #33d173;
  --color-info: #03a685;
  --color-danger: #d30c0c;

  /* Light text / borders */
  --text-light-gray: #e5e5e5;
  --text-light-gray-2: #e1e1e1;
  --text-light-gray-3: #e6e6e6;
  --text-deep: #253237;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f5f5f5;
  --bg-light-secondary: #f7f7ee;
  --bg-heading: #f3f3f3;

  /* Borders */
  --border-light: #cccccc;
  --border-secondary: #dddddd;

  /* UI / Components */
  --title-color: #4d4c4c;
  --star-color: #ffdd44;
  --radio-color: #f87da9;

  /* Tables */
  --table-bg-1: #f9f9f9;
  --table-bg-2: #ebebeb;

  /* Gradients */
  --header-gradient: linear-gradient(to right, #000 0%, #414345 51%, #000 100%);
      
}

body {
    margin: 0;
    padding: 0;
    line-height: 24px;
   font-family: "League Spartan", sans-serif;
    color: var( --title-color);
}
.container-fluid{
    max-width: 1700px
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var( --title-color);
}

a {
    text-decoration: none !important;
    outline: none !important;
}

h1 {
    font-size: 45px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 25px;
}

label {
    font-size: 15px;
}

input,
textarea {
    font-size: 16px;
}
input:focus,
textarea:focus,
button:focus,
a:focus {
    outline: 1px solid var(--color-primary);

}

.bg_color {
    background-color:var(--color-primary);
}

.orange_text_color {
    color:var(--color-primary);
}

.dark_text_color {
    color: var(--text-primary);
}


.section_bg {
    background-color: var( --bg-light--secondary);
}

.btn-grad {
    background-image: linear-gradient(to right,var(--color-primary) 0%, #EDDE5D 51%, #F09819 100%);
    color: var(--bg-white) !important;
}

.btn-grad:hover {
    background-position: right center;
}

.btn-grad {
    margin: 0;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600
}

.btn-grad-two {
    transition: 0.5s;
    background-size: 200% auto;
    background-image: linear-gradient(to right, #232526 0%, #414345 51%, #232526 100%);
}

.btn-grad-two:hover {
    background-position: right center;
}

.ptb-50 {
    padding: 50px 0;
}

.ptb-80 {
    padding: 80px 0;
}

.p-t-50 {
    padding-top: 50px;
}

.p-t-0 {
    padding-top: 0;
}

h2.main_heading {
    font-weight: 600;
    font-size: 25px;
    text-transform: uppercase;
}

span.btnline {
    float: left;
    width: 60px;
    height: 3px;
    background:var(--color-primary);
}

.mrt-30 {
    margin-top: 30px !important;
}

.mrb-0 {
    margin-bottom: 0px !important;
}
.modal{
    padding: 15px !important;
}


/*  2.0 Loader Style
========================================================================== */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 30%;
    height: 30%;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
    background-image: linear-gradient(to right,var(--color-primary) 0%,var(--color-primary) 51%, #F09819 100%);
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {
    80%,
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }
    100%,
    0% {
        transform: scale(1.0);
    }
}


/* END 2.0 Loader Style
========================================================================== */


/*  3.0 Header Style
========================================================================== */

.topHeader {
    background-image: var(--header-gradient);
}

.topbar_address {
    padding: 10px 0;
}

.topbar_address li {
    font-size: 13px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
    color: var(--text-light-gray-3);
    line-height: normal;
}

.topbar_address li:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}



header.mainHeader {
    padding: 20px 0;
}

.header_search {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.searchfield {
    border-radius: 0;
    outline: none;
    box-shadow: 0 0 0 !important;
}

button.searchbtn {
    height: 38px;
    width: 40px;
    border: 0;
    color: var(--bg-white);
    outline: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_rightlinks li {
    margin: 0 0 0 15px;
    padding-left: 15px;
    border-left: 1px solid var(--border-secondary);
    line-height: normal;
    position: relative;
}

.header_rightlinks li i {
    margin-right: 5px;
    font-size: 25px;
}

.header_rightlinks li:first-child {
    border: 0;
    margin: 0;
    padding: 0;
}

.header_rightlinks li a {
    color: var( --title-color);
    position: relative;
}

.header_rightlinks {
   display: flex;
    justify-content: flex-end;
}


.badge_nav {
    background: var(--color-danger);
    position: absolute;
    top: -16px;
    right: -10px;
    color: var(--bg-white);
}

button.sidebarToggle {
    border: 0;
    background: transparent;
    margin-left: 30px;
    font-size: 22px;
    outline: none;
    color: var( --title-color);
}

body.active-sidebar {
    overflow: hidden;
}

a.logo {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: normal;
    max-width: 190px;
    display: block;
    width: 100%;
}

a.logo span {
    font-size: 16px;
    float: left;
    width: 100%;
    font-weight: 300;
    color:var(--color-primary);
}

.header_cart_items_wrapper {
    position: absolute;
    width: 100%;
    background: var(--bg-white);
    left: 0;
    right: 0;
    min-width: 300px;
    padding: 15px;
    box-sizing: border-box;
    top: 100%;
    z-index: 9999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .20);
    display: none;
    border-radius: 5px;
}

.header_cart.active .header_cart_items_wrapper {
    display: block;
}

.cartItem {
    display: flex;
    align-items: center;
    position: relative;
    margin: 20px 0 0 0;
}

.cartImage {
    flex: 0 0 10%;
    max-width: 10%;
}

.cartdescription {
    flex: 0 0 90%;
    max-width: 90%;
    padding-left: 15px;
}

.cartdescription h1 {
    font-size: 14px;
    margin: 0;
    font-weight: 300;
}

span.cartPrice {
    font-size: 14px;
    margin: 10px 0 0 0;
    line-height: normal;
    font-weight: 600;
    display: inline-block;
}

button.deleteItem {
    position: absolute;
    right: 5px;
    top: 20%;
    background: transparent;
    border: 0;
    padding: 0;
    color: #c0c0c0;
    z-index: 9;
    font-size: 16px;
    outline: none;
}

button.deleteItem:hover {
    color: var(--text-dark);
}

.cartButtons a {
    display: block;
    border-radius: 5px;
    padding: 10px 15px;
    text-align: center;
    font-size: 13px;
    color: var(--bg-white) !important;
    max-width: 49%;
    flex: 0 0 49%;
    text-transform: capitalize;
}

.cartButtons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0 0 0;
}

.cartItem:first-child {
    margin: 0;
}

button.deleteItem i {
    margin: 0;
    font-size: 20px;
}

a.cartlink {
    display: flex;
    align-items: center;
}

span#cart_total {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

span#cart_qty {
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
}

a.btn-grad-two.scrollcart span {
    line-height: 30px;
}

.subtotal_block {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-secondary);
    border-bottom: 1px solid var(--border-secondary);
}

.subtotal_block h5 {
    font-size: 16px;
    text-transform: uppercase;
}

.subtotal_block span {
    font-size: 16px;
    font-weight: 600;
}

.header_rightlinks i.icon-f-77 {
    font-size: 30px !important;
}

.main-content {
    transition: transform .50s ease-in-out;
}

.active-sidebar .main-content {
    transform: translate3d(-300px, 0, 0);
    will-change: transform;
    transition: transform .50s ease-in-out;
}

.languageSelector {
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-right: 1px solid rgba(255, 255, 255, .3);
    float: right;
    position: relative;
    z-index: 9;
}

.scrollableList {
    color: var(--text-medium);
    width: 200px;
    float: left;
    background: transparent;
    display: none;
    color: var(--text-light-gray-3);
}

.scrollableList ul {
    padding: 3px 0px 3px 0px;
    margin: 0;
    margin-left: 0;
    position: absolute;
    width: 200px;
    background: var(--text-dark);
}

.scrollableList ul li {
    list-style: none;
    cursor: pointer;
    margin-left: 14px;
    line-height: 25px;
    font-size: 12px;
}

.selectedOption {
    padding: 10px;
    cursor: pointer;
    line-height: normal;
    font-size: 13px;
}

.scrollableList ul li:hover {
    color: var(--bg-white);
}

.selectedOption:hover {
    color: var(--bg-white);
}

.selectedOption {
    position: relative;
}

.selectedOption:after {
    content: "\eac8";
    font-family: icofont;
    position: absolute;
    right: 10px;
    top: 10px;
}


/*  END 3.0 Header Style
========================================================================== */


/*  4.0 Navigation Style
========================================================================== */
.siteMenu.bg_color  {
    background-image: var(--header-gradient);
}
.sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 99;
    left: 0;
    right: 0;
}
@supports not (position: sticky) {
.sticky {
    position: fixed;
    width: 100%;
    }
}
.sticky .navtoggle {
    display: block;
    color: var(--bg-white);
}
.navtoggle{display: none;}
.sf-mega {
    position: absolute;
    top: 100%;
    z-index: 9;
    background: var(--bg-white);
    box-shadow: 0 0 10px rgba(0,0,0,.16);
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    display: none;
}

.flex-menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.menuList {
    display: flex;
    align-items: center;
    position: relative;
}
.menuList > li > a{
    color: var(--bg-white);
    padding: 15px 0;
    margin:0 15px;  
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}
.menuList > li > a:hover,
.menuList > li > a:focus,
.menuList > li.active > a {
    color: var(--color-primary);
}
.menuList > li.active > a > i{
    transform: rotate(180deg);
    display: inline-block;
    position: relative;
    top: -1px;
}
.menuList > li > a:focus-visible {
    outline: 1px solid var(--color-primary);
    outline-offset: 0;
}
ul.submenu-list {
    display: flex;
    justify-content: space-between;
}
ul.sub-list {
    border-right: 1px solid var(--border-secondary);
    width: 100%;
    padding: 15px;
}
ul.sub-list li a {
    color: var(--text-medium);
    font-size: 13px;
}
span.menu-cat {
    font-weight: 600;
    color:var(--color-primary);
    text-transform: uppercase;
}
/*  END 4.0 Navigation Style
========================================================================== */


/* 5.0 Side Menu Style
========================================================================== */

aside.side_menu_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity .5s ease, visibility .5s ease;
    pointer-events: none;

}

.backdrp-overlay {
    background: rgba(0, 0, 0, 0.76);
    position: relative;
    width: 100%;
    height: 100%;
    inset: 0;
}

.active-sidebar aside.side_menu_wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.side_menu_container {
    max-width: 300px;
    background: var(--bg-white);
    height: 100%;
    transform: translateX(100%);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    padding: 30px;
    transition: all .50s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    will-change: transform;
}

.active-sidebar .side_menu_container {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

ul.sidebar_social_links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.socialLinks {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 30px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-light);
}

.socialLinks h3 {
    font-size: 18px;
    text-transform: capitalize;
    text-align: center;
    margin: 0 0 20px 0;
    color: var(--text-medium);
    font-weight: 600;
}

ul.sidebar_social_links li a {
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: block;
    color: var(--bg-white);
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: transform .25s ease, opacity .25s ease;
    opacity: .8;
}

ul.sidebar_social_links li a:hover {
     transform: translateY(-2px);
    opacity: 1;
}

.closesidebar {
    position: absolute;
    right: 10px;
    top: 10px;
    outline: none !important;
}

.closesidebar:focus,
ul.sidebar_menus li a:focus {
    outline: 1px solid var(--color-primary);
    
}
ul.sidebar_menus li {
    float: left;
    width: 100%;
}

ul.sidebar_menus li a {
    color: var(--text-medium);
    text-transform: uppercase;
    font-weight: 300;
    display: flex;
    align-items: center;
}

ul.sidebar_menus li a:hover, ul.sidebar_menus li a:focus {
    color:var(--color-primary);
}

ul.sidebar_menus {
    float: left;
    width: 100%;
    margin: 30px 0 0 0;
    height: calc(100dvh - 195px);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

ul.sidebar_menus li a i {
    font-size: 30px;
    margin-right: 10px;
    display: none;
}

a.icon_facebook {
    background: #3b5998;
}

a.icon_twitter {
    background: #00aced;
}

a.icon_linkedin {
    background: #007bb6;
}

a.icon_youtube {
    background: #bb0000;
}

a.icon_instagram {
    background: #517fa4;
}


/* END  5.0 Side Menu Style
========================================================================== */


/* 6.1 Swiper Slider
========================================================================== */
section.SwiperOuterWrapper  {
    position: relative;
}
section.SwiperOuterWrapper .swiper-wrapper {
    height: calc(100vh - 212px);
    position: relative;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--color-primary)
}


.swiperText {
    max-width: 700px;
    width: 100%;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

.swiperText h3 {
    font-size: 25px;
    font-weight: 300;
    color:var(--color-primary);
}

.swiperText h1 {
      font-size: clamp(40px, 6vw, 100px);
    font-weight: 600;
    color: var(--text-dark);
}

.swiperText h2 {
    font-size: clamp(24px, 4vw, 50px);
    font-weight: 600;
}

.swiperText h2 span {
    font-weight: 400;
    color:var(--color-primary);
}

.swiperText p {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 300;
}

.swiperbtn {
    margin-top: 15px;
   display: inline-block;
}


/* 6.1 Swiper Slider
========================================================================== */


/* 6.2 Service Section
========================================================================== */

.service_Section  .row{
    row-gap: 30px;
}
.serviceItem {
    display: flex;
    align-items: flex-start;
    border-right: 1px solid var(--border-secondary);
    background-color: var(--bg-white);
    justify-content: center;
    padding: 30px;
    border: 1px dashed var(--border-secondary);
    height: 100%;
}

figure.serviceIcon {
    flex: 0 0 40px;
    max-width: 40px;
    font-size: 30px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    margin: 0;
     display: flex;
    align-items: center;
    justify-content: center;
}

.serviceText {
    padding-left: 15px;
}

.serviceText h3 {
    font-size: 20px;
    font-weight: 600;
    color:var(--color-primary);
    margin: 0;
}

.serviceText p {
    margin: 0;
}


/* END 6.2 Service Section
========================================================================== */


/* 6.3 Best Deal Section
========================================================================== */

.deal_item {
    position: relative;
}

.deal_image {
    width: 100%;
    overflow: hidden;
    background: var(--border-light);
    border-radius: 10px;
    position: relative;
    padding-top: 46%;
}


.deal_text {
    position: absolute;
    top: 50%;
    right: 40px;
    left: 40px;
    transform: translateY(-50%);
    max-width: clamp(200px, 60%, 350px);
    width: 100%;
   
}

.deal_text h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--text-dark);
}

.deal_text h2 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 30px;
    color:var(--text-dark);
}

.deal_image img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* END 6.3 Best Deal Section
========================================================================== */


/*  6.4 Top Category Section
========================================================================== */

.top_cat_item {
    margin-top: 50px;
    transition: transform  .30s ease-in-out;
}

.top_cat_caption h1 {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    text-transform: capitalize;
}

.price span {
    font-size: 20px;
    font-weight: 700;
}

.top_cat_caption {
    margin-top: 15px;
}

span.offer_price {
    font-size: 18px;
    margin-right: 5px;
    color: var(--text-dark);
}

span.regular_price {
    font-size: 16px;
    font-weight: 500;
    text-decoration: line-through;
    color: var(--color-danger);
}

.d-flex-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.star-rating {
    color: var(--border-light);
}

.star-rating i.active {
    color: #FFC107;
}

a.top_cat_image {
    display: block;
    background: var(--bg-light);
    padding-top: 130%;
    position: relative;
    overflow: hidden;
}

.hover-show {
    position: absolute;
    top: 0;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

}

.top_cat_item:hover a.top_cat_image img {
    transform: scale(1.1);
}



a.top_cat_image img {
    position: absolute;
    top: 0;
    width: 100%;
    object-fit: contain;
    height: 100%;
    z-index: auto;
    transition: transform  .20s ease-in-out;
    will-change: transform;

 
}

.topcart-imgwrap {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.hoverOverlay {
    position: absolute;
    top: 30%;
    left: 30px;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
transform: translateX(-100%);
    pointer-events: none;
     transition: transform .60s ease-in-out,
                opacity .60s ease-in-out;
}

.inner-btns {
    display: flex;
    transition: transform  .20s ease-in-out;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.ovrlybtn {
    font-size: 18px;
    border-radius: 5px;
    height: 45px;
    flex: 0 0 45px;
    max-width: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3px 0px;
    padding: 0;
}

.top_cat_item:hover .hoverOverlay {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.badge-stockout {
    position: absolute;
    top: 10px;
    right: 0;
    background: #FF9800;
    color: var(--bg-white);
    font-size: 12px;
    text-transform: capitalize;
    z-index: 10;
    height: 28px;
    line-height: 28px;
    text-align: right;
    padding: 0 20px 0 0;
    white-space: nowrap;
}

.badge-stockout:after {
    content: "";
    position: absolute;
    right: 100%;
    border: 14px solid #ff9800;
    border-left: 14px solid transparent;
}



.brandtext {
    margin-top: 15px;
}

section.newsLetter_Section h4 {
    color: var(--bg-white);
    font-size: 20px;
    text-align: right;
    font-weight: 300;
    margin: 15px 0 0 0;
}

section.newsLetter_Section h2 {
    color: var(--bg-white);
    font-weight: 600;
}



.newsletterwidth {
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: 10%;
}

button.newsletter-btn {
    border: 0;
    padding: 0 30px;
    color: var(--bg-white);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-size: 14px;
    outline: 0 !important;
}

input.newslettertext {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    outline: none !important;
    box-shadow: 0 0 0 !important;
}

.newsletterForm {
    max-width: 400px;
    width: 100%;
    margin: 30px 0 0 auto;
    display: flex;
}

section.newsLetter_Section {
    background: url(../images/newsletterbg.jpg) no-repeat;
    padding: 100px 0;
    text-align: right;
    background-size: cover;
}


/* END 6.4 Top Category Section
========================================================================== */


/* 7.0 Footer Section
========================================================================== */

.footerWrapper {
    background: url(../images/footerbg.jpg) no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: scroll;
    background-position: center center;
}

.footerWrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #000 0%, #414345 51%, #000 100%);
    opacity: .95;
     z-index: 1;
}

.main-footer {
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
}

p.abouttext {
    margin: 20px 0 0 0;
    font-weight: 300;
    color: var(--bg-white);
}

.footerLinks {
    display: flex;
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
}
ul.footernav {
    line-height: 30px;
}
ul.footerLinks li a {
    display: block;
    border: 1px solid var(--bg-white);
    margin-right: 10px;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 16px;
    line-height: 35px;
    padding: 0;
    border-radius: 50%;
    color: var(--bg-white);
}

.ftradress li {
    margin-bottom: 20px;
}

ul.ftradress li a {
    display: flex;
    align-items: center;
    line-height: normal;
}

.ftradress li a i {
    font-size: 24px;
    margin-right: 10px;
    float: left;
}

h3.footerHeading {
    font-size: 16px;
    color: var(--bg-white);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    font-weight: 400;
}

h3.footerHeading:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--bg-white);;
}

.headingText h2 {
    font-weight: 600;
    font-size: 31px;
}

ul.footernav li a {
    font-size: 16px;
    font-weight: 300;
       transition: all .30s ease-in-out;
    color: var(--bg-white);
      padding-left: 20px;
    position: relative;
}

.footerAddress ul,
.footerAddress li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerAddress ul span,
.footerAddress ul a {
    font-size: 25px;
}

span.icon {
    font-size: 50px !important;
}

span.addresstext {
    margin-left: 15px;
}

.footerAddress {
    display: block;
    margin: 52px 0 0 0;
}

.footerAddress li {
    padding-left: 20px;
}

.footerAddress li:first-child {
    padding-left: 0;
}

ul.footerLinks li a:hover {
    background: var(--bg-white);
    color: #000;
}



ul.footernav li a:before {
    content: "\eaca";
    font-family: icofont;
    position: absolute;
    left: 0;
    top: -2px;
    line-height: normal;
}

.get-touch-btn {
    padding: 10px 30px;
}

a.footerLogo {
    width: 170px;
    display: block;
}

.mobiletoggle {
    display: none;
}

p.Copyright {
    margin: 50px 0 0 0;
    text-align: center;
    color: var(--bg-white);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    font-size: 12px;
}

.testimonialframe .owl-nav button,
.ourteaminner .owl-nav button,
.OurService-Section .owl-nav button {
    outline: none !important;
    background: transparent !important;
}

.testimonialframe .owl-nav button span,
.ourteaminner .owl-nav button span,
.OurService-Section .owl-nav button span {
    line-height: 28px !important;
    border-radius: 50%;
    background: transparent;
    color: #c7c7c7;
    border: 2px solid #d1d1d1;
}

.ourteaminner .owl-nav button span {
    border-color: var(--bg-white);
    color: var(--bg-white);
}



.ftradress li a:before {
    display: none;
}

.ftradress li a {
    padding-left: 0 !important;
}

.brand_logo_section  {
    background: #f1f1f1;
}
.brand-logo-slider .swiper-slide {
        background: #fff;
    border-radius: 13px ;
    justify-content: center;
    display: flex;
    align-items: center;
}

ul.footernav li a:hover {
    color: var(--color-primary);
}

.paybill_images ul {
    display: flex;
    margin-top: 50px;
    align-items: center;
}

.paybill_images {
    display: flex;
    justify-content: flex-end;
}

.paybill_images li {
    margin: 0 5px 0 0;
    font-size: 13px;
    padding: 5px 10px;
    background: var(--bg-white);
    border-radius: 5px;
    cursor: pointer;
}

.paybill_images li:last-child {
    margin: 0;
}



/* END 7.0 Footer Section
========================================================================== */


/* 8.0 Login Page
========================================================================== */

.alert {
    font-size: 14px;
}

.gray-bg {
    background: #f6f6f6;
}

.form_row {
    margin: 20px 0 0 0;
    position: relative;
}

.btn-style {
    border: 0 !important;
    outline: 0 !important;
    border-radius: 5px;
}

.ptb-150 {
    padding: 150px 0;
}

.form-600 {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    min-height: 350px;
}

.formSection {
    padding: 15px;
    background: var(--bg-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    border-radius: 5px;
    position: relative;
}

.icon_field {
    position: relative;
}

.icon_field i {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--border-light);
    font-size: 20px;
}

.icon_field input:focus+i {
    color: var(--text-dark);
}

.icon_field input:focus {
    border-color: #EDDE5D;
    box-shadow: 0 0 0 0.2rem rgba(255, 166, 0, .25);
}

input.form-control {
    height: 45px;
    padding-right: 45px;
}

textarea {
    padding-right: 45px !important;
    resize: none;
}

input.form-control.searchfield {
    height: 38px;
}

.remember_block label {
    font-size: 15px;
}
.custom_check_bx label {
    position: relative;
    padding-left: 30px;
     display: block;
    cursor: pointer;
    line-height: normal;
    margin: 0;
    min-height: 23px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}



.form-600 .form_row button {
    width: 100%;
}

.custom_check_bx input[type=checkbox] {
    display: none;
}

.custom_check_bx input[type=checkbox]+label:before {
    content: "\2714";
    border: 1px solid var(--border-light);
    border-radius: 0;
    display: inline-block;
    width: 23px;
    height: 23px;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
}

.custom_check_bx input[type=checkbox]+label:active:before {
    transform: scale(0);
}

.custom_check_bx input[type=checkbox]:checked+label:before {
    background-color: var(--color-success);
    border-color: var(--color-success);
    color: var(--bg-white);
}

.custom_check_bx input[type=checkbox]:disabled+label:before {
    transform: scale(1);
    border-color: #aaa;
}

.custom_check_bx input[type=checkbox]:checked:disabled+label:before {
    /*transform: scale(1);*/
    background-color: #bfb;
    border-color: #bfb;
}

p.signup-header {
     display: flex;
    justify-content: flex-end;
        align-items: center;
            line-height: normal;
}

a.signup_Link {
    background: var(--color-info);
    padding: 8px 15px;
    border-radius: 30px;
    color: var(--bg-white);
    font-size: 12px;
    margin-left: 15px;
    text-transform: uppercase;
    line-height: normal;
}

.mainSection.signupbg {
    background: url(../images/signupbg.png) no-repeat !important;
    background-size: contain !important;
    background-position: left bottom !important;
}

.mainSection.forgotbg {
    background: url(../images/forgotbg.png) no-repeat !important;
    background-size: contain !important;
    background-position: left bottom !important;
}

ul.list-style li {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 30px;
}

ul.list-style li i {
    color: var(--color-success);
    font-size: 20px;
}

.left_form_desc p {
    margin-top: 15px;
}

.left_form_desc {
    padding-right: 60px;
}

.login-bg {
    background: url(../images/login-bg.png) no-repeat;
    background-size: contain;
    background-position: left bottom;
    overflow: hidden;
    position: relative;
}

.login-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/bg01.png) repeat-x;
    background-size: contain;
    background-position: left bottom;
    z-index: -1;
    animation: nudge 20s linear infinite alternate;
    will-change: background-position;
}

.remember_block a {
    color:var(--color-primary);
}

.remember_block span {
    color: #FF9800;
    margin: 0 5px;
}

.flex-basis {
    display: flex;
    justify-content: space-between;
}

a.forgot_password_link {
    color: var(--text-dark);
    font-size: 14px;
}

a.forgot_password_link:hover {
    color:var(--color-primary);
}

.page_heading p {
    margin: 0;
    line-height: normal;
}

@keyframes nudge {
    0% {
        background-position: 400px bottom;
    }
    100% {
        background-position: 0 bottom;
    }
}


/* END 8.0 Login Page
========================================================================== */


/*  9.0 About Page Css
========================================================================== */

.aboutbanner {
    background: url(../images/about.jpg) no-repeat;
    background-size: cover;
}

a.read_more_link i {
    margin-left: 5px;
    font-size: 16px;
}

a.read_more_link {
    color:var(--color-primary);
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.row-2 {
    margin-top: 50px;
}

section.ourMission-Block {
    background: var(--bg-light);
}

span.t-icon {
    font-size: 50px;
    flex: 0 0 20%;
    max-width: 20%;
    text-align: center;
    color:var(--color-primary);
}

.thought_text {
    flex: 0 0 80%;
    max-width: 80%;
    padding-left: 15px;
}

.our_thoughts {
    text-align: left;
    margin-top: 0;
    display: flex;
    align-items: flex-start;
}

section.about_Sectn_1.ptb-80 {
    background: var(--bg-white) !important;
}


/*  END 9.0 About Page Css
========================================================================== */


/*  10.0 Contact Us Page 
========================================================================== */

.contactbanner {
    background: url(../images/contactbanner.jpg) no-repeat;
    background-size: cover;
}

.contactbanner .breadcrumb-links li a {
    color: var(--bg-white);
}

.contactbanner h1 {
    color: var(--bg-white)
}

.Left_address_sectn {
    min-height: 400px;
}

ul.sidebarAddress li {
    margin: 20px 0 0 0;
    padding-top: 15px;
    border-top: 1px dashed var(--border-light);
}

ul.sidebarAddress li a {
    color: var( --title-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

ul.sidebarAddress li a i {
    font-size: 25px;
    margin-right: 8px;
}

ul.sidebarAddress li:first-child {
    border: 0;
}

.contact_Sectn_1 .page_heading {
    margin-bottom: 50px;
    display: block;
}

.googlemap iframe {
    width: 100%;
    min-height: 500px;
    height: 100%;
}

section.contact_Sectn_1.login-bg {
    background: transparent;
}


/* END  10.0 Contact Us Page 
========================================================================== */


/*  11.0 WishList Page 
========================================================================== */

.wishlistbanner {
    background: url(../images/wishlistbanner.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
}

.wishlistbanner .breadcrumb-links li {
    color: var(--bg-white)
}

.whishlist_Wrapper.login-bg {
    animation: none;
    background: transparent;
}

.breadcrumb-links li a {
    display: inline-block;
    position: relative;
    color:var(--color-primary);
    line-height: 20px;
    margin-right: 20px;
    padding-right: 10px;
}

.breadcrumb-links li {
    display: inline-block;
    color: var(--bg-white);
}

.breadcrumb-links li a:after {
    font-size: 14px;
    line-height: 24px;
    display: block;
    font-weight: 400;
    top: 0;
    right: -15px;
    position: absolute;
    content: "\eaa0";
    font-family: "icofont";
}

.text-white,
.text-white a {
    color: var(--bg-white);
}

.cart-table-content {
    margin: 50px 0 0 0;
}

.cart-table-content table {
    border: 1px solid var(--table-bg-2);
}

.cart-table-content table thead>tr {
    background-color: var(--table-bg-1);
    border: 1px solid var(--table-bg-2);
}

.cart-table-content table thead>tr th {
    border-top: medium none;
    color: var(--text-deep);
    font-size: 14px;
    font-weight: 700;
    padding: 21px 45px 22px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

.cart-table-content table tbody>tr {
    border-bottom: 1px solid var(--table-bg-2);
}

.cart-table-content table tbody>tr td.product-thumbnail {
    width: 150px;
}

.cart-table-content table tbody>tr td {
    color: var(--text-medium);
    font-size: 15px;
    padding: 30px 0;
    text-align: center;
}

.cart-table-content table tbody>tr td.product-quantity .cart-plus-minus .qtybutton {
    color: var(--text-medium);
    cursor: pointer;
    float: inherit;
    font-size: 16px;
    margin: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 20px;
    text-align: center;
}

.cart-table-content table tbody>tr td.product-quantity .cart-plus-minus {
    display: inline-block;
    height: 40px;
    padding: 0;
    position: relative;
    width: 110px;
}

.cart-table-content table tbody>tr td.product-quantity .cart-plus-minus .dec.qtybutton {
    border-right: 1px solid var(--text-light-gray);
    height: 36px;
    left: 2px;
    padding-top: 0;
    top: 2px;
    bottom: 2px;
}

.cart-table-content table tbody>tr td.product-quantity .cart-plus-minus input.cart-plus-minus-box {
    color: var(--text-medium);
    float: left;
    font-size: 16px !important;
    height: 40px;
    margin: 0;
    width: 110px;
    background: transparent none repeat scroll 0 0;
    border: 1px solid var(--text-light-gray-2);
    padding: 0;
    text-align: center;
    box-shadow: 0 0 0 !important;
    outline: none !important;
}

.cart-table-content table tbody>tr td.product-quantity .cart-plus-minus .inc.qtybutton {
    border-left: 1px solid var(--text-light-gray);
    height: 36px;
    padding-top: 0;
    right: 2px;
    top: 2px;
    bottom: 2px;
}

.cart-table-content table tbody>tr td.product-quantity .cart-plus-minus {
    display: inline-block;
    height: 40px;
    padding: 0;
    position: relative;
    width: 110px;
}

.cart-table-content table {
    background: var(--bg-white);
    width: 100%;
}

td.product-name a {
    color: var(--text-medium);
}

td.product-thumbnail a {
    display: block;
    max-width: 60px;
    width: 100%;
    background: var(--border-light);
    margin: 0 auto;
}

.custom_pagination ul.pagination {
    justify-content: flex-end;
}

.custom_pagination {
    margin-top: 20px !important;
}

a.btnshape {
    padding: 10px 18px;
    line-height: normal;
    font-size: 10px;
    border-radius: 30px;
}

ul.pagination li:first-child a {
    color: var(--bg-white);
}

ul.pagination li:last-child a {
    color: var(--bg-white);
}

ul.pagination li a {
    color: var(--text-dark);
    font-size: 12px;
    text-transform: capitalize;
    box-shadow: 0 0 0;
    outline: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.pagination li:first-child a {
    width: auto;
    padding: 0 15px;
}

ul.pagination li:last-child a {
    width: auto;
    padding: 0 15px;
}

.page-link:focus {
    box-shadow: 0 0 0;
}


/*  END 11.0 WishList Page 
========================================================================== */


/*  12.0 Cart Page 
========================================================================== */

.cartbanner {
    background: url(../images/cartbanner.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
}

.cartbanner .breadcrumb-links li {
    color: var(--bg-white)
}

button.removeItem {
    background: transparent;
    border: 0;
    font-size: 25px;
    color: var( --title-color);
    transition: all .30s ease-in-out;
    outline: none !important;
}

button.removeItem:hover {
    color: #d50c0c;
    transform: rotate(90deg);
}

.apply-coupon {
    display: flex;
    align-items: center;
    max-width: 500px;
    width: 100%;
}

button.applycoupon {
    flex: 0 0 40%;
    max-width: 40%;
    height: 45px;
    border: 0;
    color: var(--bg-white);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    text-transform: uppercase;
    font-size: 13px;
}

input.form-control.coupon {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    outline: none !important;
    box-shadow: 0 0 0 !important;
}

button.applycoupon i {
    font-size: 22px;
    position: relative;
    top: 8px;
}

.flex-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    background: var(--bg-light);
    border: 1px solid var(--text-light-gray);
    border-top: 0;
}

button:focus {
    outline: 0 !important;
}

table.cart_totals {
    width: 100%;
}

.cartprice {
    float: left;
    width: 100%;
    margin: 30px 0 30px 0;
}

.cartprice h4 {
    font-weight: 600;
    margin: 0 0 20px 0;
}

table.cart_totals tr td,
table.cart_totals tr th {
    border: 1px solid var(--border-secondary);
    padding: 15px;
    font-size: 16px;
}

table.cart_totals th {
    /*background: var(--bg-light);*/
    text-transform: uppercase;
}

.proceedtocheckout {
    float: left;
    width: 100%;
    padding: 15px;
    font-size: 16px;
}


/*  END 12.0 Cart Page 
========================================================================== */


/*  13.0 Shop Page 
========================================================================== */

.shopbanner {
    background: url(../images/shopbanner.jpg) no-repeat;
    background-size: cover;
}

.shopbanner .breadcrumb-links li a {
    color: var(--bg-white);
}

.shopbanner h1 {
    color: var(--bg-white)
}

.sortby {
    display: flex;
    align-items: center;
}

.sortby h6 {
    margin: 0 10px 0 0;
    font-size: 13px;
    text-transform: uppercase;
    line-height: normal;
}

.filterWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 15px 0;
    border-bottom: 1px solid var(--border-secondary);
}

.view_as a {
    font-size: 22px;
    color: var( --title-color);
    margin: 0 0 0 15px;
}

.dropdown-list {
    position: relative;
}


.dropdown-selected {
    border: 1px solid var(--border-light);
    padding: 5px;
    min-width: 150px;
    width: 100%;
    font-size: 13px;
    background: var(--bg-white);
    line-height: normal;
    position: relative;
}

.dropdown-selected:after {
    content: "\ea99";
    font-family: icofont;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    bottom: 0;
    border-left: 1px solid var(--border-light);
    color: var(--text-medium);
}

.dropdown-list ul {
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    box-shadow: 0 0 5px var(--border-light);
    top: 100%;
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
}

.dropdown-list ul li {
    font-size: 13px;
    cursor: pointer;
       padding: 5px;
}
.dropdown-list ul li:hover {
    background: var(--border-secondary);
    
}
.product_header {
    margin: 0 0 0 0;
}

.catList {
    position: relative;
}

.catList input[type="checkbox"] {
   position: absolute;
opacity: 0;
}

.catList input[type="checkbox"]+label {
opacity: 1;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font: 14px/20px 'Open Sans', Arial, sans-serif;
    color: var( --title-color);
    cursor: pointer;
}

.catList input[type="checkbox"]+label:last-child {
    margin-bottom: 0;
}

.catList input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-primary);
    position: absolute;
    left: 0;
    top: 0;
    opacity: .6;
    transition: all .12s, border-color .08s;
}

.catList input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.product_check_bx {
    padding: 8px 0;
}

.filtr_by_price {
    margin: 40px 0 0 0;
}

.product_cat_header {
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

h2.product_cat_header i {
    font-size: 25px;
    margin-right: 8px;
}

.price_range {
    border-color: var(--border-secondary) ;
    background-color: var(--bg-white) ;
    margin: 70px 0 0 0;
    height: 8px;
    border-radius: 30px;
    box-shadow: 0 0 0;
}

.price_range .noUi-handle {
    border-radius: 30px;
    width: 23px ;
    height: 23px ;
    text-align: center;
    background: var(--bg-white);
    border-color:var(--color-primary);
    box-shadow: 0 0 0;
    top: -9px;
    outline: none;
}

.noUi-handle:before {
    left: 9px ;
    height: 10px ;
    background:var(--color-primary) ;
}

.noUi-handle:after {
    left: 13px;
    height: 10px;
    background:var(--color-primary) ;
}

.noUi-tooltip {
    font-size: 10px;
    line-height: normal;
    color: var(--text-medium) ;
    font-weight: 300 ;
}

.noUi-connect {
    background:var(--color-primary) ;
}

.all_color_block {
    margin-top: 30px;
}

.all_color_block h2.product_cat_header {
    margin: 0 0 20px 0;
}

.main_product_Wrapper nav.custom_pagination {
    margin: 50px 0 0 ;
}

.view_as a:hover {
    color:var(--color-primary);
}


/*  END 13.0 Shop Page 
========================================================================== */


/*   14.0 Single Product  Page 
========================================================================== */

.slider-nav {
    text-align: center;
}

.product__gallery-main {
    flex: 0 0 calc(100% - 115px);
    max-width: calc(100% - 115px);
    order: 2;
    margin-left: 3%;
    border: 1px dashed var(--border-light);
}

.product__thumb-item {
    flex: 0 0 100px;
    max-width: 100px;
    order: 1;
    cursor: pointer;
        height: 100%;
}

.product__gallery-slider {
    display: flex;
    flex-direction: row;
}

.product__thumb {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    flex-wrap: wrap;
    margin-top: 15px;
}


.product__thumb-image {
    height: 100%;
    position: relative;
    padding-top: 130px;
    width: 100%;
}

.product__thumb-image img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    width: 100%;
    height: 100%;
    object-position: top;
}

.product__thumb.slick-current.slick-active .product__thumb-image {
    border: 1px solid var(--color-primary);
}

.product__image img {
    width: auto;
    margin: 0 auto;
    height: auto;
}

.product__gallery-slider .slick-arrow {
    background-size: 200% auto;
    background-image: linear-gradient(to right, #232526 0%, #414345 51%, #232526 100%);
    border: 0;
    color: var(--bg-white);
    width: 100%;
    padding: 8px;
    text-transform: uppercase;
    font-size: 12px;
    transition: all .50s ease-in-out;
    outline: none;
    box-shadow: 0 0 0;
}

.product__gallery-slider .slick-arrow:hover {
    background-position: right center;
}

.product__gallery-main .slick-track {
    margin: auto;
}

.product__gallery-slider  .slick-track {
    margin: auto;
}

.color-select [type="radio"]:checked,
.color-select [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.color-select [type="radio"]:checked+label,
.color-select [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 0;
    cursor: pointer;
    line-height: 20px;
        display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
}

.color-select [type="radio"]:checked+label:before,
.color-select [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-secondary);
    border-radius: 100%;
    background: var(--bg-white);
}

.color-select [type="radio"]:checked+label:after,
.color-select [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--radio-color);
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.color-select [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.color-select [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.color-Select-wrapper {
    display: flex;
    align-items: center;
}

.color-select {
    margin-right: 30px;
    position: relative;
}

.sizeselect .color-select label:after,
.sizeselect .color-select label:before {
    display: none;
}

.sizeselect .color-select label {
    padding: 0;
    border: 1px dashed #bfc0c6;
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.sizeselect .color-select input:checked+label {
    border-color:var(--color-primary);
    color:var(--color-primary);
    background-color: var(--bg-white);
}

h2.prod-title {
    font-size: 25px;
    text-transform: uppercase;
}

h1.product__title {
    font-size: clamp(24px, 3vw, 45px);
    text-transform: capitalize;
}

.prod-discount-container {
    margin: 25px 0 5px 0;
}

span.prod-price {
    font-size: 24px;
    font-weight: 600;
}

span.prod-cut-price {
    font-size: 19px;
    margin: 0 20px;
    text-decoration: line-through;
    color: var(--color-danger);
}

span.prod-discount {
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color:var(--color-primary);
    font-weight: 300;
}

.prod-selling-price {
    width: 100%;
    margin: 0 0 10px 0;
}

span.prod-vatInfo {
    color: var(--color-info);
    font-size: 14px;
}

.prod-select-size span {
    font-size: 20px;
    text-transform: capitalize;
    margin: 0 0 15px 0;
    display: block;
    font-weight: 600;
}

.product__cart-actions a {
    font-size: 20px;
    padding: 15px 10px;
    max-width: 40%;
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.product__cart-actions a i {
    font-size: 30px;
    margin-right: 14px;
    position: relative;
    top: -2px;
}

.single-product-quantity .cart-plus-minus {
    display: table-cell;
    width: auto;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    zoom: 1;
}

.single-product-quantity input.cart-plus-minus-box {
    color: var(--text-medium);
    float: left;
    font-size: 14px;
    height: 60px;
    margin: 0;
    width: 110px;
    background: transparent none repeat scroll 0 0;
    border: 1px solid var(--text-light-gray-2);
    padding: 0;
    text-align: center;
    outline: none;
}

.single-product-quantity .qtybutton {
    color: var(--text-medium);
    cursor: pointer;
    float: inherit;
    font-size: 16px;
    margin: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 25px;
    text-align: center;
}

.inc.qtybutton {
    border-left: 1px solid var(--text-light-gray);
    height: auto;
    right: 3px;
    bottom: 1px;
    padding-top: 8px;
    top: 1px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.dec.qtybutton {
    border-right: 1px solid var(--text-light-gray);
    height: auto;
    top: 1px;
    background: var(--bg-white);
    left: 3px;
    bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product__cart-actions .single-product-quantity {
    margin: 0 0;
}

.customer_reviews {
    border: 1px dashed var(--border-light);
    background: var(--bg-light);
    padding: 15px;
}

a.reviewlink {
    font-size: 14px;
    float: right;
    color:var(--color-primary);
    border: 1px dashed var(--color-primary);
    padding: 8px 18px;
    border-radius: 30px;
}

.customer_reviews>h3 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
}

section.availability-feat {
    background: var(--color-info);
}

.avai_img {
    font-size: 40px;
    margin-right: 15px;
    color: var(--bg-white);
}

.avai_desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-white);
    line-height: normal;
}

.avail_item {
    display: flex;
    align-items: center;
}

.tab-main {
    margin: 20px 0 0 0;
}

.tab-main table {
    width: 100%;
}

.tab-main table tr td,
.tab-main table tr th {
    border: 1px solid var(--border-secondary);
    padding: 10px;
}

.product-descp-tab_wrapper ul#myTab {
    display: flex;
    align-items: center;
}

.review_sectn {
    border: 1px dashed var(--border-light);
    padding: 15px;
    display: none;
}

.review-block {
    max-width: 600px;
    width: 100%;
}

.review-block>h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
}

ul#myTab li a {
       height: 41px;
    border: 1px dashed var(--border-light);
    margin: 0 5px 0 0;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--title-color);
    border-radius: 30px;
    padding: 7px 30px;
    display: flex;
    align-items: center;
    font-variant-emoji: unicode;
    line-height: 41px;
}

ul#myTab li a.active {
    background-color:var(--color-primary);
    color: var(--bg-white);
    border-color:var(--color-primary);
}

.tab-main p {
    font-weight: 300;
}

.related-products {
    background: var(--bg-light);
}

.related-products a.top_cat_image {
    background: var(--bg-white);
}

.cartButtons.product__cart-actions {
    margin: 10px 0 15px 0;
}

input.star {
    display: none;
}

label.star {
   display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 25px;
    color: #444;
    transition: all .2s;
    border: 1px solid var(--border-secondary);
    margin-right: 5px;
     cursor: pointer;
}
input.star:focus + label.star {
    outline: 1px solid var(--color-primary);
}

input.star:checked~label.star:before {
    content: '\ea5f';
    color: var(--star-color);
    transition: all .25s;
}

input.star-5:checked~label.star:before {
   color: var(--star-color);
}

input.star-1:checked~label.star:before {
    color: var(--star-color);
}

label.star:hover {
    transform: rotate(-15deg) scale(1.3);
}

label.star:before {
    content: '\ea5f';
    font-family: wokiee;
}

.stars {
    display: flex;
    align-items: flex-start;
}

.product__gallery-main .slide-item.slick-slide.slick-current.slick-active:focus {
    outline: none;
}

.cartButtons.modalbtn a {
    padding: 18px;
    font-size: 18px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cartButtons.modalbtn a i {
    font-size: 28px;
    margin-right: 5px;
    position: relative;
    top: -3px;
}

.pmodal_close {
    float: right;
    position: absolute;
    right: 25px;
    top: 22px;
    outline: none;
    color: var(--border-light);
    z-index: 99;
}


/*  END 14.0 Single Product  Page 
========================================================================== */


/* 15.0 Go To Top Button 
========================================================================== */

.gototop {
    position: fixed;
    bottom: 30px;
    z-index: 999;
    width: 40px;
    height: 40px;
    right: 30px;
    border-radius: 50%;
    border: 0;
    outline: none;
    cursor: pointer;
    display: none;
    padding: 0;
    font-size: 18px;
}

.btn-grad.gototop i {
    position: relative;
    top: 3px;
}

.gototop::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.inner-btns {
    position: relative;
    z-index: 999;
}

a.scrollcart {
    position: fixed;
    top: 350px;
    right: 0;
    z-index: 999;
    transform: rotate(90deg);
    transform-origin: 100% 0;
    padding: 7px 15px;
    color: var(--bg-white);
    font-size: 16px !important;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: none;
}


a.scrollcart .bdge {
    transform: rotate(-90deg);
    font-size: 25px;
    margin: 0px 8px 0 0;
}
a.scrollcart.active{display: inline-flex;}

a.btn-grad-two.scrollcart span {
    font-size: 13px !important;
    letter-spacing: .05em;
}

a.btn-grad-two.scrollcart span#cart_total {
    color:var(--color-primary);
}

.single-product-quantity.modalquantity {
    margin: 10px 0;
}

.review_Area p {
    margin: 0;
}


/* END 15.0 Go To Top Button 
========================================================================== */


/* 16.0 Blog Page Style 
========================================================================== */

section.blogMainSection {
    background: var(--bg-light);
}

a.blogimage {
    position: relative;
    padding-bottom: 100%;
    display: block;
    background: var(--border-light);
}

a.blogimage img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blogText {
    display: block;
    padding: 15px;
    background: var(--bg-white);
}

span.date {
    font-size: 14px;
    margin: 0 0 5px 0;
    display: block;
    color: var(--text-medium);
}

.blogText p {
    margin: 0;
}

.blogItem {
    margin: 0 0 30px 0;
    transition: all 0.3s ease;
}

.blogItem:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

.categoriesBlock {
    background: rgba(255, 255, 255, .7);
    padding: 25px;
    border-radius: 10px;
}

ul.catgorylist li a {
    color: var(--text-medium);
    font-size: 16px;
}

ul.catgorylist li {
    border-bottom: 1px solid var(--border-light);
    line-height: 45px;
}

.topPost {
    margin-top: 30px;
    background: rgba(255, 255, 255, .7);
    padding: 25px;
    border-radius: 10px;
}

a.postblock {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
}

.posttext h4 {
    font-size: 16px;
    font-weight: 600;
}

.posttext p {
    margin: 0;
    font-size: 13px;
    line-height: 20px;
}

span.numbering {
    font-size: 20px;
    font-weight: 600;
    color:var(--color-primary);
}

.posttext {
    padding-left: 15px;
}


/* 16.0 Blog Page Style 
========================================================================== */


/* 17.0 Single Blog Page Style 
========================================================================== */

.singleblogMainSection-Up {
    margin-top: -50px;
    padding: 15px 15px;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, .10);
    margin-bottom: 50px;
    border-radius: 5px;
}

.single-blog-text p {
    font-size: 18px;
      line-height: 1.8;
    font-weight: 300;
}

.single-blog-text h2 {
    margin: 20px 0;
}

.single-blog-text span.date {
    margin: 20px 0 0 0;
    font-size: 14px;
    text-transform: uppercase;
}

ul.blog_social_links {
    display: flex;
    margin-bottom: 20px
}

ul.blog_social_links li a {
    color: var(--bg-white);
    padding: 10px 5px;
    font-size: 12px;
    transition: all .30s ease-in-out;
    opacity: .8;
    width: 150px;
   display: flex;
    text-align: center;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

ul.blog_social_links li a i {
    font-size: 14px;
    margin-right: 8px;
}

ul.blog_social_links li a:hover {
    opacity: 1;
}
.mobileHeader{display: none;}

/* END 17.0 Single Blog Page Style 
========================================================================== */

/* Start 18.0 Index Style 
========================================================================== */
.wrap_all{background: var(--text-light-gray);min-height: 100vh;    overflow: hidden;}
.inner_wrap {
    width: 100%;
    min-height: 100vh;
    background: rgba(255,255,255,.4);
   
}

.in-logo {
    margin: 0 auto;
    max-width: 300px;
}

.siteBanner {
    text-align: center;
}
.siteBanner h3 {
    margin: 30px 0;
    color: var(--text-dark);
    font-size: 25px;
    font-weight: 700;
}
a.buytemplate {
    display: table;
    margin: 0 auto;
    
    text-transform: uppercase;
    
}

.siteBanner {
    text-align: center;
    padding: 80px 15px;
    background: var(--bg-white);

}
.pageLayoutscreeens {
    background: var(--bg-white);
}
.pageLayoutHeading {
    font-size: 20px;
    text-align: center;
    padding: 20px 0;
    background: var(--color-primary);
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .05em;
}

.scrollimage {
    position: relative;
    margin-top: 30px;
}

.scrollimage a {
    position: relative;
    overflow: hidden;
    height: 450px;
    display: block;
    border: 1px solid #e5e5e5;
}

.scrollimage a  img {
    transition: all ease 8s;
    position: absolute;
    top: 0;
    transform: translateY(0%);
}

.block:hover img {
    transform: translateY(calc(-100% + 600px));
}

a.pagename {
    font-size: 20px;
    color: var(--bg-white);
    background:linear-gradient(to right,var(--color-primary) 0%, #EDDE5D 51%, #F09819 100%);
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 600;
    padding: 10px;
    background-size: 200% auto;
        transition: 0.5s;
}
a.pagename:hover {
    background-position: right center;
}

.flexrow{display: flex; flex-wrap: wrap;}

.pageitem{margin-bottom: 30px;}
.flexrow .col-md-6 {
    border-right: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
}
.flexrow .col-md-6:nth-child(2n) {
    border-right: 0;
   
}


/* End 18.0 Index Style 
========================================================================== */
