/**
 * 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;
}/******rColor file*****/
.red.bg {
    background-color: #F44336;
}
.red.text {
    color: #F44336;
}
.red-50.bg {
    background-color: #FFEBEE;
}
.red-50.text {
    color: #FFEBEE;
}
.red-100.bg {
    background-color: #FFCDD2;
}
.red-100.text {
    color: #FFCDD2;
}
.red-200.bg {
    background-color: #EF9A9A;
}
.red-200.text {
    color: #EF9A9A;
}
.red-300.bg {
    background-color: #E57373;
}
.red-300.text {
    color: #E57373;
}
.red-400.bg {
    background-color: #EF5350;
}
.red-400.text {
    color: #EF5350;
}
.red-500.bg {
    background-color: #F44336;
}
.red-500.text {
    color: #F44336;
}
.red-600.bg {
    background-color: #E53935;
}
.red-600.text {
    color: #E53935;
}
.red-700.bg {
    background-color: #D32F2F;
}
.red-700.text {
    color: #D32F2F;
}
.red-800.bg {
    background-color: #C62828;
}
.red-800.text {
    color: #C62828;
}
.red-900.bg {
    background-color: #B71C1C;
}
.red-900.text {
    color: #B71C1C;
}
.red-A100.bg {
    background-color: #FF8A80;
}
.red-A100.text {
    color: #FF8A80;
}
.red-A200.bg {
    background-color: #FF5252;
}
.red-A200.text {
    color: #FF5252;
}
.red-A400.bg {
    background-color: #FF1744;
}
.red-A400.text {
    color: #FF1744;
}
.red-A700.bg {
    background-color: #D50000;
}
.red-A700.text {
    color: #D50000;
}

.pink.bg {
    background-color: #E91E63;
}
.pink.text {
    color: #E91E63;
}
.pink-50.bg {
    background-color: #FCE4EC;
}
.pink-50.text {
    color: #FCE4EC;
}
.pink-100.bg {
    background-color: #F8BBD0;
}
.pink-100.text {
    color: #F8BBD0;
}
.pink-200.bg {
    background-color: #F48FB1;
}
.pink-200.text {
    color: #F48FB1;
}
.pink-300.bg {
    background-color: #F06292;
}
.pink-300.text {
    color: #F06292;
}
.pink-400.bg {
    background-color: #EC407A;
}
.pink-400.text {
    color: #EC407A;
}
.pink-500.bg {
    background-color: #E91E63;
}
.pink-500.text {
    color: #E91E63;
}
.pink-600.bg {
    background-color: #D81B60;
}
.pink-600.text {
    color: #D81B60;
}
.pink-700.bg {
    background-color: #C2185B;
}
.pink-700.text {
    color: #C2185B;
}
.pink-800.bg {
    background-color: #AD1457;
}
.pink-800.text {
    color: #AD1457;
}
.pink-900.bg {
    background-color: #880E4F;
}
.pink-900.text {
    color: #880E4F;
}
.pink-A100.bg {
    background-color: #FF80AB;
}
.pink-A100.text {
    color: #FF80AB;
}
.pink-A200.bg {
    background-color: #FF4081;
}
.pink-A200.text {
    color: #FF4081;
}
.pink-A400.bg {
    background-color: #F50057;
}
.pink-A400.text {
    color: #F50057;
}
.pink-A700.bg {
    background-color: #C51162;
}
.pink-A700.text {
    color: #C51162;
}

.purple.bg {
    background-color: #9C27B0;
}
.purple.text {
    color: #9C27B0;
}
.purple-50.bg {
    background-color: #F3E5F5;
}
.purple-50.text {
    color: #F3E5F5;
}
.purple-100.bg {
    background-color: #E1BEE7;
}
.purple-100.text {
    color: #E1BEE7;
}
.purple-200.bg {
    background-color: #CE93D8;
}
.purple-200.text {
    color: #CE93D8;
}
.purple-300.bg {
    background-color: #BA68C8;
}
.purple-300.text {
    color: #BA68C8;
}
.purple-400.bg {
    background-color: #AB47BC;
}
.purple-400.text {
    color: #AB47BC;
}
.purple-500.bg {
    background-color: #9C27B0;
}
.purple-500.text {
    color: #9C27B0;
}
.purple-600.bg {
    background-color: #8E24AA;
}
.purple-600.text {
    color: #8E24AA;
}
.purple-700.bg {
    background-color: #7B1FA2;
}
.purple-700.text {
    color: #7B1FA2;
}
.purple-800.bg {
    background-color: #6A1B9A;
}
.purple-800.text {
    color: #6A1B9A;
}
.purple-900.bg {
    background-color: #4A148C;
}
.purple-900.text {
    color: #4A148C;
}
.purple-A100.bg {
    background-color: #EA80FC;
}
.purple-A100.text {
    color: #EA80FC;
}
.purple-A200.bg {
    background-color: #E040FB;
}
.purple-A200.text {
    color: #E040FB;
}
.purple-A400.bg {
    background-color: #D500F9;
}
.purple-A400.text {
    color: #D500F9;
}
.purple-A700.bg {
    background-color: #AA00FF;
}
.purple-A700.text {
    color: #AA00FF;
}

.dpPurple.bg {
    background-color: #673AB7;
}
.dbPurple.text {
    color: #673AB7;
}
.dbPurple-50.bg {
    background-color: #EDE7F6;
}
.dbPurple-50.text {
    color: #EDE7F6;
}
.dbPurple-100.bg {
    background-color: #D1C4E9;
}
.dbPurple-100.text {
    color: #D1C4E9;
}
.dbPurple-200.bg {
    background-color: #B39DDB;
}
.dbPurple-200.text {
    color: #B39DDB;
}
.dbPurple-300.bg {
    background-color: #9575CD;
}
.dbPurple-300.text {
    color: #9575CD;
}
.dbPurple-400.bg {
    background-color: #7E57C2;
}
.dbPurple-400.text {
    color: #7E57C2;
}
.dbPurple-500.bg {
    background-color: #673AB7;
}
.dbPurple-500.text {
    color: #673AB7;
}
.dbPurple-600.bg {
    background-color: #5E35B1;
}
.dbPurple-600.text {
    color: #5E35B1;
}
.dbPurple-700.bg {
    background-color: #512DA8;
}
.dbPurple-700.text {
    color: #512DA8;
}
.dbPurple-800.bg {
    background-color: #4527A0;
}
.dbPurple-800.text {
    color: #4527A0;
}
.dbPurple-900.bg {
    background-color: #311B92;
}
.dbPurple-900.text {
    color: #311B92;
}
.dbPurple-A100.bg {
    background-color: #B388FF;
}
.dbPurple-A100.text {
    color: #B388FF;
}
.dbPurple-A200.bg {
    background-color: #7C4DFF;
}
.dbPurple-A200.text {
    color: #7C4DFF;
}
.dbPurple-A400.bg {
    background-color: #651FFF;
}
.dbPurple-A400.text {
    color: #651FFF;
}
.dbPurple-A700.bg {
    background-color: #6200EA;
}
.dbPurple-A700.text {
    color: #6200EA;
}

.indigo.bg {
    background-color: #3F51B5;
}
.indigo.text {
    color: #3F51B5;
}
.indigo-50.bg {
    background-color: #E8EAF6;
}
.indigo-50.text {
    color: #E8EAF6;
}
.indigo-100.bg {
    background-color: #C5CAE9;
}
.indigo-100.text {
    color: #C5CAE9;
}
.indigo-200.bg {
    background-color: #9FA8DA;
}
.indigo-200.text {
    color: #9FA8DA;
}
.indigo-300.bg {
    background-color: #7986CB;
}
.indigo-300.text {
    color: #7986CB;
}
.indigo-400.bg {
    background-color: #5C6BC0;
}
.indigo-400.text {
    color: #5C6BC0;
}
.indigo-500.bg {
    background-color: #3F51B5;
}
.indigo-500.text {
    color: #3F51B5;
}
.indigo-600.bg {
    background-color: #3949AB;
}
.indigo-600.text {
    color: #3949AB;
}
.indigo-700.bg {
    background-color: #303F9F;
}
.indigo-700.text {
    color: #303F9F;
}
.indigo-800.bg {
    background-color: #283593;
}
.indigo-800.text {
    color: #283593;
}
.indigo-900.bg {
    background-color: #1A237E;
}
.indigo-900.text {
    color: #1A237E;
}
.indigo-A100.bg {
    background-color: #8C9EFF;
}
.indigo-A100.text {
    color: #8C9EFF;
}
.indigo-A200.bg {
    background-color: #536DFE;
}
.indigo-A200.text {
    color: #536DFE;
}
.indigo-A400.bg {
    background-color: #3D5AFE;
}
.indigo-A400.text {
    color: #3D5AFE;
}
.indigo-A700.bg {
    background-color: #304FFE;
}
.indigo-A700.text {
    color: #304FFE;
}

.blue.bg {
    background-color: #2196F3;
}
.blue.text {
    color: #2196F3;
}
.blue-50.bg {
    background-color: #E3F2FD;
}
.blue-50.text {
    color: #E3F2FD;
}
.blue-100.bg {
    background-color: #BBDEFB;
}
.blue-100.text {
    color: #BBDEFB;
}
.blue-200.bg {
    background-color: #90CAF9;
}
.blue-200.text {
    color: #90CAF9;
}
.blue-300.bg {
    background-color: #64B5F6;
}
.blue-300.text {
    color: #64B5F6;
}
.blue-400.bg {
    background-color: #42A5F5;
}
.blue-400.text {
    color: #42A5F5;
}
.blue-500.bg {
    background-color: #2196F3;
}
.blue-500.text {
    color: #2196F3;
}
.blue-600.bg {
    background-color: #1E88E5;
}
.blue-600.text {
    color: #1E88E5;
}
.blue-700.bg {
    background-color: #1976D2;
}
.blue-700.text {
    color: #1976D2;
}
.blue-800.bg {
    background-color: #1565C0;
}
.blue-800.text {
    color: #1565C0;
}
.blue-900.bg {
    background-color: #0D47A1;
}
.blue-900.text {
    color: #0D47A1;
}
.blue-A100.bg {
    background-color: #82B1FF;
}
.blue-A100.text {
    color: #82B1FF;
}
.blue-A200.bg {
    background-color: #448AFF;
}
.blue-A200.text {
    color: #448AFF;
}
.blue-A400.bg {
    background-color: #2979FF;
}
.blue-A400.text {
    color: #2979FF;
}
.blue-A700.bg {
    background-color: #2962FF;
}
.blue-A700.text {
    color: #2962FF;
}

.lightblue.bg {
    background-color: #03A9F4;
}
.lightblue.text {
    color: #03A9F4;
}
.lightblue-50.bg {
    background-color: #E1F5FE;
}
.lightblue-50.text {
    color: #E1F5FE;
}
.lightblue-100.bg {
    background-color: #B3E5FC;
}
.lightblue-100.text {
    color: #B3E5FC;
}
.lightblue-200.bg {
    background-color: #81D4FA;
}
.lightblue-200.text {
    color: #81D4FA;
}
.lightblue-300.bg {
    background-color: #4FC3F7;
}
.lightblue-300.text {
    color: #4FC3F7;
}
.lightblue-400.bg {
    background-color: #29B6F6;
}
.lightblue-400.text {
    color: #29B6F6;
}
.lightblue-500.bg {
    background-color: #03A9F4;
}
.lightblue-500.text {
    color: #03A9F4;
}
.lightblue-600.bg {
    background-color: #039BE5;
}
.lightblue-600.text {
    color: #039BE5;
}
.lightblue-700.bg {
    background-color: #0288D1;
}
.lightblue-700.text {
    color: #0288D1;
}
.lightblue-800.bg {
    background-color: #0277BD;
}
.lightblue-800.text {
    color: #0277BD;
}
.lightblue-900.bg {
    background-color: #01579B;
}
.lightblue-900.text {
    color: #01579B;
}
.lightblue-A100.bg {
    background-color: #80D8FF;
}
.lightblue-A100.text {
    color: #80D8FF;
}
.lightblue-A200.bg {
    background-color: #40C4FF;
}
.lightblue-A200.text {
    color: #40C4FF;
}
.lightblue-A400.bg {
    background-color: #00B0FF;
}
.lightblue-A400.text {
    color: #00B0FF;
}
.lightblue-A700.bg {
    background-color: #0091EA;
}
.lightblue-A700.text {
    color: #0091EA;
}

.cyan.bg {
    background-color: #00BCD4;
}
.cyan.text {
    color: #00BCD4;
}
.cyan-50.bg {
    background-color: #E0F7FA;
}
.cyan-50.text {
    color: #E0F7FA;
}
.cyan-100.bg {
    background-color: #B2EBF2;
}
.cyan-100.text {
    color: #B2EBF2;
}
.cyan-200.bg {
    background-color: #80DEEA;
}
.cyan-200.text {
    color: #80DEEA;
}
.cyan-300.bg {
    background-color: #4DD0E1;
}
.cyan-300.text {
    color: #4DD0E1;
}
.cyan-400.bg {
    background-color: #26C6DA;
}
.cyan-400.text {
    color: #26C6DA;
}
.cyan-500.bg {
    background-color: #00BCD4;
}
.cyan-500.text {
    color: #00BCD4;
}
.cyan-600.bg {
    background-color: #00ACC1;
}
.cyan-600.text {
    color: #00ACC1;
}
.cyan-700.bg {
    background-color: #0097A7;
}
.cyan-700.text {
    color: #0097A7;
}
.cyan-800.bg {
    background-color: #00838F;
}
.cyan-800.text {
    color: #00838F;
}
.cyan-900.bg {
    background-color: #006064;
}
.cyan-900.text {
    color: #006064;
}
.cyan-A100.bg {
    background-color: #84FFFF;
}
.cyan-A100.text {
    color: #84FFFF;
}
.cyan-A200.bg {
    background-color: #18FFFF;
}
.cyan-A200.text {
    color: #18FFFF;
}
.cyan-A400.bg {
    background-color: #00E5FF;
}
.cyan-A400.text {
    color: #00E5FF;
}
.cyan-A700.bg {
    background-color: #00B8D4;
}
.cyan-A700.text {
    color: #00B8D4;
}

