@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap");
:root {
    --bs-primary: #5641a1;
    --bs-secondary: #a89faf;
    --bs-success: #00a76f;
    --bs-info: #00b8d9;
    --bs-warning: #ffab00;
    --bs-danger: #ff5630;
    --bs-light: #f8f9fa;
    --bs-dark: #343a40;
    --bs-primary-rgb: 86, 65, 161;
    --bs-secondary-rgb: 168, 159, 175;
    --bs-success-rgb: 0, 167, 111;
    --bs-info-rgb: 0, 184, 217;
    --bs-warning-rgb: 255, 171, 0;
    --bs-danger-rgb: 255, 86, 48;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 52, 58, 64;
    --bs-body-font-size: 1rem;

  --font-family-base: "Inter", sans-serif;
  --border-radius-base: 20px;
  --border-color-light: #ebebeb;
  --radius-sm: 5px;
  --primary: var(--bs-primary);
  --secondary: #202030;  
  --title: #000;
  --white: #fff;
  --light:#FFFAF3;
  --nav-font-size: 0.875rem;
  --nav-drop-font-size: 0.875rem;
  --bs-breadcrumb-divider: '>';
  
  --palette-grey-500Channel: 145 158 171;
  --spacing: 8px;
  --customShadows-dropdown:  0 0 2px 0 rgba(145 158 171 / 0.24), -20px 20px 40px -4px rgba(145 158 171 / 0.24);
}

