@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-display: swap;
  src: url(fonts/WixMadeforText-Regular.ttf.gz);
}
:root {
  --toastContainerTop: 0.5rem;
  --toastContainerRight: auto;
  --toastContainerBottom: auto;
  --toastContainerLeft: auto;
  --toastWidth: 300px;

  --primary-color: #ff6b6b;
  --secondary-color: #794afa;
  --secondary-dark-color: #453c5c;

  --white-color: #ffffff;
  --light-bg-color: #f2f3f5;
  --light-text-color: #7c899a;
  --border-color: #e5e8ec;
  --dark-color: #0a021c;

  --font-small: 15px;
  --font-smaller: 13px;

  --percent100: 100%;
  --percent50: 50%;

  --fw3: 300;
  --fw5: 500;
  --fw6: 600;
  --fw5: 700;
  --fw8: 800;

  --trans-background-color: background-color 0.3s, color 0.3s;
  --trans-background: background-color 0.3s;
  --trans-color: color 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

.desktop-hide {
  display: block;
}
.mobile-hide {
  display: none;
}

.v-none {
  visibility: hidden;
}

.trending .products {
  flex: 0 0 100%;
}

.loaderdiv {
  width: 100svw;
  height: 100svh;
  position: fixed;
  overflow: hidden;
  top: 0;
  z-index: 20000;
  visibility: visible;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.5);
}

#prevButton,
#prevButtonShop,
#prevButtonAnnounce {
  left: 0;
  z-index: 10000;
}

#nextButton,
#nextButtonShop,
#nextButtonAnnounce {
  left: 100%;
  z-index: 10000;
}

.priceonimg h5 {
  font-size: 12px;
  padding: 0 0.5em;
  color: white;
}

.newpriceonimg h5 {
  font-size: 12px;
  padding: 0 0.5em;
  color: white;
}
.viponimg i {
  font-size: 25px;
  color: white;
}

.playonimg i {
  color: var(--primary-color);
  font-size: 25px;
  margin: 0;
  line-height: normal;
}

.shareonimg i {
  color: var(--primary-color);
  font-size: 22px;
  margin: 0;
  line-height: normal;
}

.viewcountonimg i {
  font-size: 11px;
  color: white;
  padding-right: 2px;
}
.viewcountonimg p {
  font-size: 11px;
  color: white;
}

.viewstatusonimg i {
  font-size: 12px;
  color: white;
  padding-right: 3px;
}
.viewstatusonimg p {
  font-size: 12px;
  color: white;
}

.wishonimg i {
  font-size: 20px;
  color: var(--primary-color);
  padding: 0.1em;
  cursor: default;
}