.teal.bg {
    background-color: #009688;
}
.teal.text {
    color: #009688;
}
.teal-50.bg {
    background-color: #E0F2F1;
}
.teal-50.text {
    color: #E0F2F1;
}
.teal-100.bg {
    background-color: #B2DFDB;
}
.teal-100.text {
    color: #B2DFDB;
}
.teal-200.bg {
    background-color: #80CBC4;
}
.teal-200.text {
    color: #80CBC4;
}
.teal-300.bg {
    background-color: #4DB6AC;
}
.teal-300.text {
    color: #4DB6AC;
}
.teal-400.bg {
    background-color: #26A69A;
}
.teal-400.text {
    color: #26A69A;
}
.teal-500.bg {
    background-color: #009688;
}
.teal-500.text {
    color: #009688;
}
.teal-600.bg {
    background-color: #00897B;
}
.teal-600.text {
    color: #00897B;
}
.teal-700.bg {
    background-color: #00796B;
}
.teal-700.text {
    color: #00796B;
}
.teal-800.bg {
    background-color: #00695C;
}
.teal-800.text {
    color: #00695C;
}
.teal-900.bg {
    background-color: #004D40;
}
.teal-900.text {
    color: #004D40;
}
.teal-A100.bg {
    background-color: #A7FFEB;
}
.teal-A100.text {
    color: #A7FFEB;
}
.teal-A200.bg {
    background-color: #64FFDA;
}
.teal-A200.text {
    color: #64FFDA;
}
.teal-A400.bg {
    background-color: #1DE9B6;
}
.teal-A400.text {
    color: #1DE9B6;
}
.teal-A700.bg {
    background-color: #00BFA5;
}
.teal-A700.text {
    color: #00BFA5;
}

.green.bg {
    background-color: #4CAF50;
}
.green.text {
    color: #4CAF50;
}
.green-50.bg {
    background-color: #E8F5E9;
}
.green-50.text {
    color: #E8F5E9;
}
.green-100.bg {
    background-color: #C8E6C9;
}
.green-100.text {
    color: #C8E6C9;
}
.green-200.bg {
    background-color: #A5D6A7;
}
.green-200.text {
    color: #A5D6A7;
}
.green-300.bg {
    background-color: #81C784;
}
.green-300.text {
    color: #81C784;
}
.green-400.bg {
    background-color: #66BB6A;
}

.green-400.text {
    color: #66BB6A;
}
.green-500.bg {
    background-color: #4CAF50;
}
.green-500.text {
    color: #4CAF50;
}
.green-600.bg {
    background-color: #43A047;
}
.green-600.text {
    color: #43A047;
}
.green-700.bg {
    background-color: #388E3C;
}
.green-700.text {
    color: #388E3C;
}
.green-800.bg {
    background-color: #2E7D32;
}
.green-800.text {
    color: #2E7D32;
}
.green-900.bg {
    background-color: #1B5E20;
}
.green-900.text {
    color: #1B5E20;
}
.green-A100.bg {
    background-color: #B9F6CA;
}
.green-A100.text {
    color: #B9F6CA;
}
.green-A200.bg {
    background-color: #69F0AE;
}
.green-A200.text {
    color: #69F0AE;
}
.green-A400.bg {
    background-color: #00E676;
}
.green-A400.text {
    color: #00E676;
}
.green-A700.bg {
    background-color: #00C853;
}
.green-A700.text {
    color: #00C853;
}

.lightgreen.bg {
    background-color: #8BC34A;
}
.lightgreen.text {
    color: #8BC34A;
}
.lightgreen-50.bg {
    background-color: #F1F8E9;
}
.lightgreen-50.text {
    color: #F1F8E9;
}
.lightgreen-100.bg {
    background-color: #DCEDC8;
}
.lightgreen-100.text {
    color: #DCEDC8;
}
.lightgreen-200.bg {
    background-color: #C5E1A5;
}
.lightgreen-200.text {
    color: #C5E1A5;
}
.lightgreen-300.bg {
    background-color: #AED581;
}
.lightgreen-300.text {
    color: #AED581;
}
.lightgreen-400.bg {
    background-color: #9CCC65;
}
.lightgreen-400.text {
    color: #9CCC65;
}
.lightgreen-500.bg {
    background-color: #8BC34A;
}
.lightgreen-500.text {
    color: #8BC34A;
}
.lightgreen-600.bg {
    background-color: #7CB342;
}
.lightgreen-600.text {
    color: #7CB342;
}
.lightgreen-700.bg {
    background-color: #689F38;
}
.lightgreen-700.text {
    color: #689F38;
}
.lightgreen-800.bg {
    background-color: #558B2F;
}
.lightgreen-800.text {
    color: #558B2F;
}
.lightgreen-900.bg {
    background-color: #33691E;
}
.lightgreen-900.text {
    color: #33691E;
}
.lightgreen-A100.bg {
    background-color: #CCFF90;
}
.lightgreen-A100.text {
    color: #CCFF90;
}
.lightgreen-A200.bg {
    background-color: #B2FF59;
}
.lightgreen-A200.text {
    color: #B2FF59;
}
.lightgreen-A400.bg {
    background-color: #76FF03;
}
.lightgreen-A400.text {
    color: #76FF03;
}
.lightgreen-A700.bg {
    background-color: #64DD17;
}
.lightgreen-A700.text {
    color: #64DD17;
}

.lime.bg {
    background-color: #CDDC39;
}
.lime.text {
    color: #CDDC39;
}
.lime-50.bg {
    background-color: #F9FBE7;
}
.lime-50.text {
    color: #F9FBE7;
}
.lime-100.bg {
    background-color: #F0F4C3;
}
.lime-100.text {
    color: #F0F4C3;
}
.lime-200.bg {
    background-color: #E6EE9C;
}
.lime-200.text {
    color: #E6EE9C;
}
.lime-300.bg {
    background-color: #DCE775;
}
.lime-300.text {
    color: #DCE775;
}
.lime-400.bg {
    background-color: #D4E157;
}
.lime-400.text {
    color: #D4E157;
}
.lime-500.bg {
    background-color: #CDDC39;
}
.lime-500.text {
    color: #CDDC39;
}
.lime-600.bg {
    background-color: #C0CA33;
}
.lime-600.text {
    color: #C0CA33;
}
.lime-700.bg {
    background-color: #AFB42B;
}
.lime-700.text {
    color: #AFB42B;
}
.lime-800.bg {
    background-color: #9E9D24;
}
.lime-800.text {
    color: #9E9D24;
}
.lime-900.bg {
    background-color: #827717;
}
.lime-900.text {
    color: #827717;
}
.lime-A100.bg {
    background-color: #F4FF81;
}
.lime-A100.text {
    color: #F4FF81;
}
.lime-A200.bg {
    background-color: #EEFF41;
}
.lime-A200.text {
    color: #EEFF41;
}
.lime-A400.bg {
    background-color: #C6FF00;
}
.lime-A400.text {
    color: #C6FF00;
}
.lime-A700.bg {
    background-color: #AEEA00;
}
.lime-A700.text {
    color: #AEEA00;
}

.yellow.bg {
    background-color: #FFEB3B;
}
.yellow.text {
    color: #FFEB3B;
}
.yellow-50.bg {
    background-color: #FFFDE7;
}
.yellow-50.text {
    color: #FFFDE7;
}
.yellow-100.bg {
    background-color: #FFF9C4;
}
.yellow-100.text {
    color: #FFF9C4;
}
.yellow-200.bg {
    background-color: #FFF59D;
}
.yellow-200.text {
    color: #FFF59D;
}
.yellow-300.bg {
    background-color: #FFF176;
}
.yellow-300.text {
    color: #FFF176;
}
.yellow-400.bg {
    background-color: #FFEE58;
}
.yellow-400.text {
    color: #FFEE58;
}
.yellow-500.bg {
    background-color: #FFEB3B;
}
.yellow-500.text {
    color: #FFEB3B;
}
.yellow-600.bg {
    background-color: #FDD835;
}
.yellow-600.text {
    color: #FDD835;
}
.yellow-700.bg {
    background-color: #FBC02D;
}
.yellow-700.text {
    color: #FBC02D;
}
.yellow-800.bg {
    background-color: #F9A825;
}
.yellow-800.text {
    color: #F9A825;
}
.yellow-900.bg {
    background-color: #F57F17;
}
.yellow-900.text {
    color: #F57F17;
}
.yellow-A100.bg {
    background-color: #FFFF8D;
}
.yellow-A100.text {
    color: #FFFF8D;
}
.yellow-A200.bg {
    background-color: #FFFF00;
}
.yellow-A200.text {
    color: #FFFF00;
}
.yellow-A400.bg {
    background-color: #FFEA00;
}
.yellow-A400.text {
    color: #FFEA00;
}
.yellow-A700.bg {
    background-color: #FFD600;
}
.yellow-A700.text {
    color: #FFD600;
}

.amber.bg {
    background-color: #FFC107;
}
.amber.text {
    color: #FFC107;
}
.amber-50.bg {
    background-color: #FFF8E1;
}
.amber-50.text {
    color: #FFF8E1;
}
.amber-100.bg {
    background-color: #FFECB3;
}
.amber-100.text {
    color: #FFECB3;
}
.amber-200.bg {
    background-color: #FFE082;
}
.amber-200.text {
    color: #FFE082;
}
.amber-300.bg {
    background-color: #FFD54F;
}
.amber-300.text {
    color: #FFD54F;
}
.amber-400.bg {
    background-color: #FFCA28;
}
.amber-400.text {
    color: #FFCA28;
}
.amber-500.bg {
    background-color: #FFC107;
}
.amber-500.text {
    color: #FFC107;
}
.amber-600.bg {
    background-color: #FFB300;
}
.amber-600.text {
    color: #FFB300;
}
.amber-700.bg {
    background-color: #FFA000;
}
.amber-700.text {
    color: #FFA000;
}
.amber-800.bg {
    background-color: #FF8F00;
}
.amber-800.text {
    color: #FF8F00;
}
.amber-900.bg {
    background-color: #FF6F00;
}
.amber-900.text {
    color: #FF6F00;
}
.amber-A100.bg {
    background-color: #FFE57F;
}
.amber-A100.text {
    color: #FFE57F;
}
.amber-A200.bg {
    background-color: #FFD740;
}
.amber-A200.text {
    color: #FFD740;
}
.amber-A400.bg {
    background-color: #FFC400;
}
.amber-A400.text {
    color: #FFC400;
}
.amber-A700.bg {
    background-color: #FFAB00;
}
.amber-A700.text {
    color: #FFAB00;
}

.orange.bg {
    background-color: #FF9800;
}
.orange.text {
    color: #FF9800;
}
.orange-50.bg {
    background-color: #FFF3E0;
}
.orange-50.text {
    color: #FFF3E0;
}
.orange-100.bg {
    background-color: #FFE0B2;
}
.orange-100.text {
    color: #FFE0B2;
}
.orange-200.bg {
    background-color: #FFCC80;
}
.orange-200.text {
    color: #FFCC80;
}
.orange-300.bg {
    background-color: #FFB74D;
}
.orange-300.text {
    color: #FFB74D;
}
.orange-400.bg {
    background-color: #FFA726;
}
.orange-400.text {
    color: #FFA726;
}
.orange-500.bg {
    background-color: #FF9800;
}
.orange-500.text {
    color: #FF9800;
}
.orange-600.bg {
    background-color: #FB8C00;
}
.orange-600.text {
    color: #FB8C00;
}
.orange-700.bg {
    background-color: #F57C00;
}
.orange-700.text {
    color: #F57C00;
}
.orange-800.bg {
    background-color: #EF6C00;
}
.orange-800.text {
    color: #EF6C00;
}
.orange-900.bg {
    background-color: #E65100;
}
.orange-900.text {
    color: #E65100;
}
.orange-A100.bg {
    background-color: #FFD180;
}
.orange-A100.text {
    color: #FFD180;
}
.orange-A200.bg {
    background-color: #FFAB40;
}
.orange-A200.text {
    color: #FFAB40;
}
.orange-A400.bg {
    background-color: #FF9100;
}
.orange-A400.text {
    color: #FF9100;
}
.orange-A700.bg {
    background-color: #FF6D00;
}
.orange-A700.text {
    color: #FF6D00;
}

.dpOrange.bg {
    background-color: #FF5722;
}
.dpOrange.text {
    color: #FF5722;
}
.dpOrange-50.bg {
    background-color: #FBE9E7;
}
.dpOrange-50.text {
    color: #FBE9E7;
}
.dpOrange-100.bg {
    background-color: #FFCCBC;
}
.dpOrange-100.text {
    color: #FFCCBC;
}
.dpOrange-200.bg {
    background-color: #FFAB91;
}
.dpOrange-200.text {
    color: #FFAB91;
}
.dpOrange-300.bg {
    background-color: #FF8A65;
}
.dpOrange-300.text {
    color: #FF8A65;
}
.dpOrange-400.bg {
    background-color: #FF7043;
}
.dpOrange-400.text {
    color: #FF7043;
}
.dpOrange-500.bg {
    background-color: #FF5722;
}
.dpOrange-500.text {
    color: #FF5722;
}
.dpOrange-600.bg {
    background-color: #F4511E;
}
.dpOrange-600.text {
    color: #F4511E;
}
.dpOrange-700.bg {
    background-color: #E64A19;
}
.dpOrange-700.text {
    color: #E64A19;
}
.dpOrange-800.bg {
    background-color: #D84315;
}
.dpOrange-800.text {
    color: #D84315;
}
.dpOrange-900.bg {
    background-color: #BF360C;
}
.dpOrange-900.text {
    color: #BF360C;
}
.dpOrange-A100.bg {
    background-color: #FF9E80;
}
.dpOrange-A100.text {
    color: #FF9E80;
}
.dpOrange-A200.bg {
    background-color: #FF6E40;
}
.dpOrange-A200.text {
    color: #FF6E40;
}
.dpOrange-A400.bg {
    background-color: #FF3D00;
}
.dpOrange-A400.text {
    color: #FF3D00;
}
.dpOrange-A700.bg {
    background-color: #DD2C00;
}
.dpOrange-A700.text {
    color: #DD2C00;
}