* {
  outline: 0;
  padding: 0;
}
::after {
  margin: 0;
  padding: 0;
}
::before {
  margin: 0;
  padding: 0;
}
*,
::after,
::before {
  box-sizing: border-box;
}
*:focus {
    box-shadow: none !important;
}
body {
  margin: 0;
  line-height: 1.6;
  color: #424758;
  font-size: 1rem;
  font-family: var(--font-family-base);
  overflow-x: clip;
  background-color: #f7f7f7;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
b, strong {
    font-weight: 700;
}
.alert i{
    font-size: 1.5em;
}
.alert-warning {
    background: hsl(35, 67%, 45%);
    background: linear-gradient(45deg, hsla(35, 67%, 45%, 1) 0%, hsla(35, 84%, 62%, 1) 100%);   
    background: -moz-linear-gradient(45deg, hsla(35, 67%, 45%, 1) 0%, hsla(35, 84%, 62%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(35, 67%, 45%, 1) 0%, hsla(35, 84%, 62%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#C28126", endColorstr="#F0AD4E", GradientType=1 );    
}
.alert-warning a:hover{
    color:#ffeacd;
}
p{
  font: inherit;
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
}
ul {
  padding: 0;
  margin: 0;
}
img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
li {
  list-style: none;
}
.site-header a,#footer a{
    text-decoration: none;
}
a {
  outline: 0;
  color: var(--primary);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  text-decoration: none;
  outline: 0;
  color: var(--primary);
}
.container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
::selection {
  color: #857676;
  background: var(--primary);
}
img::selection {
  background: 0 0;
}

.z-index-full {
    z-index: 999999;
}
.btn{
    border-radius: var(--radius-sm);
}
.btn:active,
.btn:focus,
.btn:hover,
button:active,
button:focus,
button:hover {
    outline: 0 !important;
}

/* AGE VERIFICATION */
#ageVerificationModal .modal-header{
    display: block;
}
#ageVerificationModal .modal-content {
    text-align: center;
    background: hsla(40, 47%, 93%, 1);
    background: linear-gradient(45deg, hsla(40, 47%, 93%, 1) 0%, hsla(0, 0%, 100%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(40, 47%, 93%, 1) 0%, hsla(0, 0%, 100%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(40, 47%, 93%, 1) 0%, hsla(0, 0%, 100%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F5EFE3", endColorstr="#FFFFFF", GradientType=1 );  
}
#ageVerificationModal .modal-body {
    font-size: 0.9em;
    font-weight: 500;
    padding: 20px;    
}
#ageVerificationModal .modal {
    pointer-events: auto !important;
}
#ageVerificationModal .age-btn {
    font-size: 1em;
    margin: 10px;
}

/* NAVIGATION */
.NavMenu-hover > li > a {
    position: relative;
    border: 1px solid transparent;
}
/*
.NavMenu-hover > li > a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 0;
    background-color: #aba5cc;
    transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
}
*/
.NavMenu-hover > li > a.active,
.NavMenu-hover > li > a:hover {
    padding-left: 10px !important;
    background: #fffefe;
    border-radius: var(--radius-sm);
    border: 1px solid #e7ecf0;
}
/* 
.NavMenu-hover > li > a.active:after,
.NavMenu-hover > li > a:hover:after {
    width: 8px;
    background-color: #e6e5eb;
}
*/
.logo-header {
    display: flex;
    align-items: center;
    float: left;
    vertical-align: middle;
    padding: 0;
    color: #2a2949;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    width: 180px;
    height: 80px;
    position: relative;
    z-index: 9;
}
.logo-header a {
    display: table-cell;
    vertical-align: middle;
}
.logo-header img {
    object-fit: contain;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    height:60px;
}
.text-logo {
    font-size: 30px;
    line-height: 1;
    padding-left:10px;
    font-weight: 700;
}
@media only screen and (max-width: 1199px) {
    .logo-header {
        width: 135px;
    }
}
@media only screen and (max-width: 575px) {
    .logo-header {
        height: 65px;
        width: 100px;
    }
    .logo-header img {
        height:50px;
    }    
}
@media only screen and (max-width: 1199px) {
    .logo-header {
        margin-right: 8px !important;
    }
}
@media only screen and (max-width: 991px) {
    .logo-header {
        margin-right: 0 !important;
    }
}

.site-header {
    position: relative;
    z-index: 999;
}
.site-header .main-bar {
    background: #fff;
    width: 100%;
    position: relative;
    border-bottom: 1px solid var(--light);
}
@media only screen and (min-width: 991px) {
    .site-header .main-bar .inner-bar {
        display: flex;
    }
}
.site-header .container {
    position: relative;
}
.site-header .extra-nav {
    float: right;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
    height: 80px;
    padding-left: 5px;
    color: var(--title);
}
.site-header .extra-nav .extra-cell {
    display: flex;
    align-items: center;
}
.site-header .extra-nav .extra-cell > * {
    margin-left: 20px;
    display: flex;
    align-items: center;
    flex-direction: inherit;
    margin-right: -10px;
}
@media only screen and (max-width: 991px) {
    .site-header .extra-nav .extra-cell > * {
        margin-left: 15px;
    }
}
.site-header .extra-nav .extra-cell ul li a,
.site-header .extra-nav .extra-cell ul li button {
    padding: 0 10px;
    display: flex;
    align-content: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    line-height: 1;
    align-items: center;
    width: 50px;
    height: 50px;
}
@media only screen and (max-width: 1480px) {
    .site-header .extra-nav .extra-cell ul li a,
    .site-header .extra-nav .extra-cell ul li button {
        padding: 0 10px;
    }
}
@media (min-width:990px) and (max-width:1060px){
    .site-header .extra-nav .extra-cell ul li a,
    .site-header .extra-nav .extra-cell ul li button {
        padding: 0 1px !important;
    }
    .site-header .extra-nav .extra-cell ul li a, .site-header .extra-nav .extra-cell ul li button {
        width: 40px !important;
    }
    .site-header .extra-nav .extra-cell > *{
        margin-left: 0px;
    }
}
.site-header .extra-nav .extra-cell ul li a i,
.site-header .extra-nav .extra-cell ul li button i {
    font-size: 20px;
    color: var(--title);
    font-weight: 700;
}
.site-header .extra-nav .extra-cell ul li a .badge,
.site-header .extra-nav .extra-cell ul li button .badge {
    position: absolute;
    top: -4px;
    right: 2px;
    font-size: 11px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    min-width: 18px;
    font-weight: 700;
}
@media only screen and (max-width: 991px) {
    .site-header .extra-nav {
        height: 60px;
    }
}
@media only screen and (max-width: 1680px) {
    .site-header .extra-nav {
        padding-left: 0;
    }
}
/*
@media only screen and (max-width: 767px) {
    .site-header .extra-nav {
        width: 100%;
        background: #fff;
        position: fixed;
        bottom: -80px;
        left: 0;
        padding: 0 20px;
        box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
        height: 50px;
        transition: all 0.5s ease 0.5s;
    }
    .site-header .extra-nav .extra-cell {
        width: 100%;
    }
    .site-header .extra-nav .extra-cell ul {
        width: 100%;
    }
}
*/
.site-header .extra-nav #quik-search-btn {
    color: #fff;
    cursor: pointer;
    margin-right: 0;
    border: 0;
    width: 45px;
    height: 45px;
    background: var(--secondary);
    line-height: 45px;
    text-align: center;
    font-size: 18px;
    border-radius: var(--border-radius-base);
}
@media only screen and (max-width: 575px) {
    .site-header .extra-nav .btn {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.site-header .extra-nav ul li {
    display: inline-block;
}
.smenu-toggler {
    border: 0 solid #efbb20;
    font-size: 16px;
    line-height: 24px;
    margin: 40px 0 39px 15px;
    padding: 0;
    float: right;
    outline: 0 !important;
}
@media only screen and (max-width: 991px) {
    .smenu-toggler {
        margin: 18px 0 16px 30px;
    }
}
@media only screen and (max-width: 575px) {
    .smenu-toggler {
        margin: 0px 0 0px 10px;
    }
}
.navicon {
    width: 45px;
    height: 45px;
    background: #212529;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    border-radius: var(--radius-sm);
  }
  @media only screen and (min-width: 991px) {
    .navicon,.smenu-toggler-link {
      display: none !important;
    }
  }
  .navicon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    opacity: 1;
    background: #fff;
    left: 10px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .navicon span:nth-child(1) {
    top: 13px;
    width: 22px;
  }
  .navicon span:nth-child(2) {
    top: 22px;
    width: 30px;
  }
  .navicon span:nth-child(3) {
    top: 32px;
    width: 25px;
  }
  .navicon.open span:nth-child(1) {
    top: 24px;
    left: 14px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .navicon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  .navicon.open span:nth-child(3) {
    top: 24px;
    left: 14px;
    width: 23px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
.header-nav {
    padding: 0;
}
.header-nav::-webkit-scrollbar {
    display: none !important;
}
@media only screen and (max-width: 991px) {
    .header-nav {
        overflow-y: scroll;
        position: fixed;
        width: 60px;
        height: 100vh !important;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
        top: 0;
        background-color: #fff;
        margin: 0;
        z-index: 99;
    } 
}
.header-nav .logo-header {
    display: none;
}
@media only screen and (max-width: 991px) {
    .header-nav .logo-header {
        padding: 30px 20px;
        float: none;
        height: auto;
        width: 240px;
    }
}
.header-nav.nav-dark .nav > li .mega-menu,
.header-nav.nav-dark .nav > li .sub-menu {
    background-color: var(--secondary);
}
.header-nav.nav-dark .nav > li .mega-menu .menu-title,
.header-nav.nav-dark .nav > li .sub-menu .menu-title {
    color: #fff;
}
.header-nav.nav-dark .nav > li .mega-menu li a,
.header-nav.nav-dark .nav > li .sub-menu li a {
    color: #bababa;
}
.header-nav.nav-dark .nav > li .mega-menu li a:hover,
.header-nav.nav-dark .nav > li .sub-menu li a:hover {
    color: #fff;
}
.header-nav.nav-dark .nav > li .mega-menu .name a,
.header-nav.nav-dark .nav > li .sub-menu .name a {
    color: #fff;
}
.header-nav .sd-mobile-icon {
    text-align: center;
    display: none;
}
.header-nav .sd-mobile-icon li {
    display: inline-block;
    margin: 0 2px;
}
.header-nav .sd-mobile-icon a {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 38px;
    text-align: center;
    border-radius: 0;
}
@media only screen and (max-width: 991px) {
    .header-nav .sd-mobile-icon {
        display: block;
        padding: 10px;
        font-size: 30px !important;
    }
}
.is-fixed .main-bar {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
    background-color: rgba(255 255 255 / 0.8);
    transition: all 0.5s;
}
.is-fixed .main-bar::before {
    backdrop-filter: blur(6px);
    opacity: 1;
    content: "";
    visibility: visible;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1), visibility 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 991px) {
    .mo-left,
    .mo-right {
      overflow-y: scroll;
      position: fixed;
      width: 310px;
      height: 100vh !important;
      transition: all 0.5s;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      top: 0;

      margin: 0;
      z-index: 99999;
    }
    .mo-left.show,
    .mo-right.show {
      transition: all 0.5s;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      margin: 0;
      transition-delay: 0.2s;
    }
    .mo-left .logo-header,
    .mo-right .logo-header {
      display: block;
      float: none;
      height: auto !important;
      max-width: 100%;
      padding: 25px 20px;
      width: 100% !important;
    }
    .mo-left .logo-header img,
    .mo-right .logo-header img {
      max-width: unset;
      width: 150px;
      height: auto;
      vertical-align: middle;
    }
    .mo-left li.open a,
    .mo-right li.open a {
      position: relative;
    }
    .mo-left {
      left: -310px;
    }
    .mo-left.show {
      left: -1px;
    }
    .mo-right {
      right: -310px;
    }
    .mo-right.show {
      right: -1px;
    }
  }
.main-bar {
    -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.is-fixed .main-bar {
    -webkit-animation: 0.7s ease 0s normal forwards 1 running headerSlideDown;
    -khtml-animation: 0.7s ease 0s normal forwards 1 running headerSlideDown;
    -moz-animation: 0.7s ease 0s normal forwards 1 running headerSlideDown;
    -ms-animation: 0.7s ease 0s normal forwards 1 running headerSlideDown;
    -o-animation: 0.7s ease 0s normal forwards 1 running headerSlideDown;
    animation: 0.7s ease 0s normal forwards 1 running headerSlideDown;
  }
@-moz-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }
    100% {
        margin-top: 0;
    }
}
@-ms-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }
    100% {
        margin-top: 0;
    }
}
@-webkit-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }
    100% {
        margin-top: 0;
    }
}
@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }
    100% {
        margin-top: 0;
    }
}
.quick-search {
    border: 0;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
}
.smenu-search {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.smenu-search .form-control {
    border-radius: 0;
    height: 55px;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
}
.smenu-search .form-control:active,
.smenu-search .form-control:focus,
.smenu-search .form-control:hover {
    box-shadow: none;
    border-color: #f46700;
}
.smenu-search .search-group {
    position: relative;
}
.smenu-search .search-group .search-btn {
    position: absolute !important;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background-color: transparent;
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
}
.smenu-search .search-group .search-btn i {
    font-size: 16px !important;
}
.search-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
  }
  .search-overlay form {
    width: 100%;
  }
  .search-overlay .search-group {
    max-width: 800px;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media only screen and (max-width: 991px) {
    .search-overlay .search-group {
      max-width: 100%;
      width: 100%;
    }
  }
  .search-overlay .form-control {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
  }
  .search-overlay .form-control::placeholder {
    color: #fff;
    opacity: 1;
  }
  .search-overlay .form-control::-ms-input-placeholder {
    color: #fff;
  }
  .search-overlay .search-btn {
    color: #fff;
  }
  .search-overlay .search-remove {
    position: absolute;
    right: 20px;
    top: 5px;
    color: #fff;
    border: 0;
    background-color: transparent;
    font-size: 60px;
    opacity: 0.87;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  .search-overlay.show {
    top: 0;
  }
@media only screen and (min-width: 991px) {
    .header-nav.smenu {
        flex-basis: auto;
        flex-grow: 1;
        display: flex;
    }
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu .logo-header {
        margin-right: 0 !important;
    }
}
.header-nav.smenu > .nav {
    flex-direction: row;
}
.header-nav.smenu > .nav > li {
    margin: 0;
    font-weight: 300;
    position: relative;
    display: inline-block;
}
.header-nav.smenu > .nav > li.has-mega-menu {
    position: inherit;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li {
        border-bottom: 1px solid #eee;
        width: 100%;
    }
}
.header-nav.smenu > .nav > li.sub-menu-down .sub-menu-down > a {
    position: relative;
}
.header-nav.smenu > .nav > li.sub-menu-down .sub-menu-down > a:after {
    content: "\f054";
    display: inline-block;
    font-weight: 900;
    font-family: "Line Awesome";
    font-size: 10px;
    float: right;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li.sub-menu-down .sub-menu-down > a:after {
        background-color: var(--secondary);
        opacity: 0.8;
        color: #fff;
        height: 30px;
        line-height: 30px;
        right: 0;
        text-align: center;
        width: 30px;
        z-index: 3;
        float: right;
        font-size: 11px;
        margin-top: -5px;
    }
}
.header-nav.smenu > .nav > li.sub-menu-down > a:after {
    font-family: 'Line Awesome';
    font-weight: 900;
    content: "\f0d7";
    margin-left: -2px;
    margin-top: -5px;
    display: inline-block;
    width: 16px;
    height: 16px;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li.sub-menu-down > a:after {
        display: none;
    }
}
.header-nav.smenu > .nav > li.sub-menu-down > a i.tabindex {
    display: none;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li.sub-menu-down > a i.tabindex {
        display: block;
        font-size: 9px;
        margin-left: 5px;
        margin-top: 0;
        vertical-align: middle;
        font-weight: 900;
        font-family: "Line Awesome";
    }
}
@media only screen and (max-width: 991px) and (max-width: 991px) {
    .header-nav.smenu > .nav > li.sub-menu-down > a i.tabindex {
        background-color: var(--secondary);
        color: #fff;
        height: 30px;
        line-height: 30px;
        right: 0;
        text-align: center;
        width: 30px;
        z-index: 3;
        float: right;
        font-size: 11px;
        margin: 0;
    }
    .header-nav.smenu > .nav > li.menu-item-has-children > a i.tabindex:before, .header-nav.smenu > .nav > li.sub-menu-down > a i.tabindex:before {
        font-family: "Line Awesome";
        content: "\f105";
    }
    .header-nav.smenu > .nav > li.sub-menu-down.open > a i.tabindex {
        background-color: var(--primary);
    }
    .header-nav.smenu > .nav > li.sub-menu-down.open > a i.tabindex:before {
        font-family: "Line Awesome";
        content: "\f107";        
    }
}
.header-nav.smenu > .nav > li > a {
    color: var(--title);
    font-size: var(--nav-font-size);
    padding: 28px 15px;
    font-family: var(--font-family-base);
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    position: relative;
    line-height: 24px;
}
@media only screen and (max-width: 1199px) {
    .header-nav.smenu > .nav > li > a {
        padding-left: 8px;
        padding-right: 8px;
    }
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li > a {
        padding: 8px 0;
        display: block;
        line-height: 30px;
        font-size: 16px;
    }
}
.header-nav.smenu > .nav > li > a span {
    display: inline-block;
}
.header-nav.smenu > .nav > li .mega-menu,
.header-nav.smenu > .nav > li .sub-menu {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwIiBoZWlnaHQ9IjEyMCIgdmlld0JveD0iMCAwIDEyMCAxMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfNDQ2NF81NTMzOCkiIGZpbGwtb3BhY2l0eT0iMC4xIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfNDQ2NF81NTMzOCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAgMS44MTgxMmUtMDUpIHJvdGF0ZSgtNDUpIHNjYWxlKDEyMy4yNSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCOEQ5Ii8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwQjhEOSIgc3RvcC1vcGFjaXR5PSIwIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==), url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwIiBoZWlnaHQ9IjEyMCIgdmlld0JveD0iMCAwIDEyMCAxMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfNDQ2NF81NTMzNykiIGZpbGwtb3BhY2l0eT0iMC4xIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfNDQ2NF81NTMzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgwIDEyMCkgcm90YXRlKDEzNSkgc2NhbGUoMTIzLjI1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGRjU2MzAiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkY1NjMwIiBzdG9wLW9wYWNpdHk9IjAiLz4KPC9yYWRpYWxHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K);
    background-size: 50%, 50%;
    background-repeat: no-repeat;
    background-position: right top, left bottom;
    backdrop-filter: blur(20px);
    background-color: rgba(255 255 255 / 0.7);
    padding: calc(5* var(--spacing)) calc(1* var(--spacing)) calc(1* var(--spacing)) calc(4* var(--spacing));
    box-shadow: var(--customShadows-dropdown);   
    display: block;
    left: 0;
    list-style: none;
    opacity: 0;
    padding: 20px 0;
    position: absolute;
    visibility: hidden;
    z-index: 10;
    margin-top: 20px;
    text-align: left;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    pointer-events: none;
}
.header-nav.smenu > .nav > li .sub-menu{
    backdrop-filter: blur(15px);
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li .mega-menu,
    .header-nav.smenu > .nav > li .sub-menu {
        display: none;
        position: static;
        visibility: visible;
        width: auto;
        background: 0 0;
        box-shadow: none;
        margin: 0;
        border-top: 1px solid #eee;
        padding: 15px 0;
        -webkit-transition: none;
        -ms-transition: none;
        transition: none;
    }
    .header-nav.smenu > .nav > li .mega-menu > li > a i.tabindex,
    .header-nav.smenu > .nav > li .sub-menu > li > a i.tabindex {
        color: #fff !important;
        height: 30px;
        line-height: 30px;
        right: 0;
        text-align: center;
        width: 30px;
        z-index: 3;
        font-size: 14px !important;
        margin: 0 !important;
        background: #eee;
    }
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li .mega-menu,
    .header-nav.smenu > .nav > li .sub-menu {
        display: none;
        position: static;
        visibility: visible;
        width: auto;
        background: 0 0;
        box-shadow: none;
        margin: 0;
        border-top: 1px solid #eee;
        padding: 15px 0;
        -webkit-transition: none;
        -ms-transition: none;
        transition: none;
        opacity: 1;
    }
    .header-nav.smenu > .nav > li .mega-menu > li > a i.tabindex,
    .header-nav.smenu > .nav > li .sub-menu > li > a i.tabindex {
        display: none;
    }
    .header-nav.smenu > .nav > li .mega-menu > li > a i.tabindex,
    .header-nav.smenu > .nav > li .sub-menu > li > a i.tabindex {
        color: #fff !important;
        font-size: 14px;
        font-family: "Line Awesome";
        content: "\f054";
        height: 30px;
        line-height: 30px;
        right: 0;
        text-align: center;
        width: 30px;
        z-index: 3;
        margin: 0 !important;
        background: var(--primary);
        border-radius: var(--border-radius-base);
        font-weight: 900;
        float: right;
    }
}
.header-nav.smenu > .nav > li .mega-menu li,
.header-nav.smenu > .nav > li .sub-menu li {
    position: relative;
}
.header-nav.smenu > .nav > li .mega-menu li a,
.header-nav.smenu > .nav > li .sub-menu li a {
    color: #242424;
    display: block;
    font-size: var(--nav-drop-font-size);
    padding: 5px 0;
    line-height: 20px;
    text-transform: capitalize;
    position: relative;
    transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    font-weight: 500;
}
.header-nav.smenu > .nav > li .mega-menu li a.menu-title,
.header-nav.smenu > .nav > li .sub-menu li a.menu-title {
    color: var(--title);
    display: block;
    padding: 0;
    padding-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 10px;
    font-family: var(--font-family-base);
}
.header-nav.smenu > .nav > li .mega-menu li:hover > a,
.header-nav.smenu > .nav > li .sub-menu li:hover > a {
    color: var(--primary);
}
.header-nav.smenu > .nav > li .mega-menu li .name a,
.header-nav.smenu > .nav > li .sub-menu li .name a {
    font-size: 15px;
    font-weight: 500;
    color: inherit;
    padding: 0;
}
.header-nav.smenu > .nav > li .mega-menu li > .sub-menu,
.header-nav.smenu > .nav > li .sub-menu li > .sub-menu {
    left: 220px;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li .mega-menu li > .sub-menu,
    .header-nav.smenu > .nav > li .sub-menu li > .sub-menu {
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li .mega-menu .mega-menu,
    .header-nav.smenu > .nav > li .mega-menu .sub-menu,
    .header-nav.smenu > .nav > li .sub-menu .mega-menu,
    .header-nav.smenu > .nav > li .sub-menu .sub-menu {
        border-top: 0;
        padding-left: 20px;
    }
}
.header-nav.smenu > .nav > li .sub-menu {
    width: 220px;
    padding-left: 10px;
    padding-right: 10px;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li .sub-menu {
        width: 100%;
        padding: 0;
    }
}
.header-nav.smenu > .nav > li .sub-menu li > a {
    /* padding: 5px 10px; */
}
.header-nav.smenu > .nav > li .sub-menu li > a:hover {
    padding-left: 10px !important;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li .sub-menu li > a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
}
.header-nav.smenu > .nav > li .sub-menu li > a > i.tabindex {
    color: inherit;
    display: block;
    float: right;
    font-size: 18px;
    opacity: 1;
    margin-top: 0;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li .sub-menu li > a > i.tabindex {
        display: none;
    }
}
.header-nav.smenu > .nav > li .mega-menu {
    right: 0;
    z-index: 9;
    padding: 50px;
}
.header-nav.smenu > .nav > li .mega-menu > li {
    display: block;
    padding: 15px 0 15px;
    position: relative;
    vertical-align: top;
    width: 25%;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li .mega-menu > li {
        width: 100%;
        padding: 0;
    }
}
.header-nav.smenu > .nav > li .mega-menu > li > a {
    color: var(--title);
    display: block;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 15px;
    font-family: var(--font-family-base);
}
.header-nav.smenu > .nav > li .mega-menu > li > a > i.tabindex {
    font-size: 14px;
    margin-right: 5px;
    text-align: center;
    width: 15px;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li .mega-menu > li > a {
        display: none;
    }
}
.header-nav.smenu > .nav > li .mega-menu > li:last-child:after {
    display: none;
}
.header-nav.smenu > .nav > li .mega-menu > li:hover > a {
    background-color: transparent;
}
.header-nav.smenu > .nav > li .mega-menu > li li i.tabindex {
    font-size: 14px;
    margin-right: 5px;
    text-align: center;
    width: 15px;
}
@media only screen and (max-width: 1199px) {
    .header-nav.smenu > .nav > li .mega-menu {
        padding: 30px;
    }
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li .mega-menu {
        display: none;
        padding: 10px 0;
    }
}
.header-nav.smenu > .nav > li.active > a,
.header-nav.smenu > .nav > li:hover > a {
    color: var(--primary);
}
.header-nav.smenu > .nav > li.active > .mega-menu,
.header-nav.smenu > .nav > li.active > .sub-menu,
.header-nav.smenu > .nav > li:hover > .mega-menu,
.header-nav.smenu > .nav > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    z-index: 11;
    pointer-events: unset;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav > li.active > .mega-menu,
    .header-nav.smenu > .nav > li.active > .sub-menu,
    .header-nav.smenu > .nav > li:hover > .mega-menu,
    .header-nav.smenu > .nav > li:hover > .sub-menu {
        -webkit-transition: none;
        -ms-transition: none;
        transition: none;
    }
}
.header-nav.smenu > .nav > li.active > .mega-menu li.active > .sub-menu,
.header-nav.smenu > .nav > li.active > .mega-menu li:hover > .sub-menu,
.header-nav.smenu > .nav > li.active > .sub-menu li.active > .sub-menu,
.header-nav.smenu > .nav > li.active > .sub-menu li:hover > .sub-menu,
.header-nav.smenu > .nav > li:hover > .mega-menu li.active > .sub-menu,
.header-nav.smenu > .nav > li:hover > .mega-menu li:hover > .sub-menu,
.header-nav.smenu > .nav > li:hover > .sub-menu li.active > .sub-menu,
.header-nav.smenu > .nav > li:hover > .sub-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    top: -1px;
    pointer-events: unset;
}
@media only screen and (max-width: 1480px) {
    .header-nav.smenu > .nav > li:last-child .sub-menu .sub-menu,
    .header-nav.smenu > .nav > li:nth-last-child(2) .sub-menu .sub-menu,
    .header-nav.smenu > .nav > li:nth-last-child(3) .sub-menu .sub-menu,
    .header-nav.smenu > .nav > li:nth-last-child(4) .sub-menu .sub-menu {
        left: -220px;
    }
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu > .nav {
        float: none;
        padding: 0 20px;
    }
}
.smenu.smenu-center {
    justify-content: center;
}
.smenu.smenu-end {
    justify-content: flex-end;
}
.smenu .badge {
    font-size: 10px;
    padding: 2px 5px;
}
.smenu .mega-menu {
    max-width: 1200px;
    width: 1200px;
    left: 80px !important;
    height: auto;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
}
@media only screen and (min-width: 1191px) and (max-width: 1280px) {
    .smenu .mega-menu {
        max-width: 1080px;
        width: 1080px;
    }
}
@media only screen and (max-width: 1191px) {
    .smenu .mega-menu {
        left: 0 !important;
        max-width: 100%;
    }
}
@media only screen and (max-width: 991px) {
    .smenu .mega-menu {
        max-height: unset;
        overflow-y: unset;
    }
}
.smenu .mega-menu ul {
    margin-bottom: 15px;
    margin-top:10px;
}
@media only screen and (max-width: 991px) {
    .smenu .mega-menu ul {
        margin-bottom: 0;
    }
}
.smenu .mega-menu > ul {
    margin: 0 -15px;
    flex-wrap: wrap;
}
@media only screen and (min-width: 991px) {
    .smenu .mega-menu > ul {
        display: flex;
    }
}
.smenu .mega-menu > ul > li {
    padding: 0 15px;
    flex: 1 0 0%;
    min-width: 180px;
}
.smenu .menu-close {
    position: absolute;
    right: 20px;
    top: 25px;
    background-color: #000;
    width: 25px;
    height: 25px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
    display: none;
}
@media only screen and (max-width: 991px) {
    .smenu .menu-close {
        display: flex;
        z-index: 999;
    }
}
.menu-close {
    position: fixed;
    top: 0;
    background-color: #000;
    width: 0;
    height: 100%;
    opacity: 0.5;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    z-index: 999;
}
.menu-close.fade-left {
    left: 0;
}
.menu-close.fade-right {
    right: 0;
}
.menu-close.fade-overlay {
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}
.smenu-toggler.open ~ .menu-close.fade-left, .smenu-toggler.open ~ .menu-close.fade-right {
    width: 100%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  .smenu-toggler.open ~ .menu-close.fade-overlay {
    opacity: 0.5;
    visibility: visible;
  }
.smenu-end.header-nav .nav > li > .mega-menu {
    right: 80px;
    left: auto !important;
}
@media only screen and (max-width: 1199px) {
    .smenu-end.header-nav .nav > li > .mega-menu {
        right: 0;
    }
}
.navbar-nav.nav > li > a .badge:not(.badge-drop) {
    transform: translateY(-2px);
}
@media only screen and (max-width: 991px) {
    .navbar-nav.nav > li > a .badge {
        transform: translateY(-2px);
    }
}
.header-nav.smenu .nav > li.menu-left {
    position: relative;
}
.header-nav.smenu .nav > li.menu-left > .sub-menu {
    left: 0 !important;
}
.header-nav.smenu .nav > li.menu-right {
    position: relative;
}
.header-nav.smenu .nav > li.menu-right > .sub-menu {
    right: 0;
    left: auto !important;
}
.header-nav.smenu .nav > li.menu-right > .sub-menu .sub-menu {
    left: -220px;
}
.header-nav.smenu .nav > li.menu-center {
    position: relative;
}
.header-nav.smenu .nav > li.menu-center > .sub-menu {
    left: 50% !important;
    transform: translateX(-50%);
}
@media only screen and (min-width: 1191px) {
    .header-nav.smenu .nav > li.has-mega-menu.full-width .mega-menu {
        width: calc(100% - 160px);
        max-width: calc(100% - 160px);
    }
}
@media only screen and (min-width: 991px) {
    .header-nav.smenu .nav > li.has-mega-menu.wide-width .mega-menu {
        width: 100%;
        max-width: 100%;
        left: 0 !important;
        padding-left: 80px;
        padding-right: 80px;
        left: 50% !important;
        transform: translate(-50%);
        width: 100vw;
        max-width: 100vw;
        border-top: 1px solid #f1f1f1;
    }
    .header-nav.smenu > .nav > li .sub-menu{
        border-top: 1px solid #f1f1f1;
    }
}
@media only screen and (min-width: 1300px) {
    .container .header-nav.smenu .nav > li.has-mega-menu.wide-width .mega-menu {
        padding-left: calc((100vw - 1320px) / 2 + 15px);
        padding-right: calc((100vw - 1320px) / 2 + 15px);
    }
}
@media only screen and (max-width: 1280px) {
    .header-nav.smenu .nav > li.has-mega-menu.wide-width .mega-menu {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu .nav > li.has-mega-menu.wide-width .mega-menu {
        padding-left: 0;
        padding-right: 0;
    }
}
.header-nav.smenu .nav > li.has-mega-menu.menu-left {
    position: relative;
}
.header-nav.smenu .nav > li.has-mega-menu.menu-left .mega-menu {
    left: 0 !important;
}
.header-nav.smenu .nav > li.has-mega-menu.menu-center .mega-menu,
.header-nav.smenu .nav > li.has-mega-menu.menu-left .mega-menu,
.header-nav.smenu .nav > li.has-mega-menu.menu-right .mega-menu {
    width: max-content;
    max-width: max-content;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu .nav > li.has-mega-menu.menu-center .mega-menu,
    .header-nav.smenu .nav > li.has-mega-menu.menu-left .mega-menu,
    .header-nav.smenu .nav > li.has-mega-menu.menu-right .mega-menu {
        width: 100%;
        max-width: 100%;
    }
}
.header-nav.smenu .nav > li.has-mega-menu.menu-right {
    position: relative;
}
.header-nav.smenu .nav > li.has-mega-menu.menu-right .mega-menu {
    right: 0;
    left: auto !important;
}
.header-nav.smenu .nav > li.has-mega-menu.menu-center {
    position: relative;
}
@media only screen and (min-width: 991px) {
    .header-nav.smenu .nav > li.has-mega-menu.menu-center .mega-menu {
        left: 50% !important;
        transform: translateX(-50%);
    }
}
.header-nav.smenu .nav > li.has-mega-menu .menu-title {
    color: var(--primary);
    display: block;
    padding: 0;
    font-size: var(--nav-drop-font-size);
    font-weight: 500;
    padding-bottom: 5px;
    font-family: var(--font-family-base);
    border-bottom: 1px dotted #b3b4e3;
}
@media only screen and (max-width: 991px) {
    .header-nav.smenu .nav > li.has-mega-menu .menu-title {
        color: #597deb;
        border-bottom: 1px dotted #b3b4e3;
        padding: 0 !important;
        font-weight: 500;
        text-align: left !important;       
    }
}
@keyframes animatedgradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}
@keyframes toTopFromBottom {
    49% {
        transform: translateX(100%);
    }
    50% {
        opacity: 0;
        transform: translateX(-100%);
    }
    51% {
        opacity: 1;
    }
}
.header-nav.smenu > .nav > li.sub-menu-down > a i.badge-icon {
    display: inline-block !important;
}
li.cart-link .cart-qty{
    top: 5px !important;
    right: 2px !important;
    padding: 3px !important;
    font-size: 0.6rem !important;
    font-weight: 300 !important;
}
li.cart-link i {
    font-size: 32px !important;
}
.quick-search i,.fav-link i {
    font-size: 26px !important;
}
.site-header .extra-nav .extra-cell ul li a i:hover{
    color:var(--primary);
}
body.fixed {
    overflow: hidden;
}

/* HEADER */
.miniLoginMenu,
.miniShipGreet{
    margin-top:10px;
    padding: 10px 0 10px 8px;
    border:1px solid #dfdee7;
    background-color: #ebebf5;
    border-radius: var(--radius-sm);
}
.miniLoginMenu{text-align: center;}
.miniLoginMenu h5 {
    font-size: 1em;
    color: #776e95;
}
.nav-login-register{
    text-align: center;
    margin-bottom: 10px;
    padding:10px 2px !important;
    border-radius: var(--radius-sm);
    border: 1px solid #f3f3f3 !important;
}

.miniLoginMenu .login-icon .la-user-lock {
    font-size: 2em;
    padding: 10px;
    border-color: #bcb4d7;
    color: #766d97;
}
.switch-info {
    line-height: 0.875em;
    font-size: 0.875em;
}
.nav-member-benefits .item span{
    font-weight: 600;
    display: block;
}
.nav-member-benefits .title {
    font-weight: 600;
    font-size: 1.5em;
    text-transform: uppercase;
    border-bottom: 1px solid #b3b4e3;
    padding-bottom: 5px;
    margin-bottom: 12px;
    display: block;
}
.nav-member-benefits .item i {
    font-size: 2em;
    line-height: 1em;
    padding-right: 5px;
}
.nav-member-benefits .item{
    margin-bottom: 10px;
}

.miniShipGreet .hello, .miniShipGreet .com-name{
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
}
.miniShipGreet .deliver-place{
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;    
}
.miniShipGreet .switch-address {
    font-size: 12px !important;
    background-color: #716f86;
    color: #e5e5f1 !important;
}
.sd-hello{
    display: block !important;
    font-size: 12px;
    line-height: 12px;
    margin-top: -12px;
}
.sub-menu .switch-address {
    font-size: 12px !important;
    background-color: #716f86;
    color: #e5e5f1 !important;
    margin-top: 4px;
}
.header-nav.smenu > .nav > li .sub-menu{
    margin-top: 0 !important;
    padding-top:  0 !important;
}
@media only screen and (max-width: 991px) {
    .miniSubSwitch,.sd-hello{
        display: none !important;
    }
}
/* SLIDER */
#slider{
    background: linear-gradient(90deg, rgba(203, 201, 233, .6) 0%, rgba(227, 232, 251, .6) 50%, rgba(255, 224, 244, .6) 100%);
    min-height: 220px;
}