.loader {
  width: 70px;
  height: 70px;
  left: 50%;
  top: 50%;
  margin-top: -35px;
  margin-left: -35px;
  z-index: 20001;
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  position: fixed;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 0;
  background: var(--secondary-color);
  border-radius: 5px;
  width: 5px;
  height: 35px;
  transform: translateX(-50%);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body {
  overflow-y: scroll;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  font-family: Ubuntu;
  font-size: 15px;
  font-weight: 400;
  color: var(--dark-color);
  background-color: var(--white-color);
}

a {
  text-decoration: none;
  color: inherit;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

img {
  max-width: var(--percent100);
  vertical-align: middle;
  user-select: none;
}

strong {
  font-weight: var(--fw8);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input::placeholder {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: Ubuntu;
}

h1 {
  font-size: calc(1.3em+1vw);
  font-weight: var(--fw8);
  line-height: 1;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 1.1em;
  font-weight: 500;
}

h4 {
  font-size: 1em;
  font-weight: var(--fw4);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.938em;
}

.column {
  margin-left: -0.938em;
  margin-right: -0.938em;
}

.column .row {
  padding: 0 0.938em;
}

.footer_add_btn {
  background-color: var(--secondary-color);
  color: #ffffff !important;
  box-shadow: 0px 0px 3px 0.5px #7c899a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flexwrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 10px;
}

.flexcenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flexitem {
  display: flex;
  align-items: center;
}

.flexcol {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.main-text {
  font-weight: 500;
}

.main-links a:hover {
  color: var(--secondary-color);
}

.second-links a:hover {
  color: var(--ligth-text-color);
}

.icon-small,
.icon-large {
  display: flex;
  align-items: center;
  padding: 0 0.25em;
  font-weight: normal;
}

.icon-small {
  font-size: 1.5em;
  margin-left: auto;
}

.icon-large {
  font-size: 1.75em;
  padding: 0 0.75em 0 0;
}

:where(.off-canvas, header) li > a {
  display: flex;
  position: relative;
  line-height: inherit;
  transition: var(--trans-color);
}

.header-top .wrapper {
  font-size: var(--font-small);
  font-weight: var(--fw3);
  justify-content: space-between;
  line-height: 42px;
}

.header-top .wrapper ul {
  gap: 2em;
}

.header-top li {
  position: relative;
}

.header-top ul ul {
  position: absolute;
  left: -1em;
  line-height: 2em;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  z-index: 1000;
  display: none;
  width: 200px;
}

:where(.header-top, .thetop-nav) .right ul ul li a {
  padding: 0.25em 1em;
}
:where(.header-top, .thetop-nav) .left ul ul li a {
  padding: 0.25em 1em;
}

.header-top .right ul ul li {
  text-align: center;
}
.header-top .left ul ul li {
  text-align: center;
}
:where(.header-top, .thetop-nav) .right ul ul li.current a {
  background-color: var(--border-color);
}
:where(.header-top, .thetop-nav) .left ul ul li.current a {
  background-color: var(--border-color);
}

.showlangmenu .langs {
  display: block;
}
.showcitymenu .cities {
  display: block;
}

.header-nav {
  padding: 5px 0;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--white-color);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}
.trigger {
  font-size: 1.5em;
  display: flex;
  padding: 0.25em;
  margin-right: 0.5em;
}

.logo a {
  font-family: Ubuntu;
  font-size: 1.75em;
  position: relative;
  font-weight: var(--fw8);
  display: flex;
  padding-left: 0.75em;
}

.header-nav nav > ul {
  line-height: 60px;
  gap: 2em;
}

.header-nav .right {
  position: relative;
  margin-left: auto;
}

.header-nav .right .icon-large {
  position: relative;
}

.header-nav .right .fly-item {
  top: 0;
  left: 16px;
  width: 16px;
  background-color: var(--secondary-dark-color);
  border-radius: var(--percent50);
}

.mega .flexcol {
  flex: 1;
  min-width: 180px;
  padding-right: 2.5em;
  margin-bottom: 1.5em;
  z-index: 1;
}

.object-cover img {
  position: absolute;
  object-fit: cover;
  width: var(--percent100);
  height: var(--percent100);
  display: block;
  background-color: #e5e8ec;
}

.products .media {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--light-bg-color);
}

.primary-button,
.secondary-button,
.light-button,
.disabled-button {
  font-size: 15px;
  padding: 0.75em 1em;
  height: auto;
  width: fit-content;
  border-radius: 5px;
  transition: var(--trans-background-color);
}

.primary-button {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.primary-button:hover {
  background-color: var(--dark-color);
}

.secondary-button {
  background-color: var(--secondary-dark-color);
  color: var(--white-color);
}

.secondary-button:hover {
  background-color: var(--light-bg-color);
  color: var(--secondary-dark-color);
}

.light-button {
  background-color: var(--light-bg-color);
}

.light-button:hover {
  background-color: var(--secondary-dark-color);
  color: var(--white-color);
}

.disabled-button {
  background-color: var(--light-text-color);
  color: #fff;
}

.disabled-button:hover {
  background-color: var(--secondary-dark-color);
  color: var(--white-color);
}

.view-all {
  font-size: var(--font-small);
  display: flex;
  gap: 1em;
  transition: var(--trans-color);
}
.header-main {
  background-color: var(--secondary-dark-color);
  padding: 1.5em 0;
  margin-bottom: 2em;
}

.dpt-cat {
  position: relative;
  z-index: 10;
}

.dpt-cat .dpt-head {
  position: relative;
  width: 300px;
  padding: 0.8em 1.5em;
  background-color: var(--primary-color);
  border-radius: 5px;
  color: var(--white-color);
}

.mini-text {
  font-size: var(--font-small);
  color: var(--light-text-color);
}

.mini-text p {
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.dpt-cat .dpt-head .mini-text {
  color: var(--light-bg-color);
}

.dpt-cat .dpt-trigger {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0.9em;
  height: 60px;
  width: 60px;
}

.header-main .right {
  flex: 1;
}

.add-announce-btn {
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-small);
}

.add-announce-btn button i {
  margin-right: 0;
  font-size: 20px;
  margin-right: 10px;
  float: left;
}

.add-announce-btn button {
  height: 100%;
  cursor: default;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2em 1em;
  border-radius: 5px;
  border: none;
}

form {
  position: relative;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

form.search input {
  width: 300px;
  line-height: 3.25em;
  padding: 0 7em 0 1em;
  padding-right: 15px;
  border: 0;
  outline: 0;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: var(--fw3);
  font-family: Ubuntu;
}

form.search :where(span, button) {
  position: absolute;
  top: 0;
  padding: 0 1em;
  font-size: 1em;
  color: var(--light-text-color);
  height: var(--percent100);
}

form.search button {
  right: 0;
  border: 0;
  outline: 0;
  font-size: 0.875em;
  font-weight: var(--fw6);
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 0 5px 5px 0;
  cursor: default;
  transition: var(--trans-background);
}

form.search button:hover {
  background-color: var(--dark-color);
}

.dpt-menu > ul > li a {
  font-size: var(--font-small);
  height: auto;
  align-items: center;
  overflow: hidden;
  height: 33px;
  font-size: 14px;
}

.dpt-menu .has-child.forsite-off li a {
  line-height: 1.2;
}
.dpt-menu .has-child.forsite-off li {
  border-bottom: 1px solid var(--border-color);
}

.site-off {
  position: fixed;
  width: 275px;
  height: var(--percent100);
  background-color: var(--white-color);
  overflow-y: auto;
  z-index: 1001;
  transform: translateX(-100%);
  visibility: hidden;
  transition:
    transform 0.4s,
    visibility 0.4s;
  will-change: transform, visibility;
}

.showmenu .site-off {
  transform: translateX(0);
  visibility: visible;
  transform:
    transform 0.4s 0s,
    visibility 0s 0s;
}

.off-canvas {
  width: var(--percent100);
  height: var(--percent100);
  touch-action: auto;
  padding: 1.5em;
}

.off-canvas .canvas-head {
  color: var(--white-color);
  justify-content: space-between;
  padding: 1.5em;
  margin: -1.5em -1.5em 1.5em;
  background-color: var(--secondary-dark-color);
  border-bottom-right-radius: 160px 25px;
}

.off-canvas .canvas-head .logo {
  z-index: 10;
  position: relative;
}

.tt-close {
  font-size: 1.4em;
  width: 29px;
  height: 29px;
  border-radius: var(--percent50);
  background-color: var(--secondary-dark-color);
  color: var(--white-color);
  transition: var(--trans-background-color);
  cursor: default;
}

.tt-close:hover {
  background-color: var(--white-color);
  color: var(--secondary-dark-color);
  opacity: 0.75;
}

.tt-close .ri-close-line {
  width: 27px;
  height: 27px;
  margin-left: 2px;
}

.t-close {
  font-size: 1.4em;
  width: 29px;
  height: 29px;
  border-radius: var(--percent50);
  background-color: var(--secondary-dark-color);
  color: var(--white-color);
  transition: var(--trans-background-color);
  cursor: default;
  display: flex;
  justify-content: center;
  align-items: center;
}
.t-closelogin {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 1.4em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  border-radius: var(--percent50);
  background-color: var(--secondary-dark-color);
  color: var(--white-color);
  transition: var(--trans-background-color);
  cursor: default;
}

.t-closelogin:hover {
  background-color: lightgray;
  color: var(--secondary-dark-color);
  opacity: 0.75;
}

.t-close:hover {
  background-color: var(--white-color);
  color: var(--secondary-dark-color);
  opacity: 0.75;
}

.off-canvas .dpt-head {
  font-size: var(--font-small);
  padding: 1em;
  margin-bottom: 1em;
  text-align: center;
  background-color: var(--light-bg-color);
  border-radius: 5px 5px 0 0;
}

.off-canvas .has-child > :where(ul, .mega) {
  font-size: var(--font-small);
  font-weight: var(--fw3);
  line-height: 28px;
  height: auto;
  max-height: 0;
  overflow: hidden;
}

.off-canvas .expand > :where(ul, .mega) {
  max-height: 2000px;
}

.off-canvas .thetop-nav ul,
.off-canvas nav > ul {
  flex-direction: column;
  align-items: flex-start;
  font-size: var(--font-small);
  line-height: 36px;
  padding-top: 1.25em;
  margin: 1.25em 0;
  border-top: 1px solid var(--border-color);
}

.off-canvas nav .mega {
  padding: 0;
}
.off-canvas nav .mega .products {
  display: none;
}

.off-canvas .has-child .icon-small {
  padding: 0.5em;
  line-height: initial;
}

.off-canvas .dpt-menu .expand .icon-small i {
  transform: rotate(-90deg);
}
.off-canvas .dpt-menu .icon-small i {
  transform: rotate(90deg);
}

.off-canvas .has-child {
  width: var(--percent100);
}

.off-canvas
  .thetop-nav
  .right
  > ul
  > :where(:nth-child(4), li:nth-child(5))
  > a {
  display: none;
}

.off-canvas
  .thetop-nav
  .left
  > ul
  > :where(:nth-child(1), li:nth-child(2))
  > a {
  display: none;
}

.off-canvas .thetop-nav .right ul ul {
  display: block;
  flex-direction: row;
}
.off-canvas .thetop-nav .left ul ul {
  display: flex;
  flex-direction: row;
}

.off-canvas .thetop-nav .right ul ul li a {
  padding: 0.5em;
  border: 1px solid var(--border-color);
  line-height: 16px;
  margin: 0 0.5em 0.5em 0;
}
.off-canvas .thetop-nav .left ul ul li a {
  padding: 0.5em;
  border: 1px solid var(--border-color);
  line-height: 16px;
  margin: 0 0.5em 0.5em 0;
}

.slider {
  margin-top: 10px;
}

.slider .item {
  position: relative;
  height: 225px;
}

.brands {
  position: relative;
  overflow: hidden;
}

.brands .item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brands .item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.brands .item i {
  font-size: 25px;
  display: block;
}
.brands .item span {
  text-align: center;
  min-width: 100px;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.1;
}

.sectop {
  justify-content: space-between;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: 1px solid var(--border-color);
}

.sectop h2 {
  position: relative;
  font-size: 1.1em;
  margin-left: 1em;
  font-weight: 500;
}

.sectop h2 span:not(.circle) {
  padding: 0 0 0 2em;
}

.products .offer {
  text-align: center;
  margin-bottom: 1.5em;
}

.products .offer p {
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

.products .offer ul {
  gap: 1em;
}

.products .offer ul li {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0.5em;
  line-height: initial;
  color: var(--secondary-dark-color);
  background-color: var(--light-bg-color);
  border-radius: 5px;
}

.products .offer ul li:not(:last-child)::before {
  content: ":";
  position: absolute;
  right: -0.6em;
  color: var(--light-text-color);
}

.products li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0.25em;
  margin: 0.25em;
  margin-left: 0;
  border-radius: var(--percent50);
  line-height: 1;
  background-color: var(--white-color);
  opacity: 0.5s;
  transition:
    var(--trans-background-color),
    opacity 0.3s;
}

.products .content {
  display: flex;
  flex-direction: column;
  padding-top: 0.5em;
}

.products:where(.big, .main.one) .content {
  gap: 1em;
  margin-top: 1.25em;
}

.products h3 {
  font-family: Ubuntu;
  font-size: 0.95em;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.products h3 a:hover {
  text-decoration: underline;
}

.products .price .current {
  font-size: calc(1em + 1vw);
  color: var(--primary-color);
  margin-right: 0.25em;
}

.products .price .normal {
  color: var(--light-text-color);
  text-decoration: line-through;
}

.products .stock .qty {
  display: flex;
  justify-content: space-between;
}

.products .stock .bar {
  height: 3px;
  margin-top: 1em;
  background-color: var(--border-color);
  overflow: hidden;
}

.products .stock .available {
  height: 3px;
  width: 21%;
  background-color: var(--secondary-color);
}

.products .item {
  display: flex;
  position: relative;
}

.flexwrap .row {
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 1em;
}

.products.big .item {
  flex-direction: column;
  padding: 2.5em;
  border: 1px solid var(--secondary-dark-color);
  border-radius: 5px;
  max-width: 460px;
  margin: 0 auto;
}

.products.mini .item {
  margin-bottom: 2em;
}

.products.mini .media {
  width: 160px;
  height: 160px;
  margin-right: 1.25em;
}

.products.mini .content {
  margin: 0;
  gap: 0.75em;
}

.products:where(.mini, .main) h3 {
  font-weight: 500;
  letter-spacing: 0px;
}

.off-canvas .thetop-nav .langmenu ul {
  padding: 0;
  margin: 0;
  margin-top: 0.5em;
  border: none;
}
.calendar {
  border-top: 1px solid var(--border-color);
  width: var(--percent100);
  margin-top: 1em;
  padding: 1em 0;
}

.main-links li select {
  border: none;
  display: flex;
  gap: 0.5em;
  font-size: var(--font-small);
  padding: 0.5em 0;
}

.products.main .item {
  flex-direction: column;
  flex: 0 0 33.333%;
}

.products.main .media {
  height: 155px;
}

.products.main .content h3 {
  margin-left: 5px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  min-height: 34px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.pr-locdate .mini-text {
  margin: 5px;
  font-size: 13px;
  border-top: 1px solid var(--border-color);
  padding-top: 7.5px;
}

.pr-locdate .mini-text li {
  margin-right: 1em;
  overflow: hidden;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.banners .item {
  position: relative;
  background-color: white;
}

.banner .image {
  margin: 0 auto;
  border-radius: 5px;
  max-width: 600px;
  overflow: hidden;
  position: relative;
  cursor: default;
}

.banner .image img {
  object-fit: cover;
  width: var(--percent100);
  height: var(--percent100);
  display: block;
}

.banner .image .text-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--percent100);
  padding: 1em 1em;
}

.banner .image .text-content span {
  overflow: hidden;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  cursor: default;
}

.banner h3 {
  font-size: calc(1em + 0.5vw);
  font-weight: var(--fw3);
}

.banner h3 span {
  font-size: 80%;
}

.banner .primary-button {
  z-index: 3;
}

.banners .product-categories .item {
  display: flex;
  padding: 1.5em;
}

.banners .product-categories .image {
  max-width: 150px;
}

.mini-links ul {
  font-size: var(--font-small);
  color: var(--light-text-color);
  margin-top: 1em;
}

.banners .second-links {
  margin-top: 2em;
}

.mini-links li a:hover {
  text-decoration: underline;
}
.product-categories .row {
  flex: 0 0 100%;
}

.newsletter {
  padding: 2.5em 0;
  background-color: var(--dark-color);
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter h3 {
  font-size: 1.5em;
}

.newsletter p {
  font-weight: var(--fw3);
  color: var(--border-color);
  margin: 0.5em 0 1.5em;
}

.newsletter p strong {
  color: var(--primary-color);
}

.newsletter form {
  max-width: 500px;
  width: var(--percent100);
}

.widgets {
  padding: 2.5em 2.5em 0 2.5em;
  background-color: var(--light-bg-color);
}

.footer-info {
  padding: 3.5em 0 5em;
}

.footer-info .wrapper .flexcol {
  align-items: center;
  gap: 0;
}

.footer-info ul li a {
  font-size: 1.25em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-bg-color);
  border-radius: var(--percent50);
  margin: 0.25em;
  transition: var(--trans-background);
}

.footer-info ul li a:hover {
  background-color: var(--border-color);
}

.footer-info .logo a {
  margin: 0 0 1em -0.75em;
}

.footer-info .mini-text {
  margin-top: 2em;
  text-align: center;
}

.menu-bottom {
  position: fixed;
  left: 0;
  padding: 3px 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  box-shadow: 0px 0px 2px 0.1px var(--light-text-color);
  z-index: 999;
}

.menu-bottom nav li {
  flex: 1;
}

.menu-bottom nav li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.2em 0;
  color: var(--light-text-color);
  transition: var(--trans-color);
  cursor: default;
}

.menu-bottom nav li a:hover {
  color: var(--dark-color);
}

.menu-bottom nav li a span {
  font-size: 12px;
  margin-top: -2px;
  text-align: center;
}

.menu-bottom nav li a i {
  font-size: 1.6em;
  padding: 0 5px;
  border-radius: 5px;
}

.menu-bottom .fly-item {
  right: 50%;
  width: 15px;
  border-radius: var(--percent50);
  margin-right: -20px;
  background-color: var(--secondary-dark-color);
}

.search-bottom {
  position: fixed;
  bottom: 45px;
  right: 0;
  left: 0;
  padding: 1em 0;
  background-color: var(--secondary-dark-color);
  z-index: 1002;
  visibility: hidden;
  opacity: 0;
  will-change: visibility opacity;
}

.showsearch .search-bottom {
  visibility: inherit;
  opacity: 1;
}

.showsearch .search-bottom input {
  width: var(--percent100);
  padding-right: 60px;
  border-radius: 5px;
  font-family: Ubuntu;
}

.search-bottom .t-close {
  position: absolute;
  color: var(--white-color);
  top: -31px;
  right: 0;
  opacity: 1;
}

.search-bottom .t-close:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.search-bottom .tt-close {
  position: absolute;
  color: var(--white-color);
  top: -40px;
  right: 0;
  opacity: 1;
}

.search-bottom .tt-close:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100svh;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  will-change: visibility, opacity;
}

.showmenu .overlay {
  opacity: 1;
  visibility: inherit;
}
.showlangmenu .overlay {
  opacity: 1;
  visibility: inherit;
}
.showcitymenu .overlay {
  opacity: 1;
  visibility: inherit;
}

.showaddselect .overlay {
  opacity: 1;
  visibility: inherit;
}

.dpt-trigger .ri-close-line,
.showdpt .dpt-trigger .ri-menu-3-line {
  display: none;
}

.showdpt .dpt-trigger .ri-close-line {
  display: block;
  margin-top: 2px;
}

#page .dpt-menu {
  display: block;
}

#page.showdpt .dpt-menu {
  display: block;
}
#page.showdpt .dpt-cat .dpt-head {
  border-radius: 5px 5px 0 0;
}