.brown.bg {
    background-color: #795548;
}
.brown.text {
    color: #795548;
}
.brown-50.bg {
    background-color: #EFEBE9;
}
.brown-50.text {
    color: #EFEBE9;
}
.brown-100.bg {
    background-color: #D7CCC8;
}
.brown-100.text {
    color: #D7CCC8;
}
.brown-200.bg {
    background-color: #BCAAA4;
}
.brown-200.text {
    color: #BCAAA4;
}
.brown-300.bg {
    background-color: #A1887F;
}
.brown-300.text {
    color: #A1887F;
}
.brown-400.bg {
    background-color: #8D6E63;
}
.brown-400.text {
    color: #8D6E63;
}
.brown-500.bg {
    background-color: #795548;
}
.brown-500.text {
    color: #795548;
}
.brown-600.bg {
    background-color: #6D4C41;
}
.brown-600.text {
    color: #6D4C41;
}
.brown-700.bg {
    background-color: #5D4037;
}
.brown-700.text {
    color: #5D4037;
}
.brown-800.bg {
    background-color: #4E342E;
}
.brown-800.text {
    color: #4E342E;
}
.brown-900.bg {
    background-color: #3E2723;
}
.brown-900.text {
    color: #3E2723;
}

.grey.bg {
    background-color: #9E9E9E;
}
.grey.text {
    color: #9E9E9E;
}
.grey-50.bg {
    background-color: #FAFAFA;
}
.grey-50.text {
    color: #FAFAFA;
}
.grey-100.bg {
    background-color: #F5F5F5;
}
.grey-100.text {
    color: #F5F5F5;
}
.grey-200.bg {
    background-color: #EEEEEE;
}
.grey-200.text {
    color: #EEEEEE;
}
.grey-300.bg {
    background-color: #E0E0E0;
}
.grey-300.text {
    color: #E0E0E0;
}
.grey-400.bg {
    background-color: #BDBDBD;
}
.grey-400.text {
    color: #BDBDBD;
}
.grey-500.bg {
    background-color: #9E9E9E;
}
.grey-500.text {
    color: #9E9E9E;
}
.grey-600.bg {
    background-color: #757575;
}
.grey-600.text {
    color: #757575;
}
.grey-700.bg {
    background-color: #616161;
}
.grey-700.text {
    color: #616161;
}
.grey-800.bg {
    background-color: #424242;
}
.grey-800.text {
    color: #424242;
}
.grey-900.bg {
    background-color: #212121;
}
.grey-900.text {
    color: #212121;
}

.bluegrey.bg {
    background-color: #607D8B;
}
.bluegrey.text {
    color: #607D8B;
}
.bluegrey-50.bg {
    background-color: #ECEFF1;
}
.bluegrey-50.text {
    color: #ECEFF1;
}
.bluegrey-100.bg {
    background-color: #CFD8DC;
}
.bluegrey-100.text {
    color: #CFD8DC;
}
.bluegrey-200.bg {
    background-color: #B0BEC5;
}
.bluegrey-200.text {
    color: #B0BEC5;
}
.bluegrey-300.bg {
    background-color: #90A4AE;
}
.bluegrey-300.text {
    color: #90A4AE;
}
.bluegrey-400.bg {
    background-color: #78909C;
}
.bluegrey-400.text {
    color: #78909C;
}
.bluegrey-500.bg {
    background-color: #607D8B;
}
.bluegrey-500.text {
    color: #607D8B;
}
.bluegrey-600.bg {
    background-color: #546E7A;
}
.bluegrey-600.text {
    color: #546E7A;
}
.bluegrey-700.bg {
    background-color: #455A64;
}
.bluegrey-700.text {
    color: #455A64;
}
.bluegrey-800.bg {
    background-color: #37474F;
}
.bluegrey-800.text {
    color: #37474F;
}
.bluegrey-900.bg {
    background-color: #263238;
}
.bluegrey-900.text {
    color: #263238;
}

.black.bg {
    background-color: #000000;
}
.black.text {
    color: #000000;
}
.black-500.bg {
    background-color: #000000;
}
.black-500.text {
    color: #000000;
}
.black-Text.bg {
    background-color: rgba(0,0,0,0.87);
}
.black-Text.text {
    color: rgba(0,0,0,0.87);
}
.black-Secondary-Text.bg {
    background-color: rgba(0,0,0,0.54);
}
.black-Secondary-Text.text {
    color: rgba(0,0,0,0.54);
}
.black-Icons.bg {
    background-color: rgba(0,0,0,0.54);
}
.black-Icons.text {
    color: rgba(0,0,0,0.54);
}
.black-Disabled.bg {
    background-color: rgba(0,0,0,0.26);
}
.black-Disabled.text {
    color: rgba(0,0,0,0.26);
}
.black-Hint-Text.bg {
    background-color: rgba(0,0,0,0.26);
}
.black-Hint-Text.text {
    color: rgba(0,0,0,0.26);
}
.black-Dividers.bg {
    background-color: rgba(0,0,0,0.12);
}
.black-Dividers.text {
    color: rgba(0,0,0,0.12);
}

.white.bg {
    background-color: #ffffff;
}
.white.text {
    color: #ffffff;
}
.white-500.bg {
    background-color: #ffffff;
}
.white-500.text {
    color: #ffffff;
}
.white-Text.bg {
    background-color: #ffffff;
}
.white-Text.text {
    color: #ffffff;
}
.white-Secondary-Text.bg {
    background-color: rgba(255,255,255,0.7);
}
.white-Secondary-Text.text {
    color: rgba(255,255,255,0.7);
}
.white-Icons.bg {
    background-color: #ffffff;
}
.white-Icons.text {
    color: #ffffff;
}
.white-Disabled.bg {
    background-color: rgba(255,255,255,0.3);
}
.white-Disabled.text {
    color: rgba(255,255,255,0.3);
}
.white-Hint-Text.bg {
    background-color: rgba(255,255,255,0.3);
}
.white-Hint-Text.text {
    color: rgba(255,255,255,0.3);
}
.white-Dividers.bg {
    background-color: rgba(255,255,255,0.12);
}
.white-Dividers.text {
    color: rgba(255,255,255,0.12);
}.ta3{transition: all 0.3s}


.w100-p{width: 100%}