.swiper {
    width: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide:not(.swiper-slide-active) {
    opacity: 0!important;
  }

  /* HOME PROMO */
  .home-promo-box{
    background: hsla(12, 45%, 96%, 1);
    background: linear-gradient(45deg, hsla(12, 45%, 96%, 1) 0%, hsla(0, 0%, 93%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(12, 45%, 96%, 1) 0%, hsla(0, 0%, 93%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(12, 45%, 96%, 1) 0%, hsla(0, 0%, 93%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#f9f2f0", endColorstr="#ECECEC", GradientType=1 );
    -webkit-transition: background 0.5s linear;
    -moz-transition: background 0.5s linear;
    -o-transition: background 0.5s linear;
    transition: background 0.5s linear;
  }
  .home-promo-box:hover{
    background: hsla(12, 14%, 86%, 1);
    background: linear-gradient(45deg, hsla(12, 14%, 86%, 1) 0%, hsla(40, 12%, 95%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(12, 14%, 86%, 1) 0%, hsla(40, 12%, 95%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(12, 14%, 86%, 1) 0%, hsla(40, 12%, 95%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#E0D8D6", endColorstr="#F4F3F1", GradientType=1 );
  }  
  .home-promo-box .img-box-right{
    width: 150px;
    height: 150px;
  }
  .home-promo-box p{
    font-size: 0.875em;
    color: #818181;
  }
  .home-promo-box h3{
    font-size: 1.3em;
    color:#181818;
  }

/* PRODUCT LISTING */
.card-product .fs-6 {
    font-size: .875rem !important;
    letter-spacing: -.03rem;
    margin-bottom: 0 !important;
    overflow: hidden;
    height: 36px;
    display: block;
}
.card-product .fs-6 a{
    display: block;
}
.badge-login-price {
    bottom: 2px;
    color:#be0000;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    border-color: #f4eafd;
}
.btn-shop {
    font-size: 16px;
    padding: 5px 15px;
    line-height: 24px;
    font-weight: 500;
    position: relative;
    font-family: sans-serif;
    text-align: center;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    border-color: #ebebeb;
    background: hsla(271, 17%, 32%, 1);
    background: linear-gradient(45deg, hsla(271, 17%, 32%, 1) 0%, hsla(272, 13%, 58%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(271, 17%, 32%, 1) 0%, hsla(272, 13%, 58%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(271, 17%, 32%, 1) 0%, hsla(272, 13%, 58%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#52445F", endColorstr="#9586A2", GradientType=1 );
}
.btn-shop:active,.btn-shop:hover{
    border-color: #f4eafd !important;
}
.card-product .card-product-action {
    bottom: 15%;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    transition: all .3s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 9;
}
.card-product .btn-action {
    align-items: center;
    background-color: #fff;
    border:1px solid #919eab33;
    border-radius: var(--radius-sm);
    color: var(--primary);
    display: inline-flex;
    font-size: 20px;
    height: 50px;
    justify-content: center;
    line-height: 50px;
    text-align: center;
    transition: all .3s ease 0s;
    vertical-align: middle;
    width: 50px;
    text-decoration: none;
}
.card-product .flagy {
    background: rgba(235, 235, 235, 0.7); /* fallback solid background with opacity */
    background: linear-gradient(45deg, hsla(0, 0%, 80%, 0.8) 0%, hsla(0, 0%, 0%, 0.1) 100%);
    background: -moz-linear-gradient(45deg, hsla(0, 0%, 80%, 0.8) 0%, hsla(0, 0%, 0%, 0.1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(0, 0%, 80%, 0.8) 0%, hsla(0, 0%, 0%, 0.1) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    top: 25px;
    padding: 8px 15px !important;
    left: -1px;
}
.card-product .btn-action i{
    width: 50px;
}
.card-product .btn-action:hover {
    background-color: var(--primary);
    color: var(--light);
}
.card-product .btn-action:hover i {
    color: var(--light);
}
.card-product{
    border-color:var(--border-color-light);
}
.card-product:hover {
    border: 1px solid #b3b4e3;
    transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
}
.card-product .position-relative{
	overflow:hidden;
    background: #ffffff;
    border-radius: var(--radius-sm);
    border:1px solid var(--border-color-light);
}
.card-product .card-body:hover .position-relative{
    background: #6e76be;
    border:1px solid var(--border-color-light);
}
.card-product .img-fluid {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
    border-radius: var(--radius-sm);
}
.card-product .card-body:hover .img-fluid {
	transform: scale(1.3);
	opacity: .5;
}
.card-product:hover .card-hidden, .card-product:hover .card-product-action {
    opacity: 1;
    transition: all 1s ease 0s;
    visibility: visible;
}
.card-product .badge{
    font-size: 0.75em;
    padding:0.35em 0.65em;
    border-radius: 0.25rem;
    z-index: 2;
    position: relative;
}
.card-product .price-box{
    line-height: 1em;
}
.section-title {
    font-size: 1.2rem !important;
    letter-spacing: -.03rem;
}
.login-to-view{
    color:#f46700;
    font-size: 0.875em;
}
.divider {
    display: flex;
  }
  .divider:before, .divider:after {
    content: "";
    flex: 1;
  }
  .line {
    align-items: center;
    margin: 0 -1em;
  }
  .line:before, .line:after {
    height: 1px;
    margin: 0 1em;
  }
  
  .one-line:before, .one-line:after {
    background: rgb(224, 224, 224);
  }

/* HOME SMOKY CATCH LINE */
#home-smoky-catch{
    border-color: var(--border-color-light) !important;
}
#home-smoky-catch h4{
    font-size: 1em;
    margin-bottom: 4px;
    text-transform: uppercase;
    color:#1a1a1a;
    padding: 5px;
    font-weight: 600;
    text-align: center;
}
#home-smoky-catch p{
    font-size: 0.875em;
    margin:0;
    line-height: 1.1em;
    color:#414141;
    font-weight: 300;
    padding: 0 8px;
}

#home-smoky-catch .catch-icon {
    text-align: center;
}
#home-smoky-catch .catch-icon i {
    font-size: 48px;
    color: var(--primary);
}
#home-smoky-catch .catchy-lead{
    font-size: 1.1em;
    line-height: 1.4em;
    color: #000000; 
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #ececec;
}

/* SUBPAGES */
#subpage-header{
    /*background: linear-gradient(90deg, rgba(185, 196, 207, 0.6) 0%, rgba(227, 232, 251, .6) 50%, rgba(179, 166, 185, 0.6) 100%);*/
    background: linear-gradient(110deg, rgb(232, 245, 246) 21.76%, rgb(232, 245, 246) 27.65%, rgb(232, 244, 246) 34.12%, rgb(233, 243, 245) 40.45%, rgb(234, 242, 244) 46.32%, rgb(234, 240, 244) 52.9%, rgb(235, 238, 242) 59.1%, rgb(236, 235, 241) 66.73%, rgb(238, 233, 240) 74.85%, rgb(239, 229, 238) 82.11%, rgb(241, 226, 237) 88.32%, rgb(242, 223, 235) 95.75%);    
}
#subpage-header .breadcrumb{
    margin-bottom: 0;
    font-size: .875em;
}
#subpage-header .page-title{
    font-size:1.3em;
    font-weight: 300;
}
.page-content-login{
    background-image: url(../images/login-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
    margin-bottom: -3rem !important;
    padding:40px 0;
}
.login-box{
    text-align: center;
    background-color: #fff;
    border-radius: var(--radius-sm);
    margin:0 auto;
    padding:calc(3*var(--spacing));
    width:100%;
    max-width: 420px;
}
.login-box .login-icon{
    font-size:3em;
    color:#cacaca
}
.login-icon .la-user-lock {
    border: 1px solid #f1f1f1;
    padding: 15px;
    border-radius: 50%;
}
.login-box h5{
    font-size:1.1em;
}
.login-box p{
    font-size:0.875em;
}
.login-box .btn-signin{
    font-weight: 500;
    padding:12px 0;
    width: 100%;
    font-size: 1em;
}
.login-remember:checked {
    background-color: var(--bs-success);
    border-color: var(--bs-success);
}
.login-box .form-check-input {
    height: 1.2em;
}
#page-content{
    padding:10px;
    background-color: #ffffff;
    border:1px solid var(--border-color-light);
    border-radius: var(--radius-sm);
}
#page-content .section-title{
    color:#b5b8be;
}
#page-content .one-line:before, #page-content .one-line:after {
    background: #eef2f9;
}
#page-content .one-line:before{
    flex: none;
    width:50px !important;
}
.faq-cat{
    text-align: center;
    border:1px solid var(--border-color-light);
    padding: calc(3* var(--spacing));
    border-radius: var(--radius-sm);
}
.faq-cat:hover{
    border-color:#d1cbe0;
    background-color: #f7f7f7;
}
.faq-cat i{
    font-size:3em;
}
.faq-cat span{
    font-size:0.875rem;
    line-height: 1.57143;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 44px;
}
.faq-cat a{
    color:#3d3d3d;
    text-decoration: none;
}
.faq-search .form-control {
    padding: .5rem 1.1rem;
    font-size: 1em;
    border-radius: var(--radius-sm);
}    
.faq-search .input-group-text {
    padding: .5rem 1.1rem;
    font-size: 1em;
    background-color: #f5f9ff;
    border-radius: var(--radius-sm);
}
.faq-search .btn-primary{
    padding: 0.53rem 1rem;
}
.faq-search p{
    font-size:1.5em;
    padding-top:4px;
}
.question-ans-block{
    padding: 10px;
    border:1px solid var(--border-color-light);
    font-size:1em;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}
.question-ans-block .question{
    font-weight: 600;
    margin:0;
}
.question-ans-block .answer{
    font-weight: 400;
    margin:0;
    line-height: 1.1em;
}
.cart-order-summary{
    background: hsla(65, 38%, 94%, 1);
    background: linear-gradient(45deg, hsla(65, 38%, 94%, 1) 0%, hsla(195, 50%, 98%, 1) 50%, hsla(0, 0%, 100%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(65, 38%, 94%, 1) 0%, hsla(195, 50%, 98%, 1) 50%, hsla(0, 0%, 100%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(65, 38%, 94%, 1) 0%, hsla(195, 50%, 98%, 1) 50%, hsla(0, 0%, 100%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F4F5E9", endColorstr="#F9FCFD", GradientType=1 );
    padding:10px 15px;
    border:1px solid var(--border-color-light);
}
.cart-order-summary .space-border{
    border-bottom: 1px dotted #d5dbc9;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.cart-order-summary .cart-total{
    font-size: 1.1em;
    font-weight: 600;
}
.cart-title{
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    color:#1C252E;
}
.cart-order-summary span{
    font-size:0.875em;
}
.cart-order-list{
    background-color: #fff;
    padding:10px 15px;
    border:1px solid var(--border-color-light);
}
.cart-order-list .table{
    font-size: 0.875rem;
}
.cart-order-list .cart-variation{

}
tr.simple-item, .simple-item td {
    border-bottom: 0;
}
.simple-item td {
    padding-bottom: 0 !important;
}
.simple-item-detail td{
    padding-top:0 !important;
}
.product-cart-delete i {
    font-size: 1.8em;
    padding: 0;
    margin: 0;
}
.product-cart-delete {
    padding: 0;
    margin: 0;
}
@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition-property: height, visibility;
        transition-duration: .35s;
    }
}
/* SHOP BY BRAND */
.alphabet-filter .filter-btn{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;    
    margin: 2px;
    font-size: 0.875em;
    padding:5px 10px;
    border-radius: var(--radius-sm);
}

.alphabet-filter .btn-letter {
    border: 1px solid #727272;
    background-color: #424758;
    color:#fff;
}
.alphabet-filter .btn-letter-outline{
    background-color: #f7f7f7;
    color:#3d3d3d;    
    border: 1px solid rgba(145 158 171 / 0.24);
}
.brand-item {
    display: block;
    margin-bottom: 20px;
}


/* PRODUCT GRID FILTER */
#cat-filter{
    border: 1px solid var(--border-color-light);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    background: hsla(45, 31%, 90%, 1);
    background: linear-gradient(45deg, hsla(45, 31%, 90%, 1) 0%, hsla(197, 47%, 94%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(45, 31%, 90%, 1) 0%, hsla(197, 47%, 94%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(45, 31%, 90%, 1) 0%, hsla(197, 47%, 94%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#EDE9DD", endColorstr="#E9F3F7", GradientType=1 ); 
}
#cat-filter .label-name {
    font-size: 0.775em !important;
    display: block;
    height:20px;
}
#cat-filter .filter-search input{
    font-size:0.9em;
    height: 40px;
    padding: 8px 10px;
    font-weight: 300;
    line-height: 24px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease-in;
}
#cat-filter .filter-search input:focus{
    box-shadow: none;
}
.custom-dropdown,.filter-search {
    position: relative;
    margin-bottom: 10px;
    font-size:0.9em;
}
.custom-dropdown .dropdown-styled {
    cursor: pointer;
    background-color: #414040;
    padding: 8px 10px;
    color: #fff;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease-in;
    position: relative;
    height: 40px;
    line-height: 24px;
    font-weight: 300;
}

.custom-dropdown .dropdown-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 16px;
    right: 10px;
    transition: transform 0.2s ease-in-out;
}

/* Rotate arrow when dropdown is open */
.custom-dropdown .dropdown-styled.active:after {
    transform: rotate(180deg);
    top: 10px;
}

.custom-dropdown .dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: var(--radius-sm);
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 999;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwIiBoZWlnaHQ9IjEyMCIgdmlld0JveD0iMCAwIDEyMCAxMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfNDQ2NF81NTMzOCkiIGZpbGwtb3BhY2l0eT0iMC4xIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfNDQ2NF81NTMzOCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAgMS44MTgxMmUtMDUpIHJvdGF0ZSgtNDUpIHNjYWxlKDEyMy4yNSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCOEQ5Ii8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwQjhEOSIgc3RvcC1vcGFjaXR5PSIwIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==), url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwIiBoZWlnaHQ9IjEyMCIgdmlld0JveD0iMCAwIDEyMCAxMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfNDQ2NF81NTMzNykiIGZpbGwtb3BhY2l0eT0iMC4xIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfNDQ2NF81NTMzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgwIDEyMCkgcm90YXRlKDEzNSkgc2NhbGUoMTIzLjI1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGRjU2MzAiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkY1NjMwIiBzdG9wLW9wYWNpdHk9IjAiLz4KPC9yYWRpYWxHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K);
    background-size: 50%, 50%;
    background-repeat: no-repeat;
    backdrop-filter: blur(20px);
    background-color: rgba(255 255 255 / 0.9);
    box-shadow: var(--customShadows-dropdown);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    outline: 0px;
    background-position: right top, left bottom;    
}

.custom-dropdown .dropdown-options li {
    display: flex;
    align-items: center;
    color: #1f1f1f;
    cursor: pointer;
    margin:5px;
}

.custom-dropdown .dropdown-options li:hover {
    background: rgba(145 158 171 / 0.16);;
    border-radius: var(--radius-sm);
}

/* Hide checkboxes and radios */
.custom-dropdown .dropdown-options li input {
    display: none;
}

/* Custom checkboxes & radios */
.custom-dropdown .dropdown-options li label {
    cursor: pointer;
    display: inline-block;
    margin-left: 5px;
    font-weight: 300;
    width: 100%;
    padding: 8px 5px;
}

.custom-dropdown .dropdown-options li label:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #cacaca;
    border-radius: 3px;
    margin-right: 10px;
    margin-bottom: 2px;
    vertical-align: middle;
    transition: 0.2s;
}

