/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}.module[data-id_page='10']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}.module[data-id_page='10']:hover{;}.module[data-id_page='10']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='10'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='10'] 
            
            .module[data-id_page='10'] .new_admin_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            .module[data-id_page='10'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='10']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layoutfull_box_11.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:top;background-attachment:scroll;width:100%;max-width:100%;height:38vw;border-style:none;}#layoutfull_box_11:hover{}
                #layoutfull_box_11:hover .background-img {
                    filter:none;
                }
            
                #layoutfull_box_11 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://tantostore.com/files/1764520384___54599_result.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layoutfull_box_11 
            
            #layoutfull_box_11 .new_layoutfull_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layoutfull_box_11 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_11:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_11 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_11.cursor_box{
                cursor:pointer; 
            }
        
                #layoutfull_box_11 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_5{
                overflow:hidden;
            }
            #module_new_layoutfull_5 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_5 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_5 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
            
                #user_lebas_sub_1200_3 .svg_prev{
                    width: 22px;
                    fill: #3ca0b3;
                }
                #user_lebas_sub_1200_3 .all-content-rw{
                    height:500px;
                }
                #user_lebas_sub_1200_3 .svg_next{
                    width: 22px;
                    fill: #3ca0b3;
                    transform: rotate(180deg);
                }
                #user_lebas_sub_1200_3 .simple_swiper {
                    width: 100%;
                    margin: 0;
                }
                #user_lebas_sub_1200_3 .image_hover_1:hover {
                    opacity: 1;
                    
                }
                #user_lebas_sub_1200_3 .image_hover_1{
                    z-index: 2;
                    opacity: 0;
                    transition: opacity .3s linear !important;
                    //position: absolute;
                }
				#user_lebas_sub_1200_3 .image_hover{
                    position: absolute;
                }
                
            
                #user_lebas_sub_1200_3 .simple_swiper .swiper-slide {
                    text-align: center;
                    font-size: 18px;
                    background: transparent;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                }
                #user_lebas_sub_1200_3 .simple_swiper .swiper-next{
                    background: #2a2a2a5c;
                    color: #3ca0b3;
                    width: 50px;
                    height: 50px;
                    cursor: pointer;
                    font-size: 32px;    
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    left: 20px;
                    position: absolute;
                    top: 50%;
                    z-index: 10;
                    transform: translateY(-50%);
                }
                #user_lebas_sub_1200_3 .simple_swiper .swiper-prev{
                    background: #2a2a2a5c;
                    color: #3ca0b3;
                    width: 50px;
                    height: 50px;
                    cursor: pointer;
                    font-size: 32px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    right: 20px;
                    position: absolute;
                    top: 50%;
                    z-index: 10;
                    transform: translateY(-50%);
                }
				#user_lebas_sub_1200_3{
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: center;
				}
				#user_lebas_sub_1200_3 .product {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    /* border-radius: 15px; */
                    overflow: hidden;
                    /* border: 1px solid #e0e0e0; */
                    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
                    /* background-color: #fff; */
                    transition: box-shadow 0.3s ease;
                    cursor: pointer;
                }
                
                #user_lebas_sub_1200_3 .product:hover {
                    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
                }
                
                #user_lebas_sub_1200_3 .imgContainer {
                    position: relative;
                    width: 100%;
                    /* height: 230px; */
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background-color: #f5f5f5;
                    overflow: hidden;
                    /* border-radius: 15px 15px 0 0;*/
                }
                
                #user_lebas_sub_1200_3 .imgContainer > img {
                    width: auto;
                    height: auto;
                    max-width: 100%;
                    max-height: 100%;
                    transition: transform 0.3s ease;
					
                }
                #user_lebas_sub_1200_3 .content {
                    padding: 0 5px;
                    display: flex;
                    flex-direction: column;
                    flex-wrap: nowrap;
                    align-items: flex-start;
                    align-content: flex-start;
                    justify-content: flex-start;
                    margin-top: 10px;
                }
                
                #user_lebas_sub_1200_3 .title {
                    font-size: 12px;
                    font-weight: 700;
                    color: #333;
                    text-align: right;
                }
                
                #user_lebas_sub_1200_3 .swiper-container {
                    padding-bottom: 50px;
                }
                
                #user_lebas_sub_1200_3 .title:hover {
                    color: #3CA0B3;
                }
                
                #user_lebas_sub_1200_3 .detail {
                    display: flex;
                    justify-content: space-between;
                    gap: 5px;
                    font-size: 16px;
                    height: fit-content;
                }
                #user_lebas_sub_1200_3 .price_sub_shop{
                    display: flex;
                    flex-direction: column;
                    align-items: end;
                    font-weight: 550;
                    font-size: 14px;
                    margin-bottom:unset;
                    color:#000;
                    text-decoration:unset;
                }
                #user_lebas_sub_1200_3 .discount {
                    color: rgba(118, 115, 115, 0.7);
                    text-decoration: line-through;
                    font-size: 14px;
                    order: 1;
                    margin-top: 10px;
                }
                #user_lebas_sub_1200_3 .discountPrice{
                    width: 40px;
                    height: 22px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 12px;
                    background-color: #d32f2f;
                    color: #FFFFFF;
                    border-radius: 15px;
                    text-align: center;
                    font-weight: 700;
                }
                #user_lebas_sub_1200_3 .discountPrice span{
                    color: #FFFFFF!important;
                }
                #user_lebas_sub_1200_3 .buttons {
                    display: flex;
                    justify-content: center;
                    margin-top: 15px;
                }
                
                #user_lebas_sub_1200_3 .buttons > button {
                    width: 100%;
                    height: 45px;
                    border-radius: 25px;
                    border: none;
                    background-color: #3CA0B3;
                    color: #FFFFFF;
                    font-size: 16px;
                    cursor: pointer;
                    transition: background-color 0.3s ease;
                }
                
                #user_lebas_sub_1200_3 .buttons > button:hover {
                    background-color: #2a7487;
                }
               
        
            #user_lebas_sub_1200_3 > div{
                width: 100%;
                margin: 0 auto 0 auto;
                height: auto;
            }
            #user_lebas_sub_1200_3 > div.str_product{
                filter: blur(0px);
                background-color: transparent;
                background-image: transparent;
                background-size: cover;
            }
            #user_lebas_sub_1200_3{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            #user_lebas_sub_1200_3 .title-shop{
                justify-content: center;
                padding:0 15px;
            }
            #user_lebas_sub_1200_3 .title-shop h1{
                color: inherit;
                font-size: 16px;
                height: 100px;
                font-weight:500;
                display: flex;
                align-items: center;
            }
            #user_lebas_sub_1200_3 .title-shop a{
                cursor: pointer;
                color: inherit !important;
            }
            #user_lebas_sub_1200_3 .adv-img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                padding: 15px;
                user-drag: none;
                -webkit-user-drag: none;
                user-select: none;
                -moz-user-select: none;
                -webkit-user-select: none;
                -ms-user-select: none;
            }
        .module[data-id_page='11']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}.module[data-id_page='11']:hover{;}.module[data-id_page='11']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='11'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='11'] 
            
            .module[data-id_page='11'] .new_admin_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            .module[data-id_page='11'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='11']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layoutfull_box_15.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:32vw;border-style:none;}#layoutfull_box_9:hover{}
                #layoutfull_box_15:hover .background-img {
                    filter:none;
                }
            
                #layoutfull_box_15 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://tantostore.com/files/image/1762854059_f1 copy.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layoutfull_box_15 .new_layoutfull_layer{}#layoutfull_box_314:hover .new_layoutfull_layer{}
            
            #layoutfull_box_15 .new_layoutfull_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(38,38,38,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layoutfull_box_15 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_15:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(38,38,38,.5);
            }
        
            #layoutfull_box_15 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_15.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_15 .new_layoutfull_box{
                    visibility:visible;
                }
            #layoutfull_box_14.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:32vw;border-style:solid;border-right-width:1vw;border-left-width:1vw;border-color:#ffffff;}#layoutfull_box_8:hover{}
                #layoutfull_box_14:hover .background-img {
                    filter:none;
                }
            
                #layoutfull_box_14 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://tantostore.com/files/image/1762854430_f3 copy.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layoutfull_box_14 .new_layoutfull_layer{}#layoutfull_box_313:hover .new_layoutfull_layer{}
            
            #layoutfull_box_14 .new_layoutfull_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(38,38,38,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layoutfull_box_14 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_14:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(38,38,38,.5);
            }
        
            #layoutfull_box_14 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_14.cursor_box{
                cursor:pointer; 
            }
        
                #layoutfull_box_14 .new_layoutfull_box{
                    visibility:visible;
                }
            #layoutfull_box_13.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:32vw;border-style:none;}#layoutfull_box_7:hover{}
                #layoutfull_box_13:hover .background-img {
                    filter:none;
                }
            
                #layoutfull_box_13 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://tantostore.com/files/image/1762883482_q1 copy.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layoutfull_box_13 .new_layoutfull_layer{}#layoutfull_box_312:hover .new_layoutfull_layer{}
            
            #layoutfull_box_13 .new_layoutfull_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(38,38,38,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layoutfull_box_13 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_13:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(38,38,38,.5);
            }
        
            #layoutfull_box_13 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_13.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_13 .new_layoutfull_box{
                    visibility:visible;
                }
            #layoutfull_box_12.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:32vw;border-style:solid;border-right-width:1vw;border-color:#ffffff;}#layoutfull_box_6:hover{}
                #layoutfull_box_12:hover .background-img {
                    filter:none;
                }
            
                #layoutfull_box_12 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://tantostore.com/files/image/1762884447_1 copy.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layoutfull_box_12 .new_layoutfull_layer{}#layoutfull_box_311:hover .new_layoutfull_layer{}
            
            #layoutfull_box_12 .new_layoutfull_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(38,38,38,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layoutfull_box_12 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_12:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(38,38,38,.5);
            }
        
            #layoutfull_box_12 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_12.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_12 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_6{
                overflow:hidden;
            }
            #module_new_layoutfull_6 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_6 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_6 .new_layoutfull_module{
                width:25% !important;
                position:relative;
                overflow:hidden;
            }
        
            .dno{
                display: none!important;
            }
             #div_profile_picture, 
             #div_profile_picture_metro {
                display: block;
                width: 0 !important;
                height: 0 !important;
                line-height: unset !important;
            }
           
             #div_profile_picture .login-container{
                display: none !important;
            }
             #div_profile_picture #profile_picture,
             #div_profile_picture #profile_exit{
                display: none !important;
            }
            .d-none{
                display: none !important;
            }
            .header_lebas_main {
                width: 100%;
                height: 150px;
                
            position:relative;
            top: 0;
            z-index: 100;
            
            }
            .header_lebas_main_style {
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: center;
                align-items: center;
            }
            .header_lebas_main_top {
                width: 100%;
                height: 15%;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-wrap: nowrap;
                background-image: url("https://tantostore.com/files/");
                background-color: ;
                
            }
            #back_to_top{
                display: none;
                position: fixed;
                transition: 600ms;
                right: 25px;
                left: unset;
                bottom: 50px;
                z-index: 100;
                border-radius: 50%;
                border: 1px  solid  #000;
                padding: 15px;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: #777 ;
            }
            #back_to_top svg{
                width: 24px;
                height: 24px;
                fill: #fff ;
            }
            #back_to_top img{
                width: 24px;
                height: 24px;
                fill: #fff ;
                object-fit:contain;
            }
            .header_lebas_main_top_content {
                width: fit-content;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                align-content: center;
                flex-direction: row-reverse;
                gap: 2px;
                color: white;
                cursor: pointer;
            }
            .adv_link {
                text-decoration: none;
                color: #fff;
                font-size: 12;
                font-weight: 500;
            }
            .adv_link:hover {
                color: white;
            }
            .header_lebas_main_top_content:hover {
                text-decoration: underline;
            }
            .header_lebas_main_top_content_percent {
                cursor: pointer;
            }
            .header_lebas_main_top_content_shop {
                cursor: pointer;
            }
            .header_lebas_main_center {
                width: 100%;
                height: 50%;
                border-bottom: 1px solid #c6c6c6;
                background: #fff;
            }
            .header_lebas_main_center_content {
                width: 100%;
                height: 100%;
                display: flex;
                align-content: center;
                align-items: center;
                flex-wrap: nowrap;
                flex-direction: row;
                justify-content: flex-end;
            }
            
            .header_lebas_main_center_content_logo {
                width: 30%;
                height: 100%;
                display: flex;
                align-items: center;
            }
            .header_lebas_main_center_content_logo_content {
                width: -webkit-fill-available;
                height: -webkit-fill-available;
                display: flex;
                justify-content: center;
                align-items: center;
                align-content: center;
                padding: 0px 0px;
            }
            .header_lebas_main_center_content_logo_content img {
                width: 200px;
                height: 58px;
                object-fit: contain;
                cursor: pointer;
            }
            .header_lebas_main_center_content_search_and_button {
                width: 35%;
                height: 100%;
            }
            .header_lebas_main_center_content_search_and_button_content {
                width: 100%;
                height: 100%;
                display: flex;
                align-content: center;
                align-items: center;
                justify-content: flex-end;
                flex-direction: row;
                padding: 0 20px;
            }
            .header_lebas_main_center_content_search_and_button_content_search {
                width: 40%;
                height: 100%;
                padding: 20px 5px;
            }
            .header_lebas_main_center_content_search_and_button_content_search_field {
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: center;
                align-items: center;
                border: 1px solid gray;
            }
            .header_lebas_hover_style_labels_content_category_main_title_subtext {
                cursor: pointer;
                font-size: 13px;
            }
            .header_lebas_hover_style_labels_content_category_main_title_subtext:hover {
                font-weight: bold;
            }
            .header_lebas_main_center_content_search_and_button_content_search_field_input {
                width: 80%;
                height: 100%;
                text-align: right;
                direction: rtl;
                font-size: 15px;
                padding: 0 5px;
                background-color: #fff;
                color: gray;
            }
            .header_lebas_main_center_content_search_and_button_content_search_field_input::placeholder {
                color: gray;
            }
            .header_lebas_main_center_content_search_and_button_content_search_field_icon {
                width: 20%;
                height: 100%;
                display: flex;
                align-content: center;
                justify-content: center;
                align-items: center;
                background-color: #fff;
            }
            .header_lebas_main_center_content_search_and_button_content_search_field_icon svg {
                height: 20px;
                width: 20px;
                cursor: pointer;
            }
            .header_lebas_main_center_content_search_and_button_content_buttons {
                width: 30%;
                height: 100%;
                display: flex;
                flex-direction: row-reverse;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: center;
                align-items: center;
                gap: 2px;
            }
            .header_lebas_main_center_content_search_and_button_content_buttons_button {
                width: 25%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                align-content: center;
            }
            .header_lebas_main_center_content_search_and_button_content_buttons_button_icon {
                height: 50px;
                width: 50px;
                cursor: pointer;
                display: flex;
                justify-content: center;
                align-content: center;
                align-items: center;
            }
            .header_lebas_main_center_content_search_and_button_content_buttons_button_icon img{
                height: 100%;
                width: 100%;
                object-fit: contain;
                cursor: pointer;
            }
            .cart_icon {
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .counter_cart {
                position: absolute;
                width: 20px;
                height: 20px;
                display: flex;
                justify-content: center;
                align-content: center;
                align-items: center;
                z-index: 100000000000;
                top: 45px;
                left: 8%;
            }
            .counter_cart_number {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background-color: #7403b8;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .counter_cart_number span {
                color: white;
                font-size: 10px;
            }
            .profile_icon {
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .header_lebas_main_style_bottom {
                width: 100%;
                height: 35%;
                border-bottom: 1px solid gray;
            }
            .header_lebas_main_style_bottom_content {
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                align-content: center;
                flex-direction: row;
                gap: 30px;
                background-color: #fff;
            }
            .header_lebas_main_style_bottom_content_button {
                cursor: pointer;
                height: 100%;
                align-content: center;
            }
            .header_lebas_main_style_bottom_content_button_title {
              position: relative;       
              display: inline-flex;     
              align-items: center;
              justify-content: center;
              font-size: 15px;
              font-weight: bold;
              cursor: pointer;
              color: black;
            }
            .header_lebas_main_style_bottom_content_button_title::before {
              content: "";
              position: absolute;
              bottom: 0;
              left: 0;
              height: 1px;                 
              width: 0;                    
              background-color: currentColor; 
              transition: width 0.3s ease; 
            }
            .header_lebas_main_style_bottom_content_button_title:hover::before {
              width: 100%; 
            }
            .header_lebas_hover {
                width: 100%;
                //height: 420px;
                height: fit-content;
                display: flex;
                justify-content: center;
                visibility: hidden;
                position: absolute;
                
                z-index: 15;
                background: #fff;
            }
            .header_lebas_hover_style {
                width: 90%;
                height: 90%;
                display: flex;
                flex-direction: row;
                align-content: center;
                justify-content: center;
                align-items: flex-start;
                gap: 20px;
            }
            
            @media (min-width: 1200px) {
                .header_lebas_hover_style {
                    width: 60%; 
                }
            }
            .header_lebas_hover_style_labels {
                width: 50%;
                height: 100%;
                display: flex;
                align-items: flex-start;
                justify-content: center;

            }
            .header_lebas_hover_style_labels_content {
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: space-between;
            }
            .header_lebas_hover_style_labels_content_category {
                width: 100%;
                height: fit-content;
            }
            .header_lebas_hover_style_labels_content_category_main {
                width: 100%;
                height: 100%;
                //display: flex;
                flex-wrap: nowrap;
                justify-content: flex-start;
                align-items: flex-start;
                padding-top: 10px;
                gap: 5px;
                column-count: 3;
                column-gap: 16px;
                -webkit-column-count: 3;
                -webkit-column-gap: 16px;
                display: flex;
                flex-direction: row;
            }
            .header_lebas_hover_style_labels_content_category_main_title {
                text-align: right;
                break-inside: avoid;
                -webkit-column-break-inside: avoid;
                display: inline-block;
                width: 100%;
                margin-bottom: 16px;
            }
            .header_lebas_hover_style_labels_content_category_main_title_text {
                font-size: 16px;
                cursor: pointer;
                font-weight: bold;
            }
            .header_lebas_hover_style_labels_content_category_title {
                font-size: 11px;
            }
            .header_lebas_hover_style_labels_content_category_title_text {
                cursor: pointer;
            }
            .header_lebas_hover_style_labels_content_category_title_text:hover {
                font-weight: bold;
            }
            .header_lebas_hover_style_images {
                width: 50%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: flex-start;
            }
            .header_lebas_hover_style_images_style {
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: row-reverse;
                justify-content: center;
                align-items: flex-start;
                align-content: center;
                gap: 15px;
            }
            .header_lebas_hover_style_images_style_content {
                width: 50%;
                height: fit-content;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                align-content: center;
                flex-wrap: nowrap;
                padding: 15px 0;
            }
            .header_lebas_hover_style_images_style_content_image {
                width: 100%;
                height: 95%;
            }
            .header_lebas_hover_style_images_style_content_image img {
                cursor: pointer;
                width: 100%;
            }
            .header_lebas_hover_style_images_style_content_title {
                width: 100%;
                height: 25px;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                align-content: center;
                padding: 2px 5px;
            }
            .header_lebas_hover_style_images_style_content_title_text {
                font-size: 12px;
                font-weight: bold;
            }
            .header_lebas_hover_style_images_style_content_title_text span {
                border-bottom: 1px solid black;
                cursor: pointer;
            }
            .column {
                display: flex;
                flex-direction: column; 
                width: 33%; 
                row-gap: 15px;
            }
             .login-icon {
                color: #ff552c;
                /* width: 90px !important; */
                min-height: 45px;
                outline: none;
                border-radius: 3px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                text-decoration: none;
                box-sizing: content-box;
                border: 0px solid;
            }
             .icon-shortcut {
                color: #e84118;
                min-width: 45px;
                min-height: 45px;
                margin: 0;
                outline: none;
                border-radius: 3px;
                background: #2c3e50;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                transition: .4s;
                cursor: pointer;
                text-decoration: none;
            }
             .status-user {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                text-align: center;
                margin: 0 5px;
                font-size: 14px;
            }
             .icon-login {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                text-align: center;
                margin: 0 5px;
                font-size: 14px;
                width: 25px;
                height: 25px;
            }
             .icon-login svg {
                width: 25px;
                height: 25px;
                fill: #e84118;
            }
           
             #div_profile_picture .rShowLogin{
                position: absolute;
                top: 0;
                left: 0;
                width: 0;
                height: 0;
                z-index: -1000;
            }
             #div_profile_picture .login-container{
                display: none !important;
            }
             #div_profile_picture #profile_picture,
             #div_profile_picture #profile_exit{
                display: none !important;
            }
            .header_lebas_main_center_content_types {
                width: 35%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .header_lebas_main_center_content_types_content {
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                flex-direction: row;
            }
            
            .header_lebas_main_center_content_types_content_item {
                position: relative; 
                width: fit-content;
                height: 30px;
                padding: 5px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
            }
            
            .header_lebas_main_center_content_types_content_item span {
                cursor: pointer;
            }
            
            .header_lebas_main_center_content_types_content_item::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0; 
                width: 0;
                height: 0.5px;
                background: currentColor; 
                transition: width 0.3s ease;
            }
            
            .header_lebas_main_center_content_types_content_item:hover::after {
                width: 100%; 
            }
            
            
            
            .header_lebas_main_center_content_types_content>a:hover {
                color: currentColor;
            }

            .isselected {
                font-weight: bold;
            }
            
        
        
                .icon-container .icon-item.login-icon{
                    color: undefined;
                    /*width: 90px !important;*/
                    min-height: 45px;
                    outline: none;
                    border-radius: 3px;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    text-decoration: none;
                    box-sizing: content-box;
                    border: 0px  solid  transparent;
                }
                .icon-container .icon-item.login-icon .status-user,
                .icon-container .icon-item.login-icon .icon-login{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    margin: 0 5px;
                    font-size:14px;
                }
            #module_footer_section_6{
