.slick-next:before,
.slick-prev:before {
  color: var(--slider-arrow-background);
  /* font-size: 1.3rem; */
  font-size: 2.5rem;
  line-height: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 4px; */
}
/* side cart */
#cd-cart .cd-cart-items li .fullcartHeader .cartProductImage .fullcartHeading {
  padding-left: 5px !important;
}
/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 100px;
}

.is-visible {
  overflow: hidden;
}

.topOfferWrapper .topOfferSliderImage img {
  /* border-radius: 50%; */
  border-radius: 5px;
}

.slick-track {
  display: flex;
}
.footer-widget,
.footer-contact-us {
  text-align: left;
}

@media screen and (max-width: 600px) {
  .locationbar {
    width: 85% !important;
  }
  .container.breadCrumb.row.d-flex.justify-content-start.align-items-center.pt-4.pb-2 {
    /* padding: 0px 15px; */
  }
  .homeProduct {
    padding: 5px !important;
  }
  .slick-next:before,
  .slick-prev:before {
    font-size: 1.2rem;
  }
}

.cd-cart-trigger .cart-counter {
  font-weight: 800;
  font-size: 12px;
}

#cd-cart .cd-cart-items li .productCounter div {
  width: 25px !important;
  height: 25px !important;
  border-radius: 5px !important;
}
#cd-cart .cd-cart-items li .productCounter i {
  width: 25px !important;
  height: 25px !important;
  border-radius: 5px !important;
  font-size: 12px;
}
#cd-cart .productAddCartCounter {
  height: 100%;
}
.manuallocation {
  width: 100% !important;
}

.productWrapper .productWrapper {
  width: 100%;
  margin: 0px auto;
  padding: 0px;
}

header {
  position: sticky;
  z-index: 111;
  top: 0;
}
#cd-cart .shopCartClose {
  position: absolute;
  top: 2vw;
  cursor: pointer;
  z-index: 11111;
  right: 0;
}

/* KEYFRAMES */

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}

@keyframes spin3D {
  from {
    transform: rotate3d(0.5, 0.5, 0.5, 360deg);
  }
  to {
    transform: rotate3d(0deg);
  }
}

@keyframes configure-clockwise {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes configure-xclockwise {
  0% {
    transform: rotate(45deg);
  }
  25% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(-135deg);
  }
  75% {
    transform: rotate(-225deg);
  }
  100% {
    transform: rotate(-315deg);
  }
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}

/* GRID STYLING */

.spinner-box {
  width: auto;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  overflow: hidden;
}

/* SPINNING CIRCLE */

.leo-border-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(63, 249, 220);
  background: linear-gradient(
    0deg,
    rgba(63, 249, 220, 0.1) 33%,
    rgba(63, 249, 220, 1) 100%
  );
  animation: spin3D 1.8s linear 0s infinite;
}

.leo-core-1 {
  width: 100%;
  height: 100%;
  background-color: #37474faa;
  border-radius: 50%;
}

.leo-border-2 {
  position: absolute;
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(251, 91, 83);
  background: linear-gradient(
    0deg,
    rgba(251, 91, 83, 0.1) 33%,
    rgba(251, 91, 83, 1) 100%
  );
  animation: spin3D 2.2s linear 0s infinite;
}

.leo-core-2 {
  width: 100%;
  height: 100%;
  background-color: #1d2630aa;
  border-radius: 50%;
}

/* ALTERNATING ORBITS */

.circle-border {
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(63, 249, 220);
  background: linear-gradient(
    0deg,
    rgba(63, 249, 220, 0.1) 33%,
    rgba(63, 249, 220, 1) 100%
  );
  animation: spin 0.8s linear 0s infinite;
}

.circle-core {
  width: 100%;
  height: 100%;
  background-color: #1d2630;
  border-radius: 50%;
}

/* X-ROTATING BOXES */

.configure-border-1 {
  width: 115px;
  height: 115px;
  padding: 3px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fb5b53;
  animation: configure-clockwise 3s ease-in-out 0s infinite alternate;
}