.custom-dropdown .dropdown-options li input:checked + label:before {
    background: rgba(255, 255, 255, 0.5);
    border-color: #d1cbe0;
    content: "✔";
    text-align: center;
    line-height: 16px;
    font-size: 12px;
}
.btn-adv-search{
    background-color: #414040;
    color:#fff;
    border-radius: var(--radius-sm);
    height: 40px;
}
.btn-adv-search:hover{
    background-color: #111111;
    color:#d8d7e2;
}
.dropdown-shop-sort,.adv-search{
    background: hsla(196, 68%, 28%, 1) !important;
    background: linear-gradient(45deg, hsla(196, 68%, 28%, 1) 0%, hsla(277, 74%, 24%, 1) 100%) !important;
    background: -moz-linear-gradient(45deg, hsla(196, 68%, 28%, 1) 0%, hsla(277, 74%, 24%, 1) 100%) !important;
    background: -webkit-linear-gradient(45deg, hsla(196, 68%, 28%, 1) 0%, hsla(277, 74%, 24%, 1) 100%) !important;
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#175E78", endColorstr="#471069", GradientType=1 ) !important;    
}
.dropdown-shop-sort-list li{
    padding: 12px 5px 12px 10px;
}
#adv-filter-box {
    transition: height 0.5s ease-in-out; /* Adjust timing here */
}
.adv-search{
    border-radius: var(--radius-sm);
}
#cat-fil-pagi-unit {
    min-height: 54px;
}

