/**
 * 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;
}
                .slidetwoframes_title0{
                    font-size:60px;
                    text-align:right;
                    line-height:1.5;
                }
                .slidetwoframes_desc0{
                    font-size:40px;
                    line-height:1.5;
                    padding: 20px 0;
                    text-align:justify;
                }
                #s_slidertwoframes_module1 .admin_module_menu{
                    top:unset;
                    bottom:10px;
                }
            
                .slidetwoframes_title1{
                    font-size:60px;
                    text-align:right;
                    line-height:1.5;
                }
                .slidetwoframes_desc1{
                    font-size:40px;
                    line-height:1.5;
                    padding: 20px 0;
                    text-align:justify;
                }
                #s_slidertwoframes_module1 .admin_module_menu{
                    top:unset;
                    bottom:10px;
                }
            
                .slidetwoframes_title2{
                    font-size:60px;
                    text-align:right;
                    line-height:1.5;
                }
                .slidetwoframes_desc2{
                    font-size:40px;
                    line-height:1.5;
                    padding: 20px 0;
                    text-align:justify;
                }
                #s_slidertwoframes_module1 .admin_module_menu{
                    top:unset;
                    bottom:10px;
                }
            
            .inner_1200px{width:1200px;margin:auto;}
            .arrow_right{
               background-image:url(https://bazaknoon.ir/files/main/module/slidertwoframes/img/related-slider-arrow.png);
               background-position: -93px;
               margin-left: 10px;
            }
            .arrow_left{
                background-image:url(https://bazaknoon.ir/files/main/module/slidertwoframes/img/related-slider-arrow.png);
                margin-right: 10px;
            }

            /*.tf_arrow:not(.change_opacity):hover{background-position: -82px 0;}*/
            .button_container{text-align:right;margin-top:20px;}
            .related_btn{
                position: relative;
                display: inline-block;
                font-size: 16px;
                line-height: 16px;
                color: #55c53a;
                border: 2px solid #55c53a;
                border-radius: 2px;
                -webkit-transition: all .2s ease;
                transition: all .2s ease;
                padding: 13px 39px;
            }
            .related_btn:hover {
                color: #FFF;
                background-color: #55c53a;
            }
            #s_slidertwoframes_module1{
                position: relative;
                text-align: center;
                background-position: 50% 0;
                background-size: cover;
            }
            .s_bullet{
                width:11px;
                height:11px;
                border-radius:50%;
                background-color:#999;
                margin-right:5px;
                display:inline-block;
                cursor:pointer;
            }
            .bullet_container{
                position:absolute;
                top: 78%;
                right: 50%;
                -webkit-transform: translateX(50%);-moz-transform: translateX(50%);-ms-transform: translateX(50%);-o-transform: translateX(50%);transform: translateX(50%);
            }
            .img_container{
                display: flex;
                /*width: 300vw;*/
                height:351.36px;
                overflow: hidden;
               /* transition: all 800ms ease;*/
            }
            .slides_block{
                display:inline-block;
                vertical-align:top;
            }
            .slides_text{width:570px;}
            .slides_image{width:400px;height:291px;}
            .main_banner{
                width:100%;
                /*height:42.48vw;*/
                height:536.7px;
                overflow:hidden;
            }
            .slider_bg{
                display:flex;
                /*transition: all 800ms ease;*/
            }
            .inner_s_div{
                width:100%;
                /*height:38vw;*/
                height:536.7px;
                flex:0 0 100vw;
            }
            .tf_arrow{
                width:70px;
                height:56px;
                display:inline-block;
                vertical-align:middle;
                cursor:pointer;
                overflow: hidden;
                background-repeat:no-repeat;
                background-size:100% 100%;
                 background-size: cover;
            }
            .inner_slider_parent{
                display:inline-block;
                width: 1025px;
                height: 351.36px;
                margin: auto;
                vertical-align:middle;
                overflow:hidden;
            }
            .inner_slides_div{
                width:1025px;
                background-color: #FFF;
                padding: 30px 20px;
                display: flex;
                justify-content: space-between;
                flex:0 0 1025px;
            }
            .inner_banner{
                width:100%;
                height:351.36px;
                position:absolute;
                top:90px;
                left:0;
            }
            .change_opacity{opacity:.5;}
            .s_active_bullet{background-color:#51c336;}
            .inner_s_div>img{width:100%;height:536.7px;}
            .inner_img{width:100%;height:291px;object-fit:cover}
        #s_slidertwoframes_module1{
                  margin-bottom:10px;
                }#s_slidertwoframes_module1{
                    margin-top:10px;
                }#s_slidertwoframes_module1{
                        font-size:16px;
                }#s_slidertwoframes_module1 .color_tem1{ /*range asli color ??? */
            color: ;
        }#s_slidertwoframes_module1 .color_tem2{ /*range asli color ??? */
            color: ;
        }#s_slidertwoframes_module1 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#s_slidertwoframes_module1 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#s_slidertwoframes_module1 .color_title{/*range title asli module*/
                            color:#52c41a ;
                                }#s_slidertwoframes_module1 .color_text{/*range text haye module  */
                            color:#0a0b09;
                                }#s_slidertwoframes_module1 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#s_slidertwoframes_module1 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#s_slidertwoframes_module1 .color_b_text{/*range link button manand range matnesh*/
                            color:#ffffff ;
                                }#s_slidertwoframes_module1 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color:#52c41a ;
                                }#s_slidertwoframes_module1 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#s_slidertwoframes_module1 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#s_slidertwoframes_module1 .color_box_text{/*range text dakhele box ha! */
                            color:#0a0b09 ;
                                }#s_slidertwoframes_module1 .color_box_title{/*range title dakhele box ha!*/
                            color:#52c41a ;
                                }.module[data-id_page='2675']{;background-color:#F5F5F5;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-style:none;}.module[data-id_page='2675']:hover{;}.module[data-id_page='2675']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='2675'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='2675'] 
            
            .module[data-id_page='2675'] .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='2675'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='2675']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_456 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_456 .content_str{
				width:100%;
			}
            #module_new_medical_456 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_456 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_456 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_456 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_456 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_456 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_456 .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_456 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_456 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_456 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_456 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_456 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_456 .new_medical_description a,#module_new_medical_456 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_456 .new_medical_description a:hover,#module_new_medical_456 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_456 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_456 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2234 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/1623079055_Artboard-14x-3.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2234 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2234 .background-img{
                border-radius:5px;
            }
        
            #medical_box_2234 .new_medical_icon{
                
            }
        #medical_box_2234 .new_medical_title{color:#000;font-weight:500;font-size:16px;text-align:right;margin-top:10px;padding-right:10px;line-height:32px;}#medical_box_377:hover .new_medical_title{}
                #medical_box_2234 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2234 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25%;height:65px;margin-top:9px;border-style:none;border-color:#000;}#medical_box_2234:hover .new_medical_icon{}#medical_box_2234.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:100px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-radius:5px;border-style:none;}#medical_box_377:hover{}#medical_box_2234 .new_medical_description{color:#000000;font-weight:200;font-size:18px;text-align:justify;margin-top:-40px;padding-top:10px;padding-bottom:10px;padding-right:80px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_2234:hover .new_medical_description{color:#f5f5f5 !important;}
                #medical_box_2234 .new_medical_layer{}#medical_box_14:hover .new_medical_layer{}
            
            #medical_box_2234 .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_2234 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2234:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2234 .mode1-size_2234{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2234 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2234 > div{
               height:100%;
            }
            #medical_box_2234 .mode2-size_2234{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2234 .mode3-size_2234{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2234 .mode4-size_2234{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2234 .mode5-size_2234{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2234 .mode6-size_2234{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2234 .mode7-size_2234{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2234 .mode7-size_2234 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2234 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2234 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2234{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2234 span:hover{
                color:!important;
            }
            .custom2_2234{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2234 span:hover{
                color:;
            }
            #medical_box_2234 .mode-btn1_2234{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2234 .mode-btn1_2234 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2234 .mode-btn2_2234{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2234 .mode-btn2_2234 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2234 .div-btn-title_main_2234{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2234 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2234 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2233 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/1623078624_-Object31-pdf-1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2233 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2233 .background-img{
                border-radius:5px;
            }
        
            #medical_box_2233 .new_medical_icon{
                
            }
        #medical_box_2233 .new_medical_title{color:#000000;font-weight:500;font-size:16px;text-align:center;margin-top:10px;padding-right:10px;}#medical_box_2233:hover .new_medical_title{}
                #medical_box_2233 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2233 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25%;height:65px;margin-top:9px;border-style:none;border-color:#000;}#medical_box_2233:hover .new_medical_icon{}#medical_box_2233.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:100px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-radius:5px;border-style:none;}#medical_box_376:hover{}#medical_box_2233 .new_medical_description{color:#000;font-weight:300;font-size:17px;text-align:justify;margin-top:-40px;padding-top:10px;padding-bottom:10px;padding-right:80px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_2233:hover .new_medical_description{}
                #medical_box_2233 .new_medical_layer{}#medical_box_14:hover .new_medical_layer{}
            
            #medical_box_2233 .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_2233 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2233:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2233 .mode1-size_2233{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2233 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2233 > div{
               height:100%;
            }
            #medical_box_2233 .mode2-size_2233{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2233 .mode3-size_2233{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2233 .mode4-size_2233{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2233 .mode5-size_2233{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2233 .mode6-size_2233{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2233 .mode7-size_2233{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2233 .mode7-size_2233 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2233 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2233 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2233{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2233 span:hover{
                color:!important;
            }
            .custom2_2233{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2233 span:hover{
                color:;
            }
            #medical_box_2233 .mode-btn1_2233{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2233 .mode-btn1_2233 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2233 .mode-btn2_2233{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2233 .mode-btn2_2233 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2233 .div-btn-title_main_2233{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2233 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2233 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2232 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/1623078626_tboard-6@4x-2-1.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2232 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2232 .background-img{
                border-radius:5px;
            }
        
            #medical_box_2232 .new_medical_icon{
                
            }
        #medical_box_2232 .new_medical_title{color:#000000;font-weight:500;font-size:16px;text-align:center;margin-top:9px;padding-right:10px;}#medical_box_2232:hover .new_medical_title{}
                #medical_box_2232 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2232 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25%;height:65px;margin-top:9px;border-style:none;border-color:#000;}#medical_box_2232:hover .new_medical_icon{}#medical_box_2232.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:100px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-radius:5px;border-style:none;}#medical_box_375:hover{}#medical_box_2232 .new_medical_description{color:#000;font-weight:300;font-size:18px;text-align:justify;margin-top:-40px;padding-top:10px;padding-bottom:10px;padding-right:80px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_375:hover .new_medical_description{}
                #medical_box_2232 .new_medical_layer{}#medical_box_14:hover .new_medical_layer{}
            
            #medical_box_2232 .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_2232 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2232:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2232 .mode1-size_2232{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2232 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2232 > div{
               height:100%;
            }
            #medical_box_2232 .mode2-size_2232{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2232 .mode3-size_2232{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2232 .mode4-size_2232{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2232 .mode5-size_2232{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2232 .mode6-size_2232{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2232 .mode7-size_2232{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2232 .mode7-size_2232 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2232 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2232 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2232{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2232 span:hover{
                color:!important;
            }
            .custom2_2232{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2232 span:hover{
                color:;
            }
            #medical_box_2232 .mode-btn1_2232{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2232 .mode-btn1_2232 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2232 .mode-btn2_2232{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2232 .mode-btn2_2232 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2232 .div-btn-title_main_2232{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2232 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2232 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2231 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/1623078626_-Object11-pdf-1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2231 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2231 .background-img{
                border-radius:5px;
            }
        
            #medical_box_2231 .new_medical_icon{
                
            }
        #medical_box_2231 .new_medical_title{color:#000000;font-weight:500;font-size:16px;text-align:center;margin-top:10px;padding-right:10px;}#medical_box_2231:hover .new_medical_title{}
                #medical_box_2231 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2231 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25%;height:65px;margin-top:9px;border-style:none;border-color:#000;}#medical_box_2231:hover .new_medical_icon{}#medical_box_2231.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:100px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-radius:5px;border-style:none;}#medical_box_374:hover{}#medical_box_2231 .new_medical_description{color:#000000;font-weight:300;font-size:19px;text-align:justify;margin-top:-40px;padding-top:10px;padding-bottom:10px;padding-right:80px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_374:hover .new_medical_description{}
                #medical_box_2231 .new_medical_layer{}#medical_box_14:hover .new_medical_layer{}
            
            #medical_box_2231 .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_2231 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2231:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2231 .mode1-size_2231{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2231 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2231 > div{
               height:100%;
            }
            #medical_box_2231 .mode2-size_2231{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2231 .mode3-size_2231{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2231 .mode4-size_2231{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2231 .mode5-size_2231{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2231 .mode6-size_2231{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2231 .mode7-size_2231{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2231 .mode7-size_2231 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2231 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2231 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2231{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2231 span:hover{
                color:!important;
            }
            .custom2_2231{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2231 span:hover{
                color:;
            }
            #medical_box_2231 .mode-btn1_2231{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2231 .mode-btn1_2231 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2231 .mode-btn2_2231{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2231 .mode-btn2_2231 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2231 .div-btn-title_main_2231{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2231 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2231 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_456 .new_medical_title_main{color:#000;font-weight:bold;font-size:30px;justify-content:center;margin-top:30px;height:30px;line-height:30px;}.module[data-id_page='1104']:hover .new_medical_title_main{}#module_new_medical_456 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-bottom:45px;padding-right:2px;padding-left:0px;border-radius:5px;border-style:none;}.module[data-id_page='2675']:hover .new_medical_box_main{}
            #module_new_medical_456 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_456 .new_medical_module{
                    width:290px;
                    position:relative;
                    overflow:hidden;
                    margin-left:12px;
                    margin-bottom:px;
                }
                #module_new_medical_456 .medical_box_main_animation_trigger{
                    margin-left:12px;
                    margin-bottom:px;
                }
                #module_new_medical_456 .new_medical_module:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_456 .medical_box_main_animation_trigger:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_456 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_456 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_456 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_456 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_456 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_456 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_456{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_456 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_456 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_456 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_456 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_456 .swiper-container{
                width:1200px;
            }
            #module_new_medical_456 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_456 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_456 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_456 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='1749']{;background-color:#1f1f1f;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:50px;padding-bottom:30px;border-style:none;}.module[data-id_page='1749']:hover{;}.module[data-id_page='1749']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1749'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1749'] 
            
            .module[data-id_page='1749'] .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='1749'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1749']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layout_box_891.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:1;grid-row-end:2;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#layout_box_891:hover{}#layout_box_891 .new_layout_description{color:#52c41a;background-color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:justify;padding-top:5px;padding-bottom:5px;padding-right:5px;padding-left:5px;border-style:solid;border-color:#555;}#layout_box_891:hover .new_layout_description{}
                #layout_box_891:hover .background-img {
                    filter:none;
                }
            
                #layout_box_891 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://bazaknoon.ir/files/1606133020_g-Treatment-6-1.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_891 
            
            #layout_box_891 .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_891 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_891:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_891 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_891 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_891.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_890.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:1;grid-row-end:2;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#layout_box_890:hover{}#layout_box_890 .new_layout_description{color:#52c41a;background-color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:justify;padding-top:5px;padding-bottom:5px;padding-right:5px;padding-left:5px;border-style:solid;border-color:#555;}#layout_box_890:hover .new_layout_description{}
                #layout_box_890:hover .background-img {
                    filter:none;
                }
            
                #layout_box_890 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://bazaknoon.ir/files/1606134492_py-Af-316906465.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_890 
            
            #layout_box_890 .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_890 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_890:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_890 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_890 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_890.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_889.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:1;grid-row-end:3;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#layout_box_889:hover{}#layout_box_889 .new_layout_description{color:#52c41a;background-color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:justify;padding-top:5px;padding-bottom:5px;padding-right:5px;padding-left:5px;border-style:solid;border-color:#555;}#layout_box_889:hover .new_layout_description{}
                #layout_box_889:hover .background-img {
                    filter:none;
                }
            
                #layout_box_889 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://bazaknoon.ir/files/1607535346_clinic-1.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_889 
            
            #layout_box_889 .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_889 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_889:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_889 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_889 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_889.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_888.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:2;grid-row-end:3;padding-bottom:10px;padding-right:10px;padding-left:20px;border-style:none;}#layout_box_888:hover{}#layout_box_888 .new_layout_description{color:#52c41a;background-color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:justify;padding-top:5px;padding-bottom:5px;padding-right:5px;padding-left:5px;border-style:solid;border-color:#555;}#layout_box_888:hover .new_layout_description{}
                #layout_box_888:hover .background-img {
                    filter:none;
                }
            
                #layout_box_888 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://bazaknoon.ir/files/1606135076_rapist-1280x960.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_888 
            
            #layout_box_888 .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_888 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_888:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_888 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_888 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_888.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_887.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:4;grid-row-start:2;grid-row-end:4;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#layout_box_887:hover{}#layout_box_887 .new_layout_description{color:#52c41a;background-color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:justify;padding-top:5px;padding-bottom:5px;padding-right:5px;padding-left:5px;border-style:solid;border-color:#555;}#layout_box_887:hover .new_layout_description{}
                #layout_box_887:hover .background-img {
                    filter:none;
                }
            
                #layout_box_887 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://bazaknoon.ir/files/1606136280_mily-Counseling.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_887 
            
            #layout_box_887 .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_887 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_887:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_887 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_887 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_887.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_886.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:3;grid-row-end:4;padding-bottom:10px;padding-right:10px;padding-left:20px;border-style:none;}#layout_box_886:hover{}#layout_box_886 .new_layout_description{color:#52c41a;background-color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:justify;padding-top:5px;padding-bottom:5px;padding-right:5px;padding-left:5px;border-style:solid;border-color:#555;}#layout_box_886:hover .new_layout_description{}
                #layout_box_886:hover .background-img {
                    filter:none;
                }
            
                #layout_box_886 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://bazaknoon.ir/files/1606134995_unnamed.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_886 
            
            #layout_box_886 .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_886 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_886:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_886 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_886 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_886.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_885.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:3;grid-row-end:4;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#layout_box_885:hover{}#layout_box_885 .new_layout_description{color:#52c41a;background-color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:justify;padding-top:5px;padding-bottom:5px;padding-right:5px;padding-left:5px;border-style:solid;border-color:#555;}#layout_box_885:hover .new_layout_description{}
                #layout_box_885:hover .background-img {
                    filter:none;
                }
            
                #layout_box_885 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://bazaknoon.ir/files/1606135577_ack-of-intimacy.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_885 
            
            #layout_box_885 .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_885 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_885:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_885 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_885 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_885.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_326 .new_layout_title_main{color:#ffffff;font-weight:bold;font-size:30px;justify-content:center;text-align:center;margin-bottom:30px;}.module[data-id_page='1749']:hover .new_layout_title_main{}
                #module_new_layout_326 .new_layout_title_main h1{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #module_new_layout_326 .new_layout_box_main{display:grid;width:1200px;height:800px;grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(3,1fr);column-gap:30px;row-gap:30px;visibility:visible;padding-top:10px;border-style:none;}.module[data-id_page='1749']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_326{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_326 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_326 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_326 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_326 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_326 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='1951']{;background-color:#1f1f1f;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}.module[data-id_page='1951']:hover{;}.module[data-id_page='1951'] .new_admin_layer{;}.module[data-id_page='1951']:hover .new_admin_layer{;}.module[data-id_page='1951']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1951'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1951'] .module[data-id_page='1951'] .new_admin_layer{;}.module[data-id_page='1951']:hover .new_admin_layer{;}
            
            .module[data-id_page='1951'] .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='1951'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1951']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_407 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_407 .content_str{
				width:100%;
			}
            #module_new_medical_407 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_407 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_407 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_407 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_407 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_407 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_407 .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_407 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_407 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_407 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_407 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_407 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_407 .new_medical_description a,#module_new_medical_407 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_407 .new_medical_description a:hover,#module_new_medical_407 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_407 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_407 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2048 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/peopel/1608209906_1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2048 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2048 .background-img{
                border-radius:;
            }
        
            #medical_box_2048 .new_medical_icon{
                
            }
        #medical_box_2048 .new_medical_title{color:#73d13d;font-weight:bold;font-size:23px;text-align:center;margin-top:40px;}#medical_box_2048:hover .new_medical_title{}
                #medical_box_2048 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2048 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:14.5%;height:125px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_1951:hover .new_medical_icon{}#medical_box_2048.new_medical_module{background-color:transparent;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-style:none;}#medical_box_128:hover{}#medical_box_2048 .new_medical_description{color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:center;margin-top:20px;padding-right:240px;padding-left:240px;border-style:solid;border-color:#555;}#medical_box_128:hover .new_medical_description{}
                #medical_box_2048 
            
            #medical_box_2048 .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_2048 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2048:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2048 .mode1-size_2048{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2048 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2048 > div{
               height:100%;
            }
            #medical_box_2048 .mode2-size_2048{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2048 .mode3-size_2048{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2048 .mode4-size_2048{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2048 .mode5-size_2048{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2048 .mode6-size_2048{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2048 .mode7-size_2048{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2048 .mode7-size_2048 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2048 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2048 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2048{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2048 span:hover{
                color:!important;
            }
            .custom2_2048{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2048 span:hover{
                color:;
            }
            #medical_box_2048 .mode-btn1_2048{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2048 .mode-btn1_2048 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2048 .mode-btn2_2048{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2048 .mode-btn2_2048 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2048 .div-btn-title_main_2048{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2048 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2048 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2049 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/peopel/1608025935_toghiani.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2049 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2049 .background-img{
                border-radius:;
            }
        
            #medical_box_2049 .new_medical_icon{
                
            }
        #medical_box_2049 .new_medical_title{color:#52c41a;font-weight:bold;font-size:23px;text-align:center;margin-top:40px;}#medical_box_2049:hover .new_medical_title{}
                #medical_box_2049 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2049 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:14.5%;height:125px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_1951:hover .new_medical_icon{}#medical_box_2049.new_medical_module{background-color:transparent;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-style:none;border-top-width:5px;border-right-width:5px;border-bottom-width:5px;border-left-width:5px;border-color:#a8071a;}#medical_box_129:hover{}#medical_box_2049 .new_medical_description{color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:center;margin-top:20px;padding-right:240px;padding-left:240px;border-style:solid;border-color:#555;}#medical_box_129:hover .new_medical_description{}
                #medical_box_2049 
            
            #medical_box_2049 .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_2049 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2049:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2049 .mode1-size_2049{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2049 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2049 > div{
               height:100%;
            }
            #medical_box_2049 .mode2-size_2049{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2049 .mode3-size_2049{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2049 .mode4-size_2049{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2049 .mode5-size_2049{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2049 .mode6-size_2049{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2049 .mode7-size_2049{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2049 .mode7-size_2049 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2049 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2049 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2049{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2049 span:hover{
                color:!important;
            }
            .custom2_2049{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2049 span:hover{
                color:;
            }
            #medical_box_2049 .mode-btn1_2049{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2049 .mode-btn1_2049 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2049 .mode-btn2_2049{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2049 .mode-btn2_2049 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2049 .div-btn-title_main_2049{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2049 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2049 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2047 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/peopel/1608209968_2.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2047 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2047 .background-img{
                border-radius:;
            }
        
            #medical_box_2047 .new_medical_icon{
                
            }
        #medical_box_2047 .new_medical_title{color:#52c41a;font-weight:bold;font-size:23px;text-align:center;margin-top:40px;}#medical_box_2047:hover .new_medical_title{}
                #medical_box_2047 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2047 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:14.5%;height:125px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_1951:hover .new_medical_icon{}#medical_box_2047.new_medical_module{background-color:transparent;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-style:none;}#medical_box_127:hover{}#medical_box_2047 .new_medical_description{color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:center;margin-top:20px;padding-right:240px;padding-left:240px;border-style:solid;border-color:#555;}#medical_box_127:hover .new_medical_description{}
                #medical_box_2047 
            
            #medical_box_2047 .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_2047 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2047:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2047 .mode1-size_2047{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2047 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2047 > div{
               height:100%;
            }
            #medical_box_2047 .mode2-size_2047{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2047 .mode3-size_2047{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2047 .mode4-size_2047{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2047 .mode5-size_2047{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2047 .mode6-size_2047{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2047 .mode7-size_2047{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2047 .mode7-size_2047 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2047 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2047 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2047{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2047 span:hover{
                color:!important;
            }
            .custom2_2047{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2047 span:hover{
                color:;
            }
            #medical_box_2047 .mode-btn1_2047{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2047 .mode-btn1_2047 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2047 .mode-btn2_2047{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2047 .mode-btn2_2047 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2047 .div-btn-title_main_2047{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2047 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2047 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2046 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/peopel/1608210036_3.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2046 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2046 .background-img{
                border-radius:;
            }
        
            #medical_box_2046 .new_medical_icon{
                
            }
        #medical_box_2046 .new_medical_title{color:#52c41a;font-weight:bold;font-size:23px;text-align:center;margin-top:40px;}#medical_box_2046:hover .new_medical_title{}
                #medical_box_2046 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2046 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:14.5%;height:125px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_1951:hover .new_medical_icon{}#medical_box_2046.new_medical_module{background-color:transparent;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-style:none;}#medical_box_126:hover{}#medical_box_2046 .new_medical_description{color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:center;margin-top:20px;padding-right:240px;padding-left:240px;border-style:solid;border-color:#555;}#medical_box_126:hover .new_medical_description{}
                #medical_box_2046 
            
            #medical_box_2046 .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_2046 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2046:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2046 .mode1-size_2046{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2046 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2046 > div{
               height:100%;
            }
            #medical_box_2046 .mode2-size_2046{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2046 .mode3-size_2046{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2046 .mode4-size_2046{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2046 .mode5-size_2046{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2046 .mode6-size_2046{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2046 .mode7-size_2046{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2046 .mode7-size_2046 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2046 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2046 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2046{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2046 span:hover{
                color:!important;
            }
            .custom2_2046{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2046 span:hover{
                color:;
            }
            #medical_box_2046 .mode-btn1_2046{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2046 .mode-btn1_2046 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2046 .mode-btn2_2046{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2046 .mode-btn2_2046 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2046 .div-btn-title_main_2046{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2046 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2046 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_407 .new_medical_title_main{color:#ffffff;font-weight:bold;font-size:30px;justify-content:center;text-align:center;margin-top:50px;height:30px;line-height:30px;}.module[data-id_page='1951']:hover .new_medical_title_main{}#module_new_medical_407 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='72']:hover .new_medical_box_main{}
            #module_new_medical_407 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_407 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_407 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_407 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_407 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_407 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_407 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_407 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_407 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_407 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_407 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_407 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_407 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_407 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_407 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_407 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_407 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_407 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_407 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_407 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_407 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_407 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_407 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_407 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_407 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_407 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_407 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_407 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_407 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_407 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_407 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_407 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_407 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_407 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_407{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_407 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_407 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_407 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_407 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_407 .swiper-container{
                width:1200px;
            }
            #module_new_medical_407 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_407 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_407 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_407 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='1753']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}.module[data-id_page='1753']:hover{;}.module[data-id_page='1753']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1753'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1753'] 
            
            .module[data-id_page='1753'] .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='1753'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1753']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layoutfull_box_203.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:30vw;border-style:none;}#layoutfull_box_203:hover{}#layoutfull_box_203 .new_layoutfull_box{visibility:visible;border-style:none;}#layoutfull_box_4:hover .new_layoutfull_box{}#layoutfull_box_203 .new_layoutfull_description{color:#ffffff;font-weight:500;font-size:2.75vw;height:7vw;text-align:center;margin-top:9vw;padding-top:2vw;border-style:solid;border-top-width:.25vw;border-right-width:.25vw;border-bottom-width:.25vw;border-left-width:.25vw;border-color:#52c41a;}#layoutfull_box_203:hover .new_layoutfull_description{}#layoutfull_box_203 .new_layoutfull_button{color:#ffffff;background-color:#52c41a;font-weight:bold;font-size:1.25vw;width:10vw;height:4vw;line-height:4vw;text-align:center;margin-top:2vw;margin-bottom:2vw;border-style:solid;border-top-width:.25vw;border-right-width:.25vw;border-bottom-width:.25vw;border-left-width:.25vw;border-color:#fff;box-shadow:0px 0px 0px 0px ;}#layoutfull_box_203 .new_layoutfull_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #layoutfull_box_203:hover .background-img {
                    filter:brightness(0.3);
                }
            
                #layoutfull_box_203 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://bazaknoon.ir/files/icon/1606492675_3155b6f6dfc1861.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: brightness(0.3);
                }
            
                #layoutfull_box_203 .new_layoutfull_layer{}#layoutfull_box_4:hover .new_layoutfull_layer{}
            
            #layoutfull_box_203 .new_layoutfull_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                transform:scale(0) translate(-50%,50%); left:50%; bottom:50%;
            }

            #layoutfull_box_203 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_203:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                transform:scale(1) translate(0); left:0; bottom:0;
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_203 .new_layoutfull_box .container-nlm{
                width:60% !important;
                margin:auto;
            }
            #layoutfull_box_203.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_203 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_190{
                overflow:hidden;
            }
            #module_new_layoutfull_190 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_190 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_190 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='2196']{;background-color:#1f1f1f;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:110px;padding-bottom:110px;border-style:none;}.module[data-id_page='2196']:hover{;}.module[data-id_page='2196']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='2196'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='2196'] 
            
            .module[data-id_page='2196'] .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='2196'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='2196']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layout_box_1065.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:4;grid-row-start:1;grid-row-end:5;border-style:none;}#layout_box_945:hover{}#layout_box_1065 .new_layout_description{color:#ffffff;font-weight:300;font-size:16px;line-height:32px;text-align:justify;padding-top:10px;padding-left:10px;border-style:solid;border-color:#555;}#layout_box_1065:hover .new_layout_description{}#layout_box_1065 .new_layout_title{color:#52c41a;font-weight:bold;font-size:20px;text-align:right;}#layout_box_1065:hover .new_layout_title{}
                #layout_box_1065 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_1065 
            
            #layout_box_1065 .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_1065 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_1065:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_1065 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1065 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1065.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_1070.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:1;grid-row-end:5;border-style:none;}#layout_box_1070:hover{}#layout_box_1070 .new_layout_description{color:#ffffff;background-color:#eb2f96;font-weight:500;font-size:16px;line-height:32px;text-align:justify;padding-right:10px;padding-left:10px;cursor:zoom-in;border-style:solid;border-color:#555;}#layout_box_954:hover .new_layout_description{color:#13c2c2 !important;background-color:#e6f7ff !important;}
                #layout_box_1070 .new_layout_layer{}#layout_box_954:hover .new_layout_layer{}
            
            #layout_box_1070 .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_1070 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_1070:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_1070 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1070 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1070.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_1071.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:6;grid-row-start:1;grid-row-end:5;border-style:none;}#layout_box_1071:hover{}
                #layout_box_1071:hover .background-img {
                    filter:none;
                }
            
                #layout_box_1071 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://bazaknoon.ir/files/1623158823_05 at 17.13.44.jpeg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_1071 
            
            #layout_box_1071 .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_1071 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_1071:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_1071 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1071 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1071.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_1072.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:6;grid-column-end:7;grid-row-start:1;grid-row-end:5;border-style:none;}#layout_box_1072:hover{}
                #layout_box_1072 
            
            #layout_box_1072 .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_1072 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_1072:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_1072 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1072 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1072.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_1073.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:9;border-style:none;}#layout_box_1073:hover{}
                #layout_box_1073 
            
            #layout_box_1073 .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_1073 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_1073:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_1073 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1073 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1073.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_1074.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:6;grid-row-start:5;grid-row-end:9;border-style:none;}#layout_box_1074:hover{}
                #layout_box_1074 
            
            #layout_box_1074 .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_1074 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_1074:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_1074 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1074 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1074.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_1075.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:6;grid-column-end:7;grid-row-start:5;grid-row-end:9;border-style:none;}#layout_box_1075:hover{}
                #layout_box_1075:hover .background-img {
                    filter:none;
                }
            
                #layout_box_1075 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://bazaknoon.ir/files/1623583541_unnamed.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_1075 
            
            #layout_box_1075 .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_1075 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_1075:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_1075 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1075 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1075.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_1066.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:4;grid-row-start:5;grid-row-end:6;border-style:none;}#layout_box_946:hover{}#layout_box_1066 .new_layout_title{color:#fafafa;font-weight:300;font-size:16px;text-align:right;}#layout_box_1066:hover .new_layout_title{}
                #layout_box_1066 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_1066 .new_layout_icon{
                    background-image:url("https://bazaknoon.ir/files/1615199757_752_31B5w+3pqDL.png");
                }
            #layout_box_1066 .new_layout_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25px;height:25px;margin-left:5px;border-style:none;border-color:#000;}#layout_box_1066:hover .new_layout_icon{}
                #layout_box_1066 
            
            #layout_box_1066 .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_1066 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_1066:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_1066 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1066 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1066.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_1067.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:4;grid-row-start:6;grid-row-end:7;border-style:none;}#layout_box_1067:hover{}#layout_box_1067 .new_layout_title{color:#fafafa;font-weight:300;font-size:16px;text-align:right;}#layout_box_1067:hover .new_layout_title{}
                #layout_box_1067 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_1067 .new_layout_icon{
                    background-image:url("https://bazaknoon.ir/files/1614671742_azaknoon-portal.png");
                }
            #layout_box_1067 .new_layout_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25px;height:25px;margin-left:4px;border-style:none;border-color:#000;}#layout_box_1067:hover .new_layout_icon{}
                #layout_box_1067 
            
            #layout_box_1067 .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_1067 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_1067:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_1067 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1067 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1067.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_1069.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:4;grid-row-start:8;grid-row-end:9;border-style:none;}#layout_box_949:hover{}#layout_box_1069 .new_layout_title{color:#fafafa;font-weight:300;font-size:16px;text-align:right;}#layout_box_1069:hover .new_layout_title{}
                #layout_box_1069 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_1069 .new_layout_icon{
                    background-image:url("https://bazaknoon.ir/files/1614671800_oon-portal1 (1).png");
                }
            #layout_box_1069 .new_layout_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25px;height:25px;margin-left:2px;border-style:none;border-color:#000;}#layout_box_1069:hover .new_layout_icon{}
                #layout_box_1069 
            
            #layout_box_1069 .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_1069 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_1069:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_1069 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1069 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1069.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_1068.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:4;grid-row-start:7;grid-row-end:8;border-style:none;}#layout_box_948:hover{}#layout_box_1068 .new_layout_title{color:#fafafa;font-weight:300;font-size:16px;text-align:right;}#layout_box_1068:hover .new_layout_title{}
                #layout_box_1068 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_1068 .new_layout_icon{
                    background-image:url("https://bazaknoon.ir/files/1614671801_nline-bazaknoon.png");
                }
            #layout_box_1068 .new_layout_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25px;height:25px;margin-left:2px;border-style:none;border-color:#000;}#layout_box_1068:hover .new_layout_icon{}
                #layout_box_1068 
            
            #layout_box_1068 .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_1068 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_1068:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_1068 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1068 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1068.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_365 .new_layout_box_main{display:grid;width:1200px;grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(8,1fr);column-gap:8px;row-gap:8px;visibility:visible;border-style:none;}.module[data-id_page='539']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_365{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_365 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_365 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_365 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_365 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_365 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='2236']{;background-color:#fafafa;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}.module[data-id_page='2236']:hover{;}.module[data-id_page='2236']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='2236'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='2236'] 
            
            .module[data-id_page='2236'] .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='2236'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='2236']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_435 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_435 .content_str{
				width:100%;
			}
            #module_new_medical_435 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_435 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_435 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_435 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_435 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_435 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_435 .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_435 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_435 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_435 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_435 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_435 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_435 .new_medical_description a,#module_new_medical_435 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_435 .new_medical_description a:hover,#module_new_medical_435 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_435 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_435 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2137 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/1615298925_Untitled2.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2137 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2137 .background-img{
                border-radius:15px;
            }
        
            #medical_box_2137 .new_medical_icon{
                
            }
        #medical_box_2137 .new_medical_title{color:#52c41a;font-weight:bold;font-size:30px;text-align:center;margin-top:15px;padding-right:40px;height:20px;line-height:20px;}#medical_box_2137:hover .new_medical_title{}
                #medical_box_2137 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2137 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:50%;height:400px;margin-top:30px;margin-bottom:30px;margin-right:5px;margin-left:5px;border-style:none;border-color:#000;}#medical_box_2137:hover .new_medical_icon{}#medical_box_2137.new_medical_module{background-color:#fafafa;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;padding-right:10px;padding-left:30px;border-radius:15px;border-style:none;}#medical_box_2137:hover{}#medical_box_2137 .new_medical_description{color:#000000;font-weight:200;font-size:20px;line-height:45px;text-align:center;padding-top:10px;padding-bottom:5px;padding-right:40px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_2137:hover .new_medical_description{}
                #medical_box_2137 .new_medical_layer{border-top-right-radius:15px;border-top-left-radius:15px;border-bottom-right-radius:15px;border-bottom-left-radius:15px;}#medical_box_44:hover .new_medical_layer{}
            
            #medical_box_2137 .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_2137 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2137:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2137 .mode1-size_2137{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2137 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2137 > div{
               height:100%;
            }
            #medical_box_2137 .mode2-size_2137{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2137 .mode3-size_2137{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2137 .mode4-size_2137{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2137 .mode5-size_2137{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2137 .mode6-size_2137{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2137 .mode7-size_2137{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2137 .mode7-size_2137 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2137 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2137 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2137{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2137 span:hover{
                color:!important;
            }
            .custom2_2137{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2137 span:hover{
                color:;
            }
            #medical_box_2137 .mode-btn1_2137{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2137 .mode-btn1_2137 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2137 .mode-btn2_2137{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2137 .mode-btn2_2137 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2137 .div-btn-title_main_2137{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2137 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2137 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_435 .new_medical_title_main{color:#000;font-weight:bold;font-size:30px;justify-content:center;margin-top:30px;height:30px;line-height:30px;}.module[data-id_page='1109']:hover .new_medical_title_main{}#module_new_medical_435 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-left:0px;border-radius:15px;border-style:none;}.module[data-id_page='2236']:hover .new_medical_box_main{}
            #module_new_medical_435 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_435 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:1px;
                    margin-bottom:1px;
                }
                #module_new_medical_435 .medical_box_main_animation_trigger{
                    margin-left:1px;
                    margin-bottom:1px;
                }
                #module_new_medical_435 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_435 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_435 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_435 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_435 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_435 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_435 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_435 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_435{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_435 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_435 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_435 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_435 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_435 .swiper-container{
                width:1200px;
            }
            #module_new_medical_435 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_435 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_435 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_435 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='1955']{;background-color:#1f1f1f;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}.module[data-id_page='1955']:hover{;}.module[data-id_page='1955']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1955'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1955'] 
            
            .module[data-id_page='1955'] .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='1955'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1955']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_408 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_408 .content_str{
				width:100%;
			}
            #module_new_medical_408 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_408 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_408 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_408 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_408 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_408 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_408 .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_408 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_408 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_408 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_408 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_408 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_408 .new_medical_description a,#module_new_medical_408 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_408 .new_medical_description a:hover,#module_new_medical_408 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_408 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_408 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2054 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/1607442357_لینکدین.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2054 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2054 .background-img{
                border-radius:;
            }
        
            #medical_box_2054 .new_medical_icon{
                
            }
        #medical_box_2054 .new_medical_title{color:#52c41a;font-weight:bold;font-size:18px;text-align:center;}#medical_box_2054:hover .new_medical_title{}
                #medical_box_2054 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2054 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:30%;height:30px;cursor:pointer;margin-bottom:15px;border-style:none;border-color:#000;}#medical_box_2054:hover .new_medical_icon{}
                #medical_box_2054 
            
            #medical_box_2054 .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_2054 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2054:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2054 .mode1-size_2054{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2054 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2054 > div{
               height:100%;
            }
            #medical_box_2054 .mode2-size_2054{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2054 .mode3-size_2054{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2054 .mode4-size_2054{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2054 .mode5-size_2054{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2054 .mode6-size_2054{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2054 .mode7-size_2054{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2054 .mode7-size_2054 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2054 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2054 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2054{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2054 span:hover{
                color:!important;
            }
            .custom2_2054{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2054 span:hover{
                color:;
            }
            #medical_box_2054 .mode-btn1_2054{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2054 .mode-btn1_2054 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2054 .mode-btn2_2054{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2054 .mode-btn2_2054 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2054 .div-btn-title_main_2054{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2054 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2054 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2055 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/1615299749_07452961_واتساپ.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2055 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2055 .background-img{
                border-radius:;
            }
        
            #medical_box_2055 .new_medical_icon{
                
            }
        #medical_box_2055 .new_medical_title{color:#52c41a;font-weight:bold;font-size:18px;text-align:center;}#medical_box_2055:hover .new_medical_title{}
                #medical_box_2055 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2055 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:30%;height:30px;cursor:pointer;margin-bottom:15px;border-style:none;border-color:#000;}#medical_box_2055:hover .new_medical_icon{}
                #medical_box_2055 
            
            #medical_box_2055 .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_2055 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2055:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2055 .mode1-size_2055{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2055 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2055 > div{
               height:100%;
            }
            #medical_box_2055 .mode2-size_2055{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2055 .mode3-size_2055{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2055 .mode4-size_2055{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2055 .mode5-size_2055{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2055 .mode6-size_2055{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2055 .mode7-size_2055{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2055 .mode7-size_2055 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2055 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2055 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2055{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2055 span:hover{
                color:!important;
            }
            .custom2_2055{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2055 span:hover{
                color:;
            }
            #medical_box_2055 .mode-btn1_2055{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2055 .mode-btn1_2055 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2055 .mode-btn2_2055{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2055 .mode-btn2_2055 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2055 .div-btn-title_main_2055{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2055 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2055 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2053 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/1607442310_فیسبوک.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2053 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2053 .background-img{
                border-radius:;
            }
        
            #medical_box_2053 .new_medical_icon{
                
            }
        #medical_box_2053 .new_medical_title{color:#52c41a;font-weight:bold;font-size:18px;text-align:center;}#medical_box_2053:hover .new_medical_title{}
                #medical_box_2053 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2053 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:30%;height:30px;cursor:pointer;margin-bottom:15px;border-style:none;border-color:#000;}#medical_box_2053:hover .new_medical_icon{}
                #medical_box_2053 
            
            #medical_box_2053 .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_2053 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2053:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2053 .mode1-size_2053{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2053 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2053 > div{
               height:100%;
            }
            #medical_box_2053 .mode2-size_2053{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2053 .mode3-size_2053{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2053 .mode4-size_2053{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2053 .mode5-size_2053{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2053 .mode6-size_2053{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2053 .mode7-size_2053{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2053 .mode7-size_2053 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2053 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2053 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2053{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2053 span:hover{
                color:!important;
            }
            .custom2_2053{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2053 span:hover{
                color:;
            }
            #medical_box_2053 .mode-btn1_2053{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2053 .mode-btn1_2053 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2053 .mode-btn2_2053{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2053 .mode-btn2_2053 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2053 .div-btn-title_main_2053{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2053 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2053 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2052 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/1607442154_تلگرام.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2052 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2052 .background-img{
                border-radius:;
            }
        
            #medical_box_2052 .new_medical_icon{
                
            }
        #medical_box_2052 .new_medical_title{color:#52c41a;font-weight:bold;font-size:18px;text-align:center;}#medical_box_2052:hover .new_medical_title{}
                #medical_box_2052 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2052 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:30%;height:30px;cursor:pointer;margin-bottom:15px;border-style:none;border-color:#000;}#medical_box_2052:hover .new_medical_icon{}
                #medical_box_2052 
            
            #medical_box_2052 .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_2052 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2052:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2052 .mode1-size_2052{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2052 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2052 > div{
               height:100%;
            }
            #medical_box_2052 .mode2-size_2052{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2052 .mode3-size_2052{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2052 .mode4-size_2052{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2052 .mode5-size_2052{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2052 .mode6-size_2052{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2052 .mode7-size_2052{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2052 .mode7-size_2052 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2052 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2052 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2052{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2052 span:hover{
                color:!important;
            }
            .custom2_2052{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2052 span:hover{
                color:;
            }
            #medical_box_2052 .mode-btn1_2052{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2052 .mode-btn1_2052 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2052 .mode-btn2_2052{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2052 .mode-btn2_2052 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2052 .div-btn-title_main_2052{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2052 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2052 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2051 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/1607442129_اینستاگرام.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2051 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2051 .background-img{
                border-radius:;
            }
        
            #medical_box_2051 .new_medical_icon{
                
            }
        #medical_box_2051 .new_medical_title{color:#52c41a;font-weight:bold;font-size:18px;text-align:center;}#medical_box_2051:hover .new_medical_title{}
                #medical_box_2051 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2051 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:30%;height:30px;cursor:pointer;margin-bottom:15px;border-style:none;border-color:#000;}#medical_box_2051:hover .new_medical_icon{}
                #medical_box_2051 
            
            #medical_box_2051 .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_2051 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2051:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2051 .mode1-size_2051{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2051 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2051 > div{
               height:100%;
            }
            #medical_box_2051 .mode2-size_2051{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2051 .mode3-size_2051{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2051 .mode4-size_2051{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2051 .mode5-size_2051{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2051 .mode6-size_2051{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2051 .mode7-size_2051{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2051 .mode7-size_2051 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2051 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2051 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2051{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2051 span:hover{
                color:!important;
            }
            .custom2_2051{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2051 span:hover{
                color:;
            }
            #medical_box_2051 .mode-btn1_2051{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2051 .mode-btn1_2051 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2051 .mode-btn2_2051{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2051 .mode-btn2_2051 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2051 .div-btn-title_main_2051{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2051 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2051 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2050 .new_medical_icon{
                background-image:url("https://bazaknoon.ir/files/1607442374_توییتر-2.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2050 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2050 .background-img{
                border-radius:;
            }
        
            #medical_box_2050 .new_medical_icon{
                
            }
        #medical_box_2050 .new_medical_title{color:#52c41a;font-weight:bold;font-size:18px;text-align:center;}#medical_box_2050:hover .new_medical_title{}
                #medical_box_2050 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2050 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:30%;height:30px;cursor:pointer;margin-bottom:15px;border-style:none;border-color:#000;}#medical_box_2050:hover .new_medical_icon{}
                #medical_box_2050 
            
            #medical_box_2050 .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_2050 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_2050:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_2050 .mode1-size_2050{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2050 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2050 > div{
               height:100%;
            }
            #medical_box_2050 .mode2-size_2050{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2050 .mode3-size_2050{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2050 .mode4-size_2050{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2050 .mode5-size_2050{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2050 .mode6-size_2050{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2050 .mode7-size_2050{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2050 .mode7-size_2050 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2050 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2050 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2050{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2050 span:hover{
                color:!important;
            }
            .custom2_2050{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2050 span:hover{
                color:;
            }
            #medical_box_2050 .mode-btn1_2050{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2050 .mode-btn1_2050 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2050 .mode-btn2_2050{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2050 .mode-btn2_2050 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2050 .div-btn-title_main_2050{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2050 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2050 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_408 .new_medical_title_main{color:#ffffff;font-weight:bold;font-size:30px;justify-content:center;text-align:center;}.module[data-id_page='1955']:hover .new_medical_title_main{}#module_new_medical_408 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;border-style:none;}.module[data-id_page='19']:hover .new_medical_box_main{}
            #module_new_medical_408 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_408 .new_medical_module{
                    width:195px;
                    position:relative;
                    overflow:hidden;
                    margin-left:5px;
                    margin-bottom:5px;
                }
                #module_new_medical_408 .medical_box_main_animation_trigger{
                    margin-left:5px;
                    margin-bottom:5px;
                }
                #module_new_medical_408 .new_medical_module:nth-child(6n){
                    margin-left:0;
                }
                #module_new_medical_408 .medical_box_main_animation_trigger:nth-child(6n){
                    margin-left:0;
                }
                #module_new_medical_408 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_408 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_408 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_408 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_408 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_408 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_408{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_408 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_408 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_408 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_408 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_408 .swiper-container{
                width:1200px;
            }
            #module_new_medical_408 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_408 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_408 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_408 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        
            .color_blue{color:#00AFEF;}
            .en_page{
                direction: ltr;
            }
            .fa_page{
                direction: rtl;
            }
            .w200 {
               width:200px;
            }
            .w400 {
               width:400px;
            }
            .w600 {
               width:600px;
            }
            .w800 {
               width:800px;
            }
            .w1000 {
               width:1000px;
            }
            .w1200 {
               width:1200px;
            }
            .dtcd {
                display:table-cell;
                padding:10px;
                text-align: justify;
            }
            .pdig {
                line-height: 1.75;
            }
            .imgdi{
                width:100%;
                height:100%;
            }
            .gerd{
                border-radius: 50%;
            }
            .diul{
                 padding:20px;
            }
            #description_556 .ti_ma_h{
                width:1200px;
                text-align: right;
                margin: auto;
                padding: 0 10px;
                font-size:30px;
                line-height: 30px;
                color: ;
                background-color: ;
            }
            #description_556 .ti_ma_h a{color: ;}
            .pborder{
                border-right-width:4px;
                border-right-style: solid;
                border-right-color: ;
                padding-right:25px;
                font-weight: 600;
            }
            .pborder_title{
                line-height: 1.42857143;
                padding-right: 25px;
                font-size:1em;
            }
            .p_text_pic{
                width:100%;
                border-radius: 3px;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                -webkit-transition: box-shadow 300ms 0s ease;
                -moz-transition: box-shadow 300ms 0s ease;
                -ms-transition: box-shadow 300ms 0s ease;
                -o-transition: box-shadow 300ms 0s ease;
                transition: box-shadow 300ms 0s ease;
                display:table;
                table-layout: fixed;
                }
            .p_text_pic:hover{
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
            }
            .pl_text_pic{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                padding: 14px 28px;
                /*background-color: #f4f4f4;*/
                text-align: center;
            }
            .pl_text_pic2{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                background-color: #f4f4f4;
                text-align: center;
            }
            .pr_text_pic{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 20px 65px 15px 20px;
                overflow: hidden;
            }
            .pr_text_pic2{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 10px 20px;
                overflow: hidden;
            }

        
             .pr_text_pic:before{
                position: absolute;
                display: block;
                top: 24px;
                right: 4%;
                background-image:url(https://bazaknoon.ir/files/main/module/description/img/quote.png);
                content:"";
                background-size: contain;
                width: 26px;
                height: 26px;
                background-repeat: no-repeat;

             }
             .imgtext{
                width:100%;
                /*height:120px;*/
                border-radius:50%;
             }
             .imgtext2{
                width:100%;
             }
             .video_tag{width:100%;}

        
                #description_556 .container_box_1866{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                    .dLineH{line-height:2em;}
                
                #description_556 .font_title_box_0{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_0 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_0  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_0 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_0 a{
                    color:;
                }
                .sidebar_box_0 a:hover{
                    color:;
                }
                .sidebar_box_0 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_556 .container_box_1865{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_556 .font_title_box_1{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_1 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_1  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_1 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_1 a{
                    color:;
                }
                .sidebar_box_1 a:hover{
                    color:;
                }
                .sidebar_box_1 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_556 .container_box_1864{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_556 .font_title_box_2{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_2 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_2  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_2 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_2 a{
                    color:;
                }
                .sidebar_box_2 a:hover{
                    color:;
                }
                .sidebar_box_2 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_556 .container_box_1863{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_556 .font_title_box_3{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_3 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_3  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_3 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_3 a{
                    color:;
                }
                .sidebar_box_3 a:hover{
                    color:;
                }
                .sidebar_box_3 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_556 .container_box_1862{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_556 .font_title_box_4{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_4 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_4  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_4 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_4 a{
                    color:;
                }
                .sidebar_box_4 a:hover{
                    color:;
                }
                .sidebar_box_4 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_556 .container_box_1861{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_556 .font_title_box_5{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_5 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_5  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_5 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_5 a{
                    color:;
                }
                .sidebar_box_5 a:hover{
                    color:;
                }
                .sidebar_box_5 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
            #description_556 .public_center{
                border-spacing:0px;
            }
        #description_556{
                  padding-top:30px;
                }#description_556{
                  margin-bottom:10px;
                }#description_556{
                    margin-top:10px;
                }#description_556{
                  padding-bottom:30px;
                }#description_556{
                        font-size:16px;
                }#description_556 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_556 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_556 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_556 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_556 .color_title{/*range title asli module*/
                            color: ;
                                }#description_556 .color_text{/*range text haye module  */
                            color:;
                                }#description_556 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_556 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_556 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_556 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#description_556 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_556 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_556 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#description_556 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }
            
            #call_to_action_1 .module-container{
                width: 100%;
                height: 100%;
                position: relative;
            }
            #call_to_action_1 .bottom-container{
                width: 100%;
                height: 80px;
                background-color: ;
                color: ;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 4000;
            }
            #call_to_action_1 .msg-box{
                width: 1200px;
                height: 100%;
                margin: 0 auto;
                padding: 25px;
                text-align: center;
                justify-content: space-evenly;
                z-index: 4001;
            }
            #call_to_action_1 .desc-text{
                padding: 10px;
                font-size: 16px;
                font-weight: ;
            }
            #call_to_action_1 .btn-call-to-action{
                padding: 10px 25px;
                background-color: ;
                color: ;
                border-radius: 0px 0px 0px 0px;
                box-shadow:  0px 0px 0px 0px ;
                font-size: 16px;
                font-weight: 100;
            }
            #call_to_action_1 .btn-call-to-action:hover{
                cursor: pointer;
                color: #000;
            }
            
        
                        #social_background_image_1{
                            -webkit-background-image: url("https://bazaknoon.ir/files/icon/1610626404_insta.png");
                            background-image: url("https://bazaknoon.ir/files/icon/1610626404_insta.png");
                        }
                    
                        #social_background_image_2{
                            -webkit-background-image: url("https://bazaknoon.ir/files/icon/1610626404_teleg.png");
                            background-image: url("https://bazaknoon.ir/files/icon/1610626404_teleg.png");
                        }
                    
                        #social_background_image_5{
                            -webkit-background-image: url("https://bazaknoon.ir/files/icon/1619003848_07452961_واتساپ.png");
                            background-image: url("https://bazaknoon.ir/files/icon/1619003848_07452961_واتساپ.png");
                        }
                    
                    #parent_social_box .social-box a{
                        -webkit-background-size:100% 100%;
                        background-size:100% 100%;
                        -webkit-background-repeat:no-repeat;
                        background-repeat:no-repeat;
                        height:24px;
                        width:24px;
                    }
                
                #header_top_bg{
                    height: 40px;
                    line-height: 40px;
                    width:100%;
                    display:flex;
                    background-color:#141414;
                    padding-top: 8px;
                    padding-bottom: 8px;
                }
                #header_top_bg > div{
                    display:flex;
                    justify-content:space-between;
                    height:100%;
                }
                #parent_social_box .social-box{
                    height:24px;
                    margin-right: 5px;
                    vertical-align:middle;
                    z-index:99999;
                }
                #parent_social_box .social-box.show-search{
                    z-index:9;
                }
                #parent_social_box .social-box:first-child{
                    margin-right: 0;
                }
                #parent_social_box .social-box:hover a{
                    background-color:#237804;
                }
                #parent_social_box img{
                    height:100%;
                    object-fit:contain;
                }
                #parent_info_box .info-box{
                    height:24px;
                    margin-right: 5px;
                    vertical-align:middle;
                }
                #parent_info_box .info-box:first-child{
                    margin-right: 0;
                }
                #parent_info_box .info-box .info-box-span{
                    color:#bfbfbf;
                    font-size:14px;
                    line-height:24px;
                    margin:0 10px;
                }
                #parent_info_box .info-box:hover .info-box-span{
                    color:#bfbfbf;
                }
                #parent_info_box img{
                    height:100%;
                    object-fit:contain;
                }
                
                .menu_items a{
                    display: block;
                }
            
                .rShowLogin{
                    visibility: hidden;
                }
            
                .header_number_icon_cart{
                    position: absolute;
                    bottom: -7px;
                    right: -7px;
                    background-color: #e02222;
                    color: #fff;
                    width: 21px;
                    height: 21px;
                    font-size: 14px;
                    font-weight: bold;
                    border-radius: 50%;
                    text-align: center;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                }
            
                #fixed_menu_header{
                    position: fixed !important;
                    top: 0;
                    right: 0;
                    width: 100%;
                    z-index: 1500!important;
                    background-color: #262626;
                    height:50px;
                    line-height:50px;
                    color:#237804;
                    display:none;
                    box-shadow: 0 0 8px 0 #ddd;
                }
                #fixed_menu_header .logo2{
                    height:50px;
                }
                #fixed_menu_header a{
                    color:inherit;
                }
                #fixed_menu_header .public-header-icon i{
                    color:inherit;
                }
            
                #navigation_main{
                    width:1200px;
                    margin:auto;
                    display: flex;
                    justify-content: flex-start;
                }
                #header .dcn{
                    display: flex;
                    width:100%;
                }
            
            #header{
                background-color: #ffffff;
                width:100%;
                position:relative;
                z-index:100;
            }
            #header_center_container{
                height: 80px;
                padding-top: 13px;
                padding-bottom: 13px;
                background-color:transparent;
                width:1200px;
                margin:auto;
                position:relative;
                z-index:10000;
            }
            #header_menu_container{
                background-color: #141414;
                width:100%;
                position: relative;
                z-index: 10;
                height:max-content;
            }
            #header_menu_container a{
                color:inherit;
            }
            #header .menu_items,#fixed_menu_header .menu_items{
                color: #bfbfbf;
                display: flex;
                justify-content: center;
                height: 50px;
                line-height: 50px;
                text-align: center;
                position: relative;
                padding:0 10px;
                font-size:12px;
                font-weight:bold;
                border:px solid ;
            }
            #header .menu_items{
                background-color:#141414;
            }
            #navigation_main{ 
            }
            #header .menu_items:hover,#fixed_menu_header .menu_items:hover{
                color: #bfbfbf;
                background-color: #141414;
            }
            #header .active_g,#fixed_menu_header .active_g{
                color: #ffffff;
                background-color: #52c41a;
            }
            #header li ul,.popup-details-phi,.popup-details-phi .pdp-span,.popup-details-phi i,#fixed_menu_header li ul{
                color: #bfbfbf !important;
                background-color: #1f1f1f !important;
            }
            #header li ul li:hover,#fixed_menu_header li ul li:hover,.popup-details-phi .active-item{
                color: #bfbfbf !important;
                background-color: #1f1f1f !important;
            }
            #s_breadcrumb{
                width: 1200px;
                margin: auto;
                height: 60px;
                line-height:60px;
            }
            #s_breadcrumb > span,#s_breadcrumb a{display:inline-block;padding: 0px 10px;}
            #div_profile_picture{vertical-align:middle;width: 75px !important;}
            #fixed_header_menu_container{
                width:100%;
                border: .5px solid #eeeeee;
                position:fixed;
                top:-100px;
                z-index: 1000;
                background: #fff;
                opacity:0;
            }
            
            #div_profile_picture span{
                cursor: pointer;
            }
            .public-header-icon i{
                font-size: 20px;
                color: #237804;
                margin: 0 5px;
            }
            .public-header-icon:hover i{
                color: #237804;
            }
            .sub-nav,.popup-details-phi{
                width: max-content;
                visibility: hidden;
                opacity: 0;
                position: absolute;
                z-index: 9999;
                 -webkit-transition: opacity,.3s ease-in-out;
                 -moz-transition: opacity,.3s ease-in-out;
                 -o-transition: opacity,.3s ease-in-out;
                 transition: opacity,.3s ease-in-out;
                cursor:pointer;
                box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.32);
                min-width:120%;
            }
            .sub-nav{
                right: 0;
                top: 100%;
            }
            .popup-details-phi{
                left: 0;
                top: 25px;
                padding:10px 20px;
                border-radius:2px;
            }
            .s_sub_title {
                
                font-size:12px;
                font-weight:normal !important;
                white-space:nowrap;
                cursor:pointer;
            }
            
            .sub-nav li {
                position: relative;
                display: block;
                padding: 5px 10px 0;
                box-sizing: border-box;
                line-height: 28px;
                z-index:100000;
                text-align:right;
            }
            .box-header-icon{
                height:max-content;
                margin:10px 3px;
            }
            #fixed_menu_header .box-header-icon{
                margin:auto 3px;
            }
            .menu_items:hover .sub-nav,.box-header-icon.active-bhi .popup-details-phi{
                visibility: visible;
                opacity:1;
            }
            #fixed_navigation_main{
                width:1200px;
                margin:auto;
            }
            #img-logo{
                height:100%;
                object-fit: cover;
                max-width:100%;
            }
            .btn-lang{
                margin:5px 0;
                padding:3px 10px;
                border:none;
                font-size: 14px;
                cursor:pointer;
                display:block;
                text-align:left;
                direction:ltr;
            }
            .btn-lang .img-box{
                height:30px;
                width:30px;
                margin-right:10px;
                display:inline-flex;
                vertical-align:middle;
            }
            .btn-lang .img-box img{
                width:100%;
                height:100%;
                object-fit:cover;
                border-radius:50%;
            }
            .sub_sub_menu{
                right: 100%;
                display:none;
                position:absolute;
                padding:0;
                background: #ffffff;
                z-index: 1000;
                top: 0;
                 -webkit-transition: opacity,.3s ease-in-out;
                -moz-transition: opacity,.3s ease-in-out;
                -o-transition: opacity,.3s ease-in-out;
                transition: opacity,.3s ease-in-out;
                min-width: 120%;
                box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.32);
                cursor: pointer;
            }
            .s_sub_sub_title {font-size:12px !important;font-weight:normal !important;white-space: nowrap;}
            .sub-nav li:hover .sub_sub_menu,.sub-nav li ul li:hover .sub_sub_menu{
                display:block;
            }
            .sub_sub_menu li:hover .s_sub_sub_title, .sub_sub_menuEn li:hover .s_sub_sub_title{
                 color: !important;
            }
            .sub-nav li:hover .s_sub_title, .sub-navEn li:hover .s_sub_title{
                color: !important;
            }
            .s_sub_title{display:inline-block;}

            .m_title{width:92%;}
            #parent_social_box .social-box label,.box-header-icon > label{
                position: absolute;
                left:0;
                bottom: -55px;
                opacity: 0;
                display: block;
                height: 30px;
                line-height: 30px;
                color: #777;
                font-size: 14px;
                font-weight: 300;
                background-color: #fff;
                min-width: 50px;
                white-space: nowrap;
                text-align: center;
                visibility: hidden;
                padding:0 10px;
                -webkit-transition: .5s;-moz-transition:  .5s;-ms-transition:  .5s;-o-transition:  .5s;transition:  .5s;
                -webkit-box-shadow: 0 0 5px #f7f8fa;-moz-box-shadow: 0 0 5px #f7f8fa;box-shadow: 0 0 5px #f7f8fa;
                border: 1px solid #efefef;
                z-index:9999;
            }
            .box-header-icon.active-bhi > label{
                display:none;
            }
            #parent_social_box .social-box:hover label,.box-header-icon:hover > label{
                opacity: 1;
                bottom: -45px;
                visibility: visible;
            }
            #parent_social_box .social-box label:after,.box-header-icon > label:after{
                content:"";
                border: 7px solid;
                left:5px;
                border-color: transparent transparent #efefef transparent;
                position: absolute;
                bottom: 100%;
            }
        #module_footer_section_4{