.configure-border-2 {
  width: 115px;
  height: 115px;
  padding: 3px;
  left: -115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(63, 249, 220);
  transform: rotate(45deg);
  animation: configure-xclockwise 3s ease-in-out 0s infinite alternate;
}

.configure-core {
  width: 100%;
  height: 100%;
  background-color: #1d2630;
}

/* PULSE BUBBLES */

.pulse-container {
  width: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pulse-bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #3ff9dc;
}

.pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}
.pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}
.pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}

/* SOLAR SYSTEM */

.solar-system {
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fafbfc;
  border-radius: 50%;
}

.earth-orbit {
  width: 165px;
  height: 165px;
  -webkit-animation: spin 12s linear 0s infinite;
}

.venus-orbit {
  width: 120px;
  height: 120px;
  -webkit-animation: spin 7.4s linear 0s infinite;
}

.mercury-orbit {
  width: 90px;
  height: 90px;
  -webkit-animation: spin 3s linear 0s infinite;
}

.planet {
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #3ff9dc;
}

.sun {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #ffab91;
}

.leo {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.blue-orbit {
  width: 165px;
  height: 165px;
  border: 1px solid #91daffa5;
  -webkit-animation: spin3D 3s linear 0.2s infinite;
}

.green-orbit {
  width: 120px;
  height: 120px;
  border: 1px solid #91ffbfa5;
  -webkit-animation: spin3D 2s linear 0s infinite;
}

.red-orbit {
  width: 90px;
  height: 90px;
  border: 1px solid #ffca91a5;
  -webkit-animation: spin3D 1s linear 0s infinite;
}

.white-orbit {
  width: 60px;
  height: 60px;
  border: 2px solid #ffffff;
  -webkit-animation: spin3D 10s linear 0s infinite;
}

.w1 {
  transform: rotate3D(1, 1, 1, 90deg);
}

.w2 {
  transform: rotate3D(1, 2, 0.5, 90deg);
}

.w3 {
  transform: rotate3D(0.5, 1, 2, 90deg);
}

.three-quarter-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #378fc0;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 0.5s linear 0s infinite;
}
.infinite-scroll-component {
  overflow: hidden !important;
}

.homeProduct .miniModel .quickView {
  position: absolute;
  bottom: 0;
  background-color: rgb(var(--primary-colorRGB) / 65%);
  opacity: 0;
}

.homeProduct .miniModel .quickView h1 {
  font-size: 0.855rem !important;
  margin: 0;
  padding: 12px 10px;
  color: var(--secondary-color);
}

.mainWrapper .productCard_leftSide {
  min-height: 500px;
}
.mainWrapper .productCard_rightSide {
  margin-top: 30px;
  /* min-height: 500px; */
}
.sliderBlock {
  margin-top: 30px !important;
}

.mainWrapper .productCard_block {
  min-height: 530px;
}
.mainWrapper .productCard_block .model_close {
  position: relative;
  margin-top: 1rem;
}
.mainWrapper .productCard_block .model_close i {
  position: absolute;
  cursor: pointer;
  top: 3%;
  left: 97%;
}

.mainWrapper {
  z-index: 1111;
}

.validateMobileRequest .otpContainer {
  display: flex;
  flex-direction: row;
  margin: 1.7rem 0 1rem;
  position: relative;
}

/* back to top button */
.backToTop {
  display: block;
  align-items: center;
  background-color: rgba(var(--primary-colorRGB), 0.76);
  padding: 5px 20px;
  color: #fff;
  outline: none;
  border: none;
  /* width: 50px; */
  /* height: 50px; */
  text-align: center;
  border-radius: 4px;
  position: fixed;
  top: 45px;
  left: 50%;
  transform: translate(-50%);
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  /* opacity: 0;
    visibility: hidden; */
  z-index: 1000;
}
.backToTop::before {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;

  /* line-height: 50px; */
  color: #fff;
  margin-right: 7px;
}
.backToTop:hover {
  cursor: pointer;
  background-color: #333;
}
.backToTop:active {
  background-color: #555;
}
.backToTop.show {
  opacity: 1;
  visibility: visible;
}