.products .collapse {
  margin-top: 0.5em;
}

.products .collapse .icon-small {
  justify-content: start;
}

.products .collapse .icon-large {
  justify-content: start;
}

.products .collapse li > a {
  position: relative;
  font-weight: 500;
  text-align: start;
  padding: 5px 0;
  padding-bottom: 0;
  border-top: 1px solid var(--border-color);
  border-radius: 0;
  width: 100%;
  cursor: default;
}

.products .collapse .content {
  margin: 0;
  font-size: var(--font-small);
}

.products .collapse .content pre {
  text-wrap: wrap;
  font-family: Ubuntu;
  font-size: 14px;
}

.expand {
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.products .collapse .content pre::first-letter {
  text-transform: capitalize;
}

.products .collapse .content li span:first-child {
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.products .row .item h1 {
  font-size: 18px;
  line-height: 1.2;
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-weight: 400;
}

.breadcrumb {
  font-size: var(--font-small);
  margin-bottom: 2em;
  margin-top: 2em;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  padding: 0 0.35em;
}

.breadcrumb li:last-child {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--light-text-color);
}

.products.one .item {
  flex-direction: column;
}

.products.one :where(.big-image, .small-image) {
  overflow: hidden;
}
.products.one .big-image {
  position: relative;
  background-color: var(--light-bg-color);
  display: flex;
  justify-self: center;
  align-items: center;
}

.products.one .small-image {
  margin-top: 0.5em;
}

.products.one :where(.small-image) img {
  object-fit: cover;
  width: var(--percent100);
  height: var(--percent100);
  display: block;
  background-color: lightgray;
}

.products.one .thumbnail-show {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 2em 2em 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-block {
  margin-bottom: 1em;
  padding-bottom: 1em;
}

.filter-block:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.filter-block h4 {
  font-size: 1.25em;
  margin-bottom: 0.5em;
}

.filter-block.category h4 {
  margin-bottom: -0.5em;
}

.filter-block.category {
  width: var(--percent100);
}
.filter-block.category select {
  margin-top: 1em;
}

.f_category {
  border: none;
  background-color: var(--white-color);
  width: var(--percent100);
  gap: 0.5em;
  font-size: var(--font-small);
  padding: 0.5em 1em;
  color: var(--light-text-color);
  transition: var(--trans-color);
  cursor: default;
  border-radius: 5px;
}

.new_item_form {
  max-width: 500px;
}
.new_item {
  border: none;
  padding: 0.5em;
  margin-bottom: 0.1em;
}
.new_item label {
  font-weight: 500;
  font-size: 14px;
}
.new_item_input {
  resize: none;
  border: 1px solid var(--secondary-dark-color);
  background-color: var(--white-color);
  width: 100%;
  gap: 0.5em;
  padding: 0.75em 1em;
  color: var(--secondary-dark-color);
  font-family: Ubuntu;
  transition: var(--trans-color);
  border-radius: 5px;
}

.single-category .holder {
  display: flex;
  flex-direction: column;
}

.single-category .sidebar,
.single-category .section {
  flex: 1 0 100%;
}

.single-category .products.main .item {
  flex: 0 0 50%;
  overflow: hidden;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 15.0006L7.75732 10.758L9.17154 9.34375L12 12.1722L14.8284 9.34375L16.2426 10.758L12 15.0006Z" fill="gray"></path></svg>');
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 5px;
}

.cat-navigation {
  font-size: 1.1em;
  margin-bottom: 0.5em;
  justify-content: flex-end;
}

.cat-navigation .item-filter {
  margin-right: auto;
}

.item-sortir {
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-sortir label {
  margin-right: 10px;
  font-size: var(--font-small);
}

.cat-navigation > div {
  position: relative;
}

.cat-navigation .item-filter a {
  align-items: center;
  text-transform: uppercase;
}

.cat-navigation select {
  display: flex;
  gap: 0.5em;
  font-size: var(--font-small);
  padding: 0.5em 1.5em;
  padding-left: 0.5em;
  transition: var(--trans-color);
  background-color: var(--light-bg-color);
  cursor: default;
  color: var(--light-text-color);
  border: none;
  border-radius: 5px;
}
.cat-navigation select option {
  background-color: var(--white-color);
}

.cat-navigation select:focus {
  border: none;
}
.load-more {
  margin: 0em 0 4em;
}

.cat-navigation .label {
  display: flex;
  gap: 0.5em;
  padding: 0.5em 1em;
  transition: var(--trans-color);
  cursor: default;
}

.filter {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 1em;
  max-width: 290px;
  width: 100%;
  background-color: var(--light-bg-color);
  border-radius: 5px;
  overflow: auto;
  z-index: 1000;
  box-shadow: rgb(0 0 0 / 30%) 0 10px 50px;
  visibility: hidden;
  transform: translateX(-100%);
  transition:
    transform 0.4s,
    visibility 0.4s;
}

.cancel {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0;
  margin-top: -15px;
}

.cancel span:nth-child(1) {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cancel i {
  margin-right: 10px;
}

#page.showfilter .filter {
  visibility: visible;
  z-index: 1000;
  transform: translateX(0);
  transition:
    transform 0.4s,
    visibility 0.4s;
}

.filter-block.status {
  width: var(--percent100);
  background-color: var(--light-bg-color);
  border-radius: 5px;
}

.filter-block.status label {
  letter-spacing: 1px;
  margin-left: 5px;
  font-weight: var(--fw4);
}

.filter-block.status input {
  width: 14px;
  height: 14px;
}

.filter-block.pricing {
  width: var(--percent100);
  background-color: var(--light-bg-color);
  border-radius: 5px;
}
.filter-block.pricing ul {
  display: flex;
  gap: 1em;
}

.filter-block.pricing label {
  font-size: 14px;
  font-weight: var(--fw4);
  margin-right: 5px;
}

.filter-block.search-btn {
  text-align: center;
}

.filter-block.search-btn button i {
  margin-right: 5px;
}
.filter-block.search-btn button {
  cursor: default;
  padding: 0.5em 1em;
  border: none;
  font-size: var(--font-small);
  font-weight: var(--fw6);
}

.filter-block.pricing ul li input {
  width: 100%;
  font-size: var(--font-small);
  padding: 0.5em 1em;
  transition: var(--trans-color);
  cursor: default;
  background-color: var(--white-color);
  border: none;
  color: var(--light-text-color);
  border-radius: 5px;
}

.user-info {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  line-height: 1;
}

.user-info i {
  font-size: 18px;
  font-weight: var(--fw6);
  margin-right: 5px;
}

.user-info .user-phone {
  padding: auto;
  font-size: var(--font-small);
}

.outofmodal {
  display: none;
}

.showmodal .outofmodal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1002;
}

.showloginform .outofmodal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
}

.shownumber .outofmodal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
}

