html {
  scroll-behavior: smooth;
  scroll-padding: 12rem;
}
body {
  min-width: 360px;
}
/* body::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../imgs/christmas_bg.png");
    background-size:contain;
    background-position: center;
    opacity: 0.4;
    pointer-events: none; 
    background-repeat:repeat;
} */

@keyframes glow {
  0% {
    box-shadow: 0 0 10px 5px rgba(129, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(129, 0, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 10px 5px rgba(129, 0, 0, 0.5);
  }
}

.glowing-border {
  animation: glow 8s infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

.animated-border {
  position: relative;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
}

.animated-border::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #d90924;
  background-repeat: no-repeat;
  background-size:
    50% 50%,
    50% 50%;
  background-position:
    0 0,
    100% 0,
    100% 100%,
    0 100%;
  background-image:
    linear-gradient(#d90924, #d90924), linear-gradient(#eb7107, #f5c400),
    linear-gradient(#d90924, #d90924), linear-gradient(#eb7107, #f5c400);
  animation: rotate 4s linear infinite;
}

.animated-border::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6px;
  top: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: white;
  border-radius: 5px;
}

*/ * {
  scrollbar-width: 2px;
  scrollbar-color: #cccccc #ffffff;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}
*::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 100vw;
}
*::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 100vw;
}
*::-webkit-scrollbar-thumb:hover {
  background: #999999;
}
#promoBar {
  position: relative;
  width: 100%;
  /* background-image: url("../imgs/holi_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  /* background-color: #810000; */
  background-color: rgb(226, 232, 240);
}
/* .customBg {
  position: relative;
  width: 100%;
  background-image: url("../imgs/holi_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */
/* #promoBar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../imgs/diwali_bg_o.png");
  background-size: contain;
  background-position: center;
  opacity: 0.4;
  pointer-events: none;
  background-repeat: repeat;
} */

@keyframes countdownWidth {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
#loading-progress {
  width: 100%;
  animation: countdownWidth 3s linear forwards;
}
.containerHeading span::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background: #810000;
  position: absolute;
  bottom: 0.5px;
  right: 0;
}
.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  font-size: inherit;
  font-family: inherit;
  width: 12rem;
  height: auto;
}
.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: #810000;
  border-radius: 1.625rem;
}
.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.425rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #810000;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.learn-more:hover .circle {
  width: 100%;
}
.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.learn-more:hover .button-text {
  color: #fff;
}
.heroSwiper .swiper-slide,
.productMain .swiper-slide {
  width: 100% !important;
}
.topDealsSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}
.heroSwiper .swiper-slide img {
  width: 100%;
  object-fit: cover;
}
#sliderSection .swiper-button-next,
#sliderSection .swiper-button-prev,
#topDealsContainer .swiper-button-next,
#topDealsContainer .swiper-button-prev {
  font-weight: 800;
  width: 30px;
  height: 40px;
  border-radius: 12px;
  position: unset;
}
#sliderSection .swiper-button-next:hover,
#sliderSection .swiper-button-prev:hover,
#topDealsContainer .swiper-button-next:hover,
#topDealsContainer .swiper-button-prev:hover {
  background-color: #810000;
  color: #fff;
}
.swiper-button-next,
.swiper-button-prev {
  color: #810000;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}
.swiper-pagination-bullet-active {
  background: #810000;
}
.customEase {
  transition-timing-function: cubic-bezier(0, 0, 0.5, 1);
}
.productMain {
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
}
.buttonFooter {
  position: fixed;
  bottom: 65px;
  left: 0;
  width: 100%;
  box-shadow: #79797933 0 -4px 12px;
  z-index: 29;
}
.cartTotalsContainer {
  box-shadow: #79797933 0 -4px 12px;
}
#productContent table tr td {
  padding: 5px 10px;
}
#productContent tr:has(td[colspan]) {
  font-weight: bold;
  font-size: 16px;
}
#productContent td[colspan] {
  padding-top: 20px;
  padding-left: 5px !important;
}
#productContent table tr td:first-child {
  white-space: nowrap;
}
@media only screen and (max-width: 600px) {
  #productContent table tr td:first-child {
    white-space: wrap;
    padding-right: 30px;
  }
}
#productContent table tr td:nth-child(2) {
  border: 1px solid #ddd;
  font-size: 14px;
}
#productContent tr td:first-child:not([colspan]):not(:empty) {
  background-color: #6b7280;
  color: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
}
.productBadge {
  font-size: 10px;
  letter-spacing: 1px;
  position: absolute;
  top: 20px;
  z-index: 10;
  text-align: center;
  padding: 8px 12px 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}
.productBadge::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: -1px;
  top: auto;
  bottom: -10px;
  background: #d5d5d5;
  transform: rotate(180deg);
  clip-path: polygon(0 0, 0 100%, 150% 150%, 0 0);
}
[type="text"]:focus,
input:where(:not([type])):focus,
[type="email"]:focus,
[type="url"]:focus,
[type="password"]:focus,
[type="number"]:focus,
[type="date"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="time"]:focus,
[type="week"]:focus,
[multiple]:focus,
textarea:focus,
select:focus {
  border-color: #810000 !important;
  outline: none;
}
.autoFitCols {
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
}
.customGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-flow: dense;
  overflow: hidden;
  place-items: center;
}
.customGridItem {
  grid-column: auto / span 5;
  max-width: 325px;
  margin-bottom: 20px;
}
@media (min-width: 625px) {
  .customGrid {
    grid-template-columns: repeat(6, 1fr);
  }
  .customGridItem {
    grid-column: auto / span 3;
  }
}
@media (min-width: 768px) {
  .customGrid {
    grid-template-columns: repeat(6, 1fr);
  }
  .customGridItem {
    grid-column: auto / span 6;
  }
}
@media (min-width: 1024px) {
  .customGrid {
    grid-template-columns: repeat(10, 1fr);
  }
  .customGridItem {
    grid-column: auto / span 5;
  }
}
@media (min-width: 1250px) {
  .customGrid {
    grid-template-columns: repeat(15, 1fr);
  }
}
@media (min-width: 1500px) {
  .customGrid {
    grid-template-columns: repeat(20, 1fr);
  }
}