.bcw{background-color: #fff;}
.bcg1{background-color: #f7f7f7;}
.bcg2{background-color: #ddd;}
.bcg3{background-color: #EFEFEF;}

.fcg1{color: #f7f7f7;}
.fcg2{color: #EFEFEF;}
.fcg3{color: #ddd;}
.fcg4{color: #c7c7c7;}
.fcg5{color: #acacac;}
.fcg5{color: #808080;}
.blue.text{color: #0093ee}


span{cursor: context-menu;}
.pre{position:relative}
.pab{position:absolute}
.pfi{position: fixed}
.vto{vertical-align: top}
.vato{vertical-align: top}
.vmi{vertical-align: middle}
.vami{vertical-align: middle}
.vbo{vertical-align: bottom}
.vabo{vertical-align: bottom}
.vasu{vertical-align: super}

.tce{text-align: center}
.tace{text-align: center}
.tale{text-align: left}
.tle{text-align: left}
.tri{text-align: right}
.tari{text-align: right}
.taju{text-align: justify}
.talce{text-align-last: center}
.talri{text-align-last: right}
.talle{text-align-last: left}
.dlt{direction: ltr}
.drt{direction: rtl}
.phrt::-moz-placeholder{direction: rtl}
.phrt::-webkit-input-placeholder{direction: rtl}
.phlt::-moz-placeholder{direction: ltr}
.phlt::-webkit-input-placeholder{direction: ltr}
.tdlt{text-decoration: line-through}
.fbo{font-weight: bold;}
.vhi{visibility: hidden}
.vvi{visibility: visible}
.fl{float:left}
.fr{float:right}

.ohi{overflow: hidden}
.ofau{overflow: auto}


.col2{display:inline-block;width:2%;}
.col5{display:inline-block;width:4%;}
.push5{margin-right:4%;}
.col10{display:inline-block;width:9%;}
.push10{margin-right:9%;}
.col15{display:inline-block;width:14.5%;}
.col20{display:inline-block;width:19.5%;}
.col25{display:inline-block;width:24.5%;}
.col30{display:inline-block;width:29.5%;}
.col33{display:inline-block;width:33%;}
.col35{display:inline-block;width:34.5%;}
.col40{display:inline-block;width:39.5%;}
.col45{display:inline-block;width:44.5%;}
.col50{display:inline-block;width:49.5%;}
.col55{display:inline-block;width:54.5%;}
.col60{display:inline-block;width:59.5%;}
.col65{display:inline-block;width:64.5%;}
.col70{display:inline-block;width:69.5%;}
.col75{display:inline-block;width:74.5%;}
.col80{display:inline-block;width:79.5%;}
.col85{display:inline-block;width:84.5%;}
.col90{display:inline-block;width:89.5%;}
.col95{display:inline-block;width:94.5%;}
.col98{display:inline-block;width:97.5%;}
.col100{display:inline-block;width:100%;}


.colT5{display:table-cell;width:5%;}
.colT10{display:table-cell;width:10%;}
.colT15{display:table-cell;width:15%;}
.colT20{display:table-cell;width:20%;}
.colT25{display:table-cell;width:25%;}
.colT30{display:table-cell;width:30%;}
.colT35{display:table-cell;width:35%;}
.colT40{display:table-cell;width:40%;}
.colT45{display:table-cell;width:45%;}
.colT50{display:table-cell;width:50%;}
.colT55{display:table-cell;width:55%;}
.colT60{display:table-cell;width:60%;}
.colT65{display:table-cell;width:65%;}
.colT70{display:table-cell;width:70%;}
.colT75{display:table-cell;width:75%;}
.colT80{display:table-cell;width:80%;}
.colT85{display:table-cell;width:85%;}
.colT90{display:table-cell;width:90%;}
.colT95{display:table-cell;width:95%;}
.colT100{display:table-cell;width:100%;}

.colf2{flex:0 0 2% ; -webkit-box-flex:1  2%; -moz-box-flex: 1 2%; width:2%;}
.colf5{flex:0 0 5% ; -webkit-box-flex:1  5%; -moz-box-flex: 1 5%; width:5%;}
.colf10{flex:0 0 10% ;  -webkit-box-flex:1  10%; -moz-box-flex: 1 10%; width:10%;}
.colf15{flex:0 0 15% ; -webkit-box-flex:1  15%; -moz-box-flex: 1 15%; width:15%;}
.colf20{flex:0 0 20% ;  -webkit-box-flex:1  20%; -moz-box-flex: 1 20%; width:20%;}
.colf25{flex:0 0 25% ;  -webkit-box-flex:1  25%; -moz-box-flex: 1 25%; width:25%;}
.colf30{flex:0 0 30% ;  -webkit-box-flex:1  30%; -moz-box-flex: 1 30%; width:30%;}
.colf35{flex:0 0 35% ; -webkit-box-flex:1  35%; -moz-box-flex: 1 35%; width:35%;}
.colf40{flex:0 0 40% ; -webkit-box-flex:1  40%; -moz-box-flex: 1 40%; width:40%;}
.colf45{flex:0 0 45% ; -webkit-box-flex:1  45%; -moz-box-flex: 1 45%; width:45%;}
.colf50{flex:0 0 50% ;  -webkit-box-flex:1  50%; -moz-box-flex: 1 50%; width:50%;}
.colf55{flex:0 0 55% ; -webkit-box-flex:1  55%; -moz-box-flex: 1 55%; width:55%;}
.colf60{flex:0 0 60% ;  -webkit-box-flex:1  5%; -moz-box-flex: 1 5%; width:60%;}
.colf65{flex:0 0 65% ; -webkit-box-flex:1  65%; -moz-box-flex: 1 65%; width:65%;}
.colf70{flex:0 0 70% ;  -webkit-box-flex:1  70%; -moz-box-flex: 1 70%; width:70%;}
.colf75{flex:0 0 75% ;  -webkit-box-flex:1  75%; -moz-box-flex: 1 75%; width:75%;}
.colf80{flex:0 0 80% ;  -webkit-box-flex:1  80%; -moz-box-flex: 1 80%; width:80%;}
.colf85{flex:0 0 85% ;  -webkit-box-flex:1  85%; -moz-box-flex: 1 85%; width:85%;}
.colf90{flex:0 0 90% ;  -webkit-box-flex:1  90%; -moz-box-flex: 1 90%; width:90%;}
.colf95{flex:0 0 95% ; -webkit-box-flex:1  95%; -moz-box-flex: 1 95%; width:95%;}
.colf100{flex:0 0 100%;  -webkit-box-flex:1  100%; -moz-box-flex: 1 100%; width:100%;}


.mau{margin: auto}
.cpo{cursor: pointer;}
.fwbo{font-weight: bold;}
.fwno{font-weight: normal}


.pubError{color:red}
.pubTip{color:red}
.din{display: inline-block}
.dib{display: inline-block}
.dta{display: table}
.tlfi{table-layout: fixed}
.dinl{display: inline}
.dbl{display: block}
.dno{display: none;}
.dtc{display: table-cell;}
.dtr{display: table-row;}
.dt{display: table;}
.dif{
    display: -webkit-inline-flex;     /* NEW - Chrome */
    display: inline-flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.dfl{
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.jcc{justify-content: center}
.jcfe{justify-content: flex-end}
.jcfs{justify-content: flex-start}
.jcsb{justify-content: space-between}
.aife{align-items: flex-end;}
.aafs{align-items: flex-start;}
.aace{align-items: center;}
.aic{align-items: center;}
.ais{align-items: stretch;}
.aib{align-items: baseline;}
.tlf{table-layout: fixed}
.fle{float:left}
.fdc{flex-direction: column;}
.fdcr{flex-direction: column-reverse;}
.fdr{flex-direction: row;}
.fdrr{flex-direction: row-reverse;}
.fww{flex-wrap: wrap;}
.fwn{flex-wrap: nowrap;}
.acc{    align-content: center;}

.payBtn{
    background-color: #4caf50;
    color:#fff;
}

.white.bg{background-color: #fff}
.white.text{color: #fff}
.red.text{color: #FF0000}
.yellow.text{color: yellow}
.orange.text{color: orange}
.purple.text{color: purple}

.grey.bg {
    background-color: #9E9E9E;
}
.grey.text {
    color: #9E9E9E;
}
.grey-50.bg {
    background-color: #FAFAFA;
}
.grey-50.text {
    color: #FAFAFA;
}
.grey-100.bg {
    background-color: #F5F5F5;
}
.grey-100.text {
    color: #F5F5F5;
}
.grey-200.bg {
    background-color: #EEEEEE;
}
.grey-200.text {
    color: #EEEEEE;
}
.grey-300.bg {
    background-color: #E0E0E0;
}
.grey-300.text {
    color: #E0E0E0;
}
.grey-400.bg {
    background-color: #BDBDBD;
}
.grey-400.text {
    color: #BDBDBD;
}
.grey-500.bg {
    background-color: #9E9E9E;
}
.grey-500.text {
    color: #9E9E9E;
}
.grey-600.bg {
    background-color: #757575;
}
.grey-600.text {
    color: #757575;
}
.grey-700.bg {
    background-color: #616161;
}
.grey-700.text {
    color: #616161;
}
.grey-800.bg {
    background-color: #424242;
}
.grey-800.text {
    color: #424242;
}
.grey-900.bg {
    background-color: #212121;
}
.grey-900.text {
    color: #212121;
}

.green.bg {
    background-color: #4CAF50;
}
.green.text {
    color: #4CAF50;
}
.green-50.bg {
    background-color: #E8F5E9;
}
.green-50.text {
    color: #E8F5E9;
}
.green-100.bg {
    background-color: #C8E6C9;
}
.green-100.text {
    color: #C8E6C9;
}
.green-200.bg {
    background-color: #A5D6A7;
}
.green-200.text {
    color: #A5D6A7;
}
.green-300.bg {
    background-color: #81C784;
}
.green-300.text {
    color: #81C784;
}
.green-400.bg {
    background-color: #66BB6A;
}

.green-400.text {
    color: #66BB6A;
}
.green-500.bg {
    background-color: #4CAF50;
}
.green-500.text {
    color: #4CAF50;
}
.green-600.bg {
    background-color: #43A047;
}.green-600.text {
     color: #43A047;
 }
.green-700.bg {
    background-color: #388E3C;
}
.green-700.text {
    color: #388E3C;
}
.green-800.bg {
    background-color: #2E7D32;
}
.green-800.text {
    color: #2E7D32;
}
.green-900.bg {
    background-color: #1B5E20;
}
.green-900.text {
    color: #1B5E20;
}



/*set parent pre class (position relative)*/
.cover-a{
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/*for var_dumps!*/
code, kbd, pre, samp{
    text-align:left;
}
.ofcon{object-fit: contain;-o-object-fit: contain}
.ofcov{object-fit: cover;-o-object-fit: cover}

.tal2{
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.tal3{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.tal4{
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.tal5{
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.rounded{
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.arrow{
    position: relative;
    width:0;height:0;
    border-width:10px;
    border-style: solid;
    display:inline-block;
    vertical-align:middle;
    margin:5px;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.arrow.left{
    border-color: transparent grey transparent transparent;
    border-left:none;
    width:5px;
}
.arrow.right{
    border-color: transparent  transparent  transparent grey;
    border-right:none;
    width:5px;
}
.arrow.top{
    border-color: transparent  transparent grey transparent;
    border-top:none;
    height:5px;
    vertical-align: top;
}
.arrow.up{
    border-color: transparent  transparent grey transparent;
    border-top:none;
    height:5px;
    vertical-align: top;
}
.arrow.down{
    border-color: grey transparent transparent transparent;
    border-bottom:none;
    height:5px;
    vertical-align:bottom;
}
.rotate{
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.rotatehl{/*rotate half left!*/
    -webkit-transform: rotate(90deg);
    transform: rotate(-90deg);
}
.rotatehr{/*rotate half right!*/
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.green.text{color:green}
.green.bg{background-color: green}
#imgLoading>span{
    transition:all 0.5s;
    display: block;
    margin: 30px auto;
}
#imgLoading{text-align:center; margin:auto;}

.loadingShape{
    width: 100%;
    height: 100%;
    border: 2px solid grey;
    border-radius: 100%;
    display: block;
    margin: auto;
    border-left: transparent;
    transform: rotate(360deg);
    animation: rloading1 1.7s linear;
    animation-iteration-count: infinite;
}

.color_blue{color:#00AFEF;}


.input-lr, .input-lr:active,.ltr-input:focus{
    text-align: left;
    direction: ltr;
}

.input-lr[value=""]{
    text-align:right;
}

.fa.dno { display : none;}
.button{
    border:none;
    border-radius: 2px;
}

.btn{border:none; cursor:pointer}
.btn:hover{opacity:0.9}

.fs0-5{font-size: 0.5em;}
.fs0-6{font-size: 0.6em;}
.fs0-7{font-size: 0.7em;}
.fs0-8{font-size: 0.8em;}
.fs0-9{font-size: 0.9em;}

.fs1{font-size: 1em;}
.fs1-1{font-size: 1.1em;}
.fs1-2{font-size: 1.2em;}
.fs1-3{font-size: 1.3em;}
.fs1-4{font-size: 1.4em;}
.fs1-5{font-size: 1.5em;}
.fs1-6{font-size: 1.6em;}
.fs1-7{font-size: 1.7em;}
.fs1-8{font-size: 1.8em;}
.fs1-9{font-size: 1.9em;}

.fs2{font-size: 2em;}


.pe0-5{padding: 0.5em;}
.pe0-6{padding: 0.6em;}
.pe0-7{padding: 0.7em;}
.pe0-8{padding: 0.8em;}
.pe0-9{padding: 0.9em;}

.pe1{padding: 1em;}
.pe1-1{padding: 1.1em;}
.pe1-2{padding: 1.2em;}
.pe1-3{padding: 1.3em;}
.pe1-4{padding: 1.4em;}
.pe1-5{padding: 1.5em;}
.pe1-6{padding: 1.6em;}
.pe1-7{padding: 1.7em;}
.pe1-8{padding: 1.8em;}
.pe1-9{padding: 1.9em;}
.pe2{font-size: 2em;}


.pe0-5{padding: 0.5em;}
.pe0-6{padding: 0.6em;}
.pe0-7{padding: 0.7em;}
.pe0-8{padding: 0.8em;}
.pe0-9{padding: 0.9em;}

.me1{margin: 1em;}

.me0-1{margin: 0.1em;}
.me0-2{margin: 0.2em;}
.me0-3{margin: 0.3em;}
.me0-4{margin: 0.4em;}
.me0-5{margin: 0.5em;}
.me0-6{margin: 0.6em;}
.me0-7{margin: 0.7em;}
.me0-8{margin: 0.8em;}
.me0-9{margin: 0.9em;}

.me1-1{margin: 1.1em;}
.me1-2{margin: 1.2em;}
.me1-3{margin: 1.3em;}
.me1-4{margin: 1.4em;}
.me1-5{margin: 1.5em;}
.me1-6{margin: 1.6em;}
.me1-7{margin: 1.7em;}
.me1-8{margin: 1.8em;}
.me1-9{margin: 1.9em;}


.mtau{margin-top: auto}
.mlau{margin-left: auto}
.mrau{margin-right: auto}
.mbau{margin-bottom: auto}

.mtauh:hover{margin-top: auto !important;}
.mlauh:hover{margin-left: auto !important;}
.mrauh:hover{margin-right: auto !important;}
.mbauh:hover{margin-bottom: auto !important;}


.mbe1{margin-bottom: 1em;}

.mbe0-1{margin-bottom: 0.1em;}
.mbe0-2{margin-bottom: 0.2em;}
.mbe0-3{margin-bottom: 0.3em;}
.mbe0-4{margin-bottom: 0.4em;}
.mbe0-5{margin-bottom: 0.5em;}
.mbe0-6{margin-bottom: 0.6em;}
.mbe0-7{margin-bottom: 0.7em;}
.mbe0-8{margin-bottom: 0.8em;}
.mbe0-9{margin-bottom: 0.9em;}

.mbe1-1{margin-bottom: 1.1em;}
.mbe1-2{margin-bottom: 1.2em;}
.mbe1-3{margin-bottom: 1.3em;}
.mbe1-4{margin-bottom: 1.4em;}
.mbe1-5{margin-bottom: 1.5em;}
.mbe1-6{margin-bottom: 1.6em;}
.mbe1-7{margin-bottom: 1.7em;}
.mbe1-8{margin-bottom: 1.8em;}
.mbe1-9{margin-bottom: 1.9em;}



.mlel{ margin-left: 1em;}
.mle0-1{margin-left: 0.1em;}
.mle0-2{margin-left: 0.2em;}
.mle0-3{margin-left: 0.3em;}
.mle0-4{margin-left: 0.4em;}
.mle0-5{margin-left: 0.5em;}
.mle0-6{margin-left: 0.6em;}
.mle0-7{margin-left: 0.7em;}
.mle0-8{margin-left: 0.8em;}
.mle0-9{margin-left: 0.9em;}

.m1e-1{margin-left: 1.1em;}
.m1e-2{margin-left: 1.2em;}
.m1e-3{margin-left: 1.3em;}
.m1e-4{margin-left: 1.4em;}
.m1e-5{margin-left: 1.5em;}
.m1e-6{margin-left: 1.6em;}
.m1e-7{margin-left: 1.7em;}
.m1e-8{margin-left: 1.8em;}
.m1e-9{margin-left: 1.9em;}


.met1{margin-top: 1em;}
.met0-1{margin-top: 0.1em;}
.met0-2{margin-top: 0.2em;}
.met0-3{margin-top: 0.3em;}
.met0-4{margin-top: 0.4em;}
.met0-5{margin-top: 0.5em;}
.met0-6{margin-top: 0.6em;}
.met0-7{margin-top: 0.7em;}
.met0-8{margin-top: 0.8em;}
.met0-9{margin-top: 0.9em;}

.met1-1{margin-top: 1.1em;}
.met1-2{margin-top: 1.2em;}
.met1-3{margin-top: 1.3em;}
.met1-4{margin-top: 1.4em;}
.met1-5{margin-top: 1.5em;}
.met1-6{margin-top: 1.6em;}
.met1-7{margin-top: 1.7em;}
.met1-8{margin-top: 1.8em;}
.met1-9{margin-top: 1.9em;}

.wsno{white-space: nowrap}
.usno{
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.fg1{flex-grow: 1 ;}
.fg1-5{flex-grow: 1.5;}
.fg2{flex-grow: 2 ;}
.fg2-5{flex-grow: 2.5 ;}
.fg3{flex-grow: 3 ;}
.fg3-5{flex-grow: 3.5 ;}
.fg4{flex-grow: 4 ;}
.fg4-5{flex-grow: 4.5 ;}
.fg5{flex-grow: 5 ;}
.fg5-5{flex-grow: 5.5 ;}
.fg6{flex-grow: 6 ;}
.fg6-5{flex-grow: 6.5 ;}
.fg7{flex-grow: 7 ;}
.fg7-5{flex-grow: 7.5 ;}
.fg8{flex-grow: 8 ;}
.fg8-5{flex-grow: 8.5 ;}
.fg9{flex-grow: 9 ;}
.fg9-5{flex-grow: 9.5 ;}
.fg10{flex-grow: 10 ;}
.fg10-5{flex-grow: 10.5 ;}
.fg11{flex-grow: 11 ;}
.fg11-5{flex-grow: 11.5 ;}
.fg12{flex-grow: 12 ;}

.fb5{flex-basis: 5%;}
.fb10{flex-basis: 10%;}
.fb15{flex-basis: 15%;}
.fb20{flex-basis: 20%;}
.fb25{flex-basis: 25%;}
.fb30{flex-basis: 30%;}
.fb35{flex-basis: 35%;}
.fb40{flex-basis: 40%;}
.fb45{flex-basis: 45%;}
.fb50{flex-basis: 50%;}
.fb55{flex-basis: 55%;}
.fb60{flex-basis: 60%;}
.fb65{flex-basis: 65%;}
.fb70{flex-basis: 70%;}
.fb75{flex-basis: 75%;}
.fb80{flex-basis: 80%;}
.fb85{flex-basis: 85%;}
.fb90{flex-basis: 90%;}
.fb95{flex-basis: 95%;}
.fb100{flex-basis: 100%;}.module[data-id_page='11335']{;background-color:#232148;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;padding-top:12vw;border-style:none;}.module[data-id_page='11335']:hover{;}.module[data-id_page='11335']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='11335'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='11335'] 
            
            .module[data-id_page='11335'] .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='11335'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='11335']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_710 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            .#module_new_medical_710 .content_str{
				width:100%;
			}
            #module_new_medical_710 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_710 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_710 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_710 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_710 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_710 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_710 .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_710 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_710 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_710 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_710 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_710 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
             
           
        
            #module_new_medical_710 a{
                color:#00AFEF!important;
            }
            #module_new_medical_710 a:hover{
                color:#00AFEF!important;
            }
        
            #medical_box_6113 .new_medical_icon{
                background-image:url("https://shapoorsangin.ir/files/icon/1701959550_Untitled-1.png");
            }
            #medical_box_6113 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_6113 .background-img{
                border-radius:1.5vw;
            }

        
            #medical_box_6113 .new_medical_icon{
                
            }
        #medical_box_6113 .new_medical_title{color:#ffffff;font-weight:500;text-align:center;}#medical_box_6113:hover .new_medical_title{}
                #medical_box_6113 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_6113 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:21vw;border-style:none;border-color:#000;}#medical_box_6113:hover .new_medical_icon{}#medical_box_6113.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-radius:1.5vw;border-style:none;border-top-width:.15vw;border-right-width:.15vw;border-bottom-width:.15vw;border-left-width:.15vw;}#medical_box_6113:hover{}
                #medical_box_6113 
            
            #medical_box_6113 .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_6113 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_6113:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_6113 .mode1-size_6113{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            #medical_box_6113 .new_medical_box > div{
                width:100%;
            }
            #medical_box_6113 .mode2-size_6113{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_6113 .mode3-size_6113{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_6113 .mode4-size_6113{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_6113 .mode5-size_6113{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_6113 .mode6-size_6113{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_6113 .mode7-size_6113{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            
            #medical_box_6113 .mode7-size_6113 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_6113 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_6113 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_6113{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            
            .custom1_6113:hover{
                color:;
                
            }
            .custom2_6113{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_6113:hover{
                color:;
            }
            #medical_box_6113 .mode-btn1_6113{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_6113 .mode-btn1_6113 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_6113 .mode-btn2_6113{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
                
            }
            #medical_box_6113 .mode-btn2_6113 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_6113 .div-btn-title_main_6113{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:1rem 0;
            }
             
           
        
                #medical_box_6113 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_6113 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1858 .new_medical_icon{
                background-image:url("https://shapoorsangin.ir/files/tarahi/1692123262_JARESAGHIL_GOLD.svg");
            }
            #medical_box_1858 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1858 .background-img{
                border-radius:1.5vw;
            }

        
            #medical_box_1858 .new_medical_icon{
                
            }
        #medical_box_1858 .new_medical_title{color:#ffffff;font-weight:500;text-align:center;}#medical_box_1783:hover .new_medical_title{}
                #medical_box_1858 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1858 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:60%;height:21vw;border-style:none;border-color:#000;}#medical_box_1783:hover .new_medical_icon{}#medical_box_1858.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-radius:1.5vw;border-style:none;border-top-width:.15vw;border-right-width:.15vw;border-bottom-width:.15vw;border-left-width:.15vw;}#medical_box_1783:hover{}
                #medical_box_1858 
            
            #medical_box_1858 .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_1858 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1858:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1858 .mode1-size_1858{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            #medical_box_1858 .new_medical_box > div{
                width:100%;
            }
            #medical_box_1858 .mode2-size_1858{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1858 .mode3-size_1858{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1858 .mode4-size_1858{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1858 .mode5-size_1858{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1858 .mode6-size_1858{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1858 .mode7-size_1858{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            
            #medical_box_1858 .mode7-size_1858 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1858 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1858 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1858{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            
            .custom1_1858:hover{
                color:;
                
            }
            .custom2_1858{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1858:hover{
                color:;
            }
            #medical_box_1858 .mode-btn1_1858{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1858 .mode-btn1_1858 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1858 .mode-btn2_1858{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
                
            }
            #medical_box_1858 .mode-btn2_1858 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1858 .div-btn-title_main_1858{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:1rem 0;
            }
             
           
        
                #medical_box_1858 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1858 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1857 .new_medical_icon{
                background-image:url("https://shapoorsangin.ir/files/tarahi/1675342093_2.png");
            }
            #medical_box_1857 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1857 .background-img{
                border-radius:1.5vw;
            }

        
            #medical_box_1857 .new_medical_icon{
                
            }
        #medical_box_1857 .new_medical_title{color:#fff;font-weight:500;font-size:4vw;text-align:center;margin-top:1vw;line-height:7vw;}#medical_box_7:hover .new_medical_title{}
                #medical_box_1857 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1857 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:21vw;border-style:none;border-color:#000;}#medical_box_7:hover .new_medical_icon{}#medical_box_1857.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-radius:1.5vw;border-style:none;border-top-width:.15vw;border-right-width:.15vw;border-bottom-width:.15vw;border-left-width:.15vw;border-color:#d2001a;}#medical_box_7:hover{}
                #medical_box_1857 
            
            #medical_box_1857 .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_1857 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1857:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1857 .mode1-size_1857{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            #medical_box_1857 .new_medical_box > div{
                width:100%;
            }
            #medical_box_1857 .mode2-size_1857{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1857 .mode3-size_1857{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1857 .mode4-size_1857{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1857 .mode5-size_1857{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1857 .mode6-size_1857{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1857 .mode7-size_1857{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            
            #medical_box_1857 .mode7-size_1857 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1857 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1857 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1857{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            
            .custom1_1857:hover{
                color:;
                
            }
            .custom2_1857{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1857:hover{
                color:;
            }
            #medical_box_1857 .mode-btn1_1857{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1857 .mode-btn1_1857 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1857 .mode-btn2_1857{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
                
            }
            #medical_box_1857 .mode-btn2_1857 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1857 .div-btn-title_main_1857{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:1rem 0;
            }
             
           
        
                #medical_box_1857 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1857 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1856 .new_medical_icon{
                background-image:url("https://shapoorsangin.ir/files/tarahi/1675343655_7.png");
            }
            #medical_box_1856 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1856 .background-img{
                border-radius:1.5vw;
            }

        
            #medical_box_1856 .new_medical_icon{
                
            }
        #medical_box_1856 .new_medical_title{color:#fff;font-weight:500;font-size:4vw;text-align:center;margin-top:1vw;line-height:7vw;}#medical_box_6:hover .new_medical_title{}
                #medical_box_1856 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1856 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:21vw;border-style:none;border-color:#000;}#medical_box_6:hover .new_medical_icon{}#medical_box_1856.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-radius:1.5vw;border-style:none;border-top-width:.15vw;border-right-width:.15vw;border-bottom-width:.15vw;border-left-width:.15vw;border-color:#d2001a;}#medical_box_6:hover{}
                #medical_box_1856 
            
            #medical_box_1856 .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_1856 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1856:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1856 .mode1-size_1856{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            #medical_box_1856 .new_medical_box > div{
                width:100%;
            }
            #medical_box_1856 .mode2-size_1856{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1856 .mode3-size_1856{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1856 .mode4-size_1856{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1856 .mode5-size_1856{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1856 .mode6-size_1856{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1856 .mode7-size_1856{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            
            #medical_box_1856 .mode7-size_1856 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1856 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1856 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1856{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            
            .custom1_1856:hover{
                color:;
                
            }
            .custom2_1856{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1856:hover{
                color:;
            }
            #medical_box_1856 .mode-btn1_1856{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1856 .mode-btn1_1856 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1856 .mode-btn2_1856{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
                
            }
            #medical_box_1856 .mode-btn2_1856 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1856 .div-btn-title_main_1856{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:1rem 0;
            }
             
           
        
                #medical_box_1856 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1856 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1855 .new_medical_icon{
                background-image:url("https://shapoorsangin.ir/files/tarahi/1675342613_3.png");
            }
            #medical_box_1855 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1855 .background-img{
                border-radius:1.5vw;
            }

        
            #medical_box_1855 .new_medical_icon{
                
            }
        #medical_box_1855 .new_medical_title{color:#fff;font-weight:500;font-size:4vw;text-align:center;margin-top:1vw;line-height:7vw;}#medical_box_5:hover .new_medical_title{}
                #medical_box_1855 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1855 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:21vw;border-style:none;border-color:#000;}#medical_box_5:hover .new_medical_icon{}#medical_box_1855.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-radius:1.5vw;border-style:none;border-top-width:.15vw;border-right-width:.15vw;border-bottom-width:.15vw;border-left-width:.15vw;border-color:#d2001a;}#medical_box_5:hover{}
                #medical_box_1855 
            
            #medical_box_1855 .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_1855 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1855:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1855 .mode1-size_1855{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            #medical_box_1855 .new_medical_box > div{
                width:100%;
            }
            #medical_box_1855 .mode2-size_1855{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1855 .mode3-size_1855{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1855 .mode4-size_1855{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1855 .mode5-size_1855{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1855 .mode6-size_1855{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1855 .mode7-size_1855{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            
            #medical_box_1855 .mode7-size_1855 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1855 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1855 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1855{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            
            .custom1_1855:hover{
                color:;
                
            }
            .custom2_1855{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1855:hover{
                color:;
            }
            #medical_box_1855 .mode-btn1_1855{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1855 .mode-btn1_1855 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1855 .mode-btn2_1855{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
                
            }
            #medical_box_1855 .mode-btn2_1855 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1855 .div-btn-title_main_1855{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:1rem 0;
            }
             
           
        
                #medical_box_1855 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1855 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1854 .new_medical_icon{
                background-image:url("https://shapoorsangin.ir/files/tarahi/1675342702_4.png");
            }
            #medical_box_1854 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1854 .background-img{
                border-radius:1.5vw;
            }

        
            #medical_box_1854 .new_medical_icon{
                
            }
        #medical_box_1854 .new_medical_title{color:#fff;font-weight:500;font-size:4vw;text-align:center;margin-top:1vw;line-height:7vw;}#medical_box_4:hover .new_medical_title{}
                #medical_box_1854 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1854 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:21vw;border-style:none;border-color:#000;}#medical_box_4:hover .new_medical_icon{}#medical_box_1854.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-radius:1.5vw;border-style:none;border-top-width:.15vw;border-right-width:.15vw;border-bottom-width:.15vw;border-left-width:.15vw;border-color:#d2001a;}#medical_box_4:hover{}
                #medical_box_1854 
            
            #medical_box_1854 .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_1854 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1854:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1854 .mode1-size_1854{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            #medical_box_1854 .new_medical_box > div{
                width:100%;
            }
            #medical_box_1854 .mode2-size_1854{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1854 .mode3-size_1854{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1854 .mode4-size_1854{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1854 .mode5-size_1854{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1854 .mode6-size_1854{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1854 .mode7-size_1854{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            
            #medical_box_1854 .mode7-size_1854 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1854 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1854 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1854{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            
            .custom1_1854:hover{
                color:;
                
            }
            .custom2_1854{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1854:hover{
                color:;
            }
            #medical_box_1854 .mode-btn1_1854{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1854 .mode-btn1_1854 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1854 .mode-btn2_1854{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
                
            }
            #medical_box_1854 .mode-btn2_1854 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1854 .div-btn-title_main_1854{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:1rem 0;
            }
             
           
        
                #medical_box_1854 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1854 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1853 .new_medical_icon{
                background-image:url("https://shapoorsangin.ir/files/tarahi/1675342779_5.png");
            }
            #medical_box_1853 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1853 .background-img{
                border-radius:1.5vw;
            }

        
            #medical_box_1853 .new_medical_icon{
                
            }
        #medical_box_1853 .new_medical_title{color:#fff;font-weight:500;font-size:4vw;text-align:center;margin-top:1vw;line-height:7vw;}#medical_box_3:hover .new_medical_title{}
                #medical_box_1853 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1853 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:21vw;border-style:none;border-color:#000;}#medical_box_3:hover .new_medical_icon{}#medical_box_1853.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-radius:1.5vw;border-style:none;border-top-width:.15vw;border-right-width:.15vw;border-bottom-width:.15vw;border-left-width:.15vw;border-color:#d2001a;}#medical_box_3:hover{}
                #medical_box_1853 
            
            #medical_box_1853 .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_1853 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1853:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1853 .mode1-size_1853{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            #medical_box_1853 .new_medical_box > div{
                width:100%;
            }
            #medical_box_1853 .mode2-size_1853{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1853 .mode3-size_1853{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1853 .mode4-size_1853{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1853 .mode5-size_1853{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1853 .mode6-size_1853{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1853 .mode7-size_1853{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            
            #medical_box_1853 .mode7-size_1853 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1853 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1853 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1853{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            
            .custom1_1853:hover{
                color:;
                
            }
            .custom2_1853{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1853:hover{
                color:;
            }
            #medical_box_1853 .mode-btn1_1853{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1853 .mode-btn1_1853 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1853 .mode-btn2_1853{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
                
            }
            #medical_box_1853 .mode-btn2_1853 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1853 .div-btn-title_main_1853{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:1rem 0;
            }
             
           
        
                #medical_box_1853 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1853 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1852 .new_medical_icon{
                background-image:url("https://shapoorsangin.ir/files/tarahi/1675342834_6.png");
            }
            #medical_box_1852 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1852 .background-img{
                border-radius:1.5vw;
            }

        
            #medical_box_1852 .new_medical_icon{
                
            }
        #medical_box_1852 .new_medical_title{color:#fff;font-weight:500;font-size:4vw;text-align:center;margin-top:1vw;line-height:7vw;}#medical_box_2:hover .new_medical_title{}
                #medical_box_1852 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1852 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:21vw;border-style:none;border-color:#000;}#medical_box_2:hover .new_medical_icon{}#medical_box_1852.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-radius:1.5vw;border-style:none;border-top-width:.15vw;border-right-width:.15vw;border-bottom-width:.15vw;border-left-width:.15vw;border-color:#d2001a;}#medical_box_2:hover{}
                #medical_box_1852 
            
            #medical_box_1852 .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_1852 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1852:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1852 .mode1-size_1852{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            #medical_box_1852 .new_medical_box > div{
                width:100%;
            }
            #medical_box_1852 .mode2-size_1852{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1852 .mode3-size_1852{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1852 .mode4-size_1852{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1852 .mode5-size_1852{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1852 .mode6-size_1852{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1852 .mode7-size_1852{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            
            #medical_box_1852 .mode7-size_1852 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1852 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1852 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1852{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            
            .custom1_1852:hover{
                color:;
                
            }
            .custom2_1852{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1852:hover{
                color:;
            }
            #medical_box_1852 .mode-btn1_1852{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1852 .mode-btn1_1852 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1852 .mode-btn2_1852{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
                
            }
            #medical_box_1852 .mode-btn2_1852 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1852 .div-btn-title_main_1852{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:1rem 0;
            }
             
           
        
                #medical_box_1852 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1852 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
                #module_new_medical_710 .new_medical_title_main h2{
                    font-weight:bold!important;
                }
            
                #module_new_medical_710 .new_medical_title_main h2{
                    font-size:4vw!important;
                }
            #module_new_medical_710 .new_medical_title_main{color:#998555;font-weight:bold;font-size:4vw;justify-content:center;text-align:center;margin-top:3vw;}.module[data-id_page='1']:hover .new_medical_title_main{}#module_new_medical_710 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:12vw;padding-bottom:8vw;padding-right:8vw;padding-left:8vw;border-style:none;}.module[data-id_page='1']:hover .new_medical_box_main{} 
                #module_new_medical_710 .swiper-pagination{
                    left: 50%;
                    transform: translateX(-50%);
                    white-space: nowrap;
                    height: fit-content;
                    position: absolute;
                    bottom: 0;
                }
                #module_new_medical_710 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
                #module_new_medical_710 .new_medical_module{
                    width:40vw;
                    position:relative;
                    overflow:hidden;
                    margin-left:4vw;
                    margin-bottom:4vw;
                }
                #module_new_medical_710 .new_medical_module:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_710 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_710 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_710 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                
            
             
            #module_new_medical_710 .read-less {
                display: none;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_710{
                overflow:hidden;
                min-width:100vw;
            }
            #module_new_medical_710 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_710 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_710 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_medical_710 .new_medical_box{
                margin-right:auto;
                margin-left:auto;
            }
            .new_medical_description{
                overflow:hidden;
            }
            #module_new_medical_710 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_710 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_710 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_710 .bottom_layer_diagonal{
                z-index:10 !important;
            }
            
        .module[data-id_page='2']{;background-color:#232148;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-style:none;}.module[data-id_page='2']:hover{;}.module[data-id_page='2']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='2'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='2'] 
            
            .module[data-id_page='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;
        
            }

            .module[data-id_page='2'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='2']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_2 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            .#module_new_medical_2 .content_str{
				width:100%;
			}
            #module_new_medical_2 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_2 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_2 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_2 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_2 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_2 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_2 .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_2 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_2 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_2 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_2 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_2 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
             
           
        
            #module_new_medical_2 a{
                color:#00AFEF!important;
            }
            #module_new_medical_2 a:hover{
                color:#00AFEF!important;
            }
        
            #medical_box_8 .new_medical_icon{
                background-image:url("https://shapoorsangin.ir/files/");
            }
            #medical_box_8 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_8 .background-img{
                border-radius:1.5vw;
            }

        #medical_box_8 .new_medical_button{color:#ffffff;background-color:#998555;font-weight:500;font-size:4vw;width:40vw;height:14vw;line-height:14vw;text-align:center;margin-top:4vw;border-radius:1.5vw;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_8 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}#medical_box_8 .new_medical_title{color:#998555;font-weight:bold;font-size:5.5vw;text-align:right;line-height:10vw;}#medical_box_8:hover .new_medical_title{}
                #medical_box_8 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_8 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_8:hover .new_medical_icon{}#medical_box_8.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;padding-top:8vw;padding-right:8vw;padding-bottom:8vw;padding-left:8vw;border-radius:1.5vw;border-style:none;}#medical_box_8:hover{}#medical_box_8 .new_medical_description{color:#232148;font-weight:300;font-size:4vw;line-height:8vw;text-align:right;padding-top:4vw;border-style:solid;border-color:#555;}#medical_box_8:hover .new_medical_description{}
                #medical_box_8:hover .background-img {
                    filter:none;
                }
            
                #medical_box_8 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_8 
            
            #medical_box_8 .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_8 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_8:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_8.new_medical_module{
                    background-image:url("https://shapoorsangin.ir/files/tarahi/1675343816_8.png");
                }
            
                #medical_box_8:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_8 .mode1-size_8{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            #medical_box_8 .new_medical_box > div{
                width:100%;
            }
            #medical_box_8 .mode2-size_8{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_8 .mode3-size_8{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_8 .mode4-size_8{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_8 .mode5-size_8{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_8 .mode6-size_8{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_8 .mode7-size_8{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            
            #medical_box_8 .mode7-size_8 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_8 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_8 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_8{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            
            .custom1_8:hover{
                color:;
                
            }
            .custom2_8{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_8:hover{
                color:;
            }
            #medical_box_8 .mode-btn1_8{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_8 .mode-btn1_8 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_8 .mode-btn2_8{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
                
            }
            #medical_box_8 .mode-btn2_8 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_8 .div-btn-title_main_8{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:1rem 0;
            }
             
           
        
                #medical_box_8 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_8 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_2 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:16vw;padding-bottom:8vw;padding-right:4vw;padding-left:4vw;border-style:none;}.module[data-id_page='2']:hover .new_medical_box_main{} 
                #module_new_medical_2 .swiper-pagination{
                    left: 50%;
                    transform: translateX(-50%);
                    white-space: nowrap;
                    height: fit-content;
                    position: absolute;
                    bottom: 0;
                }
                #module_new_medical_2 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
                #module_new_medical_2 .new_medical_module{
                    width:92vw;
                    position:relative;
                    overflow:hidden;
                    margin-left:vw;
                    margin-bottom:vw;
                }
                #module_new_medical_2 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_2 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_2 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_2 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                
            
             
            #module_new_medical_2 .read-less {
                display: none;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_2{
                overflow:hidden;
                min-width:100vw;
            }
            #module_new_medical_2 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_2 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_2 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_medical_2 .new_medical_box{
                margin-right:auto;
                margin-left:auto;
            }
            .new_medical_description{
                overflow:hidden;
            }
            #module_new_medical_2 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_2 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_2 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_2 .bottom_layer_diagonal{
                z-index:10 !important;
            }
            
        .module[data-id_page='1778']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1778'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1778'] 
            
            .module[data-id_page='1778'] .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='1778'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1778']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        .module[data-id_page='1777']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1777'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1777'] 
            
            .module[data-id_page='1777'] .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='1777'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1777']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layout_box_198.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:1;grid-row-end:2;padding-top:50vw;padding-right:50vw;padding-bottom:50vw;padding-left:50vw;border-radius:10vw;border-style:none;}#layout_box_198:hover{}
                #layout_box_198 .new_layout_icon{
                    background-image:url("https://shapoorsangin.ir/files/ax/backlink/1688752947_gital_marketing.jpg");
                }
            #layout_box_198 .new_layout_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#layout_box_25:hover .new_layout_icon{}
                #layout_box_198:hover .background-img {
                    filter:none;
                }
            
                #layout_box_198 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://shapoorsangin.ir/files/002/11/1752405650_poster nahhayi.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_198 .new_layout_layer{}#layout_box_198:hover .new_layout_layer{}
            
            #layout_box_198 .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_198 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_198:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_198 .new_layout_box{
                    visibility:visible;
                }
            #module_new_layout_51 .new_layout_box_main{display:grid;height:92vw;grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);column-gap:4vw;row-gap:4vw;visibility:visible;margin-top:16vw;margin-bottom:16vw;padding-right:4vw;padding-left:4vw;border-style:none;}.module[data-id_page='9375']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_51{
                overflow:hidden;
                z-index:15;
            }
            #module_new_layout_51 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_51 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_51 .new_layout_box{
                height:100%
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_51 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
            h1,h2,h3,h4,h5,h6{font-weight:unset!important;} 
        
            #module_new_medical_7 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            .#module_new_medical_7 .content_str{
				width:100%;
			}
            #module_new_medical_7 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_7 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_7 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_7 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_7 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_7 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_7 .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_7 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_7 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_7 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_7 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_7 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
             
           
        
            #module_new_medical_7 a{
                color:#00AFEF!important;
            }
            #module_new_medical_7 a:hover{
                color:#00AFEF!important;
            }
        
            #medical_box_19 .new_medical_icon{
                background-image:url("https://shapoorsangin.ir/files/");
            }
            #medical_box_19 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_19 .background-img{
                border-radius:1.5vw;
            }

        #medical_box_19 .new_medical_button{color:#f5f5f5;background-color:#575756;font-weight:500;font-size:4vw;width:40vw;height:14vw;line-height:14vw;text-align:center;margin-top:4vw;border-radius:1.5vw;border-style:none;box-shadow:0px 0px 0px 0px ;}#medical_box_19 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}#medical_box_19 .new_medical_title{color:#575756;font-weight:bold;font-size:5.5vw;text-align:right;line-height:10vw;}#medical_box_19:hover .new_medical_title{}
                #medical_box_19 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_19 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_8:hover .new_medical_icon{}#medical_box_19.new_medical_module{background-color:#f5f5f5;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;padding-top:8vw;padding-right:8vw;padding-bottom:8vw;padding-left:8vw;border-radius:1.5vw;border-style:none;}#medical_box_19:hover{}#medical_box_19 .new_medical_description{color:#575756;font-weight:300;font-size:4vw;line-height:8vw;text-align:right;padding-top:4vw;border-style:solid;border-color:#555;}#medical_box_19:hover .new_medical_description{}
                #medical_box_19 
            
            #medical_box_19 .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_19 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_19:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_19 .mode1-size_19{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            #medical_box_19 .new_medical_box > div{
                width:100%;
            }
            #medical_box_19 .mode2-size_19{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_19 .mode3-size_19{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_19 .mode4-size_19{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_19 .mode5-size_19{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_19 .mode6-size_19{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_19 .mode7-size_19{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            
            #medical_box_19 .mode7-size_19 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_19 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_19 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_19{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            
            .custom1_19:hover{
                color:;
                
            }
            .custom2_19{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_19:hover{
                color:;
            }
            #medical_box_19 .mode-btn1_19{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_19 .mode-btn1_19 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_19 .mode-btn2_19{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
                
            }
            #medical_box_19 .mode-btn2_19 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_19 .div-btn-title_main_19{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:1rem 0;
            }
             
           
        
                #medical_box_19 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_19 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_7 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:8vw;padding-bottom:8vw;padding-right:4vw;padding-left:4vw;border-style:none;}.module[data-id_page='7']:hover .new_medical_box_main{} 
                #module_new_medical_7 .swiper-pagination{
                    left: 50%;
                    transform: translateX(-50%);
                    white-space: nowrap;
                    height: fit-content;
                    position: absolute;
                    bottom: 0;
                }
                #module_new_medical_7 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
                #module_new_medical_7 .new_medical_module{
                    width:92vw;
                    position:relative;
                    overflow:hidden;
                    margin-left:vw;
                    margin-bottom:vw;
                }
                #module_new_medical_7 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_7 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_7 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_7 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                
            
             
            #module_new_medical_7 .read-less {
                display: none;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_7{
                overflow:hidden;
                min-width:100vw;
            }
            #module_new_medical_7 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_7 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_7 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_medical_7 .new_medical_box{
                margin-right:auto;
                margin-left:auto;
            }
            .new_medical_description{
                overflow:hidden;
            }
            #module_new_medical_7 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_7 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_7 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_7 .bottom_layer_diagonal{
                z-index:10 !important;
            }
            
        .module[data-id_page='9']{;background-color:#232148;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-style:none;}.module[data-id_page='9']:hover{;}.module[data-id_page='9']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='9'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='9'] 
            
            .module[data-id_page='9'] .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='9'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='9']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_9 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            .#module_new_medical_9 .content_str{
				width:100%;
			}
            #module_new_medical_9 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_9 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_9 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_9 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_9 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_9 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_9 .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_9 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_9 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_9 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_9 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_9 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
             
           
        
            #module_new_medical_9 a{
                color:#00AFEF!important;
            }
            #module_new_medical_9 a:hover{
                color:#00AFEF!important;
            }
        #module_new_medical_9 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:16vw;padding-bottom:16vw;padding-right:4vw;padding-left:4vw;border-style:none;}.module[data-id_page='9']:hover .new_medical_box_main{} 
                #module_new_medical_9 .swiper-pagination{
                    left: 50%;
                    transform: translateX(-50%);
                    white-space: nowrap;
                    height: fit-content;
                    position: absolute;
                    bottom: 0;
                }
                #module_new_medical_9 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
                #module_new_medical_9 .new_medical_module{
                    width:92vw;
                    position:relative;
                    overflow:hidden;
                    margin-left:vw;
                    margin-bottom:vw;
                }
                #module_new_medical_9 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_9 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_9 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_9 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                
            
             
            #module_new_medical_9 .read-less {
                display: none;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_9{
                overflow:hidden;
                min-width:100vw;
            }
            #module_new_medical_9 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_9 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_9 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_medical_9 .new_medical_box{
                margin-right:auto;
                margin-left:auto;
            }
            .new_medical_description{
                overflow:hidden;
            }
            #module_new_medical_9 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_9 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_9 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_9 .bottom_layer_diagonal{
                z-index:10 !important;
            }
            
        
                .color_blue{color:#00AFEF;}
                .s_title_main{
                    width:100vw;
                    text-align:center;
                }
                #description_1{
                    overflow: hidden;
                }
                 #description_1 .s_h_title{
                    text-align: center;
                    padding: 0 10px;
                    color: ;
                    background-color: ;
                    line-height: 0px;
                    font-size:6vw;
                    margin: auto;
                }
                .s_module_content{
                    width: 100vw;
                    padding:3vw;
                    margin: auto;
                }
                .pborder{
                    border-right-width:4px;
                    border-right-style: solid;
                    border-right-color: ;
                    padding-right:25px;
                    font-weight: 600;
                    text-align: justify;
                }
                .pborder_title{
                    line-height: 1.42857143;
                    padding-right: 25px;
                    font-size:1em;
                }
                .p_text_pic{
                    /*width:100vw;*/
                    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;
                }
                .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:97vw;
                    display: inline-block;
                    vertical-align: middle;
                    padding: 3vw;
                    /*background-color: #f4f4f4;*/
                    text-align: center;
                }
                .pl_text_pic2{
                    width: 100%;
                    display: block;
                    height: 60vw;
                    vertical-align: top;
                    background-color: #f4f4f4;
                    text-align: center;
                }
                .pr_text_pic{
                    width: 93vw;
                    display: table-cell;
                    vertical-align: middle;
                    position: relative;
                    padding: 3vw;
                    text-align: justify;
                    overflow: hidden;
                }
                .pr_text_pic2{
                    width: 100%;
                    display: block;
                    vertical-align: middle;
                    position: relative;
                    padding: 3vw 5vw;
                    overflow: hidden;
                    text-align: justify;
                }
                .gerd{
                    border-radius: 50%;
                }
    
    
            
                 .imgtext{
                    width:70vw;
                    border-radius:50%;
                 }
                 .imgtext2{
                    width:100%;
                 }
                 .imgdi{width:100%;height:100%;}
        
                    #description_1 .font_title_box_0{
                        font-size: 5vw;
                        line-height:8vw;
                        text-align:start;
                    }
                
                    #description_1 .container_box_1{
                        background-color:transparent;
                        border-width:;;
                        border-style:none;
                        border-color:black;
                        border-radius:0px ;;
                    }
                
                .sidebar_box_1 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_1  > p:first-child{
                    margin-top: 5px;
                    padding: 0 10px;
                    overflow: hidden;
                }
                .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;
    
                }
    
            
                .hdig{
                    font-weight: bold;
                }
                .video_tag{width:100%;}
                .not_resizeable_pic{width:100%;}
                .pdig{
                    line-height: 2em;
                    margin: 4vw auto;
                }
                .font-text-des_1{ 
                    font-size:15px!important;
                }
                .read-more-button_1{ 
                    font-size:15px!important;
                }
                .read-less-button_1{ 
                    font-size:15px!important;
                }
                
                .w_6_1{
                    width:100%;
                    display:inline-block;
                    vertical-align: top;
                    padding: 1vw;
                }
                .s_desc_title{
                   font-size: 1.2em;
                   font-weight: 600;
                }
                .s_desc_img{width:100%;}
                .s_desc_txt,.s_desc_ul{ padding: 5vw; text-align: justify;}
            #description_1{
                    background-color:#232148;
                }#description_1{
                        font-size:5vw;
                }
                #description_1 .color_tem1{
                            color:;
                        }#description_1 .color_tem2{
                            color:;
                                }#description_1 .color_tem1_bg{/*range back box  */
            background-color:;
        }#description_1 .color_tem2_bg{/*range back box if gradient*/
            background-color:;
        }#description_1 .color_title{
                            color:;
                                }#description_1 .color_text{
                            color:;
                                }#description_1 .color_link{
                            color:;
                                }#description_1 .color_link:hover{
                            color:;
                                }#description_1 .color_b_text{
                            color:;
                                }#description_1 .color_b_bg{
                            background-color:;
                                }#description_1 .color_b_h_text:hover{
                            color:;
                                }#description_1 .color_b_h_bg:hover{
                            background-color:;
                                }#description_1 .color_box_text{
                            color:;
                                }#description_1 .color_box_title{
                            color:;
                                }#description_1.color_1200_bg , #description_1 .color_1200_bg{
            background-color:;
        }.module[data-id_page='11']{;background-color:#232148;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-style:none;}.module[data-id_page='11']:hover{;}.module[data-id_page='11']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='11'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='11'] 
            
            .module[data-id_page='11'] .new_admin_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            .module[data-id_page='11'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='11']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_10 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            .#module_new_medical_10 .content_str{
				width:100%;
			}
            #module_new_medical_10 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_10 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_10 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_10 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_10 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_10 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_10 .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_10 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_10 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_10 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_10 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_10 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
             
           
        
            #module_new_medical_10 a{
                color:#00AFEF!important;
            }
            #module_new_medical_10 a:hover{
                color:#00AFEF!important;
            }
        
            #medical_box_22 .new_medical_icon{
                background-image:url("https://shapoorsangin.ir/files/");
            }
            #medical_box_22 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_22 .background-img{
                border-radius:;
            }

        #medical_box_22 .new_medical_button{color:#232148;background-color:#00adba;font-weight:500;font-size:4vw;width:56vw;height:14vw;line-height:14vw;text-align:center;border-radius:1.5vw;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_22 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #medical_box_22 
            
            #medical_box_22 .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_22 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_22:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_22 .mode1-size_22{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            #medical_box_22 .new_medical_box > div{
                width:100%;
            }
            #medical_box_22 .mode2-size_22{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_22 .mode3-size_22{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_22 .mode4-size_22{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_22 .mode5-size_22{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_22 .mode6-size_22{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_22 .mode7-size_22{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            
            #medical_box_22 .mode7-size_22 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_22 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_22 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_22{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            
            .custom1_22:hover{
                color:;
                
            }
            .custom2_22{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_22:hover{
                color:;
            }
            #medical_box_22 .mode-btn1_22{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_22 .mode-btn1_22 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_22 .mode-btn2_22{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
                
            }
            #medical_box_22 .mode-btn2_22 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_22 .div-btn-title_main_22{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:1rem 0;
            }
             
           
        
                #medical_box_22 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_22 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_10 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-bottom:8vw;padding-right:4vw;padding-left:4vw;border-style:none;}.module[data-id_page='4']:hover .new_medical_box_main{} 
                #module_new_medical_10 .swiper-pagination{
                    left: 50%;
                    transform: translateX(-50%);
                    white-space: nowrap;
                    height: fit-content;
                    position: absolute;
                    bottom: 0;
                }
                #module_new_medical_10 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
                #module_new_medical_10 .new_medical_module{
                    width:92vw;
                    position:relative;
                    overflow:hidden;
                    margin-left:vw;
                    margin-bottom:vw;
                }
                #module_new_medical_10 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_10 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_10 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_10 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                
            
             
            #module_new_medical_10 .read-less {
                display: none;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_10{
                overflow:hidden;
                min-width:100vw;
            }
            #module_new_medical_10 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_10 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_10 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_medical_10 .new_medical_box{
                margin-right:auto;
                margin-left:auto;
            }
            .new_medical_description{
                overflow:hidden;
            }
            #module_new_medical_10 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_10 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_10 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_10 .bottom_layer_diagonal{
                z-index:10 !important;
            }
            
        
            
            .popup_chart {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 85%;
                height: auto;
                background-color: white;
                border-radius: 5px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
                display: none; 
                z-index: 1000;
            }
    
            .popup_chart_header {
                height: 30px;
                background-color: #ccc;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                border-top-left-radius: 5px;
                border-top-right-radius: 5px;
                padding: 5px;
                text-align: right;
            }
    
            .close_popup_chart {
                width: 20px;
                height: 20px;
                background-color: #f44336;
                color: white;
                border: none;
                border-radius: 50%;
                cursor: pointer;
                font-size: 14px;
                font-weight: bold;
                display: flex;
                justify-content: center;
                align-items: center;
            }
    
            .close_popup_chart:hover {
                background-color: #d32f2f;
            }
    
            .popup_chart_content {
                padding: 10px;
                height: calc(100% - 20px);
                overflow-y: auto;
            }
           
        .dno{display:none!important;}
                .public-header{
                    position: relative;
                    width: 100%;
                    top: 0;
                    left: 0;
                    z-index: 100;
                }
                .top-bar .menu-item{
                    
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                }
                .div-logo-and-menu{
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    width: 100%;
                }
                .top-bar .logo-item{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    height: 10vh;
                }
                .top-bar .logo-item{
                    width: 100%;
                    height: 10vh;
                    max-width:100%;
                    max-height: 10vh;
                    /*padding: 0 5px;*/
                }
                .top-bar .logo-item a{
                    width: 100%;
                    height:100%;
                }
            
            .width-mode2-item{
                width: 55%;
                display: flex;
                justify-content: flex-end;
                align-items: center;
            }
            .flex-align-item-mode2{
                flex: 0 0 16%!important;
                justify-content:flex-end!important;
                margin:0 0.2rem!important;
            }
            
        
             
            /*---------------------------------Public----------------------------------*/

            .fixed-replace{
                width: 100%;
                position: absolute;
                top: 0;
                height: calc(10vh + 0vh);
            }
            .header-container{
                background: #232148;
            }
            .d-none{
                display: none !important;
            }
            .adv-banner-container{
                width: 100%;
                height: 0vh;
            }
            .adv-banner-container .adv-item{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .back-btn{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .absolute-container{
                background-color: #232148;
                
                        border-radius: 7px;
                        position: fixed;
                        top: 50%;
                        left: 2%;
                        transform: translateY(-50%);
                        padding: 10px;
                        z-index: 4900;
            
                
            }
            .social-absolute{
                
                        position: relative;
                        padding: 10px 0;
                        border-bottom: 1px solid rgba(0, 0, 0, .1);
                        box-sizing: content-box;
            
                width: 24px;
                height: 24px;
            }
            .social-absolute:last-child {
                border-bottom: none !important;
                border-left: none !important;
            }
            .social-absolute img{
                width: 24px;
                height: 24px;
            }
        
                 
                .header-layout{
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: flex-start;
                    width: 100%;
                    height: 100%;
                }
                .top-bar{
                    width: 100vw;
                    /*height: 8vh;*/
                    display: flex;
                    flex-direction: row;
                    justify-content:flex-end;
                    padding: 4vw;
                    align-items: center;
                    border-bottom: 1px solid #aaa;
                    -moz-transition:all 0.8s; /* Firefox 4 */
                    -webkit-transition:all 0.8s; /* Safari and Chrome */
                    -o-transition:all 0.8s; /* Opera */
                    transition:all 0.8s;
                    /*top: -8vh;*/
                    z-index: 4999;
                }
                .top-bar-mode1{
                    justify-content:space-between!important;
                }
                .top-bar-mode2{
                    justify-content:space-between!important;
                }
                .top-bar-item{
                    margin:0 0.8rem;
                }
                
            
             
            .sticky{
                position: fixed;
                width: 100%;
                top: 0;
                left: 0;
                z-index: 4999;
                animation: smoothScroll 1s forwards;
            }
            @keyframes smoothScroll {
                0% {
                    transform: translateY(-8vh);
                }
                100% {
                    transform: translateY(0);
                }
            }
            .top-bar-item{
                width: 24px;
                height: 24px;
            }
            .top-bar-item svg{
                width: 24px;
                height: 24px;
                fill: #fff !important;
            }
            .top-bar-item img{
                width: 30px;
                height: 30px;
                fill: #fff !important;
            }
            .top-bar-item img{
                width: 30px;
                height: 30px;
                fill: #fff !important;
                object-fit:contain;
            }
            .back-slider{
                background-color: rgba(0, 0, 0, .6);
                width: 100vw;
                height: 100vh;
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                z-index: 4998;
                transition: .7s;
            }
            .content-slider-right,
            .content-slider-top-right,
            .content-slider-top-left,
            .content-slider-left,
            .content-slider-right-social{
                position: fixed;
                overflow: hidden;
                background-color: #fff;
                z-index: 4999;
                transition: .7s;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
            }
        
                 
                .content-slider-right,
                .content-slider-right-social{
                    top: 0;
                    right: -100vw;
                    width: 100vw;
                    min-height: 100vh;
                    padding: 0 25vw 0 0;
                    background: #232148;
                }
                .content-slider-left{
                    top: 0;
                    left: -100vw;
                    width: 100vw;
                    min-height: 100vh;
                    background: #232148;
                    text-align: center;
                }
                .open-right{
                    right: -25vw !important;
                }
                .open-left{
                    left: -72vw !important;
                }
                .arrow-menu-container{
                    transform: rotate(180deg);
                }
                .nav-container .navbar.navbar-sub.open-navbar-sub{
                    right:-25vw;
                    opacity: 1;
                }
                .nav-container .navbar.navbar-sub{
                    position: fixed;
                    top: 8vh;
                    right:-100vw;
                    width: 100vw;
                    height: calc(100vh - 8vh);
                    background: #232148;
                    padding: 0 25vw 0 0;
                    overflow: hidden;
                    z-index: 4999;
                    transition: .8s;
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-start;
                    align-items: flex-start;
                    opacity: 0;
                    overflow-y: auto;
                }
                .close-panel{
                    direction: ltr;
                    flex : 0 0 8vh;
                    width: 100%;
                    padding: 0 25px;
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    border-bottom: 1px solid #ddd;
                }
                .content-slider-left .close-panel{
                    direction: rtl !important;
                    padding: 0 50px;
                }
                .close-panel .back-btn{
                    transform: rotateY(180deg);
                }
                
            
             
            .content-slider-top-right{
                top: -100vh;
                right: 0;
                width: 100vw;
                min-height: max-content;
            }
            .content-slider-top-left{
                top: -100vh;
                left: 0;
                width: 100vw;
                height: 80vh;
            }
            .open-top-right{
                top: 0 !important;
            }
            .open-top-left{
                top: 0 !important;
            }
            .menu-section,
            .search-section,
            .cart-section,
            .login-section{
                width: 100%;
                height: 100%;
            }
            
            .close-btn{
                width: 20px;
                height: 20px;
            }
            .close-panel svg{
                width: 20px;
                height: 20px;
                fill: #fff !important;
            }
            /*----------------------------------Menu-----------------------------------*/
            .menu-section{
                width: 100%;
                height: calc(100vh - 20vh);
                overflow-y: auto;
                background: #232148;
            }
            .nav-container{
                width: 100%;
                height: 100%;
            }
            .nav-container > .navbar{
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
            }
            .nav-container .navbar .nav-list{
                width: 100%;
                padding: 15px 25px;
                position: relative;
                background: #232148;
                list-style: none;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-content: center;
                box-sizing: border-box;
                border-bottom: 1px solid #ddd
            }
            .nav-container .navbar .nav-list.active{
                background-color: ;
            }
            .nav-container .navbar .nav-list.active a,
            .nav-container .navbar .nav-list.active span{
                color: #998555;
            }
            .nav-container .navbar .nav-list .icon-title-part{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .nav-container .navbar .nav-list .overflow-menu{
                justify-content: center !important;
            }
            .nav-container .navbar .nav-list:hover{
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list img{
                width: 32px;
                height: 32px;
                margin: 0 5px;
            }
            .nav-container .navbar .nav-list a,
            .nav-container .navbar .nav-list span{
                text-decoration: none;
                font-size: 1rem;
                color: #fff;
            }
            .arrow-icon-menu{
                width: 8px;
                height: 8px;
            }
            .arrow-icon-menu{
                transform: rotate(0deg);
            }
            .nav-container .navbar .nav-list.base-level svg,
            .nav-container .navbar .nav-list .overflow-menu svg{
                fill: #fff;
            }
            .sub-menu-container{
                position: absolute;
                min-width: 150px;
                color: #fff;
                top: 32px;
                right: 0;
                z-index: 50;
               /* display: none;*/
            } 
            .nav-container .navbar.navbar-sub .nav-list img{
                width: vw;
                height: vw;
            }
            .nav-container .navbar.navbar-sub .nav-list a,
            .nav-container .navbar.navbar-sub .nav-list span{
                color: #fff;
                font-size: 1rem;
            }
            .nav-list.with-sub-menu:hover .sub-menu-container{
                display: block;
            }
            .nav-container .navbar.navbar-sub .nav-list .arrow-menu-container svg{
                fill: #fff;
            }
            .active a{
                color: #998555;
                font-weight: bold;
            }
           /* .nav-container .navbar.navbar-sub .nav-list{
                padding: 15px 35px 15px 25px;
            }
            .nav-container .navbar.navbar-sub .nav-list.category{
                padding-right: 25px;
            }*/
            .nav-container .navbar.navbar-sub .nav-list.category a,
            .nav-container .navbar.navbar-sub .nav-list.category span{
                color: #fff;
                font-size: calc(1rem + 0.2rem);
                font-weight: bold;
            }
            /*----------------------------------Search----------------------------------*/
            .search-container {
                 display: block;
                 width: 100%;
                 height: 100%;
                 position: relative;
                 padding: 2vh 8vw 1vh 8vw;
            }
            .search-btn-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .search-command,
            .close-search-btn{
                 color: #000;
                 width: 50px;
                 height: 50px;
                 outline: none;
                 border: 1px solid #aaa;
                 border-radius: 50%;
                 /*background: #ddd;*/
                 cursor: pointer;
                 display: flex;
                 flex-direction: row;
                 justify-content: center;
                 align-items: center;
                 margin: 25px 50px;
            }
            .search-command > svg,
            .close-search-btn > svg {
                fill: #aaa;
                width: 20px;
                height: 20px;
            }
            .cls-pls::placeholder{
                color: ;
            }
            .search-input {
                 border-bottom: 1px solid #aaa;
                 outline: none;
                 padding: 10px 18px;
                 width: 100%;                
                 height: 45px;
                 color: #000;
                 font-size: 14px;
                 font-weight: normal;
            }
           /*-----------------------------------Cart-------------------------------------*/
            .cart-section{
                height: 72vh;
                display: flex;
                flex-direction:column;
                position: relative;
            }
            #product_load{
                flex: 1 0;
                overflow-x: hidden;
                overflow-y: auto;
            }
            #product_load .cart-empty{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
            }
            #product_load .cart-empty span{
                font-size: 20px;
                font-weight: bold;
                color: #fff;
                padding: 10px 40px;
                background: #fb3640;
                border-radius: 10px;
            }
            .finalize-purchase-container{
                width: 100%;
                height: 100px;
                flex:0 0 50px;
                max-height:50px;
                /*position: absolute;
                bottom: 0;
                right: 0;
                left: 0;*/
                display: flex;
            }
            .finalize-purchase-container .finalize-purchase-btn{
                width: 100%;
                height: 100%;
                border: none;
                outline: none;
                background: #29bb89;
                color: #fff;
                font-weight: bold;
                cursor: pointer;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
             
            .top-bar-item.basket-item{
                position: relative;
            }
            .top-bar-item.basket-item::after{
                content: attr(data-count);
                width: 20px;
                height: 20px;
                display: block;
                background: #F50057;
                border-radius: 50%;
                line-height: 22px;
                font-size: 0.7rem;
                text-align: center;
                color: #fff;
                position: absolute;
            }
            .top-bar-item.basket-item.hidden::after{
                display: none !important;
            }
        
             
            #div_profile_picture .status-login{
                 width: 100%;
                 height: 100%;
                 color: #e84118;
                 outline: none;
                 border-radius: 3px;
                 background: #2c3e50;
                 display: flex;
                 flex-direction: row;
                 justify-content: center;
                 align-items: center;
                 cursor: pointer;
                 border: 0px  solid  ;
             }
             #div_profile_picture .status-login span{
                 color: #D3D3D3 !important;
                 font-size: 14px;
                 margin: 0 5px !important;
                 padding: 0 !important;
             }

             }#div_profile_picture .status-login:hover{
                 background: #3e5772;
             }
             #div_profile_picture .status-login:hover > span,
             #div_profile_picture .status-login:hover > svg{
                 color: #e84118 !important;
                 fill: #e84118 !important;
             }
             #div_profile_picture .active{
                 background: #fff;
             }
            /*-----------------------------------Login-------------------------------------*/
            #div_profile_picture{
                position: relative;
            }
            #div_profile_picture.open-user::after{
                background-color: #50F016;
            }
            
        
                 
                #profile_exit {
                    line-height: unset !important;
                    display: unset !important;
                    vertical-align: unset !important;
                    padding-right: unset !important;
                }
                #div_profile_picture::after{
                    content: "";
                    display: block;
                    position: absolute;
                    top: -4px;
                    width: 10px;
                    height: 10px;
                    border-radius: 50%;
                    background-color: #F01E1E;
                }
                #rlogin_uer_btn{
                    line-height: unset !important;
                    display: unset !important;
                    vertical-align: unset !important;
                    padding-right: unset !important;
                }
            
                 
                    #div_profile_picture::after{
                        right: 20px;
                    }
                
                 
                .logo-container{
                    width: 100vw;
                    height: 10vh;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                }
                .logo-container img{
                    display: block;
                    width: 45vw;
                    height: 10vh;
                    max-width: 45vw;
                    max-height: 10vh;
                    padding: 3vw  5vw;
                    object-fit: contain;
                }
        /*-----------------------------------Cart-------------------------------------*/        
                .top-bar-item.basket-item::after{
                    top: -8px;
                    left: 12px;
                }
            
             
        /*-----------------------------------Social Network-------------------------------------*/
            .social-network-section{
                width: 100%;
                height: calc(100vh - 8vh);
                overflow-y: auto;
                background: #232148;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
            }
            .social-sec,
            .info-sec{
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
            }
            .top-list{
                width: 100%;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: flex-start;
                position: relative;
                list-style: none;
                box-sizing: border-box; 
                border-bottom: 1px solid #ddd;
            }
            .top-list a{
                width: 100%;
                padding: 15px 25px;
                background: #232148;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: flex-start; 
            }
            .top-list a img{
                width: 32px;
                height: 32px;
                margin: 0 5px;
            }
            .top-list a span{
                line-height: 2;
                color:#fff;
            }
            .info-sec .top-nav-list,
            .info-sec .top-sub-nav .top-sub-list{
                width: 100%;
                padding: 15px 25px;
                position: relative;
                background: #232148;
                list-style: none;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-content: center;
                box-sizing: border-box;
                border-bottom: 1px solid #ddd
            }
            .top-nav-list .info-container span,
            .info-sec .top-sub-nav .top-sub-list .info-container span{
                text-decoration: none;
                font-size: 1rem;
                color: #fff;
            }
            .top-sub-nav{
                position: fixed;
                top: 8vh;
                width: 100vw;
                height: calc(100vh - 8vh);
                background: #232148;
                overflow: hidden;
                z-index: 4999;
                transition: .8s;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                opacity: 0;
            }
            .top-item .info-container img,
            .info-sec .top-sub-nav .top-sub-list .info-container img{
                width: 32px; 
                height: 32px;               
            }
            
             
                .top-sub-nav{
                    right:-100vw;
                    padding: 0 25vw 0 0;
                }
                .info-sec .top-sub-nav.open-navbar-sub{
                    right:-25vw;
                    opacity: 1;
                }
            
             
            .arrow-icon-menu{
                width: 8px;
                height: 8px;
            }
            .arrow-menu-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .arrow-menu-container.dir-arrow-right{
                transform: rotate(180deg);
            }
            .arrow-menu-container.dir-arrow-left{
                transform: rotate(0deg);
            }
             
            .lang-section{
                width: 100%;
                height: max-content;
            }
            .lang-list-container{
               
            }
            .lang-list{
                position: relative;
                width: 100%;
                height: max-content;
                padding: 0 25px;
                border-radius: 3px;
            }
            .lang-nav{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
            }
            .lang-nav .lang-li{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                list-style: none;
                width: max-content;
                margin: 5px 0;
                
            }
            .lang-nav .lang-li a{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .lang-nav .lang-li img{
                width: 25px;
                height: 25px;
                object-fit: cover;
                margin: 0 4px;
            }
            .lang-nav .lang-li span{
                text-transform: uppercase;
                line-height: 2.5;
                font-size: 14px;
                margin: 0 4px;
            }
            .lang-nav .lang-li a{
            }
            .lang-nav .lang-li span:hover{
                cursor: pointer;
            }
            .lang-nav .lang-li .lang-active{
                font-weight: bold;
            }
            .icon-item.lang-icon:hover .lang-list-container{
                
            }
        
             
            .backTop{
                display: flex !important;
            }
            #back_to_top{
                display: none;
                position: fixed;
                transition: 600ms;
                right: 16px;
                left: unset;
                bottom: 50px;
                z-index: 100;
                border-radius: %;
                border: 1px  solid  #000;
                padding: 15px;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: #777 ;
            }
            #back_to_top svg{
                width: 32px;
                height: 32px;
                fill: #fff ;
            }
             #back_to_top img{
                width: 32px;
                height: 32px;
                fill: #fff ;
            }
        #module_footer_section_8{