#adv-filter-selected .selected-item {
    display: inline-block;
    padding: 5px;
    font-weight: 300;
    background-color: rgb(30 70 155) !important; 
}

#adv-filter-selected .selected-item i {
    margin-left: 5px;
    cursor: pointer;
}

/* EXTRAS */
.back-to-top {
    position: fixed;
    bottom: 0;
    right: 0;
    display: inline-block;
    padding: 1em 0.5em;
    margin: 0.75em;
    background: #E8E8E8;
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius-base);
  }
.back-to-top:hover {
    background: #dcdee9;
    border: 1px solid #dee3e7;    
    cursor: pointer;
}
.smokyHover {
    display: inline;
    text-decoration: none;
    -webkit-user-select: none;
    box-sizing: border-box;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: color 1s ease;
    -moz-transition: color 1s ease;
    -ms-transition: color 1s ease;
    -o-transition: color 1s ease;
    transition: color 1s ease;
    position: relative;
    z-index: 2;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    user-select: none;   
}
.smokyHover:before {
    content: "";
    top: 0;
    position: absolute;
    z-index: -1;
    width: 3px;
    height: 100%;
    left: 0
}
.smokyHover:focus,
.smokyHover:hover {
    -webkit-transition: color 1s ease;
    -moz-transition: color 1s ease;
    -ms-transition: color 1s ease;
    -o-transition: color 1s ease;
    outline: 0;
    color: #fdfdfd;
    transition: color 1s ease;
    cursor: pointer
}
.smokyHover:after,
.smokyHover:before {
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s
}
.smokyHover:focus:after,
.smokyHover:focus:before,
.smokyHover:hover:after,
.smokyHover:hover:before {
    outline: 0;
    background-color: #5041a3;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s
}
.smokyHover:focus:before,
.smokyHover:hover:before {width: 100%;height: 100%}
.smokyHover:hover {color: #fdfdfd !important}

.hr-dashed{
    margin: 0px;
    flex-shrink: 0;
    border-width: 0px 0px thin;
    border-color: #c4c4c4;
    border-style: dashed;
}
.btn-glossy{
    -webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);
    mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);
    -webkit-mask-size: 800%;
    mask-size: 800%;
    -webkit-mask-position: 0;
    mask-position: 0;    
}
.btn-glossy:hover{
    transition: mask-position 2s ease,-webkit-mask-position 2s ease;
    -webkit-mask-position: 120%;
    mask-position: 120%;
    opacity: 1;
}
/* PAGINATION */
.pagination .page-link {
    font-size: 0.875em;
    padding: 0.6em 1.15em;
    color: #363636;
    font-weight: 500;
    border-color: transparent;
    background-color: transparent;
    border-radius: var(--bs-pagination-border-radius);
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1), background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pagination .page-item{
    margin-left:2px;
}
.pagination .active .page-link,.pagination .page-link:hover {
    z-index: 3;
    background-color: rgba(145 158 171 / 0.08);
    border-color: var(--border-color-light);
}
div.dataTables_paginate ul.pagination {
    margin: 2px 0;
    white-space: nowrap;
    justify-content: flex-end;
}
/* SINGLE PRODUCT PAGE / QUICK SHOP MODAL */
.product-subtitle{
    font-size:1em;
    font-weight:300;
}
.price-point{
    font-size:1.25em;
}
.tags{
    background-color: #e9eef1;
    color: #000 !important;
}
.product-title{
    font-size:1.5em;
    font-weight:700;
}
.product-info-block{
    font-weight: 400;
    font-size: 0.95em;
}
.variation-list-wrapper{
    background-color: #fff;
    border:1px solid var(--border-color-light);
    border-radius: var(--radius-sm);
}
.variation-list{
    border-radius: var(--radius-sm);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwIiBoZWlnaHQ9IjEyMCIgdmlld0JveD0iMCAwIDEyMCAxMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfNDQ2NF81NTMzOCkiIGZpbGwtb3BhY2l0eT0iMC4xIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfNDQ2NF81NTMzOCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAgMS44MTgxMmUtMDUpIHJvdGF0ZSgtNDUpIHNjYWxlKDEyMy4yNSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCOEQ5Ii8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwQjhEOSIgc3RvcC1vcGFjaXR5PSIwIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==), url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwIiBoZWlnaHQ9IjEyMCIgdmlld0JveD0iMCAwIDEyMCAxMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfNDQ2NF81NTMzNykiIGZpbGwtb3BhY2l0eT0iMC4xIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfNDQ2NF81NTMzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgwIDEyMCkgcm90YXRlKDEzNSkgc2NhbGUoMTIzLjI1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGRjU2MzAiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkY1NjMwIiBzdG9wLW9wYWNpdHk9IjAiLz4KPC9yYWRpYWxHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K);
    background-size: 50%, 50%;
    background-repeat: no-repeat;
    background-position: right top, left bottom;
    backdrop-filter: blur(20px);
    
}
.variation-list .d-flex, .variation-list .heading-names {
    border-bottom: 1px solid var(--border-color-light);
}
.variation-list .d-flex:last-child{
    margin-bottom: 0 !important;
    border-bottom: none !important;
}
.item-price{
    color:#000000;
    width:80px;
    font-weight: 400;
}
.item-name{
    color:#000000;
    font-weight: 400;
}
.heading-item-price{
    width:80px;
    font-weight: 700;
}
.heading-item-name{
    font-weight: 700;
}
.heading-qty{
    width:112px;
    font-weight: 700;
}
.item-oos{
    width: 112px;
    text-align: center;
    color:crimson;
}
.item-guest{
    width: 192px;
    text-align: center;
}
.item-qty {
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    border: solid 1px var(--border-color);
    --border-color: rgba(var(--palette-grey-500Channel) / 0.2);
    --vertical-divider-color: transparent;
    --input-background: rgba(var(--palette-grey-500Channel) / 0.08);
    width: 112px;
}
.item-qty-inc-dec {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
    border-radius: 0px;
    padding: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    color: inherit;
    width: 32px;
    flex-shrink: 0;
}
.item-qty-inc-dec:hover {
    background-color: #fff;
}
.item-qty-input-box {
    font-weight: 500;
    font-size: 1em;
    line-height: 1.4375em;
    color: var(--primary);
    box-sizing: border-box;
    position: relative;
    cursor: text;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
}
button.item-qty-inc-dec:disabled {
    opacity: 0.1;
}
input.item-qty-input:disabled {
    color: #e2ddee;
}
.single-product-btn-action .btn:disabled {
    opacity: 0.5;
    color: #ebebeb;
}
@keyframes mui-auto-fill-cancel{
    0% {
    display: block; 
    }
}
.iconspan {
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 0;
    inset: 0px;
}
.item-qty-input {
    color: currentcolor;
    border: 0px;
    box-sizing: content-box;
    background: none;
    height: 1.4375em;
    margin: 0px;
    -webkit-tap-highlight-color: transparent;
    display: block;
    width: 50px;
    animation-name: mui-auto-fill-cancel;
    animation-duration: 10ms;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.57143;
    min-height: 24px;
    text-align: center;
    padding: calc(0.5* var(--spacing)) calc(0* var(--spacing));
}
.item-qty-input-wrapper {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: var(--input-background);
    border-left: solid 1px var(--divider-vertical-color);
    border-right: solid 1px var(--divider-vertical-color);
}
.item-qty-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-flex;
}
.single-product-btn-action i{
    font-size: 2em;
    vertical-align: middle;
    line-height: 1em;
}
.product-remove-all{
    background: hsla(0, 0%, 29%, 1);
    background: linear-gradient(45deg, hsla(0, 0%, 29%, 1) 0%, hsla(0, 0%, 60%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(0, 0%, 29%, 1) 0%, hsla(0, 0%, 60%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(0, 0%, 29%, 1) 0%, hsla(0, 0%, 60%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#4A4A4A", endColorstr="#9A9A9A", GradientType=1 );
}
.product-add-fav{
    background: hsla(230, 38%, 42%, 1);
    background: linear-gradient(45deg, hsla(230, 38%, 42%, 1) 0%, hsla(241, 32%, 50%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(230, 38%, 42%, 1) 0%, hsla(241, 32%, 50%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(230, 38%, 42%, 1) 0%, hsla(241, 32%, 50%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#435195", endColorstr="#5957A9", GradientType=1 );
}
.product-add-update-btn{
    background: hsla(158, 87%, 38%, 1);
    background: linear-gradient(45deg, hsla(158, 87%, 38%, 1) 0%, hsl(158, 70%, 59%) 100%);
    background: -moz-linear-gradient(45deg, hsla(158, 87%, 38%, 1) 0%, hsla(158, 70%, 59%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(158, 87%, 38%, 1) 0%, hsla(158, 70%, 59%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#0DB577", endColorstr="#A2ECD1", GradientType=1 );
}
.product-remove-all,.product-add-update-btn,.product-add-fav{
    padding:10px;
    font-weight: 400;
    border:none;
    color:#ffffff;
    font-size:0.9em;
}
.product-remove-all:hover,.product-add-update-btn:hover,.product-add-fav:hover{
    border:none !important;   
    color:#fffced
}
.single-product-btn-action:hover i{
    color:#fff;
}
.delivery-info span{
    color:var(--primary);
}
.product-description{
    border:1px solid var(--border-color-light);
}
/* *********** LOGIN MODAL ********************** */
.modal-backdrop.show {
    opacity: 0.8;
}
#moLogin .login-modal-form{
        background: hsla(205, 46%, 30%, 1);
        background: linear-gradient(45deg, hsla(205, 46%, 30%, 1) 0%, hsla(260, 29%, 36%, 1) 100%);
        background: -moz-linear-gradient(45deg, hsla(205, 46%, 30%, 1) 0%, hsla(260, 29%, 36%, 1) 100%);
        background: -webkit-linear-gradient(45deg, hsla(205, 46%, 30%, 1) 0%, hsla(260, 29%, 36%, 1) 100%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#295270", endColorstr="#524175", GradientType=1 );  
        color: #fff;      
}
#moLogin .modal-body{
    padding:0;
}
#moLogin .modal-content{
    border:0 !important;
}
#moLogin .form-floating {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}
#moLogin .modal-header{
    border-bottom: 0;
}
#moLogin .login-icon{
    text-align: center;
    font-size:3em;
    color: #dbd6e6;
}
#moLogin .login-icon .la-user-lock {
    border: 1px solid #ffffff;
}
#moLogin .form-switch label{
    font-size:0.75em;
}
#moLogin .row {
    --bs-gutter-x: 0;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}
#moLogin h5{
    text-align: center;
    font-size: 1em;
    color: #ebebeb;
}
#moLogin .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
}
#moLogin .login-modal-welcome{
    background-color: #ffffff;
}
/* ******** PRODUCT IMAGE SLIDER **************** */
.slick-slider .slick-slide {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border:1px solid var(--border-color-light);
    border-radius: var(--radius-sm);
  }
  .slick-slider .slick-list {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .slick-slider img {
    display: inline-block;
  }
  .slick-slider .slick-next:before,
  .slick-slider .slick-prev:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: none;
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
  }
  .slick-slider .slick-next,
  .slick-slider .slick-prev {
    align-items: center;
    background-color: var(--border-color-light);
    border: 1px solid var(--border-color-light);
    border-radius: 50px;
    color: #bababa;
    cursor: pointer;
    display: block;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 20px;
    font-size: 24px;
    height: 32px;
    justify-content: center;
    left: 97%;
    padding: 0;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
    width: 32px;
  }
  .slick-slider .slick-next:hover,
  .slick-slider .slick-prev:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }
  @media (max-width: 1024px) {
    .slick-slider .slick-next,
    .slick-slider .slick-prev {
      left: 94%;
    }
  }
  @media (max-width: 390px) {
    .slick-slider .slick-next,
    .slick-slider .slick-prev {
      left: 87%;
      top: 100% !important;
    }
  }
  .slick-slider .slick-prev:hover {
    background: var(--primary);
    color: #fff;
    outline: none;
  }
  .slick-slider .slick-prev:focus {
    display: none;
  }
  .slick-slider .slick-next {
    margin-top: -38px;
  }
  .slick-slider .slick-next:hover {
    background: var(--primary);
    color: #fff;
    outline: none;
  }
  .slick-slider .slick-next:focus {
    display: none;
  }
  .slick-slider .slick-prev {
    margin-left: -40px;
    margin-top: -38px;
  }

  .slider-arrow {
    display: flex;
    justify-content: flex-end;
    max-width: 200px;
    position: relative;
    top: unset;
    transform: unset;
  }
  .slider-arrow .slick-prev {
    margin-right: 0.25rem;
  }
  .slider-arrow .slick-next {
    margin-left: 0.25rem;
  }
  .slider-arrow .slick-next,
  .slider-arrow .slick-prev {
    align-items: center;
    background-color: var(--border-color-light);
    border: 1px solid var(--border-color-light);
    border-radius: 50px;
    color: #bababa;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 1.25rem;
    height: 32px;
    justify-content: center;
    left: 0;
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    transition: 0.3s ease-in-out;
    width: 32px;
  }
  .slider-arrow .slick-next:hover,
  .slider-arrow .slick-prev:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }
  .slider-arrow .slick-next:before,
  .slider-arrow .slick-prev:before {
    display: none !important;
  }
  .slider-nav .slick-prev {
    left: 25px;
    top: 75%;
    z-index: 1;
  }
  .slider-nav .slick-next {
    left: auto;
    right: -15px;
    top: 75%;
  }
  .slider-nav .slick-slide.slick-current img {
    border: 2px solid var(--primary);
  }
  .img-zoom {
    border-radius: 0.5rem;
    overflow: hidden;
  }
  .img-zoom img {
    transition: transform 0.5s ease;
  }
  .img-zoom img:hover {
    transform: scale(1.1);
  }
  div.zoom {
    background-position: 50% 50%;
    cursor: zoom-in;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: var(--radius-sm);
  }
  div.zoom img:hover {
    opacity: 0;
  }
  div.zoom img {
    display: block;
    transition: opacity 0.5s;
    width: 100%;
  }