;
width:100%;
padding-top:4vw;
padding-right:4vw;
padding-bottom:4vw;
padding-left:4vw;
border-style:none;
}#module_footer_column_14{
;
width:25%;
border-style:none;
}#module_footer_items_48{
;
cursor:default;
width:12vw;
height:4vw;
font-weight:400;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_48:hover{
;
}#module_footer_column_15{
;
width:25%;
margin-top:0px;
border-style:none;
}#module_footer_items_49{
;
cursor:default;
line-height:1.5vw;
color:#FFF;
font-weight:bold;
font-size:1.05vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_49:hover{
;
}#module_footer_row_39{
;
padding-top:1.5vw;
border-style:none;
}#module_footer_items_50{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_50:hover{
;
}#module_footer_row_40{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_51{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_51:hover{
;
}#module_footer_row_41{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_52{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_52:hover{
;
}#module_footer_column_16{
;
width:25%;
margin-top:0px;
border-style:none;
}#module_footer_items_53{
;
cursor:default;
line-height:1.5vw;
color:#FFF;
font-weight:bold;
font-size:1.05vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_53:hover{
;
}#module_footer_row_43{
;
padding-top:1.5vw;
border-style:none;
}#module_footer_items_54{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_54:hover{
;
}#module_footer_row_44{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_55{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_55:hover{
;
}#module_footer_row_45{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_56{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_56:hover{
;
}#module_footer_row_46{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_57{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_57:hover{
;
}#module_footer_column_17{
;
width:25%;
margin-top:0px;
border-style:none;
}#module_footer_items_58{
;
cursor:default;
line-height:1.5vw;
color:#FFF;
font-weight:bold;
font-size:1.05vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_58:hover{
;
}#module_footer_row_48{
;
padding-top:1.5vw;
border-style:none;
}#module_footer_items_59{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_59:hover{
;
}#module_footer_row_49{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_60{
;
cursor:default;
line-height:1.2vw;
color:#fff;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_60:hover{
;
}#module_footer_row_50{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_61{
;
cursor:default;
line-height:1.2vw;
color:#fff;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_61:hover{
;
}#module_footer_column_18{
;
width:25%;
margin-top:0px;
border-style:none;
}#module_footer_items_62{
;
cursor:default;
line-height:1.5vw;
color:#FFF;
font-weight:bold;
font-size:1.05vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_62:hover{
;
}#module_footer_row_52{
;
padding-top:1.5vw;
border-style:none;
}#module_footer_items_63{
;
cursor:default;
width:3vw;
height:3vw;
font-weight:400;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_63:hover{
;
}#module_footer_items_64{
;
cursor:default;
width:3vw;
height:3vw;
font-weight:400;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:1.5vw;
margin-left:1.5vw;
}#module_footer_items_64:hover{
;
}#module_footer_items_65{
;
cursor:default;
width:3vw;
height:3vw;
font-weight:400;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_65:hover{
;
}#module_footer_row_69{
;
padding-top:1.5vw;
border-style:none;
}#public_footer_main_4{;background-color:#000000;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#public_footer_main_4:hover{;}
                #public_footer_main_4{
                    position:relative;
                    margin-right:auto !important;
                    margin-left:auto !important;
                    overflow:hidden !important;
                }
                #public_footer_main_4 > div{
                    position:relative;
                    z-index:12;
                }
                
                #public_footer_main_4 
            
            #public_footer_main_4 .new_admin_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #public_footer_main_4 .layer_first_child {
                width: 100%;
            }
        
            #public_footer_main_4:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #msg_footer.msg_footer,
            #msg_footer_complete.msg_footer{
                position: fixed;
                top: 50px;
                right: 10px;
                width: 400px;
                height: 50px;
                z-index: 10000;
                border-radius: 3px;
            }

            #msg_footer .d_flex,
            #msg_footer_complete .d_flex{
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                height: 100%;
                padding: 0 15px;
            }

            #msg_footer.green_msg_footer {
                background-color: #d4edda;
                border: 1px solid #c3e6cb;
                color: #155724;
            }

            #msg_footer.red_msg_footer,
            #msg_footer_complete.red_msg_footer{
                background-color: #f8d7da;
                border: 1px solid #f5c6cb;
                color: #721c24;
            }

            #msg_footer .close_msg,
            #msg_footer_complete .close_msg{
                cursor: pointer;
                font-size: 25px;
                padding-right: 15px;
            }

            #msg_footer .close_msg:hover,
            #msg_footer_complete .close_msg:hover{
                color: #000;
            }
            
            .border_red{
                border: 1px solid #e20000;
            }
            footer a{
                color: inherit;
            }
        .dno{display:none!important;}
            #body_popup_1,#body_popup_2{
                position:fixed;
                display:flex;
                text-align:center;
                top:0;
                bottom:0;
                right:0;
                left:0;
                z-index:99999;
                visibility:hidden;
                opacity: 0;
                background:rgba(0,0,0,0.5);
            }
            #body_popup_1.open-popup,#body_popup_2.open-popup{
                visibility:visible;
                opacity: 1;
            }
            #body_popup_1 > div,#body_popup_2 > div{
                display:block;
                background:#fff;
                padding:10px;
                margin:auto;
                transform:translateY(-150px);
                -webkit-transition:transform .3s;-moz-transition:transform .3s;-ms-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s;
                text-align:center;
                border-radius:10px;
                position:relative;
                z-index:999999;
            }
            #body_popup_1.open-popup > div,#body_popup_1.open-popup > div{
                transform:translateY(0);
            }
            #body_popup_1 .icon-close-popup{
                position:absolute;
                font-size:30px;
                height:30px;
                width:30px;
                border-radius:50%;
                color:red;
                top:-10px;
                right:-10px;
                background-color:transparent;
                z-index:9999;
            }
            #body_popup_1 .icon-close-popup i{
                position:absolute;
                top:0;
                right:0;
            }
            #body_popup_1 .container-html{
                height:100%;
                overflow:auto;
                max-height:90vh;
            }
            #body_popup_1 .container-html::-webkit-scrollbar{
                width:5px;
                height:100%;
            }
            #body_popup_1 .container-html::-webkit-scrollbar-track{
                background-color:transparent;
            }
            #body_popup_1 .container-html::-webkit-scrollbar-thumb{
                background-color:#777;
                border-radius:20%;
            }
            #body_popup_1 .icon-close-popup{
                color:#fff;
                top:0;
                right:0;
            }
            #module_waiting_box{
                position:fixed;
                background:rgba(256,256,256,0.8);
                width:100%;
                height:100%;
                -webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;-o-transition:.3s;transition:.3s;
                top:0;
                right:0;
                opacity:0;
                z-index:9999999999999;
                visibility:hidden;
            }
            #module_waiting_box.show-waiting{
                visibility:visible;
                opacity:1;
            }
            #module_waiting_box .spinner {
              margin: 100px auto 0;
              width: 70px;
              text-align: center;
            }
            
            #module_waiting_box .spinner > div {
              width: 18px;
              height: 18px;
              background-color: #333;
              border-radius: 100%;
              display: inline-block;
              -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
              animation: sk-bouncedelay 1.4s infinite ease-in-out both;
            }
            
            #module_waiting_box .spinner .bounce1 {
              -webkit-animation-delay: -0.35s;
              animation-delay: -0.35s;
            }
            
            #module_waiting_box .spinner .bounce2 {
              -webkit-animation-delay: -0.16s;
              animation-delay: -0.16s;
            }
            
            @-webkit-keyframes sk-bouncedelay {
              0%, 95%, 100% { -webkit-transform: scale(0) }
              50% { -webkit-transform: scale(1.0) }
            }
            
            @keyframes sk-bouncedelay {
              0%, 95%, 100% { 
                -webkit-transform: scale(0);
                transform: scale(0);
              } 50% { 
                -webkit-transform: scale(1.0);
                transform: scale(1.0);
              }
            }
        body{direction: rtl;text-align: right;}