@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");

:root {
  --primary-color: rgb(23, 105, 211);
  --secondary-color: rgb(36, 37, 38);
  --background-color: rgb(240, 240, 240);
  --transition-300: all 0.3s ease;
  --transition-500: all 0.5s ease;
}

* {
  box-sizing: border-box;
  font-family: "PT Sans", sans-serif;
  word-wrap: break-word !important;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px !important;
  overflow-x: hidden;
}

body {
  background-color: #fff;
}

button {
  outline: none;
  border: none;
}

h1 {
  color: black;
}

h4 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500 !important;
}

h5 {
  font-size: 20px !important;
  font-weight: 500 !important;
}

h6 {
  font-size: 16px !important;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500 !important;
}

/*BOOTSTRAP EXTEND*/

.cursor-pointer {
  cursor: pointer;
}

.z-9 {
  z-index: 999 !important;
}

.top-0 {
  top: 0 !important;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.m-0 {
  margin: 0 !important;
}

.mr-1 {
  margin-right: 4px !important;
}

.mr-2 {
  margin-right: 10px !important;
}

.mx-3 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.row {
  display: flex !important;
  flex-wrap: wrap;
}

.line-height-1 {
  line-height: 1 !important;
}

.line-height-2 {
  line-height: 1.6 !important;
}

.line-height-3 {
  line-height: 3 !important;
}

.letter-spacing-1 {
  letter-spacing: 1px !important;
}

.letter-spacing-2 {
  letter-spacing: 2px !important;
}

.fs-8 {
  font-size: 10px;
}

.fs-7 {
  font-size: 12px;
}

.fs-6 {
  font-size: 14px;
}

.fs-5 {
  font-size: 21px;
}

.fs-4 {
  font-size: 24px;
}

.fs-3 {
  font-size: 28px;
}

.fs-2 {
  font-size: 32px;
}

.fs-1 {
  font-size: 36px;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: bold !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.fw-italic {
  font-style: italic !important;
}

.d-grid {
  display: grid;
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
  row-gap: 16px;
  column-gap: 16px;
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
  row-gap: 16px;
  column-gap: 16px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  row-gap: 16px;
  column-gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 16px;
  column-gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  row-gap: 16px;
  column-gap: 16px;
}

.bg-black {
  background-color: black;
}

.text-black {
  color: black;
}

.text-black:hover {
  color: black;
}

.p-0 {
  padding: 0 !important;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 16px;
}

.gap-30 {
  gap: 30px;
}

.gap-4 {
  gap: 24px;
}

.gap-5 {
  gap: 48px;
}

.form-group {
  margin-bottom: 0 !important;
}

.ms-auto {
  margin-left: auto !important;
}

.ms-1 {
  margin-left: 4px !important;
}

.ms-2 {
  margin-left: 8px !important;
}

.ms-3 {
  margin-left: 16px !important;
}

.ms-4 {
  margin-left: 24px !important;
}

.ms-5 {
  margin-left: 48px !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.ps-1 {
  padding-left: 4px !important;
}

.ps-2 {
  padding-left: 8px !important;
}

.ps-3 {
  padding-left: 16px !important;
}

.ps-4 {
  padding-left: 24px !important;
}

.ps-5 {
  padding-left: 48px !important;
}

.ps-md-5 {
  padding-left: 48px !important;
}

.pt-1 {
  padding-top: 4px !important;
}

.pt-2 {
  padding-top: 8px !important;
}

.pt-3 {
  padding-top: 16px !important;
}

.pt-4 {
  padding-top: 24px !important;
}

.pt-5 {
  padding-top: 48px !important;
}

.ps-10 {
  padding-left: 60px !important;
}

.pb-10 {
  padding-bottom: 100px !important;
}

.mt-2 {
  margin-top: 8px;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

label {
  margin-bottom: 0 !important;
}

.d-block {
  display: block !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.position-fixed {
  position: fixed !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-none {
  display: none !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.justify-content-center {
  justify-content: center !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-row {
  flex-direction: row !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.text-white {
  color: #fff !important;
}

.text-white-subtle {
  color: #f0f0f0 !important;
}

.text-black {
  color: #000 !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.h-auto {
  height: auto !important;
}

.h-100 {
  height: 100% !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.py-2 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.py-3 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.pt-3 {
  padding-top: 16px !important;
}

.pl-4 {
  padding-left: 24px !important;
}

.pb-3 {
  padding-bottom: 16px !important;
}

.pb-2 {
  padding-bottom: 10px !important;
}

.pt-2 {
  padding-top: 10px !important;
}

.pb-1 {
  padding-bottom: 4px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.mb-4 {
  margin-bottom: 24px !important;
}

.mb-5 {
  margin-bottom: 48px !important;
}

.object-fit-cover {
  object-fit: cover;
}

.text-decoration-none {
  text-decoration: none !important;
}

.mt-5 {
  margin-top: 48px;
}

.mt-3 {
  margin-top: 16px !important;
}

.mt-4 {
  margin-top: 24px !important;
}

.px-3 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.px-4 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.py-4 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.py-5 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.px-5 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.pr-5 {
  padding-right: 48px !important;
}

.pl-5 {
  padding-left: 48px !important;
}

.pr-3 {
  padding-right: 16px !important;
}

.pl-3 {
  padding-left: 16px !important;
}

.pt-4 {
  padding-top: 24px !important;
}

.pb-4 {
  padding-bottom: 24px !important;
}

.pt-5 {
  padding-top: 48px !important;
}

.pb-5 {
  padding-bottom: 48px !important;
}

.fw-bold {
  font-weight: bold !important;
}

.border-none {
  border: none;
}

.outline-none {
  outline: none !important;
}

.border-black {
  border-color: #000 !important;
}

.border-white {
  border-color: #fff !important;
}

.border {
  border: 1px solid !important;
}

.border-1 {
  border: 2px solid !important;
}

.border-2 {
  border: 3px solid !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 4px !important;
}

.rounded-2 {
  border-radius: 8px !important;
}

.rounded-3 {
  border-radius: 16px !important;
}

.rounded-4 {
  border-radius: 24px !important;
}

.rounded-5 {
  border-radius: 48px !important;
}

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.666667%;
}

.col-10 {
  width: 83.333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.666667%;
}

.col-6 {
  width: 50%;
}

.col-4 {
  width: 33.333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.666667%;
}

.pr-0 {
  padding-right: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-2 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.p-2 {
  padding: 10px !important;
}

.p-32 {
  padding: 32px;
}

.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}


.p-3 {
  padding: 16px;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-white {
  background-color: #fff !important;
}

.ps-3 {
  padding-left: 16px !important;
}

.pe-3 {
  padding-right: 16px !important;
}

.pe-2 {
  padding-right: 10px !important;
}

.border-bottom {
  border-bottom: 1px solid !important;
}

.border-bottom-2 {
  border-bottom: 2px solid !important;
}

.border-top {
  border-top: 1px solid !important;
}

.list-style-type-none {
  list-style-type: none !important;
}

@media screen and (min-width: 768px) {
  .ps-md-5 {
    padding-left: 12px !important;
  }

  .px-md-4 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .px-md-5 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mt-md-3 {
    margin-top: 16px !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-none {
    display: none !important;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.333333%;
  }

  .px-md-5 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .pt-md-4 {
    padding-top: 24px !important;
  }

  .px-md-4 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .px-md-3 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .w-md-100 {
    width: 100% !important;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.666667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .pr-md-2 {
    padding-right: 10px !important;
  }

  .pl-md-2 {
    padding-left: 10px !important;
  }

  .d-md-none {
    display: none !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-2 {
    gap: 10px;
  }

  .gap-md-3 {
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .gallery-slider3 {
    display: none;
  }

  .promotion-box-2-content p,
  .promotion-box-2-content span {
    font-size: 13px !important;
    line-height: 1.5rem;
  }

  .promotion-box-2-content p {
    width: 50%;
    line-height: 1.1rem;
  }

  .promotion-box-2-content {
    top: 0;
  }

  .promotion-box-2-content span {
    margin-top: 0.01rem;
  }

  .main-slider-with-week {
    width: 100%;
  }

  .woman-container.d-flex.mt-4.col-sm-12.col-12 {
    flex-direction: row;
  }

  .header-quick-menu span {
    display: none;
  }

  .swiper-container img {
    width: 100%;
    /* height: 160px; */
    object-fit: cover;
  }

  .col-md-4 {
    padding: 0 !important;
  }

  .justify-content-xxs-center {
    justify-content: center !important;
  }

  .gap-30 {
    gap: 24px !important
  }
}

@media screen and (min-width: 1023px) {
  .px-lg-5 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .col-lg-4 {
    width: 33.333333% !important;
  }

  .col-lg-5 {
    width: 41.666667% !important;
  }

  .col-lg-3 {
    width: 25% !important;
  }

  .col-lg-6 {
    width: 50% !important;
  }

  .col-lg-9 {
    width: 75% !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }
}

@media screen and (max-width: 1400px) {
  .grid-6 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1022px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .px-xs-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .gap-xs-0 {
    gap: 0 !important;
  }

  .mt-xs-0 {
    margin-top: 0 !important;
  }

  .justify-content-xs-center {
    justify-content: center !important;
  }

  .mt-xs-5 {
    margin-top: 48px !important;
  }

  .mt-xs-4 {
    margin-top: 24px !important;
  }
}

@media screen and (max-width: 576px) {
  .product-grid-2 .product-card:nth-child(2n) {
    margin-left: 0 !important;
    margin-right: 0;
  }

  .product-grid-2 .product-card:nth-child(2n + 1) {
    margin-right: 0 !important;
    margin-left: 0;
  }

  .promotion-box-2-content {
    top: 20% !important;
  }

  .gallery-slider3 {
    position: relative !important;
    width: 100% !important;
    top: 0 !important;
    right: 0 !important;
    margin-top: 1rem;
  }

  .promotion-box-2-content p {
    font-size: 12px;
  }

  .promotion-box-2-content span {
    font-size: 15px !important;
  }

  .promotion-box-2-content p {
    width: 90% !important;
    line-height: 1.4rem !important;
  }

  .container.header-wrapper {
    flex-direction: row;
  }

  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
    width: 1320px !important;
  }
}

/*BOOTSTRAP EXTEND END*/


/* CUSTOM CSS  */
/* HEADER START  */
header a,
span {
  font-size: 12px;
  color: #666666;
}

.nav-navigation {
  border: 1px solid #e8e8e8 !important;
}

.nav-list {
  border: 1px solid transparent;
}

.nav-list>li {
  border-left: 1px solid #e8e8e8;
}

.nav-list>li>a {
  line-height: 10px;
  font-size: 18px;
  color: #5a5a5a;
  min-height: 38px;
}

.nav-list>li>a:hover {
  text-decoration: none;
  background-color: #eee;
}

.nav-panel i {
  color: #e62e04;
  font-size: 15px;
}

.nav-panel a {
  color: #333;
  font-size: 12px;
  color: #333;
  padding-left: 5px;
  margin-top: 12px;
}

.nav-panel>div>div>a:hover {
  color: #e62e04 !important;
  text-decoration: none;
}

.search-input input {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px 0 0 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  font-size: 17px;
  padding-right: 32px;
}

.search-input input:focus {
  border: 1px solid #e62e04 !important;
  outline: none !important;
}

.search-input>div {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ccc;
  border-left: none !important;
  height: 45px;
  padding: 0.5rem 0.75rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #555;
}

.nav-list>li>a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: #333;
  height: 100%;
  text-decoration: none;
}

.nav-list a:hover {
  background-color: #575757;
}

.nav-toggle {
  display: none;
}

.nav-navigation {
  background: #fff;
}

.nav-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.nav-item a {
  display: block;
  text-decoration: none;
  color: #333;
}

@media screen and (max-width: 768px) {
  .product-swiper-wrapper{
    display: none !important;
  }
  .container.header-wrapper {
    flex-direction: row;
  }

  .top-slide-right {
    width: 100% !important;
  }

  .container.header-top-text {
    display: none;
  }

  header {
    display: none !important;
  }

  .nav-item a i {
    float: right;
  }

  .nav-panel span {
    display: none;
  }

  .nav-panel {
    position: absolute;
    top: 10%;
    right: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 42px;
  }

  .nav-panel i {
    font-size: 25px;
  }

  .nav-panel>div {
    justify-content: end;

  }

  .nav-panel>div>div {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-panel a {
    margin: 0px;
  }
}

/* HEADER END  */
/* CATEGORY LIST PAGE START  */
.main-area {
  border-right: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}

.breadcrumb-area {
  border-bottom: 1px solid #e8e8e8;
}

.breadcrumb-area div * {
  font-size: 12px !important;
  color: #333;
}

.color-1 {
  background-color: #000;
  color: #fff
}

.color-2 {
  background-color: #fff;
  color: #000
}

.color-3 {
  background-color: #ffdfc4;
  color: #000
}

.color-4 {
  background-color: #f9f1dc;
  color: #000
}

.color-5 {
  background-color: #00008b;
  color: #fff
}

.color-6 {
  background-color: red;
  color: #fff
}

.color-7 {
  background-color: grey;
  color: #000
}

.color-8 {
  background-color: maroon;
  color: #fff
}

.color-9 {
  background-color: pink;
  color: #000
}

.color-10 {
  background-color: gold;
  color: #000
}

.color-11 {
  background-color: #00f;
  color: #000
}

.color-12 {
  background-color: purple;
  color: #fff
}

.color-13 {
  background-color: green;
  color: #fff
}

.color-14 {
  background-color: #f0f;
  color: #fff
}

.color-15 {
  background-color: #fffdd0;
  color: #000
}

.color-16 {
  background-color: #383e42;
  color: #fff
}

.color-17 {
  background-color: salmon;
  color: #000
}

.color-18 {
  background-color: #ae9b94;
  color: #000
}

.color-19 {
  background-color: #ff0;
  color: #000
}

.color-20 {
  background-color: #40e0d0;
  color: #fff
}

.color-21 {
  background-color: #8b4513;
  color: #fff
}

.color-22 {
  background-color: beige;
  color: #000
}

.color-23 {
  background-color: orange;
  color: #000
}

.color-24 {
  background-color: #c8a2c8;
  color: #000
}

.color-25 {
  background: #833ab4;
  background: linear-gradient(90deg, #833ab4 25%, #fd1d1d 50%, #fcb045 75%);
  color: #fff
}

.color-40 {
  background-color: #fefefa;
  color: #000
}

.fltrs-color span {
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 100%;
  border: 1px solid #cec0c0;
  text-align: center;
  margin: 1px;
  padding: 0;
  font-size: 23px;
  cursor: pointer;
}

.fltrs-color span div {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 17px;
}

.fixed-filters {
  position: fixed;
  top: 0;
  width: inherit;
  padding-right: 7%;
}

.sticky-filter .filter-section-toggler+* {
  max-height: 0px;

  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sticky-filter .filter-section-toggler.active+* {
  max-height: 120px;
  overflow-y: auto;
  min-height: 40px;
  height: auto;
}

.sticky-filter ul {
  padding: 0;
}

.sticky-filter input[type="text"] {
  width: 100%;
  height: 25px;
  background-color: #fafafa;
  border: solid 1px #e2e2e2;
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 11px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.filter-section-toggler {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.sticky-filter li {
  padding-bottom: 3px;
  font-size: 13px;
  padding-left: 10px;
  line-height: 21px;
  color: #404040;
}

.sticky-filter input[type="checkbox"] {
  margin: 0;
}

.referrer-categories {
  overflow-x: auto;
}

.referrer-categories a {
  padding: 5px 15px;
  text-align: center;
  border: 1px solid #ccc;
  margin: 10px 3px;
  color: #f27a1a;
  letter-spacing: -.4px;
  display: flex;

  white-space: nowrap;
}

.referrer-categories a:hover {
  background-color: #f27a1a;
  color: #fff;
  text-decoration: none;

}

.filter-list {
  width: 110px;
  background-color: #fff;
  border: 1px solid #c1c1c1;
  color: #000;
  outline: 0;
  padding: 5px 7px;
  font-size: 13px;
  cursor: pointer;
}

.swiper-container {
  /* width: 100%; */
  /* height: 100%; */
  /* overflow: hidden; */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.swiper-slide img {
  /* width: 100%; */
  /* height: auto; */
  /* object-fit: cover; */
}

.product-list .product {
  width: 50%;
}

@media screen and (min-width:1440px) {
  .product-list .product {
    width: 33%;
  }

}

.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.swiper-pagination-bullet-active {
  background: #f27a1a !important;
}

.product-list>div {
  flex-wrap: wrap;
}

.product a>div {
  transition: 0.2s all linear;
  border: 1px solid transparent;
  border-radius: 4px;

}

.product a>div:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  transition: 0.2s all linear;
}

.product a:hover {
  text-decoration: none;
}

.product-name-infos {
  color: #404040;
  height: 32px;
  line-height: 1.1;
  overflow: hidden;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product a:hover .product-name-infos {
  color: #fe5300 !important;
}

.product-price {
  color: #c90;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}

.promotion-price {
  height: 18px;
  border: 1px solid #c90;
  padding: 12px 8px;
  border-radius: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: #1b1b1b;
  justify-content: center;
}

.promotion-price b {
  display: inline-block;
  margin-left: 5px;
  font-size: 18px;
  font-weight: 700;
  color: #c90;
  top: -1px;
  position: relative;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 20px) !important;
}

.filter-btn {
  display: none;
}

.close-filter-btn {
  display: none;
}

@media screen and (max-width:900px) {
  .nav-list>li>a {
    font-size: 14px;
  }


}

@media screen and (max-width:768px) {
  nav {
    /* border-bottom: 1px solid #e8e8e8; */
  }

  .breadcrumb-area {
    display: none !important;
  }

  .banner img {
    /* min-height: 50px; */
    /* object-fit: cover; */
  }

  .filter-container {
    z-index: 9999999999999 !important;
    position: fixed !important;
    left: 300px !important;
    width: 0;
    height: 100% !important;
    margin-left: -300px !important;
    overflow: scroll !important;
    background: #f7f7f7 !important;
    -webkit-transition: all .5s ease !important;
    -moz-transition: all .5s ease !important;
    -o-transition: all .5s ease !important;
    transition: all .5s ease !important;
    display: block !important;
  }

  .filter-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #fff;
    border: 1px solid #c1c1c1;
    color: #000 !important;
    padding: 6px 7px;
    font-size: 13px;
    cursor: pointer;
  }

  .close-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f60000;
    padding: 9px;
    color: #fff;
    position: absolute;

    z-index: 52151;
    right: 20px;
    top: 8px;
  }

  .search-input {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .nav-toggle {
    display: flex;
    background-color: white;
    font-size: 30px;
    margin-right: 10px;
  }

  .logo-container {
    padding-left: 0;
  }

  .logo-container img {
    width: 176px !important;
    height: 43px !important;
  }

  .product .swiper-slide {
    padding: 8px !important;
  }

  .product>a>div {
    padding: 0px !important;
  }

  .nav-navigation {
    display: none !important;
  }

  .mobile-width-fix {
    width: 100%;
    justify-content: end;
  }

  .promotion-price span {
    font-size: 9px;
  }

  .promotion-price b {
    font-size: 16px;
  }

  .main-area {
    border: none !important;
  }

  .zeropx {
    width: 0px !important;
  }

  .tfhpx {
    width: 350px !important;
  }
}

.filter-section-toggler * {
  color: black;
  font-weight: bold;
}

.pagination-container {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-container .pagination {
  position: relative;
  height: 30px;
  width: 30px;
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  border-radius: 2px;
}

.pagination-container .pagination li {
  list-style-type: none;
  display: inline-block;
}

.pagination-container .pagination li a {
  position: relative;
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.pagination-container .pagination li a:hover,
.pagination-container .pagination li.active a {
  background: rgba(255, 255, 255, 0.2);

}

.active-pag a {
  background-color: #fe5300 !important;
  color: white !important;
}

/* CATEGORY LIST END  */
/* INDEX PAGE START  */
.promotion-box {
  padding: 20px 20px;
  border: 1px solid #e8e8e8;
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.promotion-box:hover {
  border-color: #999;
  box-shadow: 1px 2px 5px #ccc;
  -moz-box-shadow: 1px 2px 5px #ccc;
  -webkit-box-shadow: 1px 2px 5px #ccc;
  transition: .6s ease-in-out;
}

.promotion-box h2 {
  font-weight: 200;
  text-align: center;
  margin: 0;
  padding-bottom: 15px;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
  text-transform: uppercase;
  line-height: 1;
  border-bottom: 1px solid #ddd;
  height: 36px;
}

.gallery-slider3 h2 {
  font-weight: 200;
  text-align: center;
  margin: 0;
  padding-bottom: 15px;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
  text-transform: uppercase;
  line-height: 1;
  height: 36px;
  border-bottom: 1px solid #e8e8e8;
}

.main-slider-with-campaigns .swiper-pagination-bullet {
  background: transparent !important;
  background-color: transparent !important;
  border: 1px solid white !important;
}

.main-slider-with-campaigns .swiper-pagination-bullet-active {
  background-color: white !important;
  background: white !important;
}

.main-swiper-navigation-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  z-index: 521512512;
}

.main-swiper-navigation-buttons>div {
  color: black;
  opacity: 0.35;
  font-size: 24px;

}

.main-see-all a {
  font-size: 12px;
  font-weight: 700;
  color: #0654ba;
  transition: 0.2s all linear;
}

.main-see-all a:hover {
  color: #fe5300;
  transition: 0.2s all linear;
  text-decoration: none;
}

.weekly-product-price {
  color: #000;
  font-size: 17px;
  font-weight: 700;
}

.weekly-product-old-price {
  text-decoration: line-through;
  font-size: 14px;
  color: #000;
}

.week-campaign-img {
  width: 50% !important;
}

.promotion-box-2 {
  position: relative;
  max-height: 182px;
  margin-bottom: 30px;
}

.promotion-box-2 a {
  max-height: 182px !important;
  border: 1px solid #eee;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.promotion-box-2-content {
  position: absolute;
  top: 30%;
  left: 10px;
  width: 100%;
  font-family: 'PT Sans', sans-serif;
}

.promotion-box-2-content p {
  text-transform: uppercase;
  font-weight: inherit;
  color: #8b008b;
  font-size: 25px;
  width: 210px;
  text-shadow: 2px 2px #dcd8cf;
  line-height: 29px;
}

.promotion-box-2-content span {
  font-weight: inherit;
  color: #ef6ab2;
  font-size: 20px;
  width: 210px;
  margin-top: -12px;
  display: block;
  letter-spacing: 3px;
}

.banner-specilaties {
  padding: 5px;
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border: 2px solid #818181;
  border-radius: 2px;
}

.index-container-line {
  background-color: #cdcdcd;
  height: 1px;
  margin-top: 15px !important;
  margin-bottom: 0 !important;
}

.index-container-title-content {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 17%;
  background-color: #fff;
  width: 300px;
  text-align: center;
}

.index-container-title-content span:nth-child(1) {
  font-size: 20px;
}

.index-container-title-content span:nth-child(2) {
  font-size: 14px;
}

.index-container-title-content a {
  color: #428bca;
}

/* INDEX PAGE END  */



/* FOOTER START  */
.footer {
  background-color: #fbfbfb;
  border-top: 1px solid #e8e8e8;
  padding: 20px;
  text-align: left;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-top .left-links,
.footer-top .right-links {
  display: flex;
  gap: 5px;
}

.footer-top .left-links a,
.footer-top .right-links a {
  text-decoration: none;
  color: #000;
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-middle .section h3 {
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  word-break: break-all;
  margin-top: 0;
  margin-bottom: 7px;
  font-weight: 700;
  padding-bottom: 15px;
  padding-top: 15px;
}

.footer-middle .section ul li a {

  color: #626262;
  font-size: 13px;
}

.footer-middle .section ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  list-style-type: none;
  padding: 0;
  margin: 0;

}

.footer-middle .section h3 {
  padding-bottom: 0px !important;
}

.footer-middle .section.active ul {
  max-height: 500px;
}



.footer-middle {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .footer-middle .section ul {
    max-height: none;
    overflow: visible;
  }

  .footer-middle .section h3 {
    cursor: pointer;
  }

  .footer-middle {
    display: flex;
    flex-direction: row;
  }

  .footer-middle .section {
    margin-bottom: 20px;
  }

  .left-links {
    color: #626262;
    font-size: 13px;
  }

  .footer-middle .section h3 {
    padding-bottom: 15px !important;
  }
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.left-links {
  color: #626262;
  font-size: 9px;
}

.left-links a {
  transition: 0.2s all linear;

}

.left-links a:hover {
  color: #fe5300;
  text-decoration: none;
  transition: 0.2s all linear;
}

.appstore-links li a {
  border: 1px solid #ccc;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-webkit-radius: 5px;
  zoom: 1;
  height: 45px;
  width: 175px;
  font-weight: 700;
  display: flex;

  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.promotion-box-2 a:hover {
  border: 1px solid #000;
  transition: .6s ease-in-out;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* FOOTER END  */
.single-banner {
  align-items: center;
  justify-content: center;
  width: 100%;
}

.single-banner a {
  width: 100%;
}



.top-slide-right {
  width: 75%;
}

.gallery-slider3 {
  width: 20%;
  position: absolute;
  top: 9%;
  right: 7%;
  border: 1px solid #e8e8e8;
  padding-top: 2rem;
  padding-bottom: 4rem;
  height: 436px;
}

.thumbs-product-swiper {
  display: flex;
  width: 30%;
  justify-content: center;
}

.product-swipers {
  border-radius: 5px;
  display: flex;
  width: 100%;
}

.swiper {
  overflow: hidden;
}

.thumbs-product-swiper .swiper-wrapper .swiper-slide .product-images>img {
  cursor: pointer;
  margin-bottom: 1rem;
}

.thumbs-product-swiper .swiper-wrapper {
  flex-direction: column;
  align-items: center;
  transform: none !important;
  height: 635px;
  overflow: scroll;
  overflow-x: hidden;
  width: fit-content;
}

.sogo-product-container .product-left {
  position: relative;
  border-right: 1px solid #e8e8e8;
}

.product-swiper-wrapper {
  display: flex;
  flex-direction: row-reverse;
}

.product-image {
  padding: 0 2rem 2rem 2rem;
}

.thumbs-product-swiper .swiper-wrapper::-webkit-scrollbar-thumb {
  background: #eee;
}

.thumbs-product-swiper .swiper-wrapper::-webkit-scrollbar {
  width: 3px;
  background: transparent;
}

.index-title-section {
  padding-top: 2rem;
}

footer {
  border-top: 1px solid #e8e8e8;
}

.share-buttons ul {
  display: flex;
}

.share-buttons ul li {
  margin-right: .5rem;
}

ul.detail-info {
  display: none !important;
}

.new-price {
  color: #d01345;
  font-weight: bolder;
}

div#power-price {
  display: flex;
  flex-direction: column;
}

.sogo-product-container .product-right .product-details-middle .product-options .power-option .list-option>li.selected>span {
  color: #fff;
}

.sogo-product-container .product-right .product-details-middle .product-options .power-option .list-option>li:hover>span {
  color: #fff;
}

.discount-area {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 51%;
  border: 1px solid #f91268;
  padding: .4rem;
}

.discount-area p {
  color: #f91268 !important;
}

.search-tips {
  margin-top: 19px;
  margin-left: 0 !important;
}

form {
  padding: 0;
  margin: 0;
  display: inline;
}

.search-tips input {
  width: calc(100% - 71px);
  /* padding-left: 35px; */
  /* padding-right: 10px; */
  border: 1px solid #e8e8e8;
  color: #2d2d2d;
  float: left;
  font: 100 13px/20px Tahoma, Geneva, sans-serif;
  height: 41px;
  text-indent: 10px;
  text-align: left;
  /* background: url(//cdn.beymen.com/assets/images/header-src-icon.svg) 12px center no-repeat; */
  /* background-size: 24px 24px; */
}

button#searchButton {
  margin-top: 0;
  /* background: #111 !important; */
  text-indent: 0;
  border: 1px solid #e8e8e8;
  color: #fff;
  width: 45px;
  height: 41px;
  background: url(//cdn.beymen.com/assets/images/header-src-icon.svg) 12px center no-repeat;
  border-left: none;
}