.showdialog .outofmodal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  z-index: 1000;
}

.showdialogshop .outofmodal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  z-index: 1000;
}

.showprices .outofmodal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
}

.showpaymenttype .outofmodal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 350px;
  width: 90%;
  height: max-content;
  padding: 2em;
  margin: auto;
  text-align: center;
  background-color: var(--light-bg-color);
  z-index: 1004;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    transform 0.2s,
    visibility 0.2s,
    opacity 0.2s;
  border-radius: 5px;
}

.modal2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 350px;
  width: 90%;
  height: max-content;
  padding: 1em;
  margin: auto;
  text-align: center;
  background-color: var(--white-color);
  z-index: 1004;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    transform 0.2s,
    visibility 0.2s,
    opacity 0.2s;
  border-radius: 5px;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.modal3 {
  position: sticky;
  left: 10px;
  right: 10px;
  bottom: 10px;
  max-width: 350px;
  width: 95%;
  height: max-content;
  padding: 10px 1em;
  margin: auto;
  text-align: center;
  background-color: var(--white-color);
  z-index: 1004;
  visibility: visible;
  opacity: 1;
  border-radius: 5px;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.modal4 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 350px;
  width: 100%;
  height: max-content;
  padding: 1em;
  margin: auto;
  text-align: center;
  background-color: var(--white-color);
  z-index: 1004;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    transform 0.2s,
    visibility 0.2s,
    opacity 0.2s;
  border-radius: 5px;
}