/* FOOTER */
#foot-brands .row{
    border:1px solid var(--border-color-light);
    border-radius: var(--radius-sm);
}
#foot-brands .row .col-md-2:not(:last-child){
    border-right: 1px solid var(--border-color-light);
}
#footer{
    border-top: 1px solid #ececec;
}
#footer .whatsApp-icon{
    width:30px;
    height:30px;
    margin-right: 5px;
}
#footer .whatsapp-join-box{
    line-height: 0.9em;
}
#footer .whatsapp-join-box small{
    font-size: 0.785em;
}
#footer a:hover{
    color:#7b68ee
}
#footer ul li a,#footer ul li span{
    display: block !important;
    padding:2px 15px 2px 0;
    border-radius: var(--radius-sm);
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s    
}
#footer ul li span:hover{
    padding-left:10px;
}
#footer .f-intro{
    font-size: 1em;
    line-height: 1.2em;
    padding-right: 20px;
    font-weight: 500;
}
#footer .disclaimer{
    font-size: 0.9em;
    font-weight: 300;
    line-height: 1.2em;
    border-top: 1px solid var(--border-color-light);
    border-bottom: 1px solid var(--border-color-light);
}
#footer h6 {
    font-size: 1em;
    background-color: #e2e4ed;
    margin-right: 15px;
    padding: 10px 0 10px 10px;
    border-radius: var(--radius-sm);
}