#knowMoreContent h1,
#knowMoreContent h2,
#knowMoreContent h3 {
  font-weight: 500;
  font-size: 1.25rem;
}
.toastify {
  border-radius: 15px !important;
  padding-left: 50px !important;
  background-position: 15px center;
  background-repeat: no-repeat;
  box-shadow:
    0 3px 6px -1px rgba(0, 0, 0, 0.12),
    0 10px 36px -4px rgba(0, 0, 0, 0.5);
}

.toast-close {
  padding-left: 10px !important;
}
.successToast {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important;
  background-color: #51a351;
}
.errorToast {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important;
  background-color: #bd362f;
}
.infoToast {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important;
  background-color: #f89406;
}

.cartBtn {
  display: inline-flex;
  height: 40px;
  width: 150px;
  border: 2px solid #bfc0c0;
  margin: 20px 20px 20px 20px;
  color: #bfc0c0;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8em;
  letter-spacing: 1.5px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#cartBtnCustom {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#cartBtnCustom a {
  position: relative;
  left: 0;
  transition: all 0.35s ease-Out;
}

#dub-arrow {
  width: 100%;
  height: 100%;
  background: #bfc0c0;
  left: -200px;
  position: absolute;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease-Out;
  bottom: 0;
  color: black;
}

#cartBtnCustom img {
  width: 20px;
  height: auto;
}

#cartBtnCustom:hover #dub-arrow {
  left: 0;
}

#cartBtnCustom:hover a {
  left: 150px;
}
#gloablSearchModal,
#userModal {
  align-items: start !important;
  background-color: rgba(0, 0, 0, 0.1); /* Customize the backdrop color */
}

/* .customContainer{
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #BFC0C0;
    flex-wrap: wrap;
}

.customCard{
    background-color: #fff;
    width: 300px;
    padding: 15px;

}
.imageContainer{
    width: 100%;
    height: 300px;
    border: 1px dashed #ccc;
    overflow: hidden;
    position: relative;
} */

.customImg {
  width: 100%;
}
.customImg:nth-child(2) {
  position: absolute;
  top: -20%;
  left: 0;
  opacity: 0;
  transition: 0.5s all;
}
.imageContainer:hover img:nth-child(2) {
  opacity: 1;
  top: 0;
}

#bookDemoBtn,
.seeDetailBtn {
  background: linear-gradient(to right, #810000, #ff0000, #810000);
  background-size: 500% auto;
  animation:
    fadeInFromRight 1s ease-in forwards,
    gradient-animation 5s ease infinite;
}

#bookDemoBtn:hover,
.seeDetailBtn:hover {
  right: -44px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 15px;
}

@keyframes fadeInFromRight {
  from {
    right: -100px;
    opacity: 0;
  }
  to {
    right: -46px;
    opacity: 1;
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.confetti {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 16px;
  background: #ffd700;
  top: 0;
  opacity: 0;
}

.confetti-piece:nth-child(1) {
  left: 7%;
  transform: rotate(-50deg);
  animation: makeItRain 2000ms infinite ease-out;
  animation-delay: 500ms;
  animation-duration: 1400ms;
}

.confetti-piece:nth-child(2) {
  left: 14%;
  transform: rotate(30deg);
  animation: makeItRain 2000ms infinite ease-out;
  animation-delay: 600ms;
  animation-duration: 1800ms;
}

/* Repeat similarly for nth-child(3) through nth-child(13) with different values */

.confetti-piece:nth-child(odd) {
  background: #1e90ff;
}

.confetti-piece:nth-child(even) {
  z-index: 1;
}

.confetti-piece:nth-child(4n) {
  width: 5px;
  height: 12px;
  animation-duration: 4000ms;
}

.confetti-piece:nth-child(3n) {
  width: 3px;
  height: 10px;
  animation-duration: 5000ms;
  animation-delay: 2000ms;
}

.confetti-piece:nth-child(4n-7) {
  background: #ff69b4;
}

@keyframes makeItRain {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: translateY(200px);
  }
}
.siq_bL {
  bottom: 120px !important;
}
.siqico-chat::before {
  padding-top: 7px !important;
  color: white !important;
}
#zsiq_maintitle {
  color: white !important;
}
#navHeader.fixed {
  animation: slideDown 0.5s forwards;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.zsiq_floatmain.zsiq_theme11.siq_bL {
  z-index: 49 !important;
}

@media (min-width: 493px) {
  .promoImage {
    top: 4rem;
  }
}
@media (min-width: 768px) {
  .promoImage {
    top: 80px;
  }
}
@media (min-width: 1177px) {
  .promoImage {
    top: 52px;
  }
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* 50% opacity */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#page-loader svg {
  height: 75px;
  width: 75px;
}

@media (max-width: 918px) {
  .freedomDecor {
    top: 80px;
  }
}
@media (max-width: 767px) {
  .freedomDecor {
    top: 44px;
  }
}
@media (max-width: 718px) {
  .freedomDecor {
    top: 62px;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fade-in 1s ease-out;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-slide-up {
  animation: slide-up 1s ease-out;
}
.scale-in-center {
  -webkit-animation: scale-in-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: scale-in-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