.modalpayment {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 350px;
  width: 100%;
  height: max-content;
  padding: 1em;
  margin: auto;
  text-align: center;
  background-color: var(--white-color);
  z-index: 1004;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    transform 0.2s,
    visibility 0.2s,
    opacity 0.2s;
  border-radius: 5px;
}

.modalpaymenttype {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 350px;
  width: 100%;
  height: max-content;
  padding: 1em;
  margin: auto;
  text-align: center;
  background-color: var(--white-color);
  z-index: 1004;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    transform 0.2s,
    visibility 0.2s,
    opacity 0.2s;
  border-radius: 5px;
}

.showmodal .modal {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.2s,
    visibility 0.2s,
    opacity 0.2s;
}

.showloginform .modal2 {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.2s,
    visibility 0.2s,
    opacity 0.2s;
}

.showaddselect .modal4 {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.2s,
    visibility 0.2s,
    opacity 0.2s;
}

.showprices .modalpayment {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.2s,
    visibility 0.2s,
    opacity 0.2s;
}

.showpaymenttype .modalpaymenttype {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.2s,
    visibility 0.2s,
    opacity 0.2s;
}

.modal .image {
  position: relative;
  height: calc(350px + 10vw);
  overflow: hidden;
  max-height: 350px;
  margin: -2em -2em 0 -2em;
  border-radius: 5px 5px 0 0;
}