/* PAGES */
.dashboard-menu {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwIiBoZWlnaHQ9IjEyMCIgdmlld0JveD0iMCAwIDEyMCAxMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfNDQ2NF81NTMzOCkiIGZpbGwtb3BhY2l0eT0iMC4xIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfNDQ2NF81NTMzOCIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAgMS44MTgxMmUtMDUpIHJvdGF0ZSgtNDUpIHNjYWxlKDEyMy4yNSkiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMDBCOEQ5Ii8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwQjhEOSIgc3RvcC1vcGFjaXR5PSIwIi8+CjwvcmFkaWFsR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==), url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwIiBoZWlnaHQ9IjEyMCIgdmlld0JveD0iMCAwIDEyMCAxMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfNDQ2NF81NTMzNykiIGZpbGwtb3BhY2l0eT0iMC4xIi8+CjxkZWZzPgo8cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfNDQ2NF81NTMzNyIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgwIDEyMCkgcm90YXRlKDEzNSkgc2NhbGUoMTIzLjI1KSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGRjU2MzAiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkY1NjMwIiBzdG9wLW9wYWNpdHk9IjAiLz4KPC9yYWRpYWxHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K);
    background-size: 50%, 50%;
    background-repeat: no-repeat;
    background-position: right top, left bottom;
    backdrop-filter: blur(20px);
    background-color: rgba(255 255 255 / 0.7);
    padding: calc(5 * var(--spacing)) calc(1 * var(--spacing)) calc(1 * var(--spacing)) calc(4 * var(--spacing));
    list-style: none;
    text-align: left;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    padding: 15px;
    border-radius: var(--radius-sm);
    border:1px solid var(--border-color-light)
}
.dashboard-menu li a {
    display: block;
}
.dashboard-menu .nav-item{
    color: #2b2b2b;
    padding: 10px 0;
    line-height: 20px;
    margin-bottom: 5px;
    text-decoration: none;
}
.dashboard-content{
    padding: 15px;
    border-radius: var(--radius-sm);
    border:1px solid var(--border-color-light);
    min-height:100%;
}
.dashboard-menu .current-page {
    background-color: #3d306c !important;
    border: 1px solid transparent !important;
    color: #fff !important;
    padding-left: 10px !important;
    border-radius: var(--radius-sm);
}
.dash-default-address{
    background: hsla(159, 45%, 91%, 1);
    background: linear-gradient(45deg, hsla(159, 45%, 91%, 1) 0%, hsla(0, 0%, 100%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(159, 45%, 91%, 1) 0%, hsla(0, 0%, 100%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(159, 45%, 91%, 1) 0%, hsla(0, 0%, 100%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#DFF3EC", endColorstr="#FFFFFF", GradientType=1 );
    border:1px solid #dee7e4;
}
.single-dash-details{
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px dotted var(--border-color-light);
}
.dash-orderList-head{
    font-weight: 600;
    border-bottom: 1px dotted var(--border-color-light);
}
.dash-orderList-item{
    border-bottom: 1px dotted var(--border-color-light);
    font-size:0.875em;
}
.dash-table th, .dash-table tr, .dash-table td{
    border-style: dotted;
}
.dash-table>:not(caption)>*>* {
    padding: 1rem .5rem;
}
.alert-dash {
    background-color: #e8f6f9;
    color: #00b8d9;
}
.alert-dash a{
    color: #007e94;
}
.dash-box-main{
    overflow: hidden;
    padding: 10px;
    border-radius: var(--radius-sm);
    z-index:0;
}
.dash-box-single {
    min-height: 150px;
    z-index: 3;
    position: relative;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;    
}
.dash-box-single .title{
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
}
.dash-box-single .icon i{
    font-size:2em;
    margin-left: 5x;
}
.dash-box-single .info{
    position: absolute;
    bottom: 2px;
    left: 5px;
    font-size:0.85rem
}
.dash-box-single .info .count{
    font-weight: 600;
}
.blurry-text{
    letter-spacing: -1px;
    text-shadow: 0 0 10px #000000;
    color: transparent;
}
.dash-box-color-a {
    color: #6d4bca;
    background-image: linear-gradient(135deg, rgba(239 214 255 / 0.48), rgba(198 132 255 / 0.48));
}
.dash-box-color-b {
    color: #004B50;
    background-image: linear-gradient(135deg, rgba(200 250 214 / 0.48), rgba(91 228 155 / 0.48));
}
.dash-box-color-c {
    color: #7A4100;
    background-image: linear-gradient(135deg, rgba(255 245 204 / 0.48), rgba(255 214 102 / 0.48));
}
.dash-box-color-d {
    color: #7A0916;
    background-image: linear-gradient(135deg, rgba(255 233 213 / 0.48), rgba(255 172 130 / 0.48));
}

.dash-mask {
    position: absolute;
    top: 0;
    left: -20px; 
    width: 240px;
    height: 240px;
    background-color: currentColor; /* will inherit from parent */
    z-index: 1;
    opacity: 0.24;
    -webkit-mask: url('../images/my-account-dash-box-bg.svg') center center / contain no-repeat;
    mask: url('../images/my-account-dash-box-bg.svg') center center / contain no-repeat;
    color: #8E33FF; 
}


/* `sm` applies to x-small devices (portrait phones, less than 576px) ******************* */
@media (max-width: 575.98px) {
    #slider img{
        width:50%;
        margin-bottom: 15px;
    }
    #slider .swiper-pagination{
        display:none;
    }
    #slider .slider-wrapper{
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    #slider .mt-4{
        margin-top:8px !important;
    }
    .single-product-btn-action i{
        display: block;
    }
    .single-product-btn-action {
        justify-content: space-between !important;
    }   
    .single-product-btn-action .btn {
        width: 32%;
    }     

    /* .variation-list   */
    .variation-list .flex-single-item {
        flex-direction: column !important;
    }
    .variation-list .item-name {
        width: 100%;
        text-align: left;
    }
    .price-quantity-wrapper {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding-top: 5px;
    }
    .variation-list .item-price,
    .variation-list .item-qty {
        flex: 1;
        text-align: left;
    }
    #home-smoky-catch p {
        font-size: 1em;
    }

}