;
padding-top:10vw;
padding-right:5vw;
padding-bottom:10vw;
padding-left:5vw;
border-style:none;
}#module_footer_column_15{
;
width:100%;
justify-content:center;
border-style:none;
}#module_footer_row_40{
;
justify-content:center;
border-style:none;
}#module_footer_items_45{
;
cursor:default;
text-align:center;
line-height:9vw;
color:#fff;
font-weight:bold;
font-size:4.25vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_45:hover{
;
}#module_footer_row_41{
;
margin-top:3vw;
justify-content:center;
border-style:none;
}#module_footer_items_46{
;
cursor:default;
text-align:center;
line-height:7vw;
color:#fff;
font-weight:300;
font-size:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_46:hover{
;
}#module_footer_row_42{
;
margin-top:7vw;
justify-content:center;
border-style:none;
}#module_footer_row_43{
;
margin-top:3vw;
justify-content:center;
border-style:none;
}#module_footer_items_49{
;
cursor:default;
text-align:center;
width:9vw;
height:9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
border-top-width:.25vw;
border-right-width:.25vw;
border-bottom-width:.25vw;
border-left-width:.25vw;
border-color:#7d7e81;
margin-right:2vw;
padding-top:1.2vw;
padding-right:1.2vw;
padding-bottom:1.2vw;
padding-left:1.2vw;
}#module_footer_items_49:hover{
;
}#module_footer_items_50{
;
cursor:default;
text-align:center;
width:9vw;
height:9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
border-top-width:.25vw;
border-right-width:.25vw;
border-bottom-width:.25vw;
border-left-width:.25vw;
border-color:#7d7e81;
margin-right:2vw;
padding-top:1.2vw;
padding-right:1.2vw;
padding-bottom:1.2vw;
padding-left:1.2vw;
}#module_footer_items_50:hover{
;
}#module_footer_items_52{
;
cursor:default;
width:9vw;
height:9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
border-top-width:.25vw;
border-right-width:.25vw;
border-bottom-width:.25vw;
border-left-width:.25vw;
border-color:#7d7e81;
margin-right:2vw;
padding-top:1.2vw;
padding-right:1.2vw;
padding-bottom:1.2vw;
padding-left:1.2vw;
}#module_footer_items_52:hover{
;
}#module_footer_row_61{
;
justify-content:center;
border-style:none;
}#module_footer_row_44{
;
margin-top:7vw;
justify-content:center;
border-style:none;
}#module_footer_items_53{
;
cursor:default;
text-align:center;
line-height:9vw;
color:#fff;
font-weight:bold;
font-size:4.25vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_53:hover{
;
}#module_footer_row_45{
;
margin-top:3vw;
justify-content:center;
border-style:none;
}#module_footer_items_54{
;
cursor:default;
text-align:center;
line-height:7vw;
color:#fff;
font-weight:300;
font-size:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_54:hover{
;
}#module_footer_section_9{
;
background-color:#003a8c;
padding-top:3vw;
padding-bottom:3vw;
border-style:none;
}#module_footer_column_16{
;
width:100%;
justify-content:center;
border-style:none;
}#module_footer_row_46{
;
justify-content:center;
border-style:none;
}#module_footer_items_55{
;
cursor:default;
text-align:center;
color:#FFFFFF;
font-weight:300;
font-size:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_55:hover{
;
}#public_footer_main_4{;background-color:#232148;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-style:none;}#public_footer_main_4:hover{;}
                #public_footer_main_4{
                    position:relative;
                    margin-right:auto !important;
                    margin-left:auto !important;
                    overflow:hidden !important;
                }
                #public_footer_main_4 > div{
                    position:relative;
                    z-index:11;
                }
                
                #public_footer_main_4 
            
            #public_footer_main_4 .new_admin_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

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

            #msg_footer .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{
                background-color: #f8d7da;
                border: 1px solid #f5c6cb;
                color: #721c24;
            }

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

            #msg_footer .close_msg:hover{
                color: #000;
            }
            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;
                opacity: 0;
                visibility:hidden;
                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:3vw;
                margin:auto;
                transform:translateY(-80vw);
                -webkit-transition:transform .3s;-moz-transition:transform .3s;-ms-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s;
                text-align:center;
                border-radius:3vw;
                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:6vw;
                height:6vw;
                width:6vw;
                border-radius:50%;
                color:red;
                top:-3vw;
                right:-3vw;
                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:1.5vw;
                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);
              }
            }
        