.modal h2 {
  font-size: 1.25em;
  text-transform: uppercase;
  max-width: 300px;
  margin: 0.2em auto;
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.modal p {
  margin-bottom: 0.5em;
  color: var(--light-text-color);
  overflow: hidden;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.modal .t-close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}

.modal .t-closelogin {
  position: absolute;
  top: 1em;
  right: 1em;
}

.modal .button {
  margin: 0 auto;
  padding: 0.5em 1em;
}
.products.main .item {
  flex: 0 0 50%;
  overflow: hidden;
}
.products.main .item .item_border {
  box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
  padding: 0.2em;
  border-radius: 5px;
  margin: 0.5em;
}
.showfilter .overlay {
  opacity: 1;
  visibility: inherit;
}

@media screen and (min-width: 481px) {
  .slider .item {
    position: relative;
    height: 474px;
  }
  .slider .text-content {
    position: absolute;
    top: 0;
    height: var(--percent100);
    justify-content: flex-end;
    padding: 0 0 50px 50px;
    z-index: 3;
  }

  .slider h4 {
    font-size: 20px;
    font-weight: 500;
    width: fit-content;
    padding: 4px 10px;
    background-color: var(--dark-color);
    color: var(--white-color);
    border-radius: 5px;
    width: max-content;
    max-width: 450px;
    overflow: hidden;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  .text-content :where(h2, h3) span {
    color: var(--secondary-color);
    max-width: 500px;
    width: auto;
    font-size: 25px;
    letter-spacing: -1px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  .products.main .item {
    flex: 0 0 33.333%;
  }
  .priceonimg h5 {
    font-size: 14px;
    padding: 0 0.5em;
    color: white;
  }
  .newpriceonimg h5 {
    font-size: 14px;
    padding: 0 0.5em;
    color: white;
  }
  .viponimg i {
    font-size: 25px;
    color: white;
  }

  .playonimg i {
    color: var(--primary-color);
    margin: 0;
    line-height: normal;
  }

  .shareonimg i {
    color: var(--primary-color);
    margin: 0;
    line-height: normal;
  }

  .viewcountonimg i {
    font-size: 12px;
    color: white;
  }
  .viewcountonimg p {
    font-size: 12px;
    color: white;
  }

  .viewstatusonimg i {
    font-size: 13px;
    color: white;
    padding-right: 3px;
  }
  .viewstatusonimg p {
    font-size: 13px;
    color: white;
  }

  .wishonimg i {
    font-size: 24px;
    color: var(--primary-color);
    padding: 0.1em;
    cursor: default;
  }

  .products.main .media {
    height: 155px;
  }

  .single-category .products.main .item {
    flex: 0 0 33.33333%;
  }

  .single-category .products.main .item.shopitem {
    flex: 0 0 33.33333%;
  }

  .trending .products {
    flex: 0 0 100%;
  }
  .product-categories .row,
  .widgets .row {
    flex: 0 0 50%;
  }

  .desktop-hide {
    display: block;
  }
  .tab-hide {
    display: none;
  }
  .mobile-hide {
    display: none;
  }

  .products.one .big-image {
    margin-bottom: 0.5em;
  }

  .products.one .image-show {
    height: 680px;
  }

  .products.one .thumbnail-show {
    max-height: 160px;
  }
}

@media screen and (min-width: 768px) {
  .products.main .media {
    height: 160px;
  }
  .single-category .products.main .item {
    flex: 0 0 25%;
    overflow: hidden;
  }

  .single-category .products.main .item.shopitem {
    flex: 0 0 25%;
  }

  .products.main .item.shop_item_col {
    flex-direction: column;
    flex: 0 0 33%;
    overflow: hidden;
    padding: 0 0.3em;
    padding-bottom: 2em;
  }
  .trending .products {
    flex: 0 0 100%;
  }
  .products .price .current {
    font-size: 1.25em;
  }

  .banner .row,
  .product-categories .row,
  .widgets .row {
    flex: 0 0 50%;
  }

  .products.mini {
    flex: 0 0 100%;
  }

  .products.main .item {
    flex: 0 0 25%;
    overflow: hidden;
  }

  .desktop-hide {
    display: block;
  }
  .mobile-hide {
    display: none;
  }

  .products.one .row {
    flex: 0 0 75%;
    width: 75%;
  }
  .products.one .row30 {
    flex: 0 0 25%;
    padding: 0 15px 20px 15px;
    width: 25%;
  }

  .is_sticky2 {
    position: sticky;
    top: 4em;
  }

  .is_sticky3 {
    position: sticky;
    top: 1em;
  }
}

@media screen and (min-width: 992px) {
  #prevButton {
    left: 0px;
    z-index: 10000;
  }

  #nextButton {
    right: 0px;
    z-index: 10000;
  }
  .products.main .media {
    height: 160px;
  }

  .single-category .products.main .item {
    flex: 0 0 25%;
    overflow: visible;
  }

  .single-category .products.main .item.shopitem {
    flex: 0 0 20%;
    overflow: visible;
  }

  .products.main .item.shop_item_col {
    flex-direction: column;
    flex: 0 0 33%;
    overflow: hidden;
    padding: 0 0.3em;
    padding-bottom: 2em;
    overflow: visible;
  }

  .trending .products {
    flex: 0 0 100%;
  }
  .desktop-hide {
    display: none;
  }
  .tab-hide {
    display: none;
  }
  .mobile-hide {
    display: block;
  }

  .container {
    padding: 0 1em;
  }

  .logo a {
    margin-right: 2em;
  }
  .header-nav {
    padding: 0;
    margin: 0;
    border-bottom: 0;
  }

  nav .mega {
    position: absolute;
    width: var(--percent100);
    height: auto;
    top: auto;
    left: 0;
    right: 0;
    padding: 2.5em;
    line-height: 2em;
    background-color: var(--light-bg-color);
    box-shadow: rgb(0 0 0 / 20%) 0 30px 20px -30px;
    z-index: 100;
    display: none;
  }

  nav li.has-child:hover .mega {
    display: block;
  }

  nav .mega .wrapper {
    display: flex;
  }

  nav .mega h4 {
    font-size: 0.8em;
    text-transform: uppercase;
  }

  nav .mega ul {
    font-size: var(--font-small);
  }

  nav .mega .women-brands {
    display: flex;
    flex-wrap: wrap;
    max-width: 180px;
  }

  nav .mega .view-all {
    margin-top: 1em;
  }

  nav .mega .products {
    flex: 2;
    padding: 0;
    align-items: center;
    position: relative;
  }

  nav .mega .products .row {
    width: var(--percent100);
  }

  nav .mega .products .media {
    height: 400px;
  }

  nav .mega .products .text-content {
    line-height: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    margin-top: 0.5em;
    position: absolute;
    bottom: 4em;
    width: var(--percent100);
  }

  nav .mega .products .text-content h4 {
    font-size: 2em;
    font-weight: var(--fw8);
    text-align: center;
    color: var(--secondary-dark-color);
  }

  .header-main .right {
    display: flex;
    max-width: 460px;
    margin-left: auto;
  }

  .dpt-menu {
    position: absolute;
    top: var(--percent100);
    width: 100%;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-top: 0;
    border-radius: 0 0 0 5px;
  }

  .dpt-menu > ul > li > a {
    font-weight: var(--fw4);
    padding: 0 1.5em;
  }

  .dpt-menu > ul > li:not(:last-child) > a {
    border-bottom: 1px solid var(--border-color);
  }

  .dpt-menu .has-child > ul,
  .dpt-menu .mega {
    position: absolute;
    top: 0;
    z-index: 1;
    left: var(--percent100);
    width: var(--percent100);
    height: max-con;
    min-height: var(--percent100);
    padding: 1.5em;
    font-size: var(--font-small);
    line-height: 2em;
    border: 1px solid var(--border-color);
    border-top: 0;
    display: none;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
  }

  .dpt-menu .mega {
    background-color: var(--light-bg-color);
  }

  .dpt-menu .mega ul li a {
    overflow: hidden;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 30px;
  }
  .dpt-menu .mega ul {
    display: flex;
    flex-wrap: wrap;
  }
  .dpt-menu .mega ul li {
    flex: 45%;
    margin-right: 5px;
  }

  .dpt-menu .mega {
    width: 630px;
    min-width: var(--percent100);
  }

  .dpt-menu .has-child:hover .mega {
    display: flex;
    border-radius: 0 5px 5px 0;
  }
  .dpt-menu .has-child li a:hover {
    text-decoration: underline;
  }

  .slider > div > .wrapper {
    width: calc(100% - (300px + 2em));
    margin-left: auto;
  }

  .product-categories .row {
    flex: 0 0 50%;
  }

  .products.big .media {
    max-height: 373px;
  }

  .products.main .item,
  .widgets .row {
    flex: 0 0 20%;
    overflow: visible;
  }

  .products.one .flexwrap > .row:last-child > .item {
    padding-left: 2em;
  }

  .single-category .holder {
    flex-direction: row;
  }
  .single-category .sidebar {
    flex: 1 0 25%;
  }
  .single-category .section {
    flex: 1 0 75%;
  }

  .single-category .sidebar .filter {
    position: initial;
    box-shadow: none;
    width: var(--percent100);
    z-index: initial;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .single-category .sidebar .filter2 {
    position: sticky;
    box-shadow: none;
    width: var(--percent100);
    z-index: initial;
    visibility: visible;
    opacity: 1;
  }

  .cancel {
    display: none;
  }

  .newsletter .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .calendar {
    border: none;
    width: auto;
    margin: 0;
    padding: 0;
  }

  #page .dpt-menu {
    display: none;
  }

  .dpt-menu > ul > li a {
    font-size: var(--font-small);
    height: 45px;
    align-items: center;
    overflow: hidden;
  }
}

.phone_input_login,
.code_input_login {
  padding: 0.75em 1em;
  font-size: var(--font-small);
  background-color: var(--light-bg-color);
  border: none;
  outline: none;
  border-radius: 5px;
}

#send_code_login,
#send_sms_login {
  margin: 0 auto;
  padding: 0.5em 1em;
}

