/**
 * 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='74']{;background-color:transparent;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;z-index:200;border-style:none;}.module[data-id_page='74']:hover{;}.module[data-id_page='74']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='74'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='74']  
                
                .module[data-id_page='74'] .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='74'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='74']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            
            .txt_on_img_right{
                right: 0px;
            }
            .txt_on_img_left{
                left: 0px;
            }
            .txt_on_img{

                top: 0;
                width: 35%;
                height: 100%;
                padding: 10% 7%;
            }
            .txt_on_img div{
                margin-top: 30px;
            }
            .txt_on_img p{
                line-height: 2em;
            }
            .txt_on_img a{
                border: 2px solid;
            }
            .txt_on_img .slider_link2{
                padding: 5px 20px;
                transition: all  0.2s;
            }
            .txt_on_img .slider_link2:hover{
                background-color: #fff;
                border-color:#fff;
                color:white !important;
            }
            .slidersimple {
                overflow: hidden;
                position: relative;
                background: #f5f5f5;
                width: 100%;
                text-align: center;
            }
            .slidersimple_r-img-item img{
                width:100%;
                height:100%;
                object-fit: fill;
            }
            .slidersimple_rBulletBox{
                width:100%;
                position: absolute;
                bottom:0;
            }
        
            
            .slider_link{
                position: absolute;
                right: 0;
                width: 100%;
                height: 100%;
            }

            .slidersimple> .slidersimple_r-arrow.left{
                z-index: 9;
                left:0px;
                transform: scaleX(-1);
            }
            .slidersimple> .slidersimple_r-arrow.right{
                -moz-transform: scaleX(-1);
                -o-transform: scaleX(-1);
                -webkit-transform: scaleX(-1);
                transform: scaleX(1);
                filter: FlipH;
                -ms-filter: "FlipH";
                right: 0px;
                top:0;
            }
            .slidersimple> .slidersimple_r-arrow{
                display:inline-block;
                background:url(https://madikait.ir/files/main/main/img/icons/flesh.svg) no-repeat center;
                background-size:contain;
                cursor:pointer;
                background-size: 50%;
                width: 40px;
                height:100%;
                position: absolute;

            }
            .slidersimple>.slidersimple_r-mask{width:100%;height:100%; display:inline-block;overflow:hidden;position:relative;}
            .slidersimple_r-img-item{right:0;width:100%;height:100%;margin:auto;position:absolute;text-align:center;}


            /*.slidersimple_rBullet:hover{background:}*/

            .slidersimple_rBullet.slidersimple_rSelected{background:;}
            .slidersimple_rSelected{
                /*padding-top: 5px;*/
                opacity: 1;
                -webkit-filter: grayscale(0%);
                filter: grayscale(0%);
            }
            .slidersimple_rSelected img{
                -webkit-filter: grayscale(0%);
                filter: grayscale(0%);
            }
            .slidersimple_rBullet{width:13px; height:13px; background:transparent; border-radius:20px;display:inline-block;border: 1px solid ;
                        margin:3px; -webkit-transition: background .15s ease-in-out;
                 -moz-transition: background .15s ease-in-out;
                 -o-transition: background .15s ease-in-out;
                 transition: background .15s ease-in-out;}
        #slidersimple1{
                    background-color:#fff;
                }#slidersimple1{
                        font-size:0px;
                }#slidersimple1 .color_tem1{ /*range asli color ??? */
            color:#fff ;
        }#slidersimple1 .color_tem2{ /*range asli color ??? */
            color:#fff ;
        }#slidersimple1 .color_tem1_bg{/*range back box  */
            background-color:#fff ;
        }#slidersimple1 .color_tem2_bg{/*range back box if gradient*/
            background-color:#fff ;
        }#slidersimple1 .color_title{/*range title asli module*/
                            color: ;
                                }#slidersimple1 .color_text{/*range text haye module  */
                            color:;
                                }#slidersimple1 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#slidersimple1 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#slidersimple1 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#slidersimple1 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#slidersimple1 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#slidersimple1 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#slidersimple1 .color_box_text{/*range text dakhele box ha! */
                            color:#fff ;
                                }#slidersimple1 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }#slidersimple1 .pr_1200 , #slidersimple1 .color_1200_bg{
                             background-color:#fff ;
                             padding:0px ;
                                }.module[data-id_page='75']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;border-style:none;}.module[data-id_page='75']:hover{;}.module[data-id_page='75']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='75'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='75']:hover .background-img{
                        filter:none;
                    }
                
                .module[data-id_page='75'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   .module[data-id_page='75']  
                
                .module[data-id_page='75'] .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='75'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='75']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='75']{
                               background-image:url("https://madikait.ir/files/image/1637415119_1 (45).jpg");
                           }
                       
            #module_new_medical_12 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_12 .content_str{
				width:100%;
			}
            #module_new_medical_12 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_12 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_12 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_12 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_12 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_12 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_12 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_12 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_12 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_12 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_12 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_12 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_12 a{
                color:#00AFEF!important;
            }
            #module_new_medical_12 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_12 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_12 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            #module_new_medical_12 .new_medical_title_main{color:#fff;font-weight:bold;font-size:30px;justify-content:center;margin-top:30px;height:30px;line-height:30px;}.module[data-id_page='257']:hover .new_medical_title_main{}#module_new_medical_12 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px;border-style:none;}.module[data-id_page='75']:hover .new_medical_box_main{}
            #module_new_medical_12 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_12 .new_medical_module{
                    width:232px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_12 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_12 .new_medical_module:nth-child(5n){
                    margin-left:0;
                }
                #module_new_medical_12 .medical_box_main_animation_trigger:nth-child(5n){
                    margin-left:0;
                }
                #module_new_medical_12 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_12 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_12 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_12 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_12 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_12 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_12{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_12 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_12 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_12 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_12 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_12 .swiper-container{
                width:1200px;
            }
            #module_new_medical_12 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_12 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_12 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_12 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='3390']{;background-color:#8e9eab;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;margin-top:60px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}.module[data-id_page='3390']:hover{;}.module[data-id_page='3390']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='3390'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='3390']  
                
                .module[data-id_page='3390'] .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='3390'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='3390']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #module_title_1 .new_title_title_main{color:#000;font-weight:bold;font-size:22px;justify-content:flex-start;text-align:right;padding-right:16px;width:1200px;line-height:44px;}.module[data-id_page='3390']:hover .new_title_title_main{}
            #module_title_1 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        #module_title_1 .new_title_box_main{visibility:visible;border-style:none;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#d9d9d9;}.module[data-id_page='3390']:hover .new_title_box_main{}
            #module_title_1 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        
            .parent-absolute-box{
                width: 100%;
                max-width: 1200px;
                height: 100%;
                position: absolute !important;
                right:50%;
                transform:translateX(50%);
            }
            .absolute-box{
                position:absolute;
                overflow:hidden;
            }
            .module_title_parent_box_title > div,.parent-title-icon{
                justify-content: flex-start;
            }
        

        .module[data-id_page='1262']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;padding-bottom:40px;border-style:none;}.module[data-id_page='1262']:hover{;}.module[data-id_page='1262']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1262'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='1262']  
                
                .module[data-id_page='1262'] .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='1262'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='1262']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            .toastify{
                position: fixed;
                top: 10px;
                right: -100vw;
                border-radius: 3px;
                padding: 0.8rem;
                overflow: hidden;
                z-index: 999999;
                transition: 400ms cubic-bezier(.47,1.64,.41,.8);
                  
            min-width: 350px;
            width: max-content;
        
            }
            .times-tostify{
                flex: 0 0 max-content;
                width: 100%;
                max-width: max-content;
            }
            .times-tostify svg{
                width: 20px;
                height: 20px;
                fill: #fff;
            }
            .head-toastify svg{
                fill: #fff;
            }
            #message_toastify{
                padding-top: 0.5rem;
                color: #fff;
            }
            .error-toastify{
                background-color: #dc3545;    
                box-shadow: 0 1px 20px 1px #dc3545;
            }
            .success-toastify{
                background-color: #28a745;
                box-shadow: 0 1px 20px 1px #28a745;
            }
            .warning-toastify{
                background-color: #ffc107;
                box-shadow: 0 1px 20px 1px #ffc107;
            }
            .info-toastify{
                background-color: #007bff;
                box-shadow: 0 1px 20px 1px #007bff;
            }
            .error-toastify .error-icon,
            .success-toastify .success-icon,
            .info-toastify .info-icon,
            .warning-toastify .warning-icon{
                display: flex !important;
            }
            .error-icon,.success-icon,.warning-icon,.info-icon{
                display: none;
            }
        
            .module_shop_simplesub_295{
                background-color:none;
                background-image:url(https://madikait.ir/files/);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: left;
                padding-top:0rem;
                padding-bottom:0rem;
                margin-top:0rem;
                margin-bottom:0rem;
                z-index:0;
            }
            .module_shop_simplesub_295 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_295 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_295 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_295 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_295 .path-email{
                fill: red;
            }
            .module_shop_simplesub_295 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_295 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_295 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_295 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_295 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_295 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_295 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_295 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_295 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_295 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_295 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_295 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_295 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_295 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_295 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_295 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_295 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_295 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            
            
            .module_shop_simplesub_295 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_295 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
        
            .module_shop_simplesub_295 .border-bottom-left{
                border-bottom-left-radius:0px;
            }
            .module_shop_simplesub_295 .border-bottom-right{
                border-bottom-right-radius:0px;
            }
            .module_shop_simplesub_295 .link-img{
                height:100%!important;
                border-radius:0px;
            }
            .module_shop_simplesub_295 .box-img-price{
                width:30px;
                height:30px;
                margin-left:2rem;
            }  
            .module_shop_simplesub_295 .div-price-center{
                width: 100%;
                display: flex;
                justify-content: center;
            } 
            .module_shop_simplesub_295 .box-img-price-center{
                width:30px;
                height:30px;
                margin-right: 0.5rem;
            }
            .module_shop_simplesub_295 .div-title label{
                color:#000000!important;
            }
            .module_shop_simplesub_295 .div-title:hover label{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_295 .link-title{
                color:#000000!important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .module_shop_simplesub_295 .link-title:hover{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_295 .div-offer{
                width:18%;
                height:8%;
                background-color: #ff5722;
                color:#fff;
                font-weight: bold;
                position: absolute;
                left: 6%;
                top: 6.2%;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
            }
            .module_shop_simplesub_295 .img-price{
                width: 100%;
                object-fit: contain;
                height: 100%;
            } 
            .module_shop_simplesub_295 .title-for-swiper{
                display:flex;
                justify-content:right;
                align-items: center;
                margin:0rem auto 0rem auto;
                width:1200px;
                max-width:1200px;
                overflow:hidden;
                font-size:1.3em;
                height:50px;
                
                padding:0.5rem;
            }
            .module_shop_simplesub_295 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_295 .text-title-sub-main{
                
                color:#000;
                background-color:#ffffff!important;
            }
            
            .module_shop_simplesub_295 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_295 .container{
                width:1200px;
                max-width:1200px;
                margin:auto auto auto auto;
                overflow:hidden;
                border:1px solid #d9d9d9;
            }
            .module_shop_simplesub_295 .card-box-type1{
                border:1px solid #dddddd;
                background:;
                border-radius:0px;
            }
            .module_shop_simplesub_295 .swiper-slide{
                display: flex;
                flex-direction: column;
            }
            .module_shop_simplesub_295 .height-content {
                height:max-content;
            }
            .module_shop_simplesub_295 .btn-next{
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                right:0.6%;
                margin-top: 18px;
                z-index: 1;
                background:#fff;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_295 .btn-prev:hover{
                background:#fff;
            }
            .module_shop_simplesub_295 .btn-next:hover{
                background:#fff;
            }
            .module_shop_simplesub_295 .btn-prev{
                background:#fff;
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                left:0.6%;
                margin-top: 18px;
                z-index: 1;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_295 .svg_next{
                width:13px;
                fill:#333;
            }
            .module_shop_simplesub_295 .svg_next:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_295 .svg_prev{
                width:13px;
                fill:#333;
                transform:rotate(180deg)
            }
            .module_shop_simplesub_295 .svg_prev:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_295 .card{
                padding:0.5rem;
                display: flex;
                justify-content: center;
            }
            .module_shop_simplesub_295 .div-box-img{
                width:100%;
                height:185px!important;
                padding:0rem;
            }
            .module_shop_simplesub_295 .div-box-img img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            .module_shop_simplesub_295 .div-title{
                width: 100%;
                height: 45px;
                font-weight:500;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content: center;
                align-items: center;
                font-size:0.9em;
                margin:0rem auto 0rem auto;
            }
            .module_shop_simplesub_295 .div-title span{
                color:#000000;    
            }
            .module_shop_simplesub_295 .div-title span:hover{
                color:#03a9f5;
                cursor:pointer;   
            }
            .module_shop_simplesub_295 .div-price-discount{
                width: 100%;
                height: 70px;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content:center;
                margin-bottom:0.7rem;
                align-items:baseline;
                flex-direction:column;
                flex-wrap:wrap;
            }
            .module_shop_simplesub_295 .price{
                width:65%;
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                justify-content: end;
                color:#000;
            }
            .module_shop_simplesub_295 .price-center{
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                width:100%;
                justify-content: center;
                color:#000;
            }
            .module_shop_simplesub_295 .discount{
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 200;
                width: 64%;
                text-decoration: line-through;
                color: #999999;
                padding-right:0.5rem;
                justify-content: end;
            }
            .module_shop_simplesub_295 .svg_tooman{
                width: 35px;
                padding-right: 0.2rem;
                fill:red!important;
            }
            .module_shop_simplesub_295 .svg_tooman_discount{
                width: 35px;
                padding-right: 0.2rem;
                fill:#999999!important;
            }
            .module_shop_simplesub_295 .div-add-share{
                width:100%;
                height:45px;
                display:flex;
                border-top: 1px solid #dddddd;
                cursor:pointer;
                flex-direction: row;
            }
            .module_shop_simplesub_295 .add-shop{
                width: 20%;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow:hidden;
                background:#d9d9d9;
                cursor:pointer;
            }
            .module_shop_simplesub_295 .svgHeart{ 
                height: 100%;
            }
            .module_shop_simplesub_295 .svgShare{ 
                height: 100%;
            }
            .module_shop_simplesub_295 .animate-share{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_295 .animate-heart{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_295 .add-shop span{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_295 .add-shop .link-card{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_295 .link-card:hover{
                color:white;
            }
            .module_shop_simplesub_295 .grow{
                flex-grow:2;
            }
            .module_shop_simplesub_295 .svg_heart{
                width:15px;;
                fill:#999999;
                z-index:10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_295 .svg_share{
                width: 15px;
                fill: #999999;
                z-index: 10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_295 .animate-blue span{
                cursor:pointer;
            }
            .module_shop_simplesub_295 .svgHeart:first-child .svg_heart{
                fill: #fff !important;
            }
            .module_shop_simplesub_295 .svgHeart:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_295 .svgShare:first-child .svg_share{
                fill: #fff !important;
            }
            .module_shop_simplesub_295 .svgShare:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_295 .animate-blue{
                position:absolute;
                top:0;
                left:-100%;
                bottom:0;
                width:100%;
                background:#d9d9d9;
                transition: left 0.4s;
            }
            .module_shop_simplesub_295 .add-shop:hover .animate-blue{
                left:0;
            }
            .module_shop_simplesub_295 .add-shop:hover span{
                color:white;
            }
            .module_shop_simplesub_295 .add-shop:hover .link-card{
                color:#000;
            }
            .module_shop_simplesub_295 .add-shop:hover .animate-heart{
                bottom: -50%; 
            }
            .module_shop_simplesub_295 .add-shop:hover .animate-share{
                bottom: -50%; 
            }
        
            .link-card{
                cursor: pointer;
            }
        .module[data-id_page='5088']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:32px;border-style:solid;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='5088']:hover{;}.module[data-id_page='5088']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='5088'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='5088']  
                
                .module[data-id_page='5088'] .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='5088'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='5088']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_560 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_560 .content_str{
				width:100%;
			}
            #module_new_medical_560 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_560 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_560 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_560 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_560 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_560 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_560 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_560 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_560 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_560 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_560 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_560 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_560 a{
                color:#00AFEF!important;
            }
            #module_new_medical_560 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_560 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_560 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2215 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2215 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2215 .background-img{
                border-radius:;
            }
        #medical_box_2215 .new_medical_button{color:#000000;background-color:transparent;font-weight:500;font-size:14px;width:130px;height:40px;line-height:40px;text-align:center;border-radius:2px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#434343;box-shadow:0px 0px 0px 0px ;}#medical_box_2208 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                   #medical_box_2215  
                
                #medical_box_2215 .new_medical_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;
            
                }
                #medical_box_2215 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2215:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2215 .mode1-size_2215{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2215 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2215 > div{
               height:100%;
            }
            #medical_box_2215 .mode2-size_2215{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2215 .mode3-size_2215{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2215 .mode4-size_2215{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2215 .mode5-size_2215{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2215 .mode6-size_2215{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2215 .mode7-size_2215{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2215 .mode7-size_2215 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2215 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2215 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2215{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2215 span:hover{
                color:!important;
            }
            .custom2_2215{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2215 span:hover{
                color:;
            }
            #medical_box_2215 .mode-btn1_2215{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2215 .mode-btn1_2215 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2215 .mode-btn2_2215{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2215 .mode-btn2_2215 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2215 .div-btn-title_main_2215{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2215 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2215 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_560 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='5081']:hover .new_medical_box_main{}
            #module_new_medical_560 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_560 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_560 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_560 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_560 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_560 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_560 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_560 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_560 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_560 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_560 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_560{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_560 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_560 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_560 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_560 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_560 .swiper-container{
                width:1200px;
            }
            #module_new_medical_560 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_560 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_560 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_560 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='3391']{;background-color:#8e9eab;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;margin-top:50px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}.module[data-id_page='3391']:hover{;}.module[data-id_page='3391']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='3391'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='3391']  
                
                .module[data-id_page='3391'] .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='3391'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='3391']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #module_title_2 .new_title_title_main{color:#000;font-weight:bold;font-size:22px;justify-content:flex-start;text-align:right;padding-right:16px;width:1200px;line-height:44px;}.module[data-id_page='3391']:hover .new_title_title_main{}
            #module_title_2 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        #module_title_2 .new_title_box_main{visibility:visible;border-style:none;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#d9d9d9;}.module[data-id_page='3391']:hover .new_title_box_main{}
            #module_title_2 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        .module[data-id_page='35']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;margin-top:0px;padding-top:20px;padding-bottom:60px;border-style:none;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='35']:hover{;}.module[data-id_page='35']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='35'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='35']  
                
                .module[data-id_page='35'] .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='35'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='35']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            .module_shop_simplesub_1{
                background-color:none;
                background-image:url(https://madikait.ir/files/);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: left;
                padding-top:0rem;
                padding-bottom:0rem;
                margin-top:0rem;
                margin-bottom:0rem;
                z-index:0;
            }
            .module_shop_simplesub_1 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_1 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_1 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_1 .path-email{
                fill: red;
            }
            .module_shop_simplesub_1 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_1 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_1 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_1 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_1 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_1 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_1 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_1 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_1 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_1 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_1 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_1 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_1 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_1 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_1 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            
            
            .module_shop_simplesub_1 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_1 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
        
            .module_shop_simplesub_1 .border-bottom-left{
                border-bottom-left-radius:0px;
            }
            .module_shop_simplesub_1 .border-bottom-right{
                border-bottom-right-radius:0px;
            }
            .module_shop_simplesub_1 .link-img{
                height:100%!important;
                border-radius:0px;
            }
            .module_shop_simplesub_1 .box-img-price{
                width:30px;
                height:30px;
                margin-left:2rem;
            }  
            .module_shop_simplesub_1 .div-price-center{
                width: 100%;
                display: flex;
                justify-content: center;
            } 
            .module_shop_simplesub_1 .box-img-price-center{
                width:30px;
                height:30px;
                margin-right: 0.5rem;
            }
            .module_shop_simplesub_1 .div-title label{
                color:#000000!important;
            }
            .module_shop_simplesub_1 .div-title:hover label{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_1 .link-title{
                color:#000000!important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .module_shop_simplesub_1 .link-title:hover{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_1 .div-offer{
                width:18%;
                height:8%;
                background-color: #ff5722;
                color:#fff;
                font-weight: bold;
                position: absolute;
                left: 6%;
                top: 6.2%;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
            }
            .module_shop_simplesub_1 .img-price{
                width: 100%;
                object-fit: contain;
                height: 100%;
            } 
            .module_shop_simplesub_1 .title-for-swiper{
                display:flex;
                justify-content:right;
                align-items: center;
                margin:0rem auto 0rem auto;
                width:1200px;
                max-width:1200px;
                overflow:hidden;
                font-size:1.3em;
                height:50px;
                
                padding:0.5rem;
            }
            .module_shop_simplesub_1 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_1 .text-title-sub-main{
                
                color:#000;
                background-color:#ffffff!important;
            }
            
            .module_shop_simplesub_1 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_1 .container{
                width:1200px;
                max-width:1200px;
                margin:auto auto auto auto;
                overflow:hidden;
                border:1px solid #d9d9d9;
            }
            .module_shop_simplesub_1 .card-box-type1{
                border:1px solid #dddddd;
                background:;
                border-radius:0px;
            }
            .module_shop_simplesub_1 .swiper-slide{
                display: flex;
                flex-direction: column;
            }
            .module_shop_simplesub_1 .height-content {
                height:max-content;
            }
            .module_shop_simplesub_1 .btn-next{
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                right:0.6%;
                margin-top: 18px;
                z-index: 1;
                background:#fff;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_1 .btn-prev:hover{
                background:#fff;
            }
            .module_shop_simplesub_1 .btn-next:hover{
                background:#fff;
            }
            .module_shop_simplesub_1 .btn-prev{
                background:#fff;
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                left:0.6%;
                margin-top: 18px;
                z-index: 1;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_1 .svg_next{
                width:13px;
                fill:#333;
            }
            .module_shop_simplesub_1 .svg_next:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_1 .svg_prev{
                width:13px;
                fill:#333;
                transform:rotate(180deg)
            }
            .module_shop_simplesub_1 .svg_prev:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_1 .card{
                padding:0.5rem;
                display: flex;
                justify-content: center;
            }
            .module_shop_simplesub_1 .div-box-img{
                width:100%;
                height:185px!important;
                padding:0rem;
            }
            .module_shop_simplesub_1 .div-box-img img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            .module_shop_simplesub_1 .div-title{
                width: 100%;
                height: 45px;
                font-weight:500;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content: center;
                align-items: center;
                font-size:0.9em;
                margin:0rem auto 0rem auto;
            }
            .module_shop_simplesub_1 .div-title span{
                color:#000000;    
            }
            .module_shop_simplesub_1 .div-title span:hover{
                color:#03a9f5;
                cursor:pointer;   
            }
            .module_shop_simplesub_1 .div-price-discount{
                width: 100%;
                height: 70px;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content:center;
                margin-bottom:0.7rem;
                align-items:baseline;
                flex-direction:column;
                flex-wrap:wrap;
            }
            .module_shop_simplesub_1 .price{
                width:65%;
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                justify-content: end;
                color:#000;
            }
            .module_shop_simplesub_1 .price-center{
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                width:100%;
                justify-content: center;
                color:#000;
            }
            .module_shop_simplesub_1 .discount{
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 200;
                width: 64%;
                text-decoration: line-through;
                color: #999999;
                padding-right:0.5rem;
                justify-content: end;
            }
            .module_shop_simplesub_1 .svg_tooman{
                width: 35px;
                padding-right: 0.2rem;
                fill:red!important;
            }
            .module_shop_simplesub_1 .svg_tooman_discount{
                width: 35px;
                padding-right: 0.2rem;
                fill:#999999!important;
            }
            .module_shop_simplesub_1 .div-add-share{
                width:100%;
                height:45px;
                display:flex;
                border-top: 1px solid #dddddd;
                cursor:pointer;
                flex-direction: row;
            }
            .module_shop_simplesub_1 .add-shop{
                width: 20%;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow:hidden;
                background:#d9d9d9;
                cursor:pointer;
            }
            .module_shop_simplesub_1 .svgHeart{ 
                height: 100%;
            }
            .module_shop_simplesub_1 .svgShare{ 
                height: 100%;
            }
            .module_shop_simplesub_1 .animate-share{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_1 .animate-heart{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_1 .add-shop span{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_1 .add-shop .link-card{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_1 .link-card:hover{
                color:white;
            }
            .module_shop_simplesub_1 .grow{
                flex-grow:2;
            }
            .module_shop_simplesub_1 .svg_heart{
                width:15px;;
                fill:#999999;
                z-index:10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_1 .svg_share{
                width: 15px;
                fill: #999999;
                z-index: 10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_1 .animate-blue span{
                cursor:pointer;
            }
            .module_shop_simplesub_1 .svgHeart:first-child .svg_heart{
                fill: #fff !important;
            }
            .module_shop_simplesub_1 .svgHeart:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_1 .svgShare:first-child .svg_share{
                fill: #fff !important;
            }
            .module_shop_simplesub_1 .svgShare:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_1 .animate-blue{
                position:absolute;
                top:0;
                left:-100%;
                bottom:0;
                width:100%;
                background:#d9d9d9;
                transition: left 0.4s;
            }
            .module_shop_simplesub_1 .add-shop:hover .animate-blue{
                left:0;
            }
            .module_shop_simplesub_1 .add-shop:hover span{
                color:white;
            }
            .module_shop_simplesub_1 .add-shop:hover .link-card{
                color:#000;
            }
            .module_shop_simplesub_1 .add-shop:hover .animate-heart{
                bottom: -50%; 
            }
            .module_shop_simplesub_1 .add-shop:hover .animate-share{
                bottom: -50%; 
            }
        .module[data-id_page='5090']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:32px;border-style:solid;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='5090']:hover{;}.module[data-id_page='5090']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='5090'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='5090']  
                
                .module[data-id_page='5090'] .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='5090'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='5090']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_562 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_562 .content_str{
				width:100%;
			}
            #module_new_medical_562 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_562 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_562 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_562 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_562 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_562 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_562 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_562 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_562 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_562 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_562 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_562 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_562 a{
                color:#00AFEF!important;
            }
            #module_new_medical_562 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_562 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_562 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2217 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2217 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2217 .background-img{
                border-radius:;
            }
        #medical_box_2217 .new_medical_button{color:#000000;background-color:transparent;font-weight:500;font-size:14px;width:130px;height:40px;line-height:40px;text-align:center;border-radius:2px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#434343;box-shadow:0px 0px 0px 0px ;}#medical_box_2208 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                   #medical_box_2217  
                
                #medical_box_2217 .new_medical_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;
            
                }
                #medical_box_2217 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2217:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2217 .mode1-size_2217{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2217 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2217 > div{
               height:100%;
            }
            #medical_box_2217 .mode2-size_2217{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2217 .mode3-size_2217{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2217 .mode4-size_2217{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2217 .mode5-size_2217{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2217 .mode6-size_2217{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2217 .mode7-size_2217{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2217 .mode7-size_2217 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2217 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2217 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2217{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2217 span:hover{
                color:!important;
            }
            .custom2_2217{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2217 span:hover{
                color:;
            }
            #medical_box_2217 .mode-btn1_2217{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2217 .mode-btn1_2217 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2217 .mode-btn2_2217{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2217 .mode-btn2_2217 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2217 .div-btn-title_main_2217{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2217 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2217 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_562 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='5081']:hover .new_medical_box_main{}
            #module_new_medical_562 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_562 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_562 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_562 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_562 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_562 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_562 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_562 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_562 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_562 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_562 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_562{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_562 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_562 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_562 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_562 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_562 .swiper-container{
                width:1200px;
            }
            #module_new_medical_562 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_562 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_562 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_562 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='7683']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:250px;border-style:none;}.module[data-id_page='7683']:hover{;}.module[data-id_page='7683']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='7683'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='7683']:hover .background-img{
                        filter:none;
                    }
                
                .module[data-id_page='7683'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   .module[data-id_page='7683']  
                
                .module[data-id_page='7683'] .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='7683'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='7683']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='7683']{
                               background-image:url("https://madikait.ir/files/1678520327_4.png");
                           }
                       
            #module_new_medical_851 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_851 .content_str{
				width:100%;
			}
            #module_new_medical_851 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_851 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_851 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_851 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_851 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_851 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_851 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_851 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_851 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_851 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_851 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_851 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_851 a{
                color:#00AFEF!important;
            }
            #module_new_medical_851 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_851 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_851 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #module_new_medical_851 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_851 .new_medical_module{
                    width:393px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_851 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_851 .new_medical_module:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_851 .medical_box_main_animation_trigger:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_851 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_851 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_851 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_851 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_851 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_851 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_851{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_851 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_851 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_851 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_851 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_851 .swiper-container{
                width:1200px;
            }
            #module_new_medical_851 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_851 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_851 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_851 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='3392']{;background-color:#8e9eab;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;margin-top:50px;border-style:none;}.module[data-id_page='3392']:hover{;}.module[data-id_page='3392']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='3392'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='3392']  
                
                .module[data-id_page='3392'] .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='3392'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='3392']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #module_title_3 .new_title_title_main{color:#000;font-weight:bold;font-size:22px;justify-content:flex-start;text-align:right;padding-right:16px;width:1200px;line-height:44px;}.module[data-id_page='3392']:hover .new_title_title_main{}
            #module_title_3 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        #module_title_3 .new_title_box_main{visibility:visible;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#d9d9d9;}.module[data-id_page='3390']:hover .new_title_box_main{}
            #module_title_3 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        .module[data-id_page='61']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;padding-top:20px;padding-bottom:50px;border-style:none;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='61']:hover{;}.module[data-id_page='61']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='61'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='61']  
                
                .module[data-id_page='61'] .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='61'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='61']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            .module_shop_simplesub_5{
                background-color:none;
                background-image:url(https://madikait.ir/files/);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: left;
                padding-top:0rem;
                padding-bottom:0rem;
                margin-top:0rem;
                margin-bottom:0rem;
                z-index:0;
            }
            .module_shop_simplesub_5 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_5 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_5 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_5 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_5 .path-email{
                fill: red;
            }
            .module_shop_simplesub_5 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_5 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_5 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_5 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_5 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_5 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_5 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_5 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_5 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_5 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_5 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_5 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_5 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_5 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_5 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_5 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_5 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_5 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            
            
            .module_shop_simplesub_5 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_5 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
        
            .module_shop_simplesub_5 .border-bottom-left{
                border-bottom-left-radius:0px;
            }
            .module_shop_simplesub_5 .border-bottom-right{
                border-bottom-right-radius:0px;
            }
            .module_shop_simplesub_5 .link-img{
                height:100%!important;
                border-radius:0px;
            }
            .module_shop_simplesub_5 .box-img-price{
                width:30px;
                height:30px;
                margin-left:2rem;
            }  
            .module_shop_simplesub_5 .div-price-center{
                width: 100%;
                display: flex;
                justify-content: center;
            } 
            .module_shop_simplesub_5 .box-img-price-center{
                width:30px;
                height:30px;
                margin-right: 0.5rem;
            }
            .module_shop_simplesub_5 .div-title label{
                color:#000000!important;
            }
            .module_shop_simplesub_5 .div-title:hover label{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_5 .link-title{
                color:#000000!important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .module_shop_simplesub_5 .link-title:hover{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_5 .div-offer{
                width:18%;
                height:8%;
                background-color: #ff5722;
                color:#fff;
                font-weight: bold;
                position: absolute;
                left: 6%;
                top: 6.2%;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
            }
            .module_shop_simplesub_5 .img-price{
                width: 100%;
                object-fit: contain;
                height: 100%;
            } 
            .module_shop_simplesub_5 .title-for-swiper{
                display:flex;
                justify-content:right;
                align-items: center;
                margin:0rem auto 0rem auto;
                width:1200px;
                max-width:1200px;
                overflow:hidden;
                font-size:1.3em;
                height:50px;
                
                padding:0.5rem;
            }
            .module_shop_simplesub_5 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_5 .text-title-sub-main{
                
                color:#000;
                background-color:#ffffff!important;
            }
            
            .module_shop_simplesub_5 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_5 .container{
                width:1200px;
                max-width:1200px;
                margin:auto auto auto auto;
                overflow:hidden;
                border:1px solid #d9d9d9;
            }
            .module_shop_simplesub_5 .card-box-type1{
                border:1px solid #dddddd;
                background:;
                border-radius:0px;
            }
            .module_shop_simplesub_5 .swiper-slide{
                display: flex;
                flex-direction: column;
            }
            .module_shop_simplesub_5 .height-content {
                height:max-content;
            }
            .module_shop_simplesub_5 .btn-next{
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                right:0.6%;
                margin-top: 18px;
                z-index: 1;
                background:#fff;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_5 .btn-prev:hover{
                background:#fff;
            }
            .module_shop_simplesub_5 .btn-next:hover{
                background:#fff;
            }
            .module_shop_simplesub_5 .btn-prev{
                background:#fff;
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                left:0.6%;
                margin-top: 18px;
                z-index: 1;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_5 .svg_next{
                width:13px;
                fill:#333;
            }
            .module_shop_simplesub_5 .svg_next:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_5 .svg_prev{
                width:13px;
                fill:#333;
                transform:rotate(180deg)
            }
            .module_shop_simplesub_5 .svg_prev:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_5 .card{
                padding:0.5rem;
                display: flex;
                justify-content: center;
            }
            .module_shop_simplesub_5 .div-box-img{
                width:100%;
                height:185px!important;
                padding:0rem;
            }
            .module_shop_simplesub_5 .div-box-img img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            .module_shop_simplesub_5 .div-title{
                width: 100%;
                height: 45px;
                font-weight:500;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content: center;
                align-items: center;
                font-size:0.9em;
                margin:0rem auto 0rem auto;
            }
            .module_shop_simplesub_5 .div-title span{
                color:#000000;    
            }
            .module_shop_simplesub_5 .div-title span:hover{
                color:#03a9f5;
                cursor:pointer;   
            }
            .module_shop_simplesub_5 .div-price-discount{
                width: 100%;
                height: 70px;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content:center;
                margin-bottom:0.7rem;
                align-items:baseline;
                flex-direction:column;
                flex-wrap:wrap;
            }
            .module_shop_simplesub_5 .price{
                width:65%;
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                justify-content: end;
                color:#000;
            }
            .module_shop_simplesub_5 .price-center{
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                width:100%;
                justify-content: center;
                color:#000;
            }
            .module_shop_simplesub_5 .discount{
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 200;
                width: 64%;
                text-decoration: line-through;
                color: #999999;
                padding-right:0.5rem;
                justify-content: end;
            }
            .module_shop_simplesub_5 .svg_tooman{
                width: 35px;
                padding-right: 0.2rem;
                fill:red!important;
            }
            .module_shop_simplesub_5 .svg_tooman_discount{
                width: 35px;
                padding-right: 0.2rem;
                fill:#999999!important;
            }
            .module_shop_simplesub_5 .div-add-share{
                width:100%;
                height:45px;
                display:flex;
                border-top: 1px solid #dddddd;
                cursor:pointer;
                flex-direction: row;
            }
            .module_shop_simplesub_5 .add-shop{
                width: 20%;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow:hidden;
                background:#d9d9d9;
                cursor:pointer;
            }
            .module_shop_simplesub_5 .svgHeart{ 
                height: 100%;
            }
            .module_shop_simplesub_5 .svgShare{ 
                height: 100%;
            }
            .module_shop_simplesub_5 .animate-share{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_5 .animate-heart{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_5 .add-shop span{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_5 .add-shop .link-card{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_5 .link-card:hover{
                color:white;
            }
            .module_shop_simplesub_5 .grow{
                flex-grow:2;
            }
            .module_shop_simplesub_5 .svg_heart{
                width:15px;;
                fill:#999999;
                z-index:10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_5 .svg_share{
                width: 15px;
                fill: #999999;
                z-index: 10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_5 .animate-blue span{
                cursor:pointer;
            }
            .module_shop_simplesub_5 .svgHeart:first-child .svg_heart{
                fill: #fff !important;
            }
            .module_shop_simplesub_5 .svgHeart:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_5 .svgShare:first-child .svg_share{
                fill: #fff !important;
            }
            .module_shop_simplesub_5 .svgShare:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_5 .animate-blue{
                position:absolute;
                top:0;
                left:-100%;
                bottom:0;
                width:100%;
                background:#d9d9d9;
                transition: left 0.4s;
            }
            .module_shop_simplesub_5 .add-shop:hover .animate-blue{
                left:0;
            }
            .module_shop_simplesub_5 .add-shop:hover span{
                color:white;
            }
            .module_shop_simplesub_5 .add-shop:hover .link-card{
                color:#000;
            }
            .module_shop_simplesub_5 .add-shop:hover .animate-heart{
                bottom: -50%; 
            }
            .module_shop_simplesub_5 .add-shop:hover .animate-share{
                bottom: -50%; 
            }
        .module[data-id_page='5082']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:32px;border-style:solid;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='5082']:hover{;}.module[data-id_page='5082']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='5082'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='5082']  
                
                .module[data-id_page='5082'] .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='5082'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='5082']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_554 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_554 .content_str{
				width:100%;
			}
            #module_new_medical_554 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_554 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_554 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_554 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_554 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_554 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_554 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_554 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_554 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_554 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_554 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_554 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_554 a{
                color:#00AFEF!important;
            }
            #module_new_medical_554 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_554 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_554 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2209 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2209 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2209 .background-img{
                border-radius:;
            }
        #medical_box_2209 .new_medical_button{color:#000000;background-color:transparent;font-weight:500;font-size:14px;width:130px;height:40px;line-height:40px;text-align:center;border-radius:2px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#434343;box-shadow:0px 0px 0px 0px ;}#medical_box_2208 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                   #medical_box_2209  
                
                #medical_box_2209 .new_medical_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;
            
                }
                #medical_box_2209 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2209:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2209 .mode1-size_2209{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2209 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2209 > div{
               height:100%;
            }
            #medical_box_2209 .mode2-size_2209{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2209 .mode3-size_2209{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2209 .mode4-size_2209{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2209 .mode5-size_2209{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2209 .mode6-size_2209{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2209 .mode7-size_2209{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2209 .mode7-size_2209 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2209 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2209 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2209{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2209 span:hover{
                color:!important;
            }
            .custom2_2209{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2209 span:hover{
                color:;
            }
            #medical_box_2209 .mode-btn1_2209{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2209 .mode-btn1_2209 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2209 .mode-btn2_2209{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2209 .mode-btn2_2209 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2209 .div-btn-title_main_2209{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2209 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2209 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_554 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='5081']:hover .new_medical_box_main{}
            #module_new_medical_554 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_554 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_554 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_554 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_554 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_554 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_554 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_554 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_554 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_554 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_554 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_554{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_554 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_554 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_554 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_554 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_554 .swiper-container{
                width:1200px;
            }
            #module_new_medical_554 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_554 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_554 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_554 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='3393']{;background-color:#8e9eab;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;margin-top:50px;border-style:none;}.module[data-id_page='3393']:hover{;}.module[data-id_page='3393']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='3393'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='3393']  
                
                .module[data-id_page='3393'] .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='3393'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='3393']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #module_title_4 .new_title_title_main{color:#000;font-weight:bold;font-size:22px;justify-content:flex-start;text-align:right;padding-right:16px;width:1200px;line-height:44px;}.module[data-id_page='3393']:hover .new_title_title_main{}
            #module_title_4 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        #module_title_4 .new_title_box_main{visibility:visible;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#d9d9d9;}.module[data-id_page='3390']:hover .new_title_box_main{}
            #module_title_4 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        .module[data-id_page='62']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;padding-top:20px;padding-bottom:50px;border-style:none;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='62']:hover{;}.module[data-id_page='62']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='62'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='62']  
                
                .module[data-id_page='62'] .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='62'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='62']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            .module_shop_simplesub_6{
                background-color:none;
                background-image:url(https://madikait.ir/files/);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: left;
                padding-top:0rem;
                padding-bottom:0rem;
                margin-top:0rem;
                margin-bottom:0rem;
                z-index:0;
            }
            .module_shop_simplesub_6 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_6 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_6 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_6 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_6 .path-email{
                fill: red;
            }
            .module_shop_simplesub_6 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_6 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_6 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_6 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_6 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_6 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_6 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_6 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_6 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_6 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_6 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_6 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_6 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_6 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_6 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_6 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_6 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_6 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            
            
            .module_shop_simplesub_6 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_6 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
        
            .module_shop_simplesub_6 .border-bottom-left{
                border-bottom-left-radius:0px;
            }
            .module_shop_simplesub_6 .border-bottom-right{
                border-bottom-right-radius:0px;
            }
            .module_shop_simplesub_6 .link-img{
                height:100%!important;
                border-radius:0px;
            }
            .module_shop_simplesub_6 .box-img-price{
                width:30px;
                height:30px;
                margin-left:2rem;
            }  
            .module_shop_simplesub_6 .div-price-center{
                width: 100%;
                display: flex;
                justify-content: center;
            } 
            .module_shop_simplesub_6 .box-img-price-center{
                width:30px;
                height:30px;
                margin-right: 0.5rem;
            }
            .module_shop_simplesub_6 .div-title label{
                color:#000000!important;
            }
            .module_shop_simplesub_6 .div-title:hover label{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_6 .link-title{
                color:#000000!important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .module_shop_simplesub_6 .link-title:hover{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_6 .div-offer{
                width:18%;
                height:8%;
                background-color: #ff5722;
                color:#fff;
                font-weight: bold;
                position: absolute;
                left: 6%;
                top: 6.2%;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
            }
            .module_shop_simplesub_6 .img-price{
                width: 100%;
                object-fit: contain;
                height: 100%;
            } 
            .module_shop_simplesub_6 .title-for-swiper{
                display:flex;
                justify-content:right;
                align-items: center;
                margin:0rem auto 0rem auto;
                width:1200px;
                max-width:1200px;
                overflow:hidden;
                font-size:1.3em;
                height:50px;
                
                padding:0.5rem;
            }
            .module_shop_simplesub_6 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_6 .text-title-sub-main{
                
                color:#000;
                background-color:#ffffff!important;
            }
            
            .module_shop_simplesub_6 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_6 .container{
                width:1200px;
                max-width:1200px;
                margin:auto auto auto auto;
                overflow:hidden;
                border:1px solid #d9d9d9;
            }
            .module_shop_simplesub_6 .card-box-type1{
                border:1px solid #dddddd;
                background:;
                border-radius:0px;
            }
            .module_shop_simplesub_6 .swiper-slide{
                display: flex;
                flex-direction: column;
            }
            .module_shop_simplesub_6 .height-content {
                height:max-content;
            }
            .module_shop_simplesub_6 .btn-next{
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                right:0.6%;
                margin-top: 18px;
                z-index: 1;
                background:#fff;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_6 .btn-prev:hover{
                background:#fff;
            }
            .module_shop_simplesub_6 .btn-next:hover{
                background:#fff;
            }
            .module_shop_simplesub_6 .btn-prev{
                background:#fff;
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                left:0.6%;
                margin-top: 18px;
                z-index: 1;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_6 .svg_next{
                width:13px;
                fill:#333;
            }
            .module_shop_simplesub_6 .svg_next:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_6 .svg_prev{
                width:13px;
                fill:#333;
                transform:rotate(180deg)
            }
            .module_shop_simplesub_6 .svg_prev:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_6 .card{
                padding:0.5rem;
                display: flex;
                justify-content: center;
            }
            .module_shop_simplesub_6 .div-box-img{
                width:100%;
                height:185px!important;
                padding:0rem;
            }
            .module_shop_simplesub_6 .div-box-img img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            .module_shop_simplesub_6 .div-title{
                width: 100%;
                height: 45px;
                font-weight:500;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content: center;
                align-items: center;
                font-size:0.9em;
                margin:0rem auto 0rem auto;
            }
            .module_shop_simplesub_6 .div-title span{
                color:#000000;    
            }
            .module_shop_simplesub_6 .div-title span:hover{
                color:#03a9f5;
                cursor:pointer;   
            }
            .module_shop_simplesub_6 .div-price-discount{
                width: 100%;
                height: 70px;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content:center;
                margin-bottom:0.7rem;
                align-items:baseline;
                flex-direction:column;
                flex-wrap:wrap;
            }
            .module_shop_simplesub_6 .price{
                width:65%;
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                justify-content: end;
                color:#000;
            }
            .module_shop_simplesub_6 .price-center{
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                width:100%;
                justify-content: center;
                color:#000;
            }
            .module_shop_simplesub_6 .discount{
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 200;
                width: 64%;
                text-decoration: line-through;
                color: #999999;
                padding-right:0.5rem;
                justify-content: end;
            }
            .module_shop_simplesub_6 .svg_tooman{
                width: 35px;
                padding-right: 0.2rem;
                fill:red!important;
            }
            .module_shop_simplesub_6 .svg_tooman_discount{
                width: 35px;
                padding-right: 0.2rem;
                fill:#999999!important;
            }
            .module_shop_simplesub_6 .div-add-share{
                width:100%;
                height:45px;
                display:flex;
                border-top: 1px solid #dddddd;
                cursor:pointer;
                flex-direction: row;
            }
            .module_shop_simplesub_6 .add-shop{
                width: 20%;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow:hidden;
                background:#d9d9d9;
                cursor:pointer;
            }
            .module_shop_simplesub_6 .svgHeart{ 
                height: 100%;
            }
            .module_shop_simplesub_6 .svgShare{ 
                height: 100%;
            }
            .module_shop_simplesub_6 .animate-share{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_6 .animate-heart{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_6 .add-shop span{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_6 .add-shop .link-card{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_6 .link-card:hover{
                color:white;
            }
            .module_shop_simplesub_6 .grow{
                flex-grow:2;
            }
            .module_shop_simplesub_6 .svg_heart{
                width:15px;;
                fill:#999999;
                z-index:10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_6 .svg_share{
                width: 15px;
                fill: #999999;
                z-index: 10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_6 .animate-blue span{
                cursor:pointer;
            }
            .module_shop_simplesub_6 .svgHeart:first-child .svg_heart{
                fill: #fff !important;
            }
            .module_shop_simplesub_6 .svgHeart:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_6 .svgShare:first-child .svg_share{
                fill: #fff !important;
            }
            .module_shop_simplesub_6 .svgShare:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_6 .animate-blue{
                position:absolute;
                top:0;
                left:-100%;
                bottom:0;
                width:100%;
                background:#d9d9d9;
                transition: left 0.4s;
            }
            .module_shop_simplesub_6 .add-shop:hover .animate-blue{
                left:0;
            }
            .module_shop_simplesub_6 .add-shop:hover span{
                color:white;
            }
            .module_shop_simplesub_6 .add-shop:hover .link-card{
                color:#000;
            }
            .module_shop_simplesub_6 .add-shop:hover .animate-heart{
                bottom: -50%; 
            }
            .module_shop_simplesub_6 .add-shop:hover .animate-share{
                bottom: -50%; 
            }
        .module[data-id_page='5083']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:32px;border-style:solid;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='5083']:hover{;}.module[data-id_page='5083']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='5083'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='5083']  
                
                .module[data-id_page='5083'] .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='5083'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='5083']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_555 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_555 .content_str{
				width:100%;
			}
            #module_new_medical_555 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_555 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_555 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_555 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_555 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_555 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_555 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_555 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_555 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_555 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_555 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_555 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_555 a{
                color:#00AFEF!important;
            }
            #module_new_medical_555 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_555 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_555 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2210 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2210 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2210 .background-img{
                border-radius:;
            }
        #medical_box_2210 .new_medical_button{color:#000000;background-color:transparent;font-weight:500;font-size:14px;width:130px;height:40px;line-height:40px;text-align:center;border-radius:2px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#434343;box-shadow:0px 0px 0px 0px ;}#medical_box_2208 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                   #medical_box_2210  
                
                #medical_box_2210 .new_medical_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;
            
                }
                #medical_box_2210 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2210:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2210 .mode1-size_2210{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2210 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2210 > div{
               height:100%;
            }
            #medical_box_2210 .mode2-size_2210{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2210 .mode3-size_2210{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2210 .mode4-size_2210{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2210 .mode5-size_2210{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2210 .mode6-size_2210{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2210 .mode7-size_2210{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2210 .mode7-size_2210 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2210 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2210 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2210{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2210 span:hover{
                color:!important;
            }
            .custom2_2210{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2210 span:hover{
                color:;
            }
            #medical_box_2210 .mode-btn1_2210{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2210 .mode-btn1_2210 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2210 .mode-btn2_2210{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2210 .mode-btn2_2210 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2210 .div-btn-title_main_2210{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2210 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2210 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_555 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='5081']:hover .new_medical_box_main{}
            #module_new_medical_555 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_555 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_555 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_555 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_555 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_555 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_555 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_555 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_555 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_555 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_555 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_555{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_555 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_555 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_555 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_555 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_555 .swiper-container{
                width:1200px;
            }
            #module_new_medical_555 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_555 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_555 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_555 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='3394']{;background-color:#8e9eab;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;margin-top:50px;border-style:none;}.module[data-id_page='3394']:hover{;}.module[data-id_page='3394']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='3394'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='3394']  
                
                .module[data-id_page='3394'] .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='3394'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='3394']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #module_title_5 .new_title_title_main{color:#000;font-weight:bold;font-size:22px;justify-content:flex-start;text-align:right;padding-right:16px;width:1200px;line-height:44px;}.module[data-id_page='3394']:hover .new_title_title_main{}
            #module_title_5 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        #module_title_5 .new_title_box_main{visibility:visible;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#d9d9d9;}.module[data-id_page='3390']:hover .new_title_box_main{}
            #module_title_5 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        .module[data-id_page='4501']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;padding-bottom:50px;border-style:none;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='4501']:hover{;}.module[data-id_page='4501']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='4501'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='4501']  
                
                .module[data-id_page='4501'] .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='4501'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='4501']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            .module_shop_simplesub_1016{
                background-color:none;
                background-image:url(https://madikait.ir/files/);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: left;
                padding-top:0rem;
                padding-bottom:0rem;
                margin-top:0rem;
                margin-bottom:0rem;
                z-index:0;
            }
            .module_shop_simplesub_1016 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1016 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_1016 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_1016 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_1016 .path-email{
                fill: red;
            }
            .module_shop_simplesub_1016 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_1016 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1016 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_1016 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_1016 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_1016 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1016 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_1016 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_1016 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1016 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_1016 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_1016 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_1016 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_1016 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_1016 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_1016 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_1016 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_1016 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            
            
            .module_shop_simplesub_1016 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_1016 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
        
            .module_shop_simplesub_1016 .border-bottom-left{
                border-bottom-left-radius:0px;
            }
            .module_shop_simplesub_1016 .border-bottom-right{
                border-bottom-right-radius:0px;
            }
            .module_shop_simplesub_1016 .link-img{
                height:100%!important;
                border-radius:0px;
            }
            .module_shop_simplesub_1016 .box-img-price{
                width:30px;
                height:30px;
                margin-left:2rem;
            }  
            .module_shop_simplesub_1016 .div-price-center{
                width: 100%;
                display: flex;
                justify-content: center;
            } 
            .module_shop_simplesub_1016 .box-img-price-center{
                width:30px;
                height:30px;
                margin-right: 0.5rem;
            }
            .module_shop_simplesub_1016 .div-title label{
                color:#000000!important;
            }
            .module_shop_simplesub_1016 .div-title:hover label{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_1016 .link-title{
                color:#000000!important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .module_shop_simplesub_1016 .link-title:hover{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_1016 .div-offer{
                width:18%;
                height:8%;
                background-color: #ff5722;
                color:#fff;
                font-weight: bold;
                position: absolute;
                left: 6%;
                top: 6.2%;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
            }
            .module_shop_simplesub_1016 .img-price{
                width: 100%;
                object-fit: contain;
                height: 100%;
            } 
            .module_shop_simplesub_1016 .title-for-swiper{
                display:flex;
                justify-content:right;
                align-items: center;
                margin:0rem auto 0rem auto;
                width:1200px;
                max-width:1200px;
                overflow:hidden;
                font-size:1.3em;
                height:50px;
                
                padding:0.5rem;
            }
            .module_shop_simplesub_1016 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_1016 .text-title-sub-main{
                
                color:#000;
                background-color:#ffffff!important;
            }
            
            .module_shop_simplesub_1016 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_1016 .container{
                width:1200px;
                max-width:1200px;
                margin:auto auto auto auto;
                overflow:hidden;
                border:1px solid #d9d9d9;
            }
            .module_shop_simplesub_1016 .card-box-type1{
                border:1px solid #dddddd;
                background:;
                border-radius:0px;
            }
            .module_shop_simplesub_1016 .swiper-slide{
                display: flex;
                flex-direction: column;
            }
            .module_shop_simplesub_1016 .height-content {
                height:max-content;
            }
            .module_shop_simplesub_1016 .btn-next{
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                right:0.6%;
                margin-top: 18px;
                z-index: 1;
                background:#fff;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_1016 .btn-prev:hover{
                background:#fff;
            }
            .module_shop_simplesub_1016 .btn-next:hover{
                background:#fff;
            }
            .module_shop_simplesub_1016 .btn-prev{
                background:#fff;
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                left:0.6%;
                margin-top: 18px;
                z-index: 1;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_1016 .svg_next{
                width:13px;
                fill:#333;
            }
            .module_shop_simplesub_1016 .svg_next:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_1016 .svg_prev{
                width:13px;
                fill:#333;
                transform:rotate(180deg)
            }
            .module_shop_simplesub_1016 .svg_prev:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_1016 .card{
                padding:0.5rem;
                display: flex;
                justify-content: center;
            }
            .module_shop_simplesub_1016 .div-box-img{
                width:100%;
                height:185px!important;
                padding:0rem;
            }
            .module_shop_simplesub_1016 .div-box-img img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            .module_shop_simplesub_1016 .div-title{
                width: 100%;
                height: 45px;
                font-weight:500;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content: center;
                align-items: center;
                font-size:0.9em;
                margin:0rem auto 0rem auto;
            }
            .module_shop_simplesub_1016 .div-title span{
                color:#000000;    
            }
            .module_shop_simplesub_1016 .div-title span:hover{
                color:#03a9f5;
                cursor:pointer;   
            }
            .module_shop_simplesub_1016 .div-price-discount{
                width: 100%;
                height: 70px;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content:center;
                margin-bottom:0.7rem;
                align-items:baseline;
                flex-direction:column;
                flex-wrap:wrap;
            }
            .module_shop_simplesub_1016 .price{
                width:65%;
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                justify-content: end;
                color:#000;
            }
            .module_shop_simplesub_1016 .price-center{
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                width:100%;
                justify-content: center;
                color:#000;
            }
            .module_shop_simplesub_1016 .discount{
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 200;
                width: 64%;
                text-decoration: line-through;
                color: #999999;
                padding-right:0.5rem;
                justify-content: end;
            }
            .module_shop_simplesub_1016 .svg_tooman{
                width: 35px;
                padding-right: 0.2rem;
                fill:red!important;
            }
            .module_shop_simplesub_1016 .svg_tooman_discount{
                width: 35px;
                padding-right: 0.2rem;
                fill:#999999!important;
            }
            .module_shop_simplesub_1016 .div-add-share{
                width:100%;
                height:45px;
                display:flex;
                border-top: 1px solid #dddddd;
                cursor:pointer;
                flex-direction: row;
            }
            .module_shop_simplesub_1016 .add-shop{
                width: 20%;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow:hidden;
                background:#d9d9d9;
                cursor:pointer;
            }
            .module_shop_simplesub_1016 .svgHeart{ 
                height: 100%;
            }
            .module_shop_simplesub_1016 .svgShare{ 
                height: 100%;
            }
            .module_shop_simplesub_1016 .animate-share{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_1016 .animate-heart{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_1016 .add-shop span{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_1016 .add-shop .link-card{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_1016 .link-card:hover{
                color:white;
            }
            .module_shop_simplesub_1016 .grow{
                flex-grow:2;
            }
            .module_shop_simplesub_1016 .svg_heart{
                width:15px;;
                fill:#999999;
                z-index:10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_1016 .svg_share{
                width: 15px;
                fill: #999999;
                z-index: 10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_1016 .animate-blue span{
                cursor:pointer;
            }
            .module_shop_simplesub_1016 .svgHeart:first-child .svg_heart{
                fill: #fff !important;
            }
            .module_shop_simplesub_1016 .svgHeart:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_1016 .svgShare:first-child .svg_share{
                fill: #fff !important;
            }
            .module_shop_simplesub_1016 .svgShare:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_1016 .animate-blue{
                position:absolute;
                top:0;
                left:-100%;
                bottom:0;
                width:100%;
                background:#d9d9d9;
                transition: left 0.4s;
            }
            .module_shop_simplesub_1016 .add-shop:hover .animate-blue{
                left:0;
            }
            .module_shop_simplesub_1016 .add-shop:hover span{
                color:white;
            }
            .module_shop_simplesub_1016 .add-shop:hover .link-card{
                color:#000;
            }
            .module_shop_simplesub_1016 .add-shop:hover .animate-heart{
                bottom: -50%; 
            }
            .module_shop_simplesub_1016 .add-shop:hover .animate-share{
                bottom: -50%; 
            }
        .module[data-id_page='5084']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:32px;border-style:solid;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='5084']:hover{;}.module[data-id_page='5084']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='5084'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='5084']  
                
                .module[data-id_page='5084'] .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='5084'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='5084']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_556 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_556 .content_str{
				width:100%;
			}
            #module_new_medical_556 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_556 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_556 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_556 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_556 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_556 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_556 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_556 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_556 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_556 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_556 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_556 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_556 a{
                color:#00AFEF!important;
            }
            #module_new_medical_556 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_556 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_556 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2211 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2211 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2211 .background-img{
                border-radius:;
            }
        #medical_box_2211 .new_medical_button{color:#000000;background-color:transparent;font-weight:500;font-size:14px;width:130px;height:40px;line-height:40px;text-align:center;border-radius:2px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#434343;box-shadow:0px 0px 0px 0px ;}#medical_box_2208 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                   #medical_box_2211  
                
                #medical_box_2211 .new_medical_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;
            
                }
                #medical_box_2211 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2211:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2211 .mode1-size_2211{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2211 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2211 > div{
               height:100%;
            }
            #medical_box_2211 .mode2-size_2211{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2211 .mode3-size_2211{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2211 .mode4-size_2211{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2211 .mode5-size_2211{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2211 .mode6-size_2211{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2211 .mode7-size_2211{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2211 .mode7-size_2211 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2211 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2211 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2211{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2211 span:hover{
                color:!important;
            }
            .custom2_2211{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2211 span:hover{
                color:;
            }
            #medical_box_2211 .mode-btn1_2211{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2211 .mode-btn1_2211 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2211 .mode-btn2_2211{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2211 .mode-btn2_2211 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2211 .div-btn-title_main_2211{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2211 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2211 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_556 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='5081']:hover .new_medical_box_main{}
            #module_new_medical_556 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_556 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_556 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_556 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_556 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_556 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_556 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_556 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_556 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_556 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_556 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_556{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_556 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_556 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_556 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_556 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_556 .swiper-container{
                width:1200px;
            }
            #module_new_medical_556 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_556 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_556 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_556 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='4502']{;background-color:#8e9eab;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;margin-top:50px;border-style:none;}.module[data-id_page='4502']:hover{;}.module[data-id_page='4502']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='4502'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='4502']  
                
                .module[data-id_page='4502'] .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='4502'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='4502']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #module_title_16 .new_title_title_main{color:#000;font-weight:bold;font-size:22px;justify-content:flex-start;text-align:right;padding-right:16px;width:1200px;line-height:44px;}.module[data-id_page='3394']:hover .new_title_title_main{}
            #module_title_16 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        #module_title_16 .new_title_box_main{visibility:visible;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#d9d9d9;}.module[data-id_page='3390']:hover .new_title_box_main{}
            #module_title_16 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        .module[data-id_page='78']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;padding-bottom:50px;border-style:none;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='78']:hover{;}.module[data-id_page='78']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='78'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='78']  
                
                .module[data-id_page='78'] .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='78'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='78']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            .module_shop_simplesub_7{
                background-color:none;
                background-image:url(https://madikait.ir/files/);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: left;
                padding-top:0rem;
                padding-bottom:0rem;
                margin-top:0rem;
                margin-bottom:0rem;
                z-index:0;
            }
            .module_shop_simplesub_7 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_7 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_7 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_7 .path-email{
                fill: red;
            }
            .module_shop_simplesub_7 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_7 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_7 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_7 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_7 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_7 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_7 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_7 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_7 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_7 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_7 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_7 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_7 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_7 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_7 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            
            
            .module_shop_simplesub_7 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_7 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
        
            .module_shop_simplesub_7 .border-bottom-left{
                border-bottom-left-radius:0px;
            }
            .module_shop_simplesub_7 .border-bottom-right{
                border-bottom-right-radius:0px;
            }
            .module_shop_simplesub_7 .link-img{
                height:100%!important;
                border-radius:0px;
            }
            .module_shop_simplesub_7 .box-img-price{
                width:30px;
                height:30px;
                margin-left:2rem;
            }  
            .module_shop_simplesub_7 .div-price-center{
                width: 100%;
                display: flex;
                justify-content: center;
            } 
            .module_shop_simplesub_7 .box-img-price-center{
                width:30px;
                height:30px;
                margin-right: 0.5rem;
            }
            .module_shop_simplesub_7 .div-title label{
                color:#000000!important;
            }
            .module_shop_simplesub_7 .div-title:hover label{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_7 .link-title{
                color:#000000!important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .module_shop_simplesub_7 .link-title:hover{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_7 .div-offer{
                width:18%;
                height:8%;
                background-color: #ff5722;
                color:#fff;
                font-weight: bold;
                position: absolute;
                left: 6%;
                top: 6.2%;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
            }
            .module_shop_simplesub_7 .img-price{
                width: 100%;
                object-fit: contain;
                height: 100%;
            } 
            .module_shop_simplesub_7 .title-for-swiper{
                display:flex;
                justify-content:right;
                align-items: center;
                margin:0rem auto 0rem auto;
                width:1200px;
                max-width:1200px;
                overflow:hidden;
                font-size:1.3em;
                height:50px;
                
                padding:0.5rem;
            }
            .module_shop_simplesub_7 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_7 .text-title-sub-main{
                
                color:#000;
                background-color:#ffffff!important;
            }
            
            .module_shop_simplesub_7 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_7 .container{
                width:1200px;
                max-width:1200px;
                margin:auto auto auto auto;
                overflow:hidden;
                border:1px solid #d9d9d9;
            }
            .module_shop_simplesub_7 .card-box-type1{
                border:1px solid #dddddd;
                background:;
                border-radius:0px;
            }
            .module_shop_simplesub_7 .swiper-slide{
                display: flex;
                flex-direction: column;
            }
            .module_shop_simplesub_7 .height-content {
                height:max-content;
            }
            .module_shop_simplesub_7 .btn-next{
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                right:0.6%;
                margin-top: 18px;
                z-index: 1;
                background:#fff;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_7 .btn-prev:hover{
                background:#fff;
            }
            .module_shop_simplesub_7 .btn-next:hover{
                background:#fff;
            }
            .module_shop_simplesub_7 .btn-prev{
                background:#fff;
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                left:0.6%;
                margin-top: 18px;
                z-index: 1;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_7 .svg_next{
                width:13px;
                fill:#333;
            }
            .module_shop_simplesub_7 .svg_next:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_7 .svg_prev{
                width:13px;
                fill:#333;
                transform:rotate(180deg)
            }
            .module_shop_simplesub_7 .svg_prev:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_7 .card{
                padding:0.5rem;
                display: flex;
                justify-content: center;
            }
            .module_shop_simplesub_7 .div-box-img{
                width:100%;
                height:185px!important;
                padding:0rem;
            }
            .module_shop_simplesub_7 .div-box-img img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            .module_shop_simplesub_7 .div-title{
                width: 100%;
                height: 45px;
                font-weight:500;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content: center;
                align-items: center;
                font-size:0.9em;
                margin:0rem auto 0rem auto;
            }
            .module_shop_simplesub_7 .div-title span{
                color:#000000;    
            }
            .module_shop_simplesub_7 .div-title span:hover{
                color:#03a9f5;
                cursor:pointer;   
            }
            .module_shop_simplesub_7 .div-price-discount{
                width: 100%;
                height: 70px;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content:center;
                margin-bottom:0.7rem;
                align-items:baseline;
                flex-direction:column;
                flex-wrap:wrap;
            }
            .module_shop_simplesub_7 .price{
                width:65%;
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                justify-content: end;
                color:#000;
            }
            .module_shop_simplesub_7 .price-center{
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                width:100%;
                justify-content: center;
                color:#000;
            }
            .module_shop_simplesub_7 .discount{
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 200;
                width: 64%;
                text-decoration: line-through;
                color: #999999;
                padding-right:0.5rem;
                justify-content: end;
            }
            .module_shop_simplesub_7 .svg_tooman{
                width: 35px;
                padding-right: 0.2rem;
                fill:red!important;
            }
            .module_shop_simplesub_7 .svg_tooman_discount{
                width: 35px;
                padding-right: 0.2rem;
                fill:#999999!important;
            }
            .module_shop_simplesub_7 .div-add-share{
                width:100%;
                height:45px;
                display:flex;
                border-top: 1px solid #dddddd;
                cursor:pointer;
                flex-direction: row;
            }
            .module_shop_simplesub_7 .add-shop{
                width: 20%;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow:hidden;
                background:#d9d9d9;
                cursor:pointer;
            }
            .module_shop_simplesub_7 .svgHeart{ 
                height: 100%;
            }
            .module_shop_simplesub_7 .svgShare{ 
                height: 100%;
            }
            .module_shop_simplesub_7 .animate-share{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_7 .animate-heart{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_7 .add-shop span{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_7 .add-shop .link-card{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_7 .link-card:hover{
                color:white;
            }
            .module_shop_simplesub_7 .grow{
                flex-grow:2;
            }
            .module_shop_simplesub_7 .svg_heart{
                width:15px;;
                fill:#999999;
                z-index:10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_7 .svg_share{
                width: 15px;
                fill: #999999;
                z-index: 10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_7 .animate-blue span{
                cursor:pointer;
            }
            .module_shop_simplesub_7 .svgHeart:first-child .svg_heart{
                fill: #fff !important;
            }
            .module_shop_simplesub_7 .svgHeart:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_7 .svgShare:first-child .svg_share{
                fill: #fff !important;
            }
            .module_shop_simplesub_7 .svgShare:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_7 .animate-blue{
                position:absolute;
                top:0;
                left:-100%;
                bottom:0;
                width:100%;
                background:#d9d9d9;
                transition: left 0.4s;
            }
            .module_shop_simplesub_7 .add-shop:hover .animate-blue{
                left:0;
            }
            .module_shop_simplesub_7 .add-shop:hover span{
                color:white;
            }
            .module_shop_simplesub_7 .add-shop:hover .link-card{
                color:#000;
            }
            .module_shop_simplesub_7 .add-shop:hover .animate-heart{
                bottom: -50%; 
            }
            .module_shop_simplesub_7 .add-shop:hover .animate-share{
                bottom: -50%; 
            }
        .module[data-id_page='5085']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:32px;border-style:solid;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='5085']:hover{;}.module[data-id_page='5085']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='5085'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='5085']  
                
                .module[data-id_page='5085'] .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='5085'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='5085']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_557 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_557 .content_str{
				width:100%;
			}
            #module_new_medical_557 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_557 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_557 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_557 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_557 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_557 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_557 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_557 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_557 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_557 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_557 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_557 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_557 a{
                color:#00AFEF!important;
            }
            #module_new_medical_557 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_557 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_557 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2212 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2212 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2212 .background-img{
                border-radius:;
            }
        #medical_box_2212 .new_medical_button{color:#000000;background-color:transparent;font-weight:500;font-size:14px;width:130px;height:40px;line-height:40px;text-align:center;border-radius:2px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#434343;box-shadow:0px 0px 0px 0px ;}#medical_box_2208 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                   #medical_box_2212  
                
                #medical_box_2212 .new_medical_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;
            
                }
                #medical_box_2212 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2212:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2212 .mode1-size_2212{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2212 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2212 > div{
               height:100%;
            }
            #medical_box_2212 .mode2-size_2212{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2212 .mode3-size_2212{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2212 .mode4-size_2212{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2212 .mode5-size_2212{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2212 .mode6-size_2212{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2212 .mode7-size_2212{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2212 .mode7-size_2212 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2212 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2212 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2212{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2212 span:hover{
                color:!important;
            }
            .custom2_2212{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2212 span:hover{
                color:;
            }
            #medical_box_2212 .mode-btn1_2212{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2212 .mode-btn1_2212 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2212 .mode-btn2_2212{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2212 .mode-btn2_2212 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2212 .div-btn-title_main_2212{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2212 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2212 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_557 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='5081']:hover .new_medical_box_main{}
            #module_new_medical_557 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_557 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_557 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_557 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_557 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_557 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_557 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_557 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_557 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_557 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_557 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_557{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_557 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_557 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_557 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_557 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_557 .swiper-container{
                width:1200px;
            }
            #module_new_medical_557 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_557 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_557 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_557 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='11333']{;background-color:#8e9eab;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;margin-top:50px;border-style:none;}.module[data-id_page='11333']:hover{;}.module[data-id_page='11333']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='11333'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='11333']  
                
                .module[data-id_page='11333'] .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='11333'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='11333']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #module_title_19 .new_title_title_main{color:#000;font-weight:bold;font-size:22px;justify-content:flex-start;text-align:right;padding-right:16px;width:1200px;line-height:44px;}.module[data-id_page='3395']:hover .new_title_title_main{}
            #module_title_19 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        #module_title_19 .new_title_box_main{visibility:visible;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#d9d9d9;}.module[data-id_page='3390']:hover .new_title_box_main{}
            #module_title_19 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        
            .module_shop_simplesub_8{
                background-color:none;
                background-image:url(https://madikait.ir/files/);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: left;
                padding-top:0rem;
                padding-bottom:0rem;
                margin-top:0rem;
                margin-bottom:0rem;
                z-index:0;
            }
            .module_shop_simplesub_8 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_8 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_8 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_8 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_8 .path-email{
                fill: red;
            }
            .module_shop_simplesub_8 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_8 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_8 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_8 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_8 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_8 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_8 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_8 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_8 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_8 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_8 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_8 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_8 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_8 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_8 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_8 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_8 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_8 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            
            
            .module_shop_simplesub_8 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_8 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
        
            .module_shop_simplesub_8 .border-bottom-left{
                border-bottom-left-radius:0px;
            }
            .module_shop_simplesub_8 .border-bottom-right{
                border-bottom-right-radius:0px;
            }
            .module_shop_simplesub_8 .link-img{
                height:100%!important;
                border-radius:0px;
            }
            .module_shop_simplesub_8 .box-img-price{
                width:30px;
                height:30px;
                margin-left:2rem;
            }  
            .module_shop_simplesub_8 .div-price-center{
                width: 100%;
                display: flex;
                justify-content: center;
            } 
            .module_shop_simplesub_8 .box-img-price-center{
                width:30px;
                height:30px;
                margin-right: 0.5rem;
            }
            .module_shop_simplesub_8 .div-title label{
                color:#000000!important;
            }
            .module_shop_simplesub_8 .div-title:hover label{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_8 .link-title{
                color:#000000!important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .module_shop_simplesub_8 .link-title:hover{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_8 .div-offer{
                width:18%;
                height:8%;
                background-color: #ff5722;
                color:#fff;
                font-weight: bold;
                position: absolute;
                left: 6%;
                top: 6.2%;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
            }
            .module_shop_simplesub_8 .img-price{
                width: 100%;
                object-fit: contain;
                height: 100%;
            } 
            .module_shop_simplesub_8 .title-for-swiper{
                display:flex;
                justify-content:right;
                align-items: center;
                margin:0rem auto 0rem auto;
                width:1200px;
                max-width:1200px;
                overflow:hidden;
                font-size:1.3em;
                height:50px;
                
                padding:0.5rem;
            }
            .module_shop_simplesub_8 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_8 .text-title-sub-main{
                
                color:#000;
                background-color:#ffffff!important;
            }
            
            .module_shop_simplesub_8 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_8 .container{
                width:1200px;
                max-width:1200px;
                margin:auto auto auto auto;
                overflow:hidden;
                border:1px solid #d9d9d9;
            }
            .module_shop_simplesub_8 .card-box-type1{
                border:1px solid #dddddd;
                background:;
                border-radius:0px;
            }
            .module_shop_simplesub_8 .swiper-slide{
                display: flex;
                flex-direction: column;
            }
            .module_shop_simplesub_8 .height-content {
                height:max-content;
            }
            .module_shop_simplesub_8 .btn-next{
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                right:0.6%;
                margin-top: 18px;
                z-index: 1;
                background:#fff;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_8 .btn-prev:hover{
                background:#fff;
            }
            .module_shop_simplesub_8 .btn-next:hover{
                background:#fff;
            }
            .module_shop_simplesub_8 .btn-prev{
                background:#fff;
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                left:0.6%;
                margin-top: 18px;
                z-index: 1;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_8 .svg_next{
                width:13px;
                fill:#333;
            }
            .module_shop_simplesub_8 .svg_next:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_8 .svg_prev{
                width:13px;
                fill:#333;
                transform:rotate(180deg)
            }
            .module_shop_simplesub_8 .svg_prev:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_8 .card{
                padding:0.5rem;
                display: flex;
                justify-content: center;
            }
            .module_shop_simplesub_8 .div-box-img{
                width:100%;
                height:185px!important;
                padding:0rem;
            }
            .module_shop_simplesub_8 .div-box-img img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            .module_shop_simplesub_8 .div-title{
                width: 100%;
                height: 45px;
                font-weight:500;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content: center;
                align-items: center;
                font-size:0.9em;
                margin:0rem auto 0rem auto;
            }
            .module_shop_simplesub_8 .div-title span{
                color:#000000;    
            }
            .module_shop_simplesub_8 .div-title span:hover{
                color:#03a9f5;
                cursor:pointer;   
            }
            .module_shop_simplesub_8 .div-price-discount{
                width: 100%;
                height: 70px;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content:center;
                margin-bottom:0.7rem;
                align-items:baseline;
                flex-direction:column;
                flex-wrap:wrap;
            }
            .module_shop_simplesub_8 .price{
                width:65%;
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                justify-content: end;
                color:#000;
            }
            .module_shop_simplesub_8 .price-center{
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                width:100%;
                justify-content: center;
                color:#000;
            }
            .module_shop_simplesub_8 .discount{
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 200;
                width: 64%;
                text-decoration: line-through;
                color: #999999;
                padding-right:0.5rem;
                justify-content: end;
            }
            .module_shop_simplesub_8 .svg_tooman{
                width: 35px;
                padding-right: 0.2rem;
                fill:red!important;
            }
            .module_shop_simplesub_8 .svg_tooman_discount{
                width: 35px;
                padding-right: 0.2rem;
                fill:#999999!important;
            }
            .module_shop_simplesub_8 .div-add-share{
                width:100%;
                height:45px;
                display:flex;
                border-top: 1px solid #dddddd;
                cursor:pointer;
                flex-direction: row;
            }
            .module_shop_simplesub_8 .add-shop{
                width: 20%;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow:hidden;
                background:#d9d9d9;
                cursor:pointer;
            }
            .module_shop_simplesub_8 .svgHeart{ 
                height: 100%;
            }
            .module_shop_simplesub_8 .svgShare{ 
                height: 100%;
            }
            .module_shop_simplesub_8 .animate-share{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_8 .animate-heart{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_8 .add-shop span{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_8 .add-shop .link-card{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_8 .link-card:hover{
                color:white;
            }
            .module_shop_simplesub_8 .grow{
                flex-grow:2;
            }
            .module_shop_simplesub_8 .svg_heart{
                width:15px;;
                fill:#999999;
                z-index:10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_8 .svg_share{
                width: 15px;
                fill: #999999;
                z-index: 10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_8 .animate-blue span{
                cursor:pointer;
            }
            .module_shop_simplesub_8 .svgHeart:first-child .svg_heart{
                fill: #fff !important;
            }
            .module_shop_simplesub_8 .svgHeart:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_8 .svgShare:first-child .svg_share{
                fill: #fff !important;
            }
            .module_shop_simplesub_8 .svgShare:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_8 .animate-blue{
                position:absolute;
                top:0;
                left:-100%;
                bottom:0;
                width:100%;
                background:#d9d9d9;
                transition: left 0.4s;
            }
            .module_shop_simplesub_8 .add-shop:hover .animate-blue{
                left:0;
            }
            .module_shop_simplesub_8 .add-shop:hover span{
                color:white;
            }
            .module_shop_simplesub_8 .add-shop:hover .link-card{
                color:#000;
            }
            .module_shop_simplesub_8 .add-shop:hover .animate-heart{
                bottom: -50%; 
            }
            .module_shop_simplesub_8 .add-shop:hover .animate-share{
                bottom: -50%; 
            }
        
            #module_new_medical_553 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_553 .content_str{
				width:100%;
			}
            #module_new_medical_553 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_553 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_553 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_553 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_553 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_553 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_553 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_553 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_553 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_553 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_553 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_553 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_553 a{
                color:#00AFEF!important;
            }
            #module_new_medical_553 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_553 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_553 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            #module_new_medical_553 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='5081']:hover .new_medical_box_main{}
            #module_new_medical_553 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_553 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_553 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_553 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_553 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_553 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_553 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_553 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_553 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_553 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_553 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_553{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_553 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_553 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_553 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_553 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_553 .swiper-container{
                width:1200px;
            }
            #module_new_medical_553 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_553 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_553 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_553 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='3395']{;background-color:#8e9eab;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;margin-top:50px;border-style:none;}.module[data-id_page='3395']:hover{;}.module[data-id_page='3395']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='3395'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='3395']  
                
                .module[data-id_page='3395'] .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='3395'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='3395']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #module_title_6 .new_title_title_main{color:#000;font-weight:bold;font-size:22px;justify-content:flex-start;text-align:right;padding-right:16px;width:1200px;line-height:44px;}.module[data-id_page='3395']:hover .new_title_title_main{}
            #module_title_6 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        #module_title_6 .new_title_box_main{visibility:visible;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#d9d9d9;}.module[data-id_page='3390']:hover .new_title_box_main{}
            #module_title_6 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        .module[data-id_page='223']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:30px;padding-bottom:50px;border-style:none;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='223']:hover{;}.module[data-id_page='223']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='223'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='223']  
                
                .module[data-id_page='223'] .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='223'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='223']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            .module_shop_simplesub_41{
                background-color:none;
                background-image:url(https://madikait.ir/files/);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: left;
                padding-top:0rem;
                padding-bottom:0rem;
                margin-top:0rem;
                margin-bottom:0rem;
                z-index:0;
            }
            .module_shop_simplesub_41 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_41 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_41 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_41 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_41 .path-email{
                fill: red;
            }
            .module_shop_simplesub_41 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_41 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_41 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_41 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_41 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_41 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_41 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_41 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_41 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_41 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_41 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_41 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_41 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_41 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_41 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_41 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_41 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_41 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            
            
            .module_shop_simplesub_41 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_41 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
        
            .module_shop_simplesub_41 .border-bottom-left{
                border-bottom-left-radius:0px;
            }
            .module_shop_simplesub_41 .border-bottom-right{
                border-bottom-right-radius:0px;
            }
            .module_shop_simplesub_41 .link-img{
                height:100%!important;
                border-radius:0px;
            }
            .module_shop_simplesub_41 .box-img-price{
                width:30px;
                height:30px;
                margin-left:2rem;
            }  
            .module_shop_simplesub_41 .div-price-center{
                width: 100%;
                display: flex;
                justify-content: center;
            } 
            .module_shop_simplesub_41 .box-img-price-center{
                width:30px;
                height:30px;
                margin-right: 0.5rem;
            }
            .module_shop_simplesub_41 .div-title label{
                color:#000000!important;
            }
            .module_shop_simplesub_41 .div-title:hover label{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_41 .link-title{
                color:#000000!important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .module_shop_simplesub_41 .link-title:hover{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_41 .div-offer{
                width:18%;
                height:8%;
                background-color: #ff5722;
                color:#fff;
                font-weight: bold;
                position: absolute;
                left: 6%;
                top: 6.2%;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
            }
            .module_shop_simplesub_41 .img-price{
                width: 100%;
                object-fit: contain;
                height: 100%;
            } 
            .module_shop_simplesub_41 .title-for-swiper{
                display:flex;
                justify-content:right;
                align-items: center;
                margin:0rem auto 0rem auto;
                width:1200px;
                max-width:1200px;
                overflow:hidden;
                font-size:1.3em;
                height:50px;
                
                padding:0.5rem;
            }
            .module_shop_simplesub_41 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_41 .text-title-sub-main{
                
                color:#000;
                background-color:#ffffff!important;
            }
            
            .module_shop_simplesub_41 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_41 .container{
                width:1200px;
                max-width:1200px;
                margin:auto auto auto auto;
                overflow:hidden;
                border:1px solid #d9d9d9;
            }
            .module_shop_simplesub_41 .card-box-type1{
                border:1px solid #dddddd;
                background:;
                border-radius:0px;
            }
            .module_shop_simplesub_41 .swiper-slide{
                display: flex;
                flex-direction: column;
            }
            .module_shop_simplesub_41 .height-content {
                height:max-content;
            }
            .module_shop_simplesub_41 .btn-next{
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                right:0.6%;
                margin-top: 18px;
                z-index: 1;
                background:#fff;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_41 .btn-prev:hover{
                background:#fff;
            }
            .module_shop_simplesub_41 .btn-next:hover{
                background:#fff;
            }
            .module_shop_simplesub_41 .btn-prev{
                background:#fff;
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                left:0.6%;
                margin-top: 18px;
                z-index: 1;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_41 .svg_next{
                width:13px;
                fill:#333;
            }
            .module_shop_simplesub_41 .svg_next:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_41 .svg_prev{
                width:13px;
                fill:#333;
                transform:rotate(180deg)
            }
            .module_shop_simplesub_41 .svg_prev:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_41 .card{
                padding:0.5rem;
                display: flex;
                justify-content: center;
            }
            .module_shop_simplesub_41 .div-box-img{
                width:100%;
                height:185px!important;
                padding:0rem;
            }
            .module_shop_simplesub_41 .div-box-img img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            .module_shop_simplesub_41 .div-title{
                width: 100%;
                height: 45px;
                font-weight:500;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content: center;
                align-items: center;
                font-size:0.9em;
                margin:0rem auto 0rem auto;
            }
            .module_shop_simplesub_41 .div-title span{
                color:#000000;    
            }
            .module_shop_simplesub_41 .div-title span:hover{
                color:#03a9f5;
                cursor:pointer;   
            }
            .module_shop_simplesub_41 .div-price-discount{
                width: 100%;
                height: 70px;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content:center;
                margin-bottom:0.7rem;
                align-items:baseline;
                flex-direction:column;
                flex-wrap:wrap;
            }
            .module_shop_simplesub_41 .price{
                width:65%;
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                justify-content: end;
                color:#000;
            }
            .module_shop_simplesub_41 .price-center{
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                width:100%;
                justify-content: center;
                color:#000;
            }
            .module_shop_simplesub_41 .discount{
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 200;
                width: 64%;
                text-decoration: line-through;
                color: #999999;
                padding-right:0.5rem;
                justify-content: end;
            }
            .module_shop_simplesub_41 .svg_tooman{
                width: 35px;
                padding-right: 0.2rem;
                fill:red!important;
            }
            .module_shop_simplesub_41 .svg_tooman_discount{
                width: 35px;
                padding-right: 0.2rem;
                fill:#999999!important;
            }
            .module_shop_simplesub_41 .div-add-share{
                width:100%;
                height:45px;
                display:flex;
                border-top: 1px solid #dddddd;
                cursor:pointer;
                flex-direction: row;
            }
            .module_shop_simplesub_41 .add-shop{
                width: 20%;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow:hidden;
                background:#d9d9d9;
                cursor:pointer;
            }
            .module_shop_simplesub_41 .svgHeart{ 
                height: 100%;
            }
            .module_shop_simplesub_41 .svgShare{ 
                height: 100%;
            }
            .module_shop_simplesub_41 .animate-share{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_41 .animate-heart{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_41 .add-shop span{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_41 .add-shop .link-card{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_41 .link-card:hover{
                color:white;
            }
            .module_shop_simplesub_41 .grow{
                flex-grow:2;
            }
            .module_shop_simplesub_41 .svg_heart{
                width:15px;;
                fill:#999999;
                z-index:10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_41 .svg_share{
                width: 15px;
                fill: #999999;
                z-index: 10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_41 .animate-blue span{
                cursor:pointer;
            }
            .module_shop_simplesub_41 .svgHeart:first-child .svg_heart{
                fill: #fff !important;
            }
            .module_shop_simplesub_41 .svgHeart:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_41 .svgShare:first-child .svg_share{
                fill: #fff !important;
            }
            .module_shop_simplesub_41 .svgShare:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_41 .animate-blue{
                position:absolute;
                top:0;
                left:-100%;
                bottom:0;
                width:100%;
                background:#d9d9d9;
                transition: left 0.4s;
            }
            .module_shop_simplesub_41 .add-shop:hover .animate-blue{
                left:0;
            }
            .module_shop_simplesub_41 .add-shop:hover span{
                color:white;
            }
            .module_shop_simplesub_41 .add-shop:hover .link-card{
                color:#000;
            }
            .module_shop_simplesub_41 .add-shop:hover .animate-heart{
                bottom: -50%; 
            }
            .module_shop_simplesub_41 .add-shop:hover .animate-share{
                bottom: -50%; 
            }
        .module[data-id_page='5087']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:32px;border-style:solid;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='5087']:hover{;}.module[data-id_page='5087']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='5087'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='5087']  
                
                .module[data-id_page='5087'] .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='5087'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='5087']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_559 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_559 .content_str{
				width:100%;
			}
            #module_new_medical_559 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_559 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_559 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_559 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_559 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_559 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_559 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_559 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_559 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_559 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_559 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_559 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_559 a{
                color:#00AFEF!important;
            }
            #module_new_medical_559 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_559 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_559 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2214 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2214 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2214 .background-img{
                border-radius:;
            }
        #medical_box_2214 .new_medical_button{color:#000000;background-color:transparent;font-weight:500;font-size:14px;width:130px;height:40px;line-height:40px;text-align:center;border-radius:2px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#434343;box-shadow:0px 0px 0px 0px ;}#medical_box_2208 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                   #medical_box_2214  
                
                #medical_box_2214 .new_medical_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;
            
                }
                #medical_box_2214 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2214:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2214 .mode1-size_2214{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2214 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2214 > div{
               height:100%;
            }
            #medical_box_2214 .mode2-size_2214{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2214 .mode3-size_2214{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2214 .mode4-size_2214{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2214 .mode5-size_2214{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2214 .mode6-size_2214{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2214 .mode7-size_2214{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2214 .mode7-size_2214 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2214 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2214 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2214{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2214 span:hover{
                color:!important;
            }
            .custom2_2214{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2214 span:hover{
                color:;
            }
            #medical_box_2214 .mode-btn1_2214{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2214 .mode-btn1_2214 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2214 .mode-btn2_2214{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2214 .mode-btn2_2214 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2214 .div-btn-title_main_2214{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2214 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2214 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_559 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='5081']:hover .new_medical_box_main{}
            #module_new_medical_559 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_559 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_559 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_559 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_559 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_559 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_559 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_559 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_559 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_559 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_559 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_559{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_559 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_559 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_559 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_559 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_559 .swiper-container{
                width:1200px;
            }
            #module_new_medical_559 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_559 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_559 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_559 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='3396']{;background-color:#8e9eab;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;margin-top:50px;border-style:none;}.module[data-id_page='3396']:hover{;}.module[data-id_page='3396']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='3396'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='3396']  
                
                .module[data-id_page='3396'] .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='3396'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='3396']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #module_title_7 .new_title_title_main{color:#000;font-weight:bold;font-size:22px;justify-content:flex-start;text-align:right;padding-right:16px;width:1200px;line-height:44px;}.module[data-id_page='3396']:hover .new_title_title_main{}
            #module_title_7 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        #module_title_7 .new_title_box_main{visibility:visible;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#d9d9d9;}.module[data-id_page='3390']:hover .new_title_box_main{}
            #module_title_7 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        .module[data-id_page='222']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;padding-bottom:20px;border-style:none;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='222']:hover{;}.module[data-id_page='222']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='222'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='222']  
                
                .module[data-id_page='222'] .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='222'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='222']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            .module_shop_simplesub_42{
                background-color:none;
                background-image:url(https://madikait.ir/files/);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: left;
                padding-top:0rem;
                padding-bottom:0rem;
                margin-top:0rem;
                margin-bottom:0rem;
                z-index:0;
            }
            .module_shop_simplesub_42 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_42 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_42 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_42 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_42 .path-email{
                fill: red;
            }
            .module_shop_simplesub_42 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_42 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_42 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_42 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_42 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_42 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_42 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_42 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_42 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_42 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_42 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_42 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_42 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_42 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_42 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_42 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_42 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_42 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            
            
            .module_shop_simplesub_42 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_42 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
        
            .module_shop_simplesub_42 .border-bottom-left{
                border-bottom-left-radius:0px;
            }
            .module_shop_simplesub_42 .border-bottom-right{
                border-bottom-right-radius:0px;
            }
            .module_shop_simplesub_42 .link-img{
                height:100%!important;
                border-radius:0px;
            }
            .module_shop_simplesub_42 .box-img-price{
                width:30px;
                height:30px;
                margin-left:2rem;
            }  
            .module_shop_simplesub_42 .div-price-center{
                width: 100%;
                display: flex;
                justify-content: center;
            } 
            .module_shop_simplesub_42 .box-img-price-center{
                width:30px;
                height:30px;
                margin-right: 0.5rem;
            }
            .module_shop_simplesub_42 .div-title label{
                color:#000000!important;
            }
            .module_shop_simplesub_42 .div-title:hover label{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_42 .link-title{
                color:#000000!important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .module_shop_simplesub_42 .link-title:hover{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_42 .div-offer{
                width:18%;
                height:8%;
                background-color: #ff5722;
                color:#fff;
                font-weight: bold;
                position: absolute;
                left: 6%;
                top: 6.2%;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
            }
            .module_shop_simplesub_42 .img-price{
                width: 100%;
                object-fit: contain;
                height: 100%;
            } 
            .module_shop_simplesub_42 .title-for-swiper{
                display:flex;
                justify-content:right;
                align-items: center;
                margin:0rem auto 0rem auto;
                width:1200px;
                max-width:1200px;
                overflow:hidden;
                font-size:1.3em;
                height:50px;
                
                padding:0.5rem;
            }
            .module_shop_simplesub_42 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_42 .text-title-sub-main{
                
                color:#000;
                background-color:#ffffff!important;
            }
            
            .module_shop_simplesub_42 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_42 .container{
                width:1200px;
                max-width:1200px;
                margin:auto auto auto auto;
                overflow:hidden;
                border:1px solid #d9d9d9;
            }
            .module_shop_simplesub_42 .card-box-type1{
                border:1px solid #dddddd;
                background:;
                border-radius:0px;
            }
            .module_shop_simplesub_42 .swiper-slide{
                display: flex;
                flex-direction: column;
            }
            .module_shop_simplesub_42 .height-content {
                height:max-content;
            }
            .module_shop_simplesub_42 .btn-next{
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                right:0.6%;
                margin-top: 18px;
                z-index: 1;
                background:#fff;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_42 .btn-prev:hover{
                background:#fff;
            }
            .module_shop_simplesub_42 .btn-next:hover{
                background:#fff;
            }
            .module_shop_simplesub_42 .btn-prev{
                background:#fff;
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                left:0.6%;
                margin-top: 18px;
                z-index: 1;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_42 .svg_next{
                width:13px;
                fill:#333;
            }
            .module_shop_simplesub_42 .svg_next:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_42 .svg_prev{
                width:13px;
                fill:#333;
                transform:rotate(180deg)
            }
            .module_shop_simplesub_42 .svg_prev:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_42 .card{
                padding:0.5rem;
                display: flex;
                justify-content: center;
            }
            .module_shop_simplesub_42 .div-box-img{
                width:100%;
                height:185px!important;
                padding:0rem;
            }
            .module_shop_simplesub_42 .div-box-img img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            .module_shop_simplesub_42 .div-title{
                width: 100%;
                height: 45px;
                font-weight:500;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content: center;
                align-items: center;
                font-size:0.9em;
                margin:0rem auto 0rem auto;
            }
            .module_shop_simplesub_42 .div-title span{
                color:#000000;    
            }
            .module_shop_simplesub_42 .div-title span:hover{
                color:#03a9f5;
                cursor:pointer;   
            }
            .module_shop_simplesub_42 .div-price-discount{
                width: 100%;
                height: 70px;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content:center;
                margin-bottom:0.7rem;
                align-items:baseline;
                flex-direction:column;
                flex-wrap:wrap;
            }
            .module_shop_simplesub_42 .price{
                width:65%;
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                justify-content: end;
                color:#000;
            }
            .module_shop_simplesub_42 .price-center{
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                width:100%;
                justify-content: center;
                color:#000;
            }
            .module_shop_simplesub_42 .discount{
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 200;
                width: 64%;
                text-decoration: line-through;
                color: #999999;
                padding-right:0.5rem;
                justify-content: end;
            }
            .module_shop_simplesub_42 .svg_tooman{
                width: 35px;
                padding-right: 0.2rem;
                fill:red!important;
            }
            .module_shop_simplesub_42 .svg_tooman_discount{
                width: 35px;
                padding-right: 0.2rem;
                fill:#999999!important;
            }
            .module_shop_simplesub_42 .div-add-share{
                width:100%;
                height:45px;
                display:flex;
                border-top: 1px solid #dddddd;
                cursor:pointer;
                flex-direction: row;
            }
            .module_shop_simplesub_42 .add-shop{
                width: 20%;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow:hidden;
                background:#d9d9d9;
                cursor:pointer;
            }
            .module_shop_simplesub_42 .svgHeart{ 
                height: 100%;
            }
            .module_shop_simplesub_42 .svgShare{ 
                height: 100%;
            }
            .module_shop_simplesub_42 .animate-share{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_42 .animate-heart{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_42 .add-shop span{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_42 .add-shop .link-card{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_42 .link-card:hover{
                color:white;
            }
            .module_shop_simplesub_42 .grow{
                flex-grow:2;
            }
            .module_shop_simplesub_42 .svg_heart{
                width:15px;;
                fill:#999999;
                z-index:10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_42 .svg_share{
                width: 15px;
                fill: #999999;
                z-index: 10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_42 .animate-blue span{
                cursor:pointer;
            }
            .module_shop_simplesub_42 .svgHeart:first-child .svg_heart{
                fill: #fff !important;
            }
            .module_shop_simplesub_42 .svgHeart:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_42 .svgShare:first-child .svg_share{
                fill: #fff !important;
            }
            .module_shop_simplesub_42 .svgShare:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_42 .animate-blue{
                position:absolute;
                top:0;
                left:-100%;
                bottom:0;
                width:100%;
                background:#d9d9d9;
                transition: left 0.4s;
            }
            .module_shop_simplesub_42 .add-shop:hover .animate-blue{
                left:0;
            }
            .module_shop_simplesub_42 .add-shop:hover span{
                color:white;
            }
            .module_shop_simplesub_42 .add-shop:hover .link-card{
                color:#000;
            }
            .module_shop_simplesub_42 .add-shop:hover .animate-heart{
                bottom: -50%; 
            }
            .module_shop_simplesub_42 .add-shop:hover .animate-share{
                bottom: -50%; 
            }
        .module[data-id_page='5086']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:32px;border-style:solid;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='5086']:hover{;}.module[data-id_page='5086']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='5086'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='5086']  
                
                .module[data-id_page='5086'] .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='5086'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='5086']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_558 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_558 .content_str{
				width:100%;
			}
            #module_new_medical_558 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_558 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_558 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_558 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_558 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_558 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_558 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_558 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_558 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_558 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_558 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_558 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_558 a{
                color:#00AFEF!important;
            }
            #module_new_medical_558 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_558 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_558 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2213 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2213 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2213 .background-img{
                border-radius:;
            }
        #medical_box_2213 .new_medical_button{color:#000000;background-color:transparent;font-weight:500;font-size:14px;width:130px;height:40px;line-height:40px;text-align:center;border-radius:2px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#434343;box-shadow:0px 0px 0px 0px ;}#medical_box_2208 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                   #medical_box_2213  
                
                #medical_box_2213 .new_medical_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;
            
                }
                #medical_box_2213 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2213:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2213 .mode1-size_2213{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2213 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2213 > div{
               height:100%;
            }
            #medical_box_2213 .mode2-size_2213{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2213 .mode3-size_2213{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2213 .mode4-size_2213{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2213 .mode5-size_2213{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2213 .mode6-size_2213{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2213 .mode7-size_2213{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2213 .mode7-size_2213 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2213 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2213 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2213{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2213 span:hover{
                color:!important;
            }
            .custom2_2213{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2213 span:hover{
                color:;
            }
            #medical_box_2213 .mode-btn1_2213{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2213 .mode-btn1_2213 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2213 .mode-btn2_2213{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2213 .mode-btn2_2213 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2213 .div-btn-title_main_2213{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2213 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2213 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_558 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='5081']:hover .new_medical_box_main{}
            #module_new_medical_558 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_558 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_558 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_558 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_558 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_558 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_558 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_558 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_558 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_558 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_558 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_558{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_558 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_558 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_558 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_558 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_558 .swiper-container{
                width:1200px;
            }
            #module_new_medical_558 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_558 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_558 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_558 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='4155']{;background-color:#8e9eab;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;margin-top:60px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}.module[data-id_page='4155']:hover{;}.module[data-id_page='4155']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='4155'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='4155']  
                
                .module[data-id_page='4155'] .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='4155'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='4155']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #module_title_15 .new_title_title_main{color:#000;font-weight:bold;font-size:22px;justify-content:flex-start;text-align:right;padding-right:16px;width:1200px;line-height:44px;}.module[data-id_page='3390']:hover .new_title_title_main{}
            #module_title_15 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        #module_title_15 .new_title_box_main{visibility:visible;border-style:none;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#d9d9d9;}.module[data-id_page='3390']:hover .new_title_box_main{}
            #module_title_15 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        .module[data-id_page='8028']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;padding-bottom:20px;border-style:none;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='8028']:hover{;}.module[data-id_page='8028']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='8028'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='8028']  
                
                .module[data-id_page='8028'] .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='8028'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='8028']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            .module_shop_simplesub_1797{
                background-color:none;
                background-image:url(https://madikait.ir/files/);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: left;
                padding-top:0rem;
                padding-bottom:0rem;
                margin-top:0rem;
                margin-bottom:0rem;
                z-index:0;
            }
            .module_shop_simplesub_1797 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1797 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_1797 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_1797 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_1797 .path-email{
                fill: red;
            }
            .module_shop_simplesub_1797 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_1797 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1797 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_1797 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_1797 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_1797 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1797 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_1797 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_1797 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_1797 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_1797 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_1797 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_1797 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_1797 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_1797 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_1797 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_1797 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_1797 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            
            
            .module_shop_simplesub_1797 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_1797 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
        
            .module_shop_simplesub_1797 .border-bottom-left{
                border-bottom-left-radius:0px;
            }
            .module_shop_simplesub_1797 .border-bottom-right{
                border-bottom-right-radius:0px;
            }
            .module_shop_simplesub_1797 .link-img{
                height:100%!important;
                border-radius:0px;
            }
            .module_shop_simplesub_1797 .box-img-price{
                width:30px;
                height:30px;
                margin-left:2rem;
            }  
            .module_shop_simplesub_1797 .div-price-center{
                width: 100%;
                display: flex;
                justify-content: center;
            } 
            .module_shop_simplesub_1797 .box-img-price-center{
                width:30px;
                height:30px;
                margin-right: 0.5rem;
            }
            .module_shop_simplesub_1797 .div-title label{
                color:#000000!important;
            }
            .module_shop_simplesub_1797 .div-title:hover label{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_1797 .link-title{
                color:#000000!important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .module_shop_simplesub_1797 .link-title:hover{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_1797 .div-offer{
                width:18%;
                height:8%;
                background-color: #ff5722;
                color:#fff;
                font-weight: bold;
                position: absolute;
                left: 6%;
                top: 6.2%;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
            }
            .module_shop_simplesub_1797 .img-price{
                width: 100%;
                object-fit: contain;
                height: 100%;
            } 
            .module_shop_simplesub_1797 .title-for-swiper{
                display:flex;
                justify-content:right;
                align-items: center;
                margin:0rem auto 0rem auto;
                width:1200px;
                max-width:1200px;
                overflow:hidden;
                font-size:1.3em;
                height:50px;
                
                padding:0.5rem;
            }
            .module_shop_simplesub_1797 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_1797 .text-title-sub-main{
                
                color:#000;
                background-color:#ffffff!important;
            }
            
            .module_shop_simplesub_1797 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_1797 .container{
                width:1200px;
                max-width:1200px;
                margin:auto auto auto auto;
                overflow:hidden;
                border:1px solid #d9d9d9;
            }
            .module_shop_simplesub_1797 .card-box-type1{
                border:1px solid #dddddd;
                background:;
                border-radius:0px;
            }
            .module_shop_simplesub_1797 .swiper-slide{
                display: flex;
                flex-direction: column;
            }
            .module_shop_simplesub_1797 .height-content {
                height:max-content;
            }
            .module_shop_simplesub_1797 .btn-next{
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                right:0.6%;
                margin-top: 18px;
                z-index: 1;
                background:#fff;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_1797 .btn-prev:hover{
                background:#fff;
            }
            .module_shop_simplesub_1797 .btn-next:hover{
                background:#fff;
            }
            .module_shop_simplesub_1797 .btn-prev{
                background:#fff;
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                left:0.6%;
                margin-top: 18px;
                z-index: 1;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_1797 .svg_next{
                width:13px;
                fill:#333;
            }
            .module_shop_simplesub_1797 .svg_next:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_1797 .svg_prev{
                width:13px;
                fill:#333;
                transform:rotate(180deg)
            }
            .module_shop_simplesub_1797 .svg_prev:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_1797 .card{
                padding:0.5rem;
                display: flex;
                justify-content: center;
            }
            .module_shop_simplesub_1797 .div-box-img{
                width:100%;
                height:185px!important;
                padding:0rem;
            }
            .module_shop_simplesub_1797 .div-box-img img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            .module_shop_simplesub_1797 .div-title{
                width: 100%;
                height: 45px;
                font-weight:500;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content: center;
                align-items: center;
                font-size:0.9em;
                margin:0rem auto 0rem auto;
            }
            .module_shop_simplesub_1797 .div-title span{
                color:#000000;    
            }
            .module_shop_simplesub_1797 .div-title span:hover{
                color:#03a9f5;
                cursor:pointer;   
            }
            .module_shop_simplesub_1797 .div-price-discount{
                width: 100%;
                height: 70px;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content:center;
                margin-bottom:0.7rem;
                align-items:baseline;
                flex-direction:column;
                flex-wrap:wrap;
            }
            .module_shop_simplesub_1797 .price{
                width:65%;
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                justify-content: end;
                color:#000;
            }
            .module_shop_simplesub_1797 .price-center{
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                width:100%;
                justify-content: center;
                color:#000;
            }
            .module_shop_simplesub_1797 .discount{
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 200;
                width: 64%;
                text-decoration: line-through;
                color: #999999;
                padding-right:0.5rem;
                justify-content: end;
            }
            .module_shop_simplesub_1797 .svg_tooman{
                width: 35px;
                padding-right: 0.2rem;
                fill:red!important;
            }
            .module_shop_simplesub_1797 .svg_tooman_discount{
                width: 35px;
                padding-right: 0.2rem;
                fill:#999999!important;
            }
            .module_shop_simplesub_1797 .div-add-share{
                width:100%;
                height:45px;
                display:flex;
                border-top: 1px solid #dddddd;
                cursor:pointer;
                flex-direction: row;
            }
            .module_shop_simplesub_1797 .add-shop{
                width: 20%;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow:hidden;
                background:#d9d9d9;
                cursor:pointer;
            }
            .module_shop_simplesub_1797 .svgHeart{ 
                height: 100%;
            }
            .module_shop_simplesub_1797 .svgShare{ 
                height: 100%;
            }
            .module_shop_simplesub_1797 .animate-share{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_1797 .animate-heart{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_1797 .add-shop span{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_1797 .add-shop .link-card{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_1797 .link-card:hover{
                color:white;
            }
            .module_shop_simplesub_1797 .grow{
                flex-grow:2;
            }
            .module_shop_simplesub_1797 .svg_heart{
                width:15px;;
                fill:#999999;
                z-index:10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_1797 .svg_share{
                width: 15px;
                fill: #999999;
                z-index: 10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_1797 .animate-blue span{
                cursor:pointer;
            }
            .module_shop_simplesub_1797 .svgHeart:first-child .svg_heart{
                fill: #fff !important;
            }
            .module_shop_simplesub_1797 .svgHeart:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_1797 .svgShare:first-child .svg_share{
                fill: #fff !important;
            }
            .module_shop_simplesub_1797 .svgShare:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_1797 .animate-blue{
                position:absolute;
                top:0;
                left:-100%;
                bottom:0;
                width:100%;
                background:#d9d9d9;
                transition: left 0.4s;
            }
            .module_shop_simplesub_1797 .add-shop:hover .animate-blue{
                left:0;
            }
            .module_shop_simplesub_1797 .add-shop:hover span{
                color:white;
            }
            .module_shop_simplesub_1797 .add-shop:hover .link-card{
                color:#000;
            }
            .module_shop_simplesub_1797 .add-shop:hover .animate-heart{
                bottom: -50%; 
            }
            .module_shop_simplesub_1797 .add-shop:hover .animate-share{
                bottom: -50%; 
            }
        .module[data-id_page='8029']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:32px;border-style:solid;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='8029']:hover{;}.module[data-id_page='8029']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='8029'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='8029']  
                
                .module[data-id_page='8029'] .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='8029'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='8029']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_890 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_890 .content_str{
				width:100%;
			}
            #module_new_medical_890 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_890 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_890 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_890 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_890 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_890 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_890 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_890 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_890 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_890 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_890 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_890 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_890 a{
                color:#00AFEF!important;
            }
            #module_new_medical_890 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_890 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_890 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_3523 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3523 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3523 .background-img{
                border-radius:;
            }
        #medical_box_3523 .new_medical_button{color:#000000;background-color:transparent;font-weight:500;font-size:14px;width:130px;height:40px;line-height:40px;text-align:center;border-radius:2px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#434343;box-shadow:0px 0px 0px 0px ;}#medical_box_2208 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                   #medical_box_3523  
                
                #medical_box_3523 .new_medical_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;
            
                }
                #medical_box_3523 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3523:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3523 .mode1-size_3523{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3523 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3523 > div{
               height:100%;
            }
            #medical_box_3523 .mode2-size_3523{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3523 .mode3-size_3523{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3523 .mode4-size_3523{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3523 .mode5-size_3523{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3523 .mode6-size_3523{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3523 .mode7-size_3523{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3523 .mode7-size_3523 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3523 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3523 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3523{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3523 span:hover{
                color:!important;
            }
            .custom2_3523{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3523 span:hover{
                color:;
            }
            #medical_box_3523 .mode-btn1_3523{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3523 .mode-btn1_3523 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3523 .mode-btn2_3523{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3523 .mode-btn2_3523 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3523 .div-btn-title_main_3523{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3523 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3523 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_890 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='5081']:hover .new_medical_box_main{}
            #module_new_medical_890 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_890 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_890 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_890 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_890 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_890 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_890 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_890 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_890 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_890 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_890 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_890{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_890 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_890 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_890 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_890 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_890 .swiper-container{
                width:1200px;
            }
            #module_new_medical_890 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_890 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_890 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_890 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='8027']{;background-color:#8e9eab;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;margin-top:60px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}.module[data-id_page='8027']:hover{;}.module[data-id_page='8027']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='8027'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='8027']  
                
                .module[data-id_page='8027'] .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='8027'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='8027']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #module_title_18 .new_title_title_main{color:#000;font-weight:bold;font-size:22px;justify-content:flex-start;text-align:right;padding-right:16px;width:1200px;line-height:44px;}.module[data-id_page='3390']:hover .new_title_title_main{}
            #module_title_18 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        #module_title_18 .new_title_box_main{visibility:visible;border-style:none;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#d9d9d9;}.module[data-id_page='3390']:hover .new_title_box_main{}
            #module_title_18 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        .module[data-id_page='4347']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;padding-bottom:20px;border-style:none;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='4347']:hover{;}.module[data-id_page='4347']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='4347'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='4347']  
                
                .module[data-id_page='4347'] .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='4347'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='4347']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            .module_shop_simplesub_981{
                background-color:none;
                background-image:url(https://madikait.ir/files/);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: left;
                padding-top:0rem;
                padding-bottom:0rem;
                margin-top:0rem;
                margin-bottom:0rem;
                z-index:0;
            }
            .module_shop_simplesub_981 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_981 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_981 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_981 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_981 .path-email{
                fill: red;
            }
            .module_shop_simplesub_981 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_981 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_981 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_981 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_981 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_981 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_981 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_981 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_981 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_981 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_981 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_981 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_981 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_981 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_981 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_981 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_981 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_981 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            
            
            .module_shop_simplesub_981 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_981 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
        
            .module_shop_simplesub_981 .border-bottom-left{
                border-bottom-left-radius:0px;
            }
            .module_shop_simplesub_981 .border-bottom-right{
                border-bottom-right-radius:0px;
            }
            .module_shop_simplesub_981 .link-img{
                height:100%!important;
                border-radius:0px;
            }
            .module_shop_simplesub_981 .box-img-price{
                width:30px;
                height:30px;
                margin-left:2rem;
            }  
            .module_shop_simplesub_981 .div-price-center{
                width: 100%;
                display: flex;
                justify-content: center;
            } 
            .module_shop_simplesub_981 .box-img-price-center{
                width:30px;
                height:30px;
                margin-right: 0.5rem;
            }
            .module_shop_simplesub_981 .div-title label{
                color:#000000!important;
            }
            .module_shop_simplesub_981 .div-title:hover label{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_981 .link-title{
                color:#000000!important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .module_shop_simplesub_981 .link-title:hover{
                color:#03a9f5!important;
            }
            .module_shop_simplesub_981 .div-offer{
                width:18%;
                height:8%;
                background-color: #ff5722;
                color:#fff;
                font-weight: bold;
                position: absolute;
                left: 6%;
                top: 6.2%;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
            }
            .module_shop_simplesub_981 .img-price{
                width: 100%;
                object-fit: contain;
                height: 100%;
            } 
            .module_shop_simplesub_981 .title-for-swiper{
                display:flex;
                justify-content:right;
                align-items: center;
                margin:0rem auto 0rem auto;
                width:1200px;
                max-width:1200px;
                overflow:hidden;
                font-size:1.3em;
                height:50px;
                
                padding:0.5rem;
            }
            .module_shop_simplesub_981 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_981 .text-title-sub-main{
                
                color:#000;
                background-color:#ffffff!important;
            }
            
            .module_shop_simplesub_981 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_981 .container{
                width:1200px;
                max-width:1200px;
                margin:auto auto auto auto;
                overflow:hidden;
                border:1px solid #d9d9d9;
            }
            .module_shop_simplesub_981 .card-box-type1{
                border:1px solid #dddddd;
                background:;
                border-radius:0px;
            }
            .module_shop_simplesub_981 .swiper-slide{
                display: flex;
                flex-direction: column;
            }
            .module_shop_simplesub_981 .height-content {
                height:max-content;
            }
            .module_shop_simplesub_981 .btn-next{
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                right:0.6%;
                margin-top: 18px;
                z-index: 1;
                background:#fff;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_981 .btn-prev:hover{
                background:#fff;
            }
            .module_shop_simplesub_981 .btn-next:hover{
                background:#fff;
            }
            .module_shop_simplesub_981 .btn-prev{
                background:#fff;
                height: 36px;
                width: 36px;
                position: absolute;
                top:175px;
                left:0.6%;
                margin-top: 18px;
                z-index: 1;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
                display:flex;
                justify-content: center;
                align-items: center;
            }
            .module_shop_simplesub_981 .svg_next{
                width:13px;
                fill:#333;
            }
            .module_shop_simplesub_981 .svg_next:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_981 .svg_prev{
                width:13px;
                fill:#333;
                transform:rotate(180deg)
            }
            .module_shop_simplesub_981 .svg_prev:hover{
                fill:#bfbfbf;
            }
            .module_shop_simplesub_981 .card{
                padding:0.5rem;
                display: flex;
                justify-content: center;
            }
            .module_shop_simplesub_981 .div-box-img{
                width:100%;
                height:185px!important;
                padding:0rem;
            }
            .module_shop_simplesub_981 .div-box-img img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            .module_shop_simplesub_981 .div-title{
                width: 100%;
                height: 45px;
                font-weight:500;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content: center;
                align-items: center;
                font-size:0.9em;
                margin:0rem auto 0rem auto;
            }
            .module_shop_simplesub_981 .div-title span{
                color:#000000;    
            }
            .module_shop_simplesub_981 .div-title span:hover{
                color:#03a9f5;
                cursor:pointer;   
            }
            .module_shop_simplesub_981 .div-price-discount{
                width: 100%;
                height: 70px;
                line-height:1.5;
                padding:0 0.5rem;
                overflow:hidden;
                display:flex;
                justify-content:center;
                margin-bottom:0.7rem;
                align-items:baseline;
                flex-direction:column;
                flex-wrap:wrap;
            }
            .module_shop_simplesub_981 .price{
                width:65%;
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                justify-content: end;
                color:#839AA8;
            }
            .module_shop_simplesub_981 .price-center{
                display: flex;
                align-items: center;
                font-size:18px;
                font-weight:200;
                width:100%;
                justify-content: center;
                color:#839AA8;
            }
            .module_shop_simplesub_981 .discount{
                display: flex;
                align-items: center;
                font-size: 15px;
                font-weight: 200;
                width: 64%;
                text-decoration: line-through;
                color: #999999;
                padding-right:0.5rem;
                justify-content: end;
            }
            .module_shop_simplesub_981 .svg_tooman{
                width: 35px;
                padding-right: 0.2rem;
                fill:red!important;
            }
            .module_shop_simplesub_981 .svg_tooman_discount{
                width: 35px;
                padding-right: 0.2rem;
                fill:#999999!important;
            }
            .module_shop_simplesub_981 .div-add-share{
                width:100%;
                height:45px;
                display:flex;
                border-top: 1px solid #dddddd;
                cursor:pointer;
                flex-direction: row;
            }
            .module_shop_simplesub_981 .add-shop{
                width: 20%;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow:hidden;
                background:#d9d9d9;
                cursor:pointer;
            }
            .module_shop_simplesub_981 .svgHeart{ 
                height: 100%;
            }
            .module_shop_simplesub_981 .svgShare{ 
                height: 100%;
            }
            .module_shop_simplesub_981 .animate-share{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_981 .animate-heart{
                bottom: 50%;
                transition: 0.2s bottom ease-in-out;
            }
            .module_shop_simplesub_981 .add-shop span{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_981 .add-shop .link-card{
                font-size: 15px;
                font-weight: 700;
                color:#000;
                z-index:10;
            }
            .module_shop_simplesub_981 .link-card:hover{
                color:white;
            }
            .module_shop_simplesub_981 .grow{
                flex-grow:2;
            }
            .module_shop_simplesub_981 .svg_heart{
                width:15px;;
                fill:#999999;
                z-index:10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_981 .svg_share{
                width: 15px;
                fill: #999999;
                z-index: 10;
                transition: fill 1s;
                height: 44px;
                cursor:pointer;
            }
            .module_shop_simplesub_981 .animate-blue span{
                cursor:pointer;
            }
            .module_shop_simplesub_981 .svgHeart:first-child .svg_heart{
                fill: #fff !important;
            }
            .module_shop_simplesub_981 .svgHeart:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_981 .svgShare:first-child .svg_share{
                fill: #fff !important;
            }
            .module_shop_simplesub_981 .svgShare:first-child {
                fill: #fff !important;
            }
            .module_shop_simplesub_981 .animate-blue{
                position:absolute;
                top:0;
                left:-100%;
                bottom:0;
                width:100%;
                background:#d9d9d9;
                transition: left 0.4s;
            }
            .module_shop_simplesub_981 .add-shop:hover .animate-blue{
                left:0;
            }
            .module_shop_simplesub_981 .add-shop:hover span{
                color:white;
            }
            .module_shop_simplesub_981 .add-shop:hover .link-card{
                color:#000;
            }
            .module_shop_simplesub_981 .add-shop:hover .animate-heart{
                bottom: -50%; 
            }
            .module_shop_simplesub_981 .add-shop:hover .animate-share{
                bottom: -50%; 
            }
        .module[data-id_page='5089']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:32px;border-style:solid;border-bottom-width:1px;border-color:#d9d9d9;}.module[data-id_page='5089']:hover{;}.module[data-id_page='5089']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='5089'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='5089']  
                
                .module[data-id_page='5089'] .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='5089'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='5089']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_561 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_561 .content_str{
				width:100%;
			}
            #module_new_medical_561 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_561 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_561 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_561 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_561 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_561 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_561 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_561 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_561 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_561 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_561 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_561 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_561 a{
                color:#00AFEF!important;
            }
            #module_new_medical_561 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_561 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_561 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2216 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2216 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2216 .background-img{
                border-radius:;
            }
        #medical_box_2216 .new_medical_button{color:#000000;background-color:transparent;font-weight:500;font-size:14px;width:130px;height:40px;line-height:40px;text-align:center;border-radius:2px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#434343;box-shadow:0px 0px 0px 0px ;}#medical_box_2208 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                   #medical_box_2216  
                
                #medical_box_2216 .new_medical_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;
            
                }
                #medical_box_2216 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2216:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2216 .mode1-size_2216{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2216 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2216 > div{
               height:100%;
            }
            #medical_box_2216 .mode2-size_2216{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2216 .mode3-size_2216{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2216 .mode4-size_2216{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2216 .mode5-size_2216{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2216 .mode6-size_2216{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2216 .mode7-size_2216{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2216 .mode7-size_2216 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2216 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2216 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2216{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2216 span:hover{
                color:!important;
            }
            .custom2_2216{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2216 span:hover{
                color:;
            }
            #medical_box_2216 .mode-btn1_2216{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2216 .mode-btn1_2216 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2216 .mode-btn2_2216{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2216 .mode-btn2_2216 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2216 .div-btn-title_main_2216{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2216 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2216 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_561 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='5081']:hover .new_medical_box_main{}
            #module_new_medical_561 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_561 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_561 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_561 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_561 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_561 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_561 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_561 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_561 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_561 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_561 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_561{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_561 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_561 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_561 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_561 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_561 .swiper-container{
                width:1200px;
            }
            #module_new_medical_561 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_561 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_561 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_561 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='76']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:none;}.module[data-id_page='76']:hover{;}.module[data-id_page='76']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='76'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='76']:hover .background-img{
                        filter:none;
                    }
                
                .module[data-id_page='76'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   .module[data-id_page='76']  
                
                .module[data-id_page='76'] .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='76'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='76']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='76']{
                               background-image:url("https://madikait.ir/files/image/1637415117_1 (49).jpg");
                           }
                       #layout_box_19.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:1;grid-row-end:4;padding-top:20px;padding-right:20px;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#bfbfbf;}#layout_box_19:hover{}#layout_box_19 .new_layout_title{color:#000;font-weight:500;font-size:30px;text-align:center;}#layout_box_19:hover .new_layout_title{}
                #layout_box_19 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_19:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_19 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://madikait.ir/files/image/1637418217_1595074451_4.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_19 .new_layout_layer{}#layout_box_8:hover .new_layout_layer{} 
                
                #layout_box_19 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(25,25,25,.35);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_19 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_19:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(25,25,25,.35);
                }
            
                #layout_box_19 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_19 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_19.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_20.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:1;grid-row-end:3;padding-top:20px;padding-right:20px;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#bfbfbf;}#layout_box_20:hover{}#layout_box_20 .new_layout_title{color:#000;font-weight:500;font-size:30px;text-align:center;margin-top:10px;}#layout_box_20:hover .new_layout_title{}
                #layout_box_20 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_20:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_20 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://madikait.ir/files/image/1637418217_1595074451_9.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_20 .new_layout_layer{}#layout_box_9:hover .new_layout_layer{} 
                
                #layout_box_20 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease-out;
                    background-color:rgba(25,25,25,.35);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_20 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_20:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(25,25,25,.35);
                }
            
                #layout_box_20 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_20 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_20.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_21.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:5;grid-row-start:1;grid-row-end:3;padding-top:20px;padding-right:20px;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#bfbfbf;}#layout_box_21:hover{}#layout_box_21 .new_layout_title{color:#000;font-weight:500;font-size:30px;text-align:center;}#layout_box_21:hover .new_layout_title{}
                #layout_box_21 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_21:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_21 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://madikait.ir/files/image/1637418930_1595074451_1.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_21 .new_layout_layer{}#layout_box_10:hover .new_layout_layer{} 
                
                #layout_box_21 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease-out;
                    background-color:rgba(25,25,25,.35);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_21 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_21:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(25,25,25,.35);
                }
            
                #layout_box_21 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_21 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_21.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_22.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:5;grid-row-start:3;grid-row-end:4;padding-top:20px;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#bfbfbf;}#layout_box_22:hover{}#layout_box_22 .new_layout_title{color:#000;font-weight:500;font-size:30px;text-align:center;}#layout_box_22:hover .new_layout_title{}
                #layout_box_22 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_22:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_22 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://madikait.ir/files/image/1637418761_1595074451_7.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_22 .new_layout_layer{}#layout_box_11:hover .new_layout_layer{} 
                
                #layout_box_22 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(25,25,25,.35);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_22 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_22:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(25,25,25,.35);
                }
            
                #layout_box_22 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_22 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_22.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_23.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:5;grid-row-start:4;grid-row-end:5;padding-top:20px;padding-right:20px;padding-left:20px;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#bfbfbf;}#layout_box_23:hover{}#layout_box_23 .new_layout_title{color:#000;font-weight:500;font-size:30px;text-align:center;margin-top:10px;}#layout_box_23:hover .new_layout_title{}
                #layout_box_23 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_23:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_23 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://madikait.ir/files/image/1637418217_1595074451_6.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_23 .new_layout_layer{}#layout_box_9:hover .new_layout_layer{} 
                
                #layout_box_23 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease-in;
                    background-color:rgba(25,25,25,.35);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_23 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_23:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(25,25,25,.35);
                }
            
                #layout_box_23 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_23 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_23.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_24.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:3;grid-row-start:5;grid-row-end:7;padding-top:20px;padding-right:20px;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#bfbfbf;}#layout_box_24:hover{}#layout_box_24 .new_layout_title{color:#000;font-weight:500;font-size:30px;text-align:right;margin-top:10px;}#layout_box_24:hover .new_layout_title{}
                #layout_box_24 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_24:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_24 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://madikait.ir/files/image/1637418218_1595075596_sd.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_24 .new_layout_layer{}#layout_box_10:hover .new_layout_layer{} 
                
                #layout_box_24 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(25,25,25,.35);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_24 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_24:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(25,25,25,.35);
                }
            
                #layout_box_24 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_24 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_24.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_25.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:5;grid-row-end:7;padding-top:20px;padding-right:20px;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#bfbfbf;}#layout_box_25:hover{}#layout_box_25 .new_layout_title{color:#000;font-weight:500;font-size:30px;text-align:center;margin-top:10px;}#layout_box_25:hover .new_layout_title{}
                #layout_box_25 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_25:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_25 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://madikait.ir/files/image/1637418215_1595074451_3.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_25 .new_layout_layer{}#layout_box_11:hover .new_layout_layer{} 
                
                #layout_box_25 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease-out;
                    background-color:rgba(25,25,25,.35);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_25 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_25:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(25,25,25,.35);
                }
            
                #layout_box_25 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_25 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_25.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_26.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:5;grid-row-end:8;padding-top:20px;padding-right:20px;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#8c8c8c;}#layout_box_26:hover{}
                    #layout_box_26:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_26 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://madikait.ir/files/image/1637418218_1595074451_10.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_26 .new_layout_layer{}#layout_box_12:hover .new_layout_layer{} 
                
                #layout_box_26 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(25,25,25,.35);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_26 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_26:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(25,25,25,.35);
                }
            
                #layout_box_26 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_26 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_26.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_27.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:7;grid-row-end:8;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#434343;}#layout_box_27:hover{}#layout_box_27 .new_layout_description{color:#777;font-weight:300;font-size:16px;line-height:32px;text-align:justify;border-style:solid;border-color:#555;}#layout_box_13:hover .new_layout_description{}#layout_box_27 .new_layout_title{color:#8c8c8c;font-weight:500;font-size:18px;text-align:center;margin-top:10px;}#layout_box_27:hover .new_layout_title{}
                #layout_box_27 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_27 .new_layout_icon{
                    background-image:url("https://madikait.ir/files/icon/1607504748_ضمانت.svg");
                }
            #layout_box_27 .new_layout_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:38px;height:38px;border-style:none;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;}#layout_box_27:hover .new_layout_icon{}
                   #layout_box_27  
                
                #layout_box_27 .new_layout_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;
            
                }
                #layout_box_27 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_27:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_27 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_27 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_27.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_28.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:7;grid-row-end:8;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#434343;}#layout_box_28:hover{}#layout_box_28 .new_layout_description{color:#777;font-weight:300;font-size:16px;line-height:32px;text-align:justify;border-style:solid;border-color:#555;}#layout_box_14:hover .new_layout_description{}#layout_box_28 .new_layout_title{color:#8c8c8c;font-weight:500;font-size:18px;text-align:center;margin-top:10px;}#layout_box_28:hover .new_layout_title{}
                #layout_box_28 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_28 .new_layout_icon{
                    background-image:url("https://madikait.ir/files/icon/1607504745_ارسال سریع.svg");
                }
            #layout_box_28 .new_layout_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:38px;height:38px;border-style:none;border-color:#000;}#layout_box_28:hover .new_layout_icon{}
                   #layout_box_28  
                
                #layout_box_28 .new_layout_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;
            
                }
                #layout_box_28 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_28:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_28 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_28 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_28.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_30.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:5;grid-row-start:8;grid-row-end:9;padding-top:20px;padding-right:20px;padding-left:20px;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#bfbfbf;}#layout_box_30:hover{}#layout_box_30 .new_layout_title{color:#000;font-weight:500;font-size:30px;text-align:center;margin-top:10px;}#layout_box_23:hover .new_layout_title{}
                #layout_box_30 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_30:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_30 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://madikait.ir/files/image/1595074451_6.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_30 .new_layout_layer{}#layout_box_9:hover .new_layout_layer{} 
                
                #layout_box_30 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease-in;
                    background-color:rgba(25,25,25,.35);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_30 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_30:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(25,25,25,.35);
                }
            
                #layout_box_30 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_30 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_30.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_29.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:7;grid-row-end:8;border-style:solid;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-color:#434343;}#layout_box_29:hover{}#layout_box_29 .new_layout_description{color:#777;font-weight:300;font-size:16px;line-height:32px;text-align:justify;border-style:solid;border-color:#555;}#layout_box_15:hover .new_layout_description{}#layout_box_29 .new_layout_title{color:#8c8c8c;font-weight:500;font-size:18px;text-align:center;margin-top:10px;}#layout_box_29:hover .new_layout_title{}
                #layout_box_29 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_29 .new_layout_icon{
                    background-image:url("https://madikait.ir/files/icon/1607506675_پشتیبانی.svg");
                }
            #layout_box_29 .new_layout_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:38px;height:38px;border-style:none;border-color:#000;}#layout_box_29:hover .new_layout_icon{}
                   #layout_box_29  
                
                #layout_box_29 .new_layout_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;
            
                }
                #layout_box_29 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_29:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_29 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_29 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_29.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_5 .new_layout_box_main{display:grid;width:1200px;height:1500px;grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(8,1fr);column-gap:5px;row-gap:5px;visibility:visible;border-style:none;}.module[data-id_page='76']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_5{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_5 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_5 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_5 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_5 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_5 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
            #module_title_17 .new_title_title h3{
                font-size:inherit;
                font-weight:inherit;
                color:inherit;
            }
        
            #module_title_17 .new_title_icon_main{
                background-image:url("https://madikait.ir/files/");
            }
        .module[data-id_page='3036']{;background-color:#f0f0f0;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;border-style:none;}.module[data-id_page='3036']:hover{;}.module[data-id_page='3036']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='3036'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='3036']  
                
                .module[data-id_page='3036'] .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='3036'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='3036']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_328 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_328 .content_str{
				width:100%;
			}
            #module_new_medical_328 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_328 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_328 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_328 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_328 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_328 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_328 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_328 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_328 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_328 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_328 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_328 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_328 a{
                color:#00AFEF!important;
            }
            #module_new_medical_328 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_328 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_328 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1314 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1314 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1314 .background-img{
                border-radius:;
            }
        #medical_box_1314 .new_medical_title{color:#000000;font-weight:bold;font-size:25px;text-align:center;margin-top:22px;line-height:50px;}#medical_box_1314:hover .new_medical_title{}
                #medical_box_1314 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1314.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-style:none;}#medical_box_90:hover{}
                   #medical_box_1314  
                
                #medical_box_1314 .new_medical_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;
            
                }
                #medical_box_1314 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1314:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_1314 .mode1-size_1314{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1314 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1314 > div{
               height:100%;
            }
            #medical_box_1314 .mode2-size_1314{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1314 .mode3-size_1314{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1314 .mode4-size_1314{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1314 .mode5-size_1314{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1314 .mode6-size_1314{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1314 .mode7-size_1314{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1314 .mode7-size_1314 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1314 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1314 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1314{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1314 span:hover{
                color:!important;
            }
            .custom2_1314{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1314 span:hover{
                color:;
            }
            #medical_box_1314 .mode-btn1_1314{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1314 .mode-btn1_1314 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1314 .mode-btn2_1314{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1314 .mode-btn2_1314 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1314 .div-btn-title_main_1314{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1314 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1314 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1313 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1313 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1313 .background-img{
                border-radius:;
            }
        #medical_box_1313 .new_medical_description{color:#000000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_1313:hover .new_medical_description{}
                   #medical_box_1313  
                
                #medical_box_1313 .new_medical_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;
            
                }
                #medical_box_1313 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1313:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_1313 .mode1-size_1313{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1313 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1313 > div{
               height:100%;
            }
            #medical_box_1313 .mode2-size_1313{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1313 .mode3-size_1313{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1313 .mode4-size_1313{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1313 .mode5-size_1313{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1313 .mode6-size_1313{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1313 .mode7-size_1313{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1313 .mode7-size_1313 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1313 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1313 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1313{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1313 span:hover{
                color:!important;
            }
            .custom2_1313{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1313 span:hover{
                color:;
            }
            #medical_box_1313 .mode-btn1_1313{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1313 .mode-btn1_1313 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1313 .mode-btn2_1313{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1313 .mode-btn2_1313 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1313 .div-btn-title_main_1313{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1313 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1313 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1312 .new_medical_icon{
                background-image:url("https://madikait.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1312 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1312 .background-img{
                border-radius:;
            }
        #medical_box_1312 .new_medical_button{color:#000000;background-color:transparent;font-weight:300;font-size:14px;width:120px;height:40px;line-height:40px;text-align:center;margin-top:20px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#000000;box-shadow:0px 0px 0px 0px ;}#medical_box_1312 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                   #medical_box_1312  
                
                #medical_box_1312 .new_medical_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;
            
                }
                #medical_box_1312 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1312:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_1312 .mode1-size_1312{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1312 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1312 > div{
               height:100%;
            }
            #medical_box_1312 .mode2-size_1312{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1312 .mode3-size_1312{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1312 .mode4-size_1312{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1312 .mode5-size_1312{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1312 .mode6-size_1312{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1312 .mode7-size_1312{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1312 .mode7-size_1312 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1312 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1312 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1312{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1312 span:hover{
                color:!important;
            }
            .custom2_1312{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1312 span:hover{
                color:;
            }
            #medical_box_1312 .mode-btn1_1312{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1312 .mode-btn1_1312 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1312 .mode-btn2_1312{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1312 .mode-btn2_1312 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1312 .div-btn-title_main_1312{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1312 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1312 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_328 .new_medical_title_main{color:#000;font-weight:bold;font-size:30px;justify-content:center;text-align:center;}.module[data-id_page='3036']:hover .new_medical_title_main{}#module_new_medical_328 .new_medical_box_main{background-color:#e6fffb;display:flex;flex-wrap:wrap;visibility:visible;padding-top:32px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}.module[data-id_page='3036']:hover .new_medical_box_main{}
            #module_new_medical_328 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_328 .new_medical_module{
                    width:357px;
                    position:relative;
                    overflow:hidden;
                    margin-left:32px;
                    margin-bottom:32px;
                }
                #module_new_medical_328 .medical_box_main_animation_trigger{
                    margin-left:32px;
                    margin-bottom:32px;
                }
                #module_new_medical_328 .new_medical_module:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_328 .medical_box_main_animation_trigger:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_328 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_328 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_328 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_328 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_328 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_328 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_328{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_328 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_328 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_328 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_328 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_328 .swiper-container{
                width:1200px;
            }
            #module_new_medical_328 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_328 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_328 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_328 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            
            body{
                position: relative;
            }
            .public-header{
                position: relative;
                transition:5s;
            }
            .absolute-container{
                background-color: #ee273a;
                border-radius: 7px;
                position: fixed;
                top: 50%;
                left: 2%;
                transform: translateY(-50%);
                padding: 10px;
                z-index: 4900;
            }
            .social-absolute{
                position: relative;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0, 0, 0, .1);
                box-sizing: content-box;
                width: 24px;
                height: 24px;
            }
            .social-absolute:last-child {
                border-bottom: none !important;
            }
            .social-absolute img{
                width: 24px;
                height: 24px;
            }
            .absolute-tooltip{
                position: relative;
                transition: all 0.5s;
                border-radius: 0 7px 7px 0;
                font-size: 14px;
                overflow: hidden;
                white-space: nowrap;
            }
            .absolute-tooltip > span{
                padding: 10px 20px;
                display: block;
            }
            .tooltip-shake{
                display: block;
                width: 100%;
                height: 100%;
            }
            .tooltip-shake:before,
            .tooltip-shake:after {
                position: absolute;
                content: "";
                opacity: 0;
                transition: all 0.4s ease;
                color: #fff;
                font-weight: bold;
            }
            .tooltip-shake:before {
                content: attr(data-tooltip);
                background: #3c5059;
                width: 0;
                padding: 0;
                font-size: 0.9rem;
                top: 50%;
                left: calc(24px + 32px);
                border-radius: 5px;
                transform: translateY(-50%);
                overflow: hidden;
                white-space: nowrap;
            }
            .tooltip-shake:after {
                border-width: 8px 10px 8px 0;
                border-style: solid;
                border-color: transparent #3c5059 transparent transparent;
                top: 50%;
                left: calc(24px + 24px);
                transform: translateY(-50%);
            }
            .tooltip-shake:hover::before,
            .tooltip-shake:hover::after {
                opacity: 1;
                overflow: hidden;
                white-space: nowrap;
                transform: translate(0, -50%);
            }
            .tooltip-shake:hover::before {
                width: max-content;
                padding: 10px 25px;
            }
            @keyframes shake {
                0% {
                    transform: rotate(2deg);
                }
                50% {
                    transform: rotate(-3deg);
                }
                70% {
                    transform: rotate(3deg);
                }
                100% {
                    transform: rotate(0deg);
                }
            }
            .social-absolute:hover {
                animation: shake 500ms ease-in-out forwards;
            }
            
                
                .public-header{
                    width: 100%;
                    background: #d9d9d9;
                    background-size: auto;
                    background-repeat: no-repeat;
                }
            
            
            .adv-banner-container{
                width: 100%;
                height: 10px;
            }
            .adv-banner-container .adv-item{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .top-bar-container{
                width: 100%;
                min-height: 40px;
                height: 40px;
                background: #bfbfbf;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-bar{
                width: 1200px;
                height: 100%;
                margin: auto;
                padding: 0 8px;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            .top-item{
                height: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .info-container{
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .info-container img{
                width: 16px;
                height: 16px;
            }
            .info-container > span{
                display: inline-flex;
            }
            .top-info,
            .top-social{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-social{
                padding: 5px 0;
            }
            .top-social li a img{
                width: 32px;
                height: 32px;
            }
            .top-social li a span{
                font-size: 0px;
                font-weight: 200;
                color: #000;
            }
            .top-list{
                width: max-content;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin: 0  0px;
            }
            .top-list:hover{
                color: #000;
            }
            
                .top-list:first-child{
                    margin-right : 0;
                }
                .top-list:last-child{
                    margin-left : 0;
                }
            
            
            .arrow-menu-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-list a span,
            .top-list span{
                color: #000;
                font-weight: bold;
                font-size: 14px;
            }
            .top-list a img,
            .top-list span img{
                margin: 0 5px;
                width: 24px;
                height: 24px;
                object-fit: contain;
            }
            .top-list:first-child a img,
            .top-list:first-child span img{
                margin-right: 0;
            }
            .top-navbar{
                height: 100%;
                background: transparent;
            }
            .top-nav-list{
                position: relative;
                height: 100%;
                padding: 0 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-nav-list a span,
            .top-nav-list span{
                color: #000;
                font-size: 16px;
                font-weight: 200;search
            }
            .top-nav-list:hover{
                background-color: #fff;
            }
            .top-nav-list .arrow-menu-container svg{
                fill: #000;
            }
            .top-nav-list:hover a span,
            .top-nav-list:hover span,
            .top-nav-list:hover .arrow-menu-container svg{
                color: #fff;
                fill: #fff;
            }
            .top-nav-list .icon-title-part{
                padding-left: 5px;
            }
            .top-sub-nav > .top-sub-list a span,
            .top-sub-nav > .top-sub-list span{
                color: #000;
            }
            .top-sub-nav > .top-sub-list:hover a span,
            .top-sub-nav > .top-sub-list:hover span{
                color: #fff;
            }
            
            .top-sub-nav{
                flex-direction: column;
                justify-content: center;
                align-content: flex-start;
                position: absolute;
                z-index: 4999;
                min-width: 150px;
                width: max-content;
                background: #2c3e50;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translateY(-10px) scaleY(0.5);
                transform-origin: top;  
                border-radius: 0;
            }
            .top-nav-list:hover > .top-sub-nav{
                display: flex;
                top: 100%;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            
        
                .top-nav-list:hover > .top-sub-nav{
                    right: 0;
                }
                .top-sub-list{
                    border-left: 5px solid  #f00;
                }
            
        
            .top-sub-list{
                width: 100%;
                padding: 8px 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-sub-list:hover{
                background: #fff;
            }
            .header-container{
                display: grid;
                width: 1200px;
                margin: auto;
                height: auto;
                grid-template-rows: 1fr 1fr;  
                grid-template-columns: 1fr 3fr 1fr;
                grid-template-areas: 
                    "top-1 top-2 top-3"
                    "bottom-1 bottom-2 bottom-3"; 
                padding-top: 8px;
                padding-bottom: 8px;
                padding-left: 8px;
                padding-right: 8px;
            }
            .top-section-1{
                grid-area: top-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-2{
                grid-area: top-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-3{
                grid-area: top-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                align-items: center;
            }
            .logo-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                padding: 0px  0px;
            }
            .logo-container img{
                display: block;
                width: 250px;
                height: 87px;
                max-width: 250px;
                max-height: 87px;
                object-fit: contain;
            }
            .nav-container{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                box-sizing: border-box;
                margin: 0 10px;
            }
            .nav-container > .navbar{
                width: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                background: #fafafa;
                box-sizing: border-box;
                border: px  solid  ;
                border-radius: 3px;
            }
            
                .nav-container > .navbar{
                    margin-left: calc(0px + 10px);
                }
            
        
            .max-height{
                height: 700px;
                overflow-x:hidden;
                overflow-y: auto;
                display:flex!important;
                flex-direction: column!important;
                justify-content: flex-start!important;
            }
            .nav-container .navbar .nav-list{
                padding: 10px 18px;
                min-height: 45px;
                position: relative;
                list-style: none;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-content: center;
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list.active{
                background-color: ;
            }
            .nav-container .navbar .nav-list.active a,
            .nav-container .navbar .nav-list.active span{
                color: #434343;
            }
            
            .nav-container .navbar .nav-list .icon-title-part{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .nav-container .navbar .nav-list .icon-title-part img{
                width: 24px;
                height: 24px;
                margin: 0 5px;
            }
            .nav-container .navbar .nav-list .overflow-menu{
                justify-content: center !important;
            }
            .nav-container .navbar .nav-list:hover{
                background-color: ;
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list:hover a,
            .nav-container .navbar .nav-list:hover span{
                color:  ;
            }
            .nav-container .navbar .nav-list img{
                width: 32px;
                height: 32px;
            }
            .nav-container .navbar .nav-list a,
            .nav-container .navbar .nav-list span{
                text-decoration: none;
                font-size: 16px;
                color: #434343;
            }
            .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
            .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                display: flex;
                top: 45px;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                display: flex;
                right: calc(100%  +  1px);
                top: 0;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            
                    
                    .public-header{
                        position: relative;
                    }
                    .nav-container .navbar .nav-list{
                        position: unset !important;
                    }
                    .nav-container .navbar.navbar-sub{
                        width: 100%;
                        padding: 0 calc((100vw - 1200px) / 2);
                        position: absolute;
                        z-index: 4999;
                        background: #fafafa;
                        display: none;
                        flex-wrap: wrap;
                        flex-direction: row;
                        justify-content: flex-start;
                        align-content: flex-start;
                    }
                    .nav-container .navbar.navbar-sub .nav-list{
                        width: 100%;
                        max-width: 20%;
                        flex: 0 0 20%;                        
                        border-bottom: 1px solid #d9d9d9;
                        box-sizing: border-box;
                    }
                    .nav-container .navbar .nav-list:first-child:hover{
                        border-radius: 0 !important;
                    }
                    .nav-container .navbar .nav-list:last-child:hover{
                        border-radius: 0 !important;
                    }
                
        
            .arrow-icon-menu{
                width: 8px;
                height: 8px;
            }
            .arrow-icon-menu.arrow-bottom{
                transform: rotate(90deg);
            }
            
                .arrow-menu-container{
                    margin-right: 5px;
                }
                .arrow-icon-menu.arrow-right,
                .overflow-list .arrow-icon-menu.arrow-bottom{
                    transform: rotate(180deg);
                }
                .nav-container .navbar .nav-list:first-child:hover{
                    border-radius: 0 3px 3px 0;
                }
                .nav-container .navbar .nav-list:last-child:hover{
                    border-radius: 3px 0 0 3px;
                }
            
            
            .nav-container .navbar .nav-list.base-level svg,
            .nav-container .navbar .nav-list .overflow-menu svg{
                fill: #434343;
            }
            .nav-container .navbar .nav-list.base-level:hover svg{
                fill: ;
            }
            .sub-menu-container{
                position: absolute;
                min-width: 150px;
                background-color: #fafafa;
                color: #fff;
                top: 32px;
                right: 0;
                z-index: 4999;
               /* display: none;*/
            } 
            /*.sub-navbar{
                width: 100%;
                height: 100%;
            }*/
            .nav-container .navbar.navbar-sub .nav-list img{
                width: 16px;
                height: 16px;
            }
            .nav-container .navbar.navbar-sub .nav-list a,
            .nav-container .navbar.navbar-sub .nav-list span{
                color: #000000;
                font-size: 16px;
            }
            .nav-list.with-sub-menu:hover .sub-menu-container{
                display: block;
            }
            .nav-container .navbar.navbar-sub .nav-list .arrow-menu-container svg{
                fill: #000000;
            }
            .active{
                background-color: ;
            }
            .active a{
                color: #434343;
            }     
            .icon-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-content: center;
            }
            .icon-container .icon-item{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-content: center;
                box-sizing: border-box;
                min-height: 45px;
                margin: 0 5px;
            }
            
                
                .icon-container .icon-item:first-child{
                    margin-right: 0 !important;
                }
                .icon-container .icon-item:last-child{
                    margin-left: 0 !important;
                }
                
            
            
            .icon-container .icon-item a{
                border: 0px  solid  ;
            }
            .icon-container .icon-item.basket-icon{
                position: relative;
                color: #000000;
                min-width: 45px;
                min-height: 45px;
                outline: none;
                border-radius: 3px;
                background: #fafafa;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                text-decoration: none;
                margin: 0 10px;
            }
            .icon-container .icon-item .icon-shortcut{
                color: #000000;
                min-width: 45px;
                min-height: 45px;
                margin: 0;
                outline: none;
                border-radius: 3px;
                background: #fafafa;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                transition: .4s;
                cursor: pointer;
                text-decoration: none;
            }
            
            .basket-shop{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 45px;
                height: 45px;
                border-radius: 3px;
            }
            .icon-container .icon-item .icon-shortcut:hover svg,
            .icon-container .icon-item .icon-shortcut:hover .add-item-to-cart.open span
            {
                fill: #fff;
                color: #fff;
            }
            
                
                .icon-container .icon-item.basket-icon .add-item-to-cart span{
                    position: absolute;
                    display: block;
                    width: 25px;
                    height: 25px;
                    line-height: 27px;
                    background-color: #fafafa;
                    color: #000000;
                    border-radius: 50%;
                    text-align: center;
                    font-size: .8rem;
                    top: -8px;
                    left: 20px;
                }
                .icon-container .icon-item.basket-icon{
                    margin: 0 40px;
                }
             
            .icon-container .icon-item svg{
                width: 25px;
                height: 25px;
            
                fill: #000000;
            
            
            }
            .icon-container .icon-item.login-icon{
                position: relative;
            }
            /*.icon-container .icon-item.login-icon .icon-shortcut{
                width: 100%;
                height: 100%;
            }*/
            .icon-container .icon-item.login-icon .icon-login{
                width: 25px;
                height: 25px;
            }
            #div_profile_picture, 
            #div_profile_picture_metro {
                display: inline !important;
                width: 0 !important;
                height: 0 !important;
                line-height: unset !important;
            }
            #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;
            }
        
                
                .icon-container .icon-item.login-icon{
                    color: #000000;
                    /*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-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;
                }
            
            
            .public-header .bottom-section-1{
                grid-area: bottom-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-2{
                grid-area: bottom-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-3{
                grid-area: bottom-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            
                        .search-container .search-input{
                            border-left: none !important;
                            border-radius: 0 3px 3px 0;
                        }
                        .search-container .search-btn{
                            border-right: none !important; 
                            border-radius: 3px 0 0 3px;
                        }
                    
                
                .search-container{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 45px;
                    padding: 0 6%;
                    transition: .8s;
                }
                .search-container .search-input{
                    width: 95%;
                    height: calc(2 * 0px + 45px);
                    padding: 5px 10px; 
                    background-color: #fafafa;
                    color: #000000;
                    border: 0px  solid  transparent;
                }
                .search-container .search-input::placeholder{
                    color: #aaa;
                }
                .search-container .search-btn{
                    width: 45px;
                    height: 100%;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    background-color: #fafafa;
                    box-sizing: border-box;
                    border: 0px  solid  transparent;
                }
                .search-container .search-btn svg{
                    width: 20px;
                    height: 20px;
                    fill: #000000;
                }
                .icon-container .search-icon{
                    display: none;
                }
                .search-container > .search-btn:hover svg,
                .search-container > .close-search-btn:hover svg{
                    fill: #fff;
                }
            
            
            .sticky{
                width: 100vw;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 999;
                padding: 2vh 8vw;
                transition: .8s;
                background-color: #ddd !important;
            }
            .public_sticky{
                width: 100%;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 1001;
            }
            .d-none{
                display: none !important;
            }
            .border-left-n{
                border-left: none !important;
            }
            .border-right-n{
                border-right: none !important;
            }
            .w-1200px{
                width: 1200px !important;
                margin: auto;
            }
            .lang-icon{
                position: relative;
            }
            .language-container .lang-btn{
                width: 25px;
                height: 25px;
            }
            .lang-list-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .lang-list{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px;
                background: #fafafa;
                border-radius: 3px;
            }
            .lang-list::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #fafafa;
                display: block;
            }
            .lang-nav{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
            }
            .lang-nav .lang-li{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                list-style: none;
                width: max-content;
                margin: 5px 0;
                
            }
            .lang-nav .lang-li a{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .lang-nav .lang-li img{
                width: 25px;
                height: 25px;
                object-fit: cover;
                margin: 0 4px;
            }
            .lang-nav .lang-li span{
                text-transform: uppercase;
                line-height: 2.5;
                font-size: 14px;
                margin: 0 4px;
                color: #fff;
            }
            .lang-nav .lang-li a{
                color: #fff;
            }
            .lang-nav .lang-li span:hover{
                cursor: pointer;
                color: #fff;
            }
            .lang-nav .lang-li .lang-active{
                font-weight: bold;
                color: #000000;
            }
            .icon-item.lang-icon:hover .lang-list-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            /*---------------------------------------------------------------------------------*/
            .link-profile-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .link-profile-container .link-wrapper{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px 25px;
                background: #fafafa;
                border-radius: 3px;
            }
            .link-profile-container .link-wrapper a{
                color: #000000;
            }
            .link-profile-container .link-wrapper a:hover{
                cursor: pointer;
                color: #fff;
            }
            .link-profile-container .link-wrapper::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #fafafa;
                display: block;
            }
             .icon-item.login-icon:hover .link-profile-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            
            
            .backTop{
                display: flex !important;
            }
            #back_to_top{
                display: none;
                position: fixed;
                transition: ms;
                right: unset;
                left: px;
                bottom: 50px;
                z-index: 100;
                border-radius: 15%;
                border: px  solid  #fff2e8;
                padding: 15px;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: #ffccc7;
            }
            #back_to_top svg{
                width: 15px;
                height: 15px;
                fill: #434343;
            }
            #back_to_top img{
                width: 15px;
                height: 15px;
                fill: #434343;
                object-fit:contain;
            }
            .search-btn img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .basket-shop img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .lang-btn img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .icon-login img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
        
                    
                    .header-container{
                        grid-template-rows: 1fr .1fr auto;  
                        grid-template-columns: 250px 3fr 1fr;
                        grid-template-areas: 
                            "top-1 top-2 top-3"
                            "line line line"
                            "bottom-1 bottom-1 bottom-1"; 
                    }
                    .line{
                        grid-area: line;
                        width: 100%;
                        border-bottom: 1px solid #2c3e50;
                        padding-top: 15px;
                    }
                    .top-section-1{
                        justify-content: flex-start;
                    }
                    .logo-container{
                        justify-content: flex-start;
                    }
                    .nav-container{
                        padding: 15px;
                        justify-content: center;
                        
                    }
                    .nav-container .navbar{
                        justify-content: center;
                    }
                    .bottom-section-1{
                        justify-content: flex-start;
                    }
                    .search-command{
                        border: 0px  solid   !important;
                    }
                    #module_footer_section_5{
;
width:100%;
justify-content:center;
padding-top:2%;
padding-right:10%;
padding-bottom:2%;
padding-left:10%;
border-style:none;
}#module_footer_column_6{
;
border-style:none;
}#module_footer_row_12{
;
justify-content:center;
border-style:none;
}#module_footer_items_16{
;
cursor:default;
text-align:right;
width:12vw;
height:4vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_16:hover{
;
}#module_footer_row_13{
;
justify-content:center;
border-style:none;
}#module_footer_items_17{
;
cursor:default;
text-align:center;
color:#000;
font-weight:200;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
margin-bottom:1vw;
}#module_footer_items_17:hover{
;
}#module_footer_row_14{
;
justify-content:center;
border-style:none;
}#module_footer_items_18{
;
cursor:default;
text-align:center;
line-height:2.5vw;
color:#595959;
font-weight:500;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-bottom:1vw;
}#module_footer_items_18:hover{
;
}#module_footer_row_15{
;
justify-content:center;
border-style:none;
}#module_footer_items_19{
;
cursor:default;
text-align:center;
color:#000;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_19:hover{
;
}#module_footer_row_16{
;
justify-content:center;
border-style:none;
}#module_footer_items_20{
;
cursor:default;
text-align:center;
color:#000;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
}#module_footer_items_20:hover{
;
}#module_footer_row_24{
;
margin-top:1vw;
justify-content:center;
border-style:none;
}#module_footer_items_32{
;
cursor:pointer;
width:8.75vw;
height:9.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_32:hover{
;
}#module_footer_items_33{
;
cursor:pointer;
width:9.4vw;
height:9.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:2vw;
}#module_footer_items_33:hover{
;
}#module_footer_section_6{
;
background-color:#434343;
justify-content:center;
padding-top:1%;
padding-right:30%;
padding-bottom:1%;
padding-left:30%;
border-style:none;
}#module_footer_column_7{
;
justify-content:center;
border-style:none;
}#module_footer_row_17{
;
justify-content:center;
border-style:none;
}#module_footer_items_21{
;
cursor:default;
text-align:center;
color:#d9d9d9;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_21:hover{
;
}#public_footer_main_3{;background-color:#bfbfbf;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#public_footer_main_3:hover{;}#public_footer_main_3{
                    position:relative;
                    margin-right:auto !important;
                    margin-left:auto !important;
                    overflow:hidden !important;
                }
                #public_footer_main_3 > div{
                    position:relative;
                    z-index:12;
                }
                   #public_footer_main_3  
                
                #public_footer_main_3 .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_3 .layer_first_child{
                    width:100%;
                }
            
                #public_footer_main_3: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;
            }
        
            #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;}