/* Styles for the content section */

.content {
  width: 77%;
  margin: 50px auto;
  font-family: "Merriweather", serif;
  font-size: 1.25rem;
  color: #6c767a;
  line-height: 1.9;
}
@media (min-width: 500px) {
  .backToTop {
    margin: 30px;
  }
}

@media screen and (max-width: 900px) {
  .headerNavbar.navbar {
    height: 65px;
    padding: 0 1.2rem !important;
  }

  .mobileNavBar.nav--icons ul li a i {
    color: #000 !important;
    font-size: 1.5rem;
  }

  .quickView {
    display: none;
  }
}

#cd-cart .emptyCart img {
  /* max-height: 100%; */
  width: 100%;
  padding: 3rem;
  opacity: 1;
}

.cardlist .mainHeader {
  z-index: 111;
}

/* MENU CONTAINERS*/
.megamenu li .dropdown_container .megaMenuNavLinkHeading {
  list-style: none;
}
.megamenu li .dropdown_container .megaMenuNavLinkHeading h2:first-child {
  list-style: none;
  margin: 0 0 0.4rem;
}
.megamenu li .dropdown_container .megaMenuNavLinkHeading h2 {
  list-style: none;
  margin: 1rem 0 !important;
}
.megamenu li .dropdown_container,
.megamenu li .dropdown_fullwidth,
.megamenu li .dropdown_multilevel {
  position: absolute;
  margin: 0;
  padding-top: 24px;
  padding-bottom: 10px;
  left: -9999em;
  top: -9999em;
  display: block;
  zoom: 1;
  z-index: 9998;
  float: left;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  box-shadow: 2px 2px 2px 2px hsla(207, 45%, 15%, 1);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.megamenu li .dropdown_first {
  margin-left: -1px;
}
.megamenu li .droplast_right {
  margin-right: -1px;
}
.megamenu .categoriesMegaAll {
  display: flex;
  flex-direction: row;
}
.megamenu li {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all 0.6s ease;
  padding: 15px 7px;
  list-style: none;
  cursor: pointer;
}
/* Showing Drop Down on Mouse Hover */

.megamenu li:hover .dropdown_container {
  top: 45px;
  /* left: 15px; */
  /* left:auto; */
}

.megamenu .dropdown_8columns {
  width: 66.6667%;
  padding-left: 0.666%;
  padding-right: 0.666%;
}

/* General Typography */

.megamenu p,
.megamenu h1,
.megamenu h2,
.megamenu h3,
.megamenu h4,
.megamenu h5,
.megamenu h6 {
  padding: 0;
  margin: 0 0 20px;
}
.megamenu > li > div a {
  text-decoration: none;
  outline: none;
}
.megamenu > li > div a:hover {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -ms-transition: color 0.3s;
  transition: color 0.3s;
}
.megamenu p {
  font-size: 12px;
  line-height: 21px;
}
.megamenu h1,
.megamenu h2,
.megamenu h3,
.megamenu h4,
.megamenu h5,
.megamenu h6 {
  font-weight: bold;
  margin: 0 0 20px 0;
}
.megamenu h1 {
  font-size: 1.3rem;
  line-height: 28px;
}
.megamenu h2 {
  font-size: 20px;
  line-height: 22px;
}
.megamenu h3 {
  font-size: 16px;
  line-height: 20px;
}
.megamenu h4 {
  font-size: 1rem;
  line-height: 18px;
  margin-bottom: 14px;
}
.megamenu h5 {
  font-size: 1rem;
  line-height: 18px;
  margin-bottom: 14px;
}
.megamenu h6 {
  font-size: 10px;
  line-height: 16px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
/*Lists */

.megamenu li ul,
.megamenu li ol {
  padding: 0;
  margin: 0 0 18px 20px;
}
.megamenu li ul {
  list-style: disc;
  column-fill: auto;
  column-count: 6;
  height: 100%;
  padding: 0.5rem 1rem;
  width: 100%;
  overflow-x: auto;
}
.megamenu li ol {
  list-style: decimal;
  *margin-left: 22px;
}
.megamenu li ul li,
.megamenu li ol li {
  font-size: 13.5px;
  line-height: 21px;
  position: relative;
  padding: 0;
  margin: 0;
  float: none;
  text-align: left;
}
.megamenu_container .megamenu > li > div > .responsive_halfs {
  height: 99%;
}
.megamenu_light .megamenu li .dropdown_container::-webkit-scrollbar,
.megamenu_light .megamenu li .dropdown_fullwidth::-webkit-scrollbar,
.megamenu_light .megamenu li .dropdown_flyout li ul::-webkit-scrollbar {
  cursor: pointer;
}
.megamenu li ul::-webkit-scrollbar {
  height: 13px;
  cursor: pointer;
}
.megamenu li ul::-webkit-scrollbar-thumb {
  cursor: pointer;
}
.megamenu li ul::-webkit-scrollbar-thumb:horizontal {
  /* background: var(--primary-color); */
  border-radius: 5px;
  cursor: pointer;
}
.megamenu li .list_unstyled {
  list-style: none;
  margin-left: 0;
}
/* Custom Paragraphs */

/* .megamenu .blue, 
  .megamenu .grey, 
  .megamenu .orange, 
  .megamenu .dark, 
  .megamenu .purple {
  padding:0 0 0 15px; 
  margin-bottom:18px;
  border-left: solid 5px;
  }
  .megamenu .blue {border-left-color:#929292;}
  .megamenu .grey {border-left-color:#ECE7BA;}
  .megamenu .orange {border-left-color:#BD4F33;}
  .megamenu .dark {border-left-color:#3F3F3F;}
  .megamenu .purple {border-left-color:#382E34;} */

/* 
  THEMES > DARK & LIGHT
  
  /* 1. Dark Menu Bar */

.megamenu_dark_bar {
  /* background: hsla(207, 45%, 15%, 1);  */
  background: var(--primary-color);
  transition: all 0.2s ease;
}

.megamenu_dark_bar .megamenu {
  color: #0d2c54;
  font-weight: 500;
  padding: 0 0 0 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0px;
  height: 100%;
  max-height: 90px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}
.megamenu_dark_bar .megamenu li {
  height: 100%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}
.megamenu_dark_bar .megamenu li a {
  display: flex;
  align-items: center;
}
.megamenu_dark_bar .megamenu li a i {
  color: var(--secondary-color);
  transition: all 0.6s ease;
}
.megamenu_dark_bar .megamenu > li:hover,
.megamenu_dark_bar .megamenu > li.active {
  background: var(--white);
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.megamenu_dark_bar .megamenu > li:hover i {
  color: var(--primary-color);
  transition: 0.2s ease-in-out;
}
.megamenu_dark_bar .megamenu li.noactive {
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  transition: 0.2s ease-in-out;
}
.megamenu_dark_bar .megamenu > li > a {
  color: var(--secondary-color);
  font-weight: 500;
  transition: 0.2s ease-in-out;
}
.megamenu_dark_bar .megamenu > li:hover > a {
  color: var(--primary-color);
  transition: 0.2s ease-in-out;
}
.megamenu_dark_bar .megamenu > li > a > i {
  margin-top: 2px;
  transition: 0.2s ease-in-out;
}

@media screen and (max-width: 3200px) {
  .megamenu_dark_bar .megamenu {
    height: 55px;
  }
}
/* Light Drop Down */

.megamenu_light .megamenu li .dropdown_container,
.megamenu_light .megamenu li .dropdown_fullwidth,
.megamenu_light .megamenu li .dropdown_flyout li ul {
  border: 1px solid hsla(215, 55%, 95%, 0.5);
  border-top-width: 0;
  background: hsla(41, 35%, 95%, 1);
  background: var(--white);
  color: #212121;
  height: 45vh;
  width: 98vw;
  top: 124px;
  transition: 0.2s ease-in-out;
}
.megamenu_light .megamenu li .dropdown_flyout li ul {
  border: 1px solid #cccccc;
}

.megamenu_light .megamenu li .dropdown_flyout .dropdown_parent:hover,
.megamenu_light .megamenu li .dropdown_flyout .dropdown_parent.active {
  background-color: #eeeeee;
  transition: 0.2s ease-in-out;
}
.megamenu_light .megamenu li .dropdown_flyout .dropdown_parent.noactive {
  background-color: transparent;
}
.megamenu_light .megamenu p,
.megamenu_light .megamenu h1,
.megamenu_light .megamenu h2,
.megamenu_light .megamenu h3,
.megamenu_light .megamenu h4,
.megamenu_light .megamenu h5,
.megamenu_light .megamenu h6 {
  color: #212121;
  text-shadow: 1px 1px 1px #ffffff;
}
.megamenu_light .megamenu > li > div a,
.megamenu_light .megamenu li ul li,
.megamenu_light .megamenu li ol li {
  color: var(--text-color);
  font-size: 13.5px;
  transition: 0.1s ease-in-out;
}
.megamenu_light .megamenu > li > div a:hover {
  color: var(--heading-color);
  font-size: 14.3px;
  transition: 0.1s ease-in-out;
}
.megamenu_light .megamenu li ul li:hover,
.megamenu_light .megamenu li ol li:hover,
.megamenu_light .megamenu .blue,
.megamenu_light .megamenu .grey,
.megamenu_light .megamenu .orange,
.megamenu_light .megamenu .dark,
.megamenu_light .megamenu .purple {
  color: #444444;
}
.megamenu_light .megamenu .black_box {
  background: #212121;
  color: #ffffff;
  text-shadow: 1px 1px 1px #000000;
}
.megamenu_light .megamenu .grey_bg {
  background: #eeeeee;
}
.megamenu_light .megamenu .form_element {
  -webkit-box-shadow: 0 1px 1px #efefef;
  -moz-box-shadow: 0 1px 1px #efefef;
  box-shadow: 0 1px 1px #efefef;
}
.megamenu_light .megamenu > li.megamenu_searchform:hover {
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.megamenu_light .megamenu hr {
  border: none;
  border-bottom: 1px solid #ffffff;
  border-top: 1px solid #e4e4e4;
}

a.megamenu_drop {
  margin: 0 2px;
}

@media only screen and (max-width: 1024px) {
  nav .wrapper {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .termsPage {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }
}

.termsPage p {
  text-align: justify;
  word-break: break-word;
}
.termsPage ol {
  padding-left: 5px;
}
.termsPage li {
  text-align: justify;
  word-break: break-word;
}

.returnAndRefundPage p {
  text-align: justify;
}


.form-select {
  max-width: 100%;
}


/* new alert card added for reorder page functionality */

.react-confirm-alert-overlay {
  background: rgba(0, 0, 0, 0.4) !important;
  z-index: 9999999 !important;
  box-sizing: border-box !important;
  grid-template-columns: minmax(0, 100%) !important;
  height: 100%;
  max-width: 100% !important;
  padding: 0 0 1.25em !important;
  border: none !important;
  border-radius: 5px !important;

  color: #545454 !important;
  font-family: inherit !important;
  font-size: 1rem !important;
}

.react-confirm-alert-body {
  z-index: 1;
  justify-content: center;
  margin: 1em 1.6em 0.3em;
  padding: 0;
  overflow: auto !important;
  color: inherit;
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
}
.react-confirm-alert-button-group {
  justify-content: center !important;
}
.react-confirm-alert-button-group button {
  font-size: 1em !important;
}

@media screen and (max-width: 650px) {
  .react-confirm-alert-body {
    width: 30em !important;
    max-width: 100% !important;
    font-size: 12px !important;
  }
}