.phone_error_login,
.phone_error_register {
  font-size: 13px;
  color: #f34770;
}

#inp_right_icon_login,
#inp_right_icon_register {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  right: 20px;
  color: #f34770;
}

.form-group {
  position: relative;
}

.tabs button {
  border: none;
  outline: none;
  padding: 0.5em 1em;
  border-radius: 5px;
  cursor: default;
  background-color: transparent;
  font-size: var(--font-small);
  font-weight: var(--fw6);
}

.tabs button:hover {
  background-color: var(--primary-color);
  color: white;
}

.activetab {
  color: var(--primary-color);
}
.activebold {
  color: var(--secondary-color);
}

.activebg {
  background-color: var(--light-bg-color) !important;
}

#logincontent,
#registercontent {
  margin-top: 1em;
}

.priceonimg {
  position: absolute;
  top: 5px;
  border-radius: 0 5px 5px 0;
  left: 0;
  z-index: 1;
  background-color: var(--primary-color);
}

.newpriceonimg {
  position: absolute;
  border-radius: 0 5px 5px 0;
  left: 0;
  z-index: 1;
  background-color: var(--primary-color);
}

.viponimg {
  position: absolute;
  top: 5px;
  border-radius: 50%;
  right: 5px;
  z-index: 1;
  line-height: 1;
  padding: 0.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
}

.arzanladyshonimg {
  position: absolute;
  color: #fff;
  border-radius: 5px;
  padding: 1px 3px;
  padding-top: 0px;
  right: 5px;
  z-index: 1;
  background-color: var(--primary-color);
}

.viewcountonimg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  border-radius: 5px 0px 0px 0px;
  right: 0;
  padding: 1px 5px;
  z-index: 1;
  color: white;
  background-color: var(--primary-color);
}

.viewnewstatusonimg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 13px;
  right: 5px;
  padding: 1px 5px;
  z-index: 1;
  color: white;
  background-color: var(--primary-color);
}

.playonimg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  left: 0;
  top: 0;
  height: fit-content;
  width: fit-content;
  padding: 3px;
  z-index: 1;
  color: white;
}

.shareonimg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  left: 0;
  bottom: 22px;
  height: fit-content;
  width: fit-content;
  padding: 3px 5px;
  z-index: 1;
  color: white;
}

.viewstatusonimg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  border-radius: 0px 5px 0px 0px;
  left: 0;
  padding: 1px 5px;
  z-index: 1;
  color: white;
  background-color: var(--primary-color);
}

.wishonimg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  border-radius: 0px 5px 0px 0px;
  left: 0;
  padding: 1px 5px;
  z-index: 1;
}

.b-top {
  border-top: 1px solid var(--border-color);
}

.b-top .content li {
  margin: 5px 0;
}

#flush_message_div {
  width: 100%;
  display: flex;
  font-size: 13px;
  position: fixed;
  z-index: 2000;
  justify-content: center;
}

.d-none {
  display: none;
}

.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
input:focus {
  outline: none;
}
textarea:focus {
  outline: none;
}
select:focus {
  outline: none;
}

.status_info {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0.3em 0.5em;
  margin-bottom: 1em;
  border-radius: 5px;
}

.status_info i {
  padding-right: 4px;
}

.shop_item {
  width: 100%;
}