;
width:100%;
background-color:#262626;
padding-top:2vw;
padding-right:9vw;
padding-left:9vw;
border-style:none;
}#module_footer_column_5{
;
width:30%;
border-style:none;
}#module_footer_items_14{
;
cursor:default;
width:22.5vw;
height:4.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:0px;
margin-bottom:0px;
}#module_footer_items_14:hover{
;
}#module_footer_column_6{
;
width:20%;
padding-left:2vw;
border-style:none;
}#module_footer_items_15{
;
cursor:default;
color:#ffffff;
font-weight:bold;
font-size:1.45vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
padding-right:58px;
}#module_footer_items_15:hover{
;
}#module_footer_column_7{
;
width:30%;
padding-left:8vw;
border-style:none;
}#module_footer_items_16{
;
cursor:default;
color:#ffffff;
font-weight:bold;
font-size:1.45vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
padding-right:19px;
}#module_footer_items_16:hover{
;
}#module_footer_column_8{
;
width:20%;
padding-left:5vw;
border-style:none;
}#module_footer_items_17{
;
cursor:default;
color:#ffffff;
font-weight:bold;
font-size:1.45vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_17:hover{
;
}#module_footer_section_5{
;
width:100%;
background-color:#262626;
padding-top:3vw;
padding-right:9vw;
padding-bottom:5vw;
padding-left:9vw;
border-style:none;
}#module_footer_column_9{
;
width:30%;
padding-top:1vw;
padding-left:1vw;
border-style:none;
}#module_footer_items_18{
;
cursor:default;
text-align:justify;
color:#ffffff;
font-weight:500;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_18:hover{
;
}#module_footer_row_12{
;
padding-top:3vw;
border-style:none;
}#module_footer_items_21{
;
cursor:pointer;
width:10vw;
height:3vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_21:hover{
;
}#module_footer_items_108{
;
cursor:pointer;
width:7.5vw;
height:7.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:-3vw;
margin-right:5vw;
}#module_footer_items_108:hover{
;
}#module_footer_column_10{
;
width:20%;
padding-left:2vw;
border-style:none;
}#module_footer_items_24{
;
cursor:default;
color:#777;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
padding-right:50px;
}#module_footer_items_24:hover{
;
color:#1890ff;
}#module_footer_row_14{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_26{
;
cursor:default;
color:#777;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
padding-right:50px;
}#module_footer_items_26:hover{
;
color:#1890ff;
}#module_footer_row_15{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_28{
;
cursor:default;
color:#777;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
padding-top:50px;
}#module_footer_items_28:hover{
;
color:#1890ff;
}#module_footer_row_16{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_30{
;
cursor:default;
color:#777;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
padding-top:50px;
}#module_footer_items_30:hover{
;
color:#1890ff;
}#module_footer_row_17{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_32{
;
cursor:default;
color:#777;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
padding-top:50px;
}#module_footer_items_32:hover{
;
color:#1890ff;
}#module_footer_row_18{
;
padding-top:.35vw;
border-style:none;
}#module_footer_column_11{
;
width:30%;
padding-left:8vw;
border-style:none;
}#module_footer_items_35{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_35:hover{
;
}#module_footer_items_36{
;
cursor:default;
color:#8c8c8c;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_36:hover{
;
}#module_footer_row_20{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_37{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_37:hover{
;
}#module_footer_items_38{
;
cursor:default;
color:#8c8c8c;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_38:hover{
;
color:#096dd9;
}#module_footer_row_21{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_106{
;
cursor:default;
color:#fafafa;
font-weight:500;
font-size:.95px;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:5px;
}#module_footer_items_106:hover{
;
}#module_footer_row_22{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_41{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_41:hover{
;
}#module_footer_items_42{
;
cursor:default;
color:#8c8c8c;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_42:hover{
;
color:#096dd9;
}#module_footer_row_23{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_43{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_43:hover{
;
}#module_footer_items_44{
;
cursor:default;
color:#8c8c8c;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_44:hover{
;
color:#096dd9;
}#module_footer_row_24{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_45{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_45:hover{
;
}#module_footer_items_46{
;
cursor:default;
color:#8c8c8c;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_46:hover{
;
color:#096dd9;
}#module_footer_column_12{
;
width:20%;
padding-left:5vw;
border-style:none;
}#module_footer_items_47{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_47:hover{
;
}#module_footer_items_48{
;
cursor:default;
color:#777;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_48:hover{
;
color:#096dd9;
}#module_footer_row_26{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_49{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_49:hover{
;
}#module_footer_items_50{
;
cursor:default;
color:#777;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_50:hover{
;
color:#096dd9;
}#module_footer_row_27{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_51{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_51:hover{
;
}#module_footer_items_52{
;
cursor:default;
color:#777;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_52:hover{
;
color:#096dd9;
}#module_footer_row_28{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_53{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_53:hover{
;
}#module_footer_items_54{
;
cursor:default;
color:#777;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_54:hover{
;
color:#096dd9;
}#module_footer_row_29{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_55{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_55:hover{
;
}#module_footer_items_56{
;
cursor:default;
color:#777;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_56:hover{
;
color:#096dd9;
}#module_footer_row_30{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_57{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_57:hover{
;
}#module_footer_items_58{
;
cursor:default;
color:#777;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_58:hover{
;
color:#096dd9;
}#module_footer_section_11{
;
background-color:#262626;
justify-content:flex-start;
padding-top:1vw;
padding-right:1vw;
padding-bottom:1vw;
padding-left:1vw;
border-style:none;
}#module_footer_column_24{
;
background-color:#141414;
border-style:none;
}#module_footer_row_56{
;
border-style:none;
}
                            #module_footer_row_56{
                                #141414
                            }
                        #module_footer_items_105{
;
cursor:pointer;
text-align:right;
color:#ffffff;
font-weight:300;
font-size:1.15vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
padding-right:110px;
}#module_footer_items_105:hover{
;
}#public_footer_main_2{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#public_footer_main_2:hover{;}
                #public_footer_main_2{
                    position:relative;
                    margin-right:auto !important;
                    margin-left:auto !important;
                    overflow:hidden !important;
                }
                #public_footer_main_2 > div{
                    position:relative;
                    z-index:12;
                }
                
                #public_footer_main_2 
            
            #public_footer_main_2 .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_2 .layer_first_child {
                width: 100%;
            }
        
            #public_footer_main_2:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #msg_footer.msg_footer,
            #msg_footer_complete.msg_footer{
                position: fixed;
                top: 50px;
                right: 10px;
                width: 400px;
                height: 50px;
                z-index: 10000;
                border-radius: 3px;
            }

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

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

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

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

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