@media screen and (min-width: 1150px) {
  .products.main .item.shop_item_col {
    flex-direction: column;
    flex: 0 0 33.333%;
    padding: 0 0.3em;
    padding-bottom: 2em;
    overflow: visible;
  }
}

.get_service {
  margin: 20px 20px;
  margin-bottom: 10px;
  display: flex;
}
.get_vip_status {
  cursor: default;
  display: flex;
  flex-direction: column;
  box-shadow: 1px 1px 5px #000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  width: 75px;
  height: 75px;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  margin-top: 0;
  margin-bottom: 5px;
}

.get_vip_status p {
  font-size: 20px;
  margin-top: -10px;
  font-weight: bold;
}

.get_vip_status::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid var(--primary-color);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 125px;
    height: 125px;
    opacity: 0;
  }
}

.stories_item {
  width: 77px;
  height: 77px;
  overflow: hidden;
  border-radius: 50%;
}
.story_old {
  border: 2px solid var(--light-text-color);
}
.story_new {
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(to right, var(--secondary-color), var(--primary-color))
      border-box;
  border: 2px solid transparent;
}

.comments_area {
  padding: 1em;
  padding-top: 0;
}
.commentbox {
  background-color: var(--light-bg-color);
  resize: none;
  width: 100%;
  border-radius: 5px;
  padding: 1em;
  font-size: 15px;
  font-family: Ubuntu;
  border: none;
}

.list_of_comments {
  font-family: Ubuntu;
  max-height: 300px;
  overflow-y: scroll;
}

.comment_element {
  padding: 0.5em 1em;
  border-radius: 5px;
  background-color: var(--light-bg-color);
  margin: 0.5em 10px;
}

.text_of_comment {
  font-size: 14px;
}

.date_of_comment {
  display: flex;
  justify-content: center;
  width: fit-content;
  align-items: center;
}
.date_of_comment i {
  margin-right: 2px;
  font-size: 14px;
}
.date_of_comment span {
  font-size: 14px;
}

.contactusarea {
  width: 50px;
  height: 50px;
  z-index: 999;
  text-align: center;
  position: fixed;
  bottom: 70px;
  right: 14px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactusbtn i {
  font-size: 40px;
  color: #fff;
}

.contactnumber1 {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  height: 0;
}
.contact .contactnumber1 {
  width: fit-content;
  height: 50px;
  z-index: 999;
  text-align: right;
  position: fixed;
  bottom: 130px;
  right: 15px;
  background-color: transparent;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    transform 0.1s,
    visibility 0.1s,
    opacity 0.1s;
}

.contactnumber1 i {
  border-radius: 50%;
  font-size: 35px;
  width: 50px;
  padding-top: 2px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #fff;
}

.contactnumber1 span {
  font-size: 15px;
  background-color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  padding: 5px;
  box-shadow: 1px 1px 5px #000;
  font-family: Ubuntu;
  cursor: default;
  user-select: none;
}

.contactnumber2 {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  height: 0;
}
.contact .contactnumber2 {
  width: fit-content;
  height: 50px;
  z-index: 999;
  text-align: right;
  position: fixed;
  bottom: 190px;
  right: 15px;
  background-color: transparent;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    transform 0.2s,
    visibility 0.2s,
    opacity 0.2s;
}

.contactnumber2 i {
  border-radius: 50%;
  font-size: 35px;
  width: 50px;
  padding-top: 2px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #42d697;
  color: #fff;
}

.contactnumber2 span {
  font-size: 20px;
  background-color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  padding: 5px;
  box-shadow: 1px 1px 5px #000;
  font-family: Ubuntu;
  cursor: default;
  user-select: none;
}

.contactnumber3 {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  height: 0;
}
.contact .contactnumber3 {
  width: fit-content;
  height: 50px;
  z-index: 999;
  text-align: right;
  position: fixed;
  bottom: 250px;
  right: 15px;
  background-color: transparent;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    transform 0.3s,
    visibility 0.3s,
    opacity 0.3s;
}

.contactnumber3 i {
  border-radius: 50%;
  font-size: 35px;
  width: 50px;
  padding-top: 2px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #42d697;
  color: #fff;
}

.contactnumber3 span {
  font-size: 20px;
  background-color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  padding: 5px;
  box-shadow: 1px 1px 5px #000;
  font-family: Ubuntu;
  cursor: default;
  user-select: none;
}

.search-area {
  display: none;
}

.site.show-search-area .search-area {
  display: block;
  border: none;
  margin-top: 5px;
  height: auto;
  overflow-y: scroll;
  max-height: 300px;
  position: absolute;
  width: 300px;
  z-index: 1000;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 0px 1px var(--light-bg-color);
  padding: 5px;
}

.search-area ul li {
  padding: 7.5px 7.5px;
  font-size: 15px;
  font-family: Ubuntu;
  border-radius: 5px;
  cursor: default;
  color: #000;
  font-weight: 500;
  background-color: var(--light-bg-color);
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 2px 0;
}

.search-area ul li:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.show-search-area .outofmodal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: transparent;
  z-index: 1000;
}

.footer-search-area {
  display: none;
}

.site.show-footer-search-area .footer-search-area {
  display: block;
  border: none;
  height: auto;
  overflow-y: scroll;
  max-height: 200px;
  position: absolute;
  z-index: 1000;
  border-radius: 5px;
  padding: 5px;
  right: 15px;
  left: 15px;
  bottom: 100px;
  background-color: #fff;
  box-shadow: 0px 0px 0px 1px var(--light-bg-color);
}

.footer-search-area ul li {
  padding: 7.5px 7.5px;
  font-size: 15px;
  font-family: Ubuntu;
  border-radius: 5px;
  cursor: default;
  color: #000;
  font-weight: 500;
  background-color: var(--light-bg-color);
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 2px 0;
}

.show-footer-search-area .outofmodal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: transparent;
  z-index: 1000;
}

.logo-text {
  margin-left: 5px;
  font-family: Ubuntu;
  font-size: 20px;
  margin: auto 5px;
  color: #333;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--white-color);
  z-index: 1003;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    transform 0.2s,
    visibility 0.2s;
}

.dialogshop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--white-color);
  z-index: 1003;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    transform 0.2s,
    visibility 0.2s;
}

.showdialog .dialog {
  visibility: visible;
  transform: translateX(0);
  transition:
    transform 0.2s,
    visibility 0.2s;
}

.showdialogshop .dialogshop {
  visibility: visible;
  transform: translateX(0);
  transition:
    transform 0.2s,
    visibility 0.2s;
}

.dialog .outofmodal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  z-index: 1000;
}

.dialogshop .outofmodal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  z-index: 1000;
}
