/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
}
/**
 * The picker input element.
 */
.picker__input {
  cursor: default;
}
/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec;
}
/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  width: 100%;
}
/**
 * The holder is the base of the picker.
 */
.picker__holder {
  position: absolute;
  background: #fff;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
}
/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
.picker__frame {
  padding: 1px;
}
.picker__wrap {
  margin: -1px;
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
}/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em;
}
/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em;
}
/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em;
}
.picker__year {
  color: #999;
  font-size: .8em;
  font-style: italic;
}
/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}
/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em;
  }
}
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em;
  }
}
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000;
}
.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}
/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em;
}
@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
}
/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999;
  font-weight: 500;
  /* Increase the spacing a tad */
}
@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em;
  }
}
/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}
.picker__day--today {
  position: relative;
}
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent;
}
.picker__day--disabled:before {
  border-top-color: #aaa;
}
.picker__day--outfocus {
  color: #ddd;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__day--highlighted {
  border-color: #0089ec;
}
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #0089ec;
  color: #fff;
}
.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbb;
}
/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center;
}
.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #fff;
  background: #fff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}
.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}
.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none;
}
.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em;
}
.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent;
}
.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #e20;
}
.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777;
}
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}
.picker__button--today[disabled]:before {
  border-top-color: #aaa;
}

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

            }
            .price_dd .dd_top {
                background-color: #d3d3d3;
                padding: 10px 5px;
                width:343.9px;
                z-index: 99;
                box-sizing: border-box;
                text-align: center;
            }
            .price_dd .dd_top input{
                padding-left: 0;
                padding-right: 5px;
                margin-right: 3px;
                margin-left: 3px;
                width: 112px;
                font-size: 12px;
                border: 1px solid #bcc0c2;
                border-radius: 0;
                height: 34px;
            }
            .dropdown{
                position: absolute;
                top: 246px;
                right:65px;
                width: 343.9px;
                display:none;
            }
            .price_groups ul {
                background-color: white;
                border: 1px solid #9B9B9B;
                font-size: 12px;
                max-height: 250px;
                width: 100%;
                overflow-y: auto;
                z-index: 1;
                box-sizing: border-box;
                display:inline-block;
                width: 49.5%;
                height: 195px;
                overflow-x: hidden;
                box-sizing: border-box;
            }
            .price_groups ul li{
                padding: 0px 15px 0 0;
                cursor: pointer;
                height: 34px;
                line-height: 34px;
            }
            .liSelected{background: #eeeeee;}
            .price_groups ul li:hover{background: #eeeeee;}
            .min_pr{right:0;}
            .max_pr{right:auto;left:0;}
            .unclickable{pointer-events: none;}


        
            .filter_slides.form{
                overflow-y:scroll;
            }
            ::-webkit-scrollbar {
                width: 10px;
            }
            ::-webkit-scrollbar-track {
                background: #f1f1f1;
            }
            ::-webkit-scrollbar-thumb {
                background: #777;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #555;
            }
            .error_label{
                bottom: -32px;
                font-size: 11px;
                font-weight: 400;
                position: absolute;
                left: 0;
                z-index: 2;
             }
             .margin_b0{margin-bottom:0!important;}
             .dropdown_se{
                height: auto;
                width: 100%;
                background: #fff;
                border: 1px solid rgba(34,36,38,.15);
                border-radius: .28571429rem;
                box-shadow: 0 0 0 0 transparent inset;
                padding: .62em 1em;
                color:  #888;
                -webkit-transition: color .1s ease,border-color .1s ease;
                transition: color .1s ease,border-color .1s ease;
             }
             .dropdown_se>option{
                text-align: right;
                font-size: 13px;
                border-top: 1px solid #fafafa;
                color: #888;
             }
            .field_error{
                white-space: normal;
                background: #fff!important;
                border: 1px solid #e0b4b4!important;
                color: #9f3a38!important;
                padding: 0 10px;
            }
            .reg_btn{
                background-color: #21ba45;
                color: #fff;
                padding: 12px 35px;
                font-size: 16px;
                font-weight: bold;
                border-radius: 4px;
                cursor:pointer;
            }
            .btn_c{padding-left:35px;padding-top: 10px;}
            .img_placeholder{
                padding: 0;
                margin: 0;
                list-style: none;
                width:715px;
            }
            .myImg{
                width:173px;
                height:170px;
                object-fit: cover;
            }
            .img-input-file{
                position: absolute;
                right: 0px;
                top: 0px;
                font-family: Arial;
                font-size: 118px;
                margin: 0px;
                padding: 0px;
                cursor: pointer;
                opacity: 0;
                height: 100%;
            }
            .img_placeholder>li{
                display:inline-block;
                /*width:176px;
                padding: 7px 10px;*/
                text-align: center;
              /*  background: #88d13f;*/
                color: #FFF;
                border-radius: 2px;
                /*border: 1px solid #88d13f;*/
                box-shadow: 0 1px 1px rgba(255,255,255,.37) inset, 1px 0 1px rgba(255,255,255,.07) inset, 0 1px 0 rgba(0,0,0,.36), 0 -2px 12px rgba(0,0,0,.08) inset;
                position: relative;
                overflow: hidden;
                direction: ltr;
            }
           .rBtn{
                color: #fff;
                background-color: #947fb8;
                padding: 10px 20px;
                border: none;
                font-size: 18px;
                border-radius: 5px;
                transition: all .1s ease;
                box-shadow: transparent 0 0 0;

           }
           .rBtn:hover{background-color:#776695;cursor: pointer;box-shadow: -1px 2px 4px rgba(0,0,0,.25); }
            .form_section{width:70%;position:relative;}
            .form_section>h2{
                margin: 20px 0;
                font-size: 16px;
            }
            .small{width:132px !important;}
            .info_section{width:29%;}
            .user_amlak01_info_form{position:relative;}
            .eleman-img-box.eleman-deposit{
                display: inline-block;
                vertical-align: middle;
                background-image: url(https://taghzie.ir/files/main/user/amlak01/user/amlak01/search/img/eleman-sprite.png);
                background-repeat: no-repeat;
                width: 60px;
                height: 68px;
                background-position: 0 0;
            }
            .colorRed{ color: #db2828!important;}
            .msg_box{
                background-color: #fffaf3;
                color: #573a08;
                box-shadow: 0 0 0 1px #c9ba9b inset, 0 0 0 0 transparent;
                padding: 5px 20px;
            }
            .textArea,.msg_box{
                width:715px !important;
                height:100px !important;
            }
            .send_img_box{ width:715px !important;}
            .txtArea{
                width: 100%;
                height: 100%;
                margin: 0;
                -webkit-appearance: none;
                tap-highlight-color: rgba(255,255,255,0);
                padding: 1.3em 1em;
                background: #fff;
                border: 1px solid rgba(34,36,38,.15);
                outline: 0;
                color: rgba(0,0,0,.87);
                border-radius: .28571429rem;
                box-shadow: 0 0 0 0 transparent inset;
                -webkit-transition: color .1s ease,border-color .1s ease;
                transition: color .1s ease,border-color .1s ease;
                font-size: 1em;
                line-height: 1.2857;
                resize: vertical;
            }
            .chk{
                width:17px;
                height:17px;
                margin-top: 5px;
                margin-left: 10px;
            }
            .title_section{
                width:995px;
                display: inline-block;
                vertical-align: middle;
                margin-right: 10px;
                border-bottom: 2px solid #d8d8d8;
                margin-bottom: 20px;
                min-height: 32px;
            }
            .title_section>h2{
                color: #333;
                border-color: #88d13f;
                padding: 12px 0;
                bottom: -2px;
                display: inline-block;
                font-weight: 500;
                min-height: 32px;
                position: relative;
                margin: 0;
                font-size: 20px;
                border-bottom: 2px solid #88d13f;
            }
            .div_input{
                width:230px;
                /*height:43px;*/
                position:relative;
                margin-left: 10px;
                margin-bottom: 12px;
            }
            .div_input.large{ width:470px;}
            .input_label{
                 top: -10px;
                right: 5px;
                font-size: 12px;
                color: #888;
                background: #fff;
                padding: 0 3px;
                border-radius: 2px;
                position: absolute;
            }
            .field_txt{
                width: 230px;
                height: 43px;
                border: 1px solid rgba(34,36,38,.15);
                padding:10px;
            }
            .field_txt.large{
                width: 670px;
            }
            .field{width:85%;!important;}
            .fields_row{margin-bottom:20px;}
            .notValid{
                background: #fff6f6;
                border-color: #e0b4b4;
                color: #9f3a38;
            }
            .error_show{display:block;}

            .error_label:before {
                background-color: inherit;
                border-style: solid;
                border-color: inherit;
                position: absolute;
                content:"";
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
                background-image: none;
                z-index: 2;
                width: .6666em;
                height: .6666em;
                -webkit-transition: background .1s ease;
                transition: background .1s ease;


                border-width: 1px 0 0 1px;
                -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
                -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
                transform: translateX(-50%) translateY(-50%) rotate(45deg);
                top: 0;
                left: 50%;
            }
        
            #btn_cta_6{
                text-align:center;
                overflow: hidden;
                height:50px;
                line-height:50px;
                width:96%;
                margin-top:0px;
                padding-right:25px;
                padding-left:25px;
            }
            #btn_cta_6 >  button{
                color:red;
                background-color:green;
                font-size:16px;
                font-weight:500;
                width:200px;
                height:50px;
                line-height:50px;
                border-width:1px;
                border-color:gray;
                border-radius:3px;
                display:inline-block;
                text-align:center;
            }
            #btn_cta_6 >  button:hover{
                color:blue;
                background-color:yellow;
                border-color:black;
            }
            .alert-more{
                color: red;
            }
        
                    #text_area_536{
                        height:150px;
                    }
                
                .tooltip-box{
                    position: relative;
                    width: 36px;
                    height: 36px;
                }
               
                .tooltip-box i{
                    -webkit-transform: rotateY(180deg);-moz-transform: rotateY(180deg);-ms-transform: rotateY(180deg);-o-transform: rotateY(180deg);transform: rotateY(180deg);
                }
                .tooltip-box .text-tooltip{
                    position: absolute;
                    top: 43px;
                    left: -10px;
                    padding: 5px;
                    font-size: 14px;
                    min-width: 300px;
                    max-width: 400px;
                    text-align: justify;
                    font-weight: 500;
                    background-color: #fff;
                    border: 1px solid #b8b8b8;
                    z-index: 99;
                    display: none;
                    border-radius: 3px;
                }
                .tooltip-box .after-text-tooltip{
                    position: absolute;
                    top: 37px;
                    right: 13px;
                    background-color: #fff;
                    border: solid #b8b8b8;
                    border-width:  0 1px 1px 0;
                    z-index: 100;
                    display: none;
                    height: 12px;
                    width: 12px;
                    -webkit-transform: rotate(-135deg);-moz-transform: rotate(-135deg);-ms-transform: rotate(-135deg);-o-transform: rotate(-135deg);transform: rotate(-135deg);

                }
                .tooltip-box:hover .text-tooltip,.tooltip-box:hover .after-text-tooltip{
                    display: block;
                }
              
            
            .rFormResult{
                width: 40%;
                height: max-content;
                padding: 25px;
                text-align: center;
                background: #ddd !important;
                border-radius: 5px !important;
                margin: 30px 0;
                border: 0px  solid  transparent !important;
                color: #000 !important;
            }
            .rFormResult > div{
                color: #000 !important;
            }
           .rFormMask{
            padding-top: 20px;;
            overflow: auto;
            z-index:10000;
            width:0;
            height: 0;
            position: fixed;
            top: 0;;
            left: 0;
            background: #00000070;
            opacity: 0;
             -webkit-transition: opacity 1s ease-in-out;
                 -moz-transition: opacity 1s ease-in-out;
                 -o-transition: opacity 1s ease-in-out;
                 transition: opacity 1s ease-in-out;
           }

           .rFormMask.show{opacity:1;
            width:100%;
            height:100%;
        }
           .rInvalid{
            border-right: 3px solid red;
            background: #ff000057;
            padding: 5px;
           }

           .rValid{
            border-right: 3px solid green;
            background:  #00ffae1f;
            padding: 5px;
           }

           .rFrm .box{  -webkit-transition: padding .7s, border-right .7s ease-in-out;
                 -moz-transition: padding .7s, border-right .7s ease-in-out;
                 -o-transition: padding .7s, border-right .7s ease-in-out;
                 transition: padding .7s, border-right .7s ease-in-out;
           }
           .rFrm {width:1200px;margin: auto; display: table;table-layout: fixed;margin-top:15px}
           .rFrm .box> div input,.rFrm .box> div select,.rFrm .box> div textarea{
                border:1px solid #bfbfbf;
                display: block;
                -webkit-border-radius: 2px;-moz-border-radius: 2px;border-radius: 2px;
                width:85%;
                padding: 10px;
                resize: vertical;
           }
           .rFrm .box> div input[type="file"]{
                display: none !important;
           }
           .rFrm .box>.col50{width:49.5% !important}
           .rFrm .box>.col35{width:34.5% !important}
           .rFrm .box>.col15{width:14.5% !important}
           .rFrm .box> textarea{
                width
           }
           .rFrm .box>label{display: block;}

           .rFrm .box{position: relative;
            margin: 10px 0;
           }
            .rFrmDesc{

        }
            .rFrmCol:first-child{
            padding-top:0;
            }


            .rFrmCol{width: 600px; display: table-cell;}

            .dib{display: inline-block}
            .db{display: block}
            .rImg{width: ;}
            .rFrmTopImg{width: 297px;;height: 200px;}
            .rFrmBtnImg{width: 600px;;height: 300px;margin-top:5px}
            .rFrmMainTitle{font-size: 1.2em}
            .rFrmTitle{font-size: 1em;width:85%;margin-bottom:7px;}

            .rFrmListItem{width: calc(50% - 15px);display: inline-block}
            .rFrmListItemCheckbox{display: inline-block}
            .checkbox_col2{
                width: calc(50% - 15px);display: inline-block
            }
            .checkbox_col1{
                width: calc(100% - 15px);display: inline-block
            }

            /*-----------------------checkbox && radio---------------------*/
            .checkbox-rFrmList,.radio-rFrmList{
                width:85%;
                background-color:#fff;
                border: 1px solid #bfbfbf;
                border-radius:2px;
                padding:3px;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
            .new_color_tag:hover{
                color: #00bdff !important;
            }
            .checkbox_rFrm,.radio_rFrm{
                border: 3px solid #00bec5;
                color: #333;
                min-height:35px;
                margin: 4px;
                display: flex;
                background-color: #0A4D68;
                font-weight: 400;
                border-radius: 1px;
                direction:rtl;
                font-size:14px;
            }
            .checkbox-radio-text{
                position:relative;
                width:calc(100% - 29px);
                /*white-space:nowrap;*/
                padding:0 9px;
                height: max-content;
                line-height: 26px;
            }
            .checkbox-radio-text label{
                position:absolute;
                top:0;
                bottom:0;
                border-radius:2px;
                background-color:#ffffff;
                z-index:1;
                right:0;
                left:100%;
                -webkit-transition: .2s;-moz-transition: .2s;-ms-transition: .2s;-o-transition: .2s;transition: .2s;
            }
            .checkbox-radio-text span{
                position:relative;
                z-index:2;
                color:#ffffff;
                user-select: none;
                white-space: normal;
                word-wrap: break-word;
                overflow-wrap: break-word;
                word-break: break-all;
            }
            .checked .checkbox-radio-text span{
                color:#ebe5e6;
            }
            .checked .checkbox-radio-text label {
                left:0;
            }
            .checkbox_rFrm .checkbox_icon,.radio_rFrm .radio_icon{
                text-align: center;
                height:29px;
                width:33px;
                border-left: 3px solid #00bec5;
                position:relative;
                background-color: #00bec5;
            }
            .checkbox_rFrm .checkbox_icon > div{
                background-color: #0A4D68;
                border-radius:2px;
                border:2px solid #1d2f53;
                height:100%;
                width:100%;
            }
            .radio_rFrm .radio_icon > div{
                height:30px;
                width:30px;
                border-radius: 50%;
                flex-direction: column;
                justify-content: center;
                display:flex;
                border: 2px solid #1d2f53;
                background-color:#1d2f53;
            }
            .radio_rFrm .radio_icon > div > i{
                width:100%;
                height:100%;
                margin:auto;
                background-color:#00bec5;
                border-radius: 50%;
                display: flex !important;
                -webkit-transition: .2s;-moz-transition: .2s;-ms-transition: .2s;-o-transition: .2s;transition: .2s;
            }
            .checkbox_rFrm .checkbox_icon i{
                color:  #00bec5;
                background-color:#1d2f53;
                font-size: 20px;
                display: none;
                flex-direction: column;
                justify-content: center;
                height: 100%;
                text-align: center;
            }
            .checked.radio_rFrm .radio_icon i{
                width:54%;
                height:53%;
            }
            .checked .checkbox_icon i{display: flex !important;}
        #pform_6{
                  padding-top:15px;
                }#pform_6{
                  margin-bottom:60px;
                }#pform_6{
                    margin-top:60px;
                }#pform_6{
                  padding-bottom:30px;
                }#pform_6{
                    background-color:#0A4D68;
                }#pform_6{
                        font-size:16px;
                }#pform_6 .color_tem1{ /*range asli color ??? */
            color:#1d2f53 ;
        }#pform_6 .color_tem2{ /*range asli color ??? */
            color:#ffffff ;
        }#pform_6 .color_tem1_bg{/*range back box  */
            background-color:#1d2f53 ;
        }#pform_6 .color_tem2_bg{/*range back box if gradient*/
            background-color:#ffffff ;
        }#pform_6 .color_title{/*range title asli module*/
                            color:#ffffff ;
                                }#pform_6 .color_text{/*range text haye module  */
                            color:#fc8e60;
                                }#pform_6 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:#00bec5;
                                }#pform_6 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#pform_6 .color_b_text{/*range link button manand range matnesh*/
                            color:#531dab ;
                                }#pform_6 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color:#e6f7ff ;
                                }#pform_6 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color:#5cdbd3 ;
                                }#pform_6 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color:#002766 ;
                                }#pform_6 .color_box_text{/*range text dakhele box ha! */
                            color:#ffffff ;
                                }#pform_6 .color_box_title{/*range title dakhele box ha!*/
                            color:#ebe5e6 ;
                                }#pform_6 .pr_1200 , #pform_6 .color_1200_bg{
                             background-color:#00bec5 ;
                             padding:30px ;
                                }
            
            .txt_on_img_right{
                right: 0px;
            }
            .txt_on_img_left{
                left: 0px;
            }
            .txt_on_img{

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

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

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


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

            .slidersimple_rBullet.slidersimple_rSelected{background:;}
            .slidersimple_rSelected{
                /*padding-top: 5px;*/
                opacity: 1;
                -webkit-filter: grayscale(0%);
                filter: grayscale(0%);
            }
            .slidersimple_rSelected img{
                -webkit-filter: grayscale(0%);
                filter: grayscale(0%);
            }
            .slidersimple_rBullet{width:13px; height:13px; background:transparent; border-radius:20px;display:inline-block;border: 1px solid ;
                        margin:3px; -webkit-transition: background .15s ease-in-out;
                 -moz-transition: background .15s ease-in-out;
                 -o-transition: background .15s ease-in-out;
                 transition: background .15s ease-in-out;}
        #slidersimple1{
                        font-size:16px;
                }#slidersimple1 .color_tem1{ /*range asli color ??? */
            color: ;
        }#slidersimple1 .color_tem2{ /*range asli color ??? */
            color: ;
        }#slidersimple1 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#slidersimple1 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#slidersimple1 .color_title{/*range title asli module*/
                            color: ;
                                }#slidersimple1 .color_text{/*range text haye module  */
                            color:;
                                }#slidersimple1 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#slidersimple1 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#slidersimple1 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#slidersimple1 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#slidersimple1 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#slidersimple1 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#slidersimple1 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#slidersimple1 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }
            .color_blue{color:#00AFEF;}
            .en_page{
                direction: ltr;
            }
            .fa_page{
                direction: rtl;
            }
            .w200 {
               width:200px;
            }
            .w400 {
               width:400px;
            }
            .w600 {
               width:600px;
            }
            .w800 {
               width:800px;
            }
            .w1000 {
               width:1000px;
            }
            .w1200 {
               width:1200px;
            }
            .dtcd {
                display:table-cell;
                padding:10px;
                text-align: justify;
            }
            .pdig {
                line-height: 1.75;
            }
            .imgdi{
                width:100%;
                height:100%;
            }
            .gerd{
                border-radius: 50%;
            }
            .diul{
                 padding:20px;
            }
            #description_569 .ti_ma_h{
                width:1200px;
                text-align: center;
                margin: auto;
                padding: 0 10px;
                font-size:35px;
                line-height: 60px;
                color: ;
                background-color: ;
            }
            #description_569 .ti_ma_h a{color: ;}
            .pborder{
                border-right-width:4px;
                border-right-style: solid;
                border-right-color: #b580e3;
                padding-right:25px;
                font-weight: 600;
            }
            .pborder_title{
                line-height: 1.42857143;
                padding-right: 25px;
                font-size:1em;
            }
            .p_text_pic{
                width:100%;
                border-radius: 3px;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                -webkit-transition: box-shadow 300ms 0s ease;
                -moz-transition: box-shadow 300ms 0s ease;
                -ms-transition: box-shadow 300ms 0s ease;
                -o-transition: box-shadow 300ms 0s ease;
                transition: box-shadow 300ms 0s ease;
                display:table;
                table-layout: fixed;
                }
            .p_text_pic:hover{
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
            }
            .pl_text_pic{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                padding: 14px 28px;
                /*background-color: #f4f4f4;*/
                text-align: center;
            }
            .pl_text_pic2{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                background-color: #f4f4f4;
                text-align: center;
            }
            .pr_text_pic{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 20px 65px 15px 20px;
                overflow: hidden;
            }
            .pr_text_pic2{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 10px 20px;
                overflow: hidden;
            }

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

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

        
                #description_569 .container_box_826{
                    background-color:transparent;
                    border-width:3px ;;
                    border-style:solid;
                    border-color:#02055a;
                    border-radius:2px ;;
                    height:100%;
                    padding:1rem;
                }
            
                    .dLineH{line-height:2em;}
                
                #description_569 .font_title_box_0{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_0 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_0  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_0 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_0 a{
                    color:;
                }
                .sidebar_box_0 a:hover{
                    color:;
                }
                .sidebar_box_0 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
            #description_569 .public_center{
                border-spacing:0px;
            }
        #description_569{
                  padding-top:40px;
                }#description_569{
                  padding-bottom:40px;
                }#description_569{
                    background-color:#00bec5;
                }#description_569{
                        font-size:16px;
                }#description_569 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_569 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_569 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_569 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_569 .color_title{/*range title asli module*/
                            color: ;
                                }#description_569 .color_text{/*range text haye module  */
                            color:#ffffff;
                                }#description_569 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_569 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_569 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_569 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color:#b580e3 ;
                                }#description_569 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_569 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_569 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#description_569 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }.module[data-id_page='15560']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:40px;padding-bottom:50px;border-style:none;}.module[data-id_page='15560']:hover{;}.module[data-id_page='15560']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='15560'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='15560']  
                
                .module[data-id_page='15560'] .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='15560'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='15560']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_1258 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_1258 .content_str{
				width:100%;
			}
            #module_new_medical_1258 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_1258 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_1258 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_1258 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_1258 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_1258 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_1258 .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_1258 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_1258 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_1258 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_1258 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_1258 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_1258 a{
                color:#00AFEF!important;
            }
            #module_new_medical_1258 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_1258 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_1258 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_3276 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/Icon/1685271946_number-1.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3276 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3276 .background-img{
                border-radius:;
            }
        
            #medical_box_3276 .new_medical_icon{
                
            }
        #medical_box_3276 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3276 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3276 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_24:hover .new_medical_icon{}#medical_box_3276.new_medical_module{background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:280px;border-style:none;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_24:hover{}#medical_box_3276 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3276  
                
                #medical_box_3276 .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_3276 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3276:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3276 .mode1-size_3276{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3276 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3276 > div{
               height:100%;
            }
            #medical_box_3276 .mode2-size_3276{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3276 .mode3-size_3276{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3276 .mode4-size_3276{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3276 .mode5-size_3276{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3276 .mode6-size_3276{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3276 .mode7-size_3276{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3276 .mode7-size_3276 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3276 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3276 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3276{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3276 span:hover{
                color:!important;
            }
            .custom2_3276{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3276 span:hover{
                color:;
            }
            #medical_box_3276 .mode-btn1_3276{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3276 .mode-btn1_3276 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3276 .mode-btn2_3276{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3276 .mode-btn2_3276 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3276 .div-btn-title_main_3276{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3276 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3276 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3279 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/Icon/1685271946_number-2.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3279 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3279 .background-img{
                border-radius:;
            }
        
            #medical_box_3279 .new_medical_icon{
                
            }
        #medical_box_3279 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3279 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3279 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_2973:hover .new_medical_icon{}#medical_box_3279.new_medical_module{background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:280px;border-style:none;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_2973:hover{}#medical_box_3279 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3279  
                
                #medical_box_3279 .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_3279 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3279:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3279 .mode1-size_3279{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3279 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3279 > div{
               height:100%;
            }
            #medical_box_3279 .mode2-size_3279{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3279 .mode3-size_3279{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3279 .mode4-size_3279{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3279 .mode5-size_3279{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3279 .mode6-size_3279{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3279 .mode7-size_3279{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3279 .mode7-size_3279 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3279 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3279 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3279{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3279 span:hover{
                color:!important;
            }
            .custom2_3279{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3279 span:hover{
                color:;
            }
            #medical_box_3279 .mode-btn1_3279{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3279 .mode-btn1_3279 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3279 .mode-btn2_3279{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3279 .mode-btn2_3279 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3279 .div-btn-title_main_3279{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3279 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3279 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3278 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/Icon/1685271946_number-3.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3278 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3278 .background-img{
                border-radius:;
            }
        
            #medical_box_3278 .new_medical_icon{
                
            }
        #medical_box_3278 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3278 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3278 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_30:hover .new_medical_icon{}#medical_box_3278.new_medical_module{background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:280px;border-style:none;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_30:hover{}#medical_box_3278 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3278  
                
                #medical_box_3278 .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_3278 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3278:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3278 .mode1-size_3278{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3278 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3278 > div{
               height:100%;
            }
            #medical_box_3278 .mode2-size_3278{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3278 .mode3-size_3278{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3278 .mode4-size_3278{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3278 .mode5-size_3278{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3278 .mode6-size_3278{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3278 .mode7-size_3278{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3278 .mode7-size_3278 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3278 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3278 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3278{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3278 span:hover{
                color:!important;
            }
            .custom2_3278{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3278 span:hover{
                color:;
            }
            #medical_box_3278 .mode-btn1_3278{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3278 .mode-btn1_3278 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3278 .mode-btn2_3278{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3278 .mode-btn2_3278 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3278 .div-btn-title_main_3278{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3278 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3278 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3277 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/Icon/1685271946_number-4.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3277 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3277 .background-img{
                border-radius:;
            }
        
            #medical_box_3277 .new_medical_icon{
                
            }
        #medical_box_3277 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3277 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3277 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_29:hover .new_medical_icon{}#medical_box_3277.new_medical_module{background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:280px;border-style:none;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_29:hover{}#medical_box_3277 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3277  
                
                #medical_box_3277 .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_3277 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3277:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3277 .mode1-size_3277{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3277 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3277 > div{
               height:100%;
            }
            #medical_box_3277 .mode2-size_3277{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3277 .mode3-size_3277{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3277 .mode4-size_3277{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3277 .mode5-size_3277{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3277 .mode6-size_3277{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3277 .mode7-size_3277{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3277 .mode7-size_3277 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3277 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3277 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3277{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3277 span:hover{
                color:!important;
            }
            .custom2_3277{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3277 span:hover{
                color:;
            }
            #medical_box_3277 .mode-btn1_3277{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3277 .mode-btn1_3277 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3277 .mode-btn2_3277{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3277 .mode-btn2_3277 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3277 .div-btn-title_main_3277{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3277 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3277 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_1258 .new_medical_title_main{color:#000;font-weight:bold;font-size:30px;justify-content:center;text-align:center;margin-top:20px;margin-bottom:10px;}.module[data-id_page='5239']:hover .new_medical_title_main{}#module_new_medical_1258 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;margin-top:30px;border-style:none;}.module[data-id_page='5239']:hover .new_medical_box_main{}
            #module_new_medical_1258 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_1258 .new_medical_module{
                    width:292px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_1258 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_1258 .new_medical_module:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_1258 .medical_box_main_animation_trigger:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_1258 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_1258 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_1258 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_1258 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_1258 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_1258 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_1258{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_1258 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_1258 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_1258 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_1258 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_1258 .swiper-container{
                width:1200px;
            }
            #module_new_medical_1258 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_1258 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_1258 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_1258 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='5239']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:40px;padding-bottom:50px;border-style:none;}.module[data-id_page='5239']:hover{;}.module[data-id_page='5239']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='5239'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='5239']  
                
                .module[data-id_page='5239'] .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='5239'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='5239']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_4 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_4 .content_str{
				width:100%;
			}
            #module_new_medical_4 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_4 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_4 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_4 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_4 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_4 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_4 .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_4 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_4 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_4 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_4 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_4 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_4 a{
                color:#00AFEF!important;
            }
            #module_new_medical_4 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_4 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_4 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_24 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/Icon/1685276283_number-1 (1).svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_24 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_24 .background-img{
                border-radius:;
            }
        
            #medical_box_24 .new_medical_icon{
                
            }
        #medical_box_24 .new_medical_title{color:#000;font-weight:bold;font-size:15px;text-align:center;margin-top:20px;}#medical_box_24:hover .new_medical_title{}
                #medical_box_24 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_24 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_24:hover .new_medical_icon{}#medical_box_24.new_medical_module{background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:280px;border-style:none;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_24:hover{}#medical_box_24 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_24  
                
                #medical_box_24 .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_24 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_24:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_24 .mode1-size_24{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_24 .new_medical_box > div{
                width:100%;
            }
             #medical_box_24 > div{
               height:100%;
            }
            #medical_box_24 .mode2-size_24{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_24 .mode3-size_24{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_24 .mode4-size_24{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_24 .mode5-size_24{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_24 .mode6-size_24{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_24 .mode7-size_24{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_24 .mode7-size_24 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_24 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_24 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_24{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_24 span:hover{
                color:!important;
            }
            .custom2_24{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_24 span:hover{
                color:;
            }
            #medical_box_24 .mode-btn1_24{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_24 .mode-btn1_24 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_24 .mode-btn2_24{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_24 .mode-btn2_24 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_24 .div-btn-title_main_24{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_24 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_24 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2973 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/Icon/1685276283_number-2 (1).svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2973 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2973 .background-img{
                border-radius:;
            }
        
            #medical_box_2973 .new_medical_icon{
                
            }
        #medical_box_2973 .new_medical_title{color:#000;font-weight:bold;font-size:15px;text-align:center;margin-top:20px;}#medical_box_2973:hover .new_medical_title{}
                #medical_box_2973 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2973 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_2973:hover .new_medical_icon{}#medical_box_2973.new_medical_module{background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:280px;border-style:none;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_2973:hover{}#medical_box_2973 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_2973  
                
                #medical_box_2973 .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_2973 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2973:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2973 .mode1-size_2973{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2973 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2973 > div{
               height:100%;
            }
            #medical_box_2973 .mode2-size_2973{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2973 .mode3-size_2973{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2973 .mode4-size_2973{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2973 .mode5-size_2973{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2973 .mode6-size_2973{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2973 .mode7-size_2973{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2973 .mode7-size_2973 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2973 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2973 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2973{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2973 span:hover{
                color:!important;
            }
            .custom2_2973{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2973 span:hover{
                color:;
            }
            #medical_box_2973 .mode-btn1_2973{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2973 .mode-btn1_2973 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2973 .mode-btn2_2973{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2973 .mode-btn2_2973 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2973 .div-btn-title_main_2973{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2973 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2973 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_30 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/Icon/1685276283_number-3 (1).svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_30 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_30 .background-img{
                border-radius:;
            }
        
            #medical_box_30 .new_medical_icon{
                
            }
        #medical_box_30 .new_medical_title{color:#000;font-weight:bold;font-size:15px;text-align:center;margin-top:20px;}#medical_box_30:hover .new_medical_title{}
                #medical_box_30 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_30 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_30:hover .new_medical_icon{}#medical_box_30.new_medical_module{background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:280px;border-style:none;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_30:hover{}#medical_box_30 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_30  
                
                #medical_box_30 .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_30 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_30:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_30 .mode1-size_30{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_30 .new_medical_box > div{
                width:100%;
            }
             #medical_box_30 > div{
               height:100%;
            }
            #medical_box_30 .mode2-size_30{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_30 .mode3-size_30{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_30 .mode4-size_30{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_30 .mode5-size_30{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_30 .mode6-size_30{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_30 .mode7-size_30{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_30 .mode7-size_30 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_30 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_30 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_30{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_30 span:hover{
                color:!important;
            }
            .custom2_30{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_30 span:hover{
                color:;
            }
            #medical_box_30 .mode-btn1_30{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_30 .mode-btn1_30 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_30 .mode-btn2_30{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_30 .mode-btn2_30 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_30 .div-btn-title_main_30{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_30 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_30 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_29 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/Icon/1685276283_number-4 (1).svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_29 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_29 .background-img{
                border-radius:;
            }
        
            #medical_box_29 .new_medical_icon{
                
            }
        #medical_box_29 .new_medical_title{color:#000;font-weight:bold;font-size:15px;text-align:center;margin-top:20px;}#medical_box_29:hover .new_medical_title{}
                #medical_box_29 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_29 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_29:hover .new_medical_icon{}#medical_box_29.new_medical_module{background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:280px;border-style:none;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_29:hover{}#medical_box_29 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_29  
                
                #medical_box_29 .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_29 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_29:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_29 .mode1-size_29{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_29 .new_medical_box > div{
                width:100%;
            }
             #medical_box_29 > div{
               height:100%;
            }
            #medical_box_29 .mode2-size_29{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_29 .mode3-size_29{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_29 .mode4-size_29{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_29 .mode5-size_29{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_29 .mode6-size_29{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_29 .mode7-size_29{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_29 .mode7-size_29 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_29 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_29 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_29{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_29 span:hover{
                color:!important;
            }
            .custom2_29{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_29 span:hover{
                color:;
            }
            #medical_box_29 .mode-btn1_29{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_29 .mode-btn1_29 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_29 .mode-btn2_29{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_29 .mode-btn2_29 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_29 .div-btn-title_main_29{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_29 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_29 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_4 .new_medical_title_main{color:#000;font-weight:bold;font-size:30px;justify-content:center;text-align:center;margin-top:20px;margin-bottom:10px;}.module[data-id_page='5239']:hover .new_medical_title_main{}#module_new_medical_4 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;margin-top:30px;border-style:none;}.module[data-id_page='5239']:hover .new_medical_box_main{}
            #module_new_medical_4 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_4 .new_medical_module{
                    width:292px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_4 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_4 .new_medical_module:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_4 .medical_box_main_animation_trigger:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_4 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_4 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_4 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_4 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_4 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_4 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_4{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_4 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_4 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_4 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_4 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_4 .swiper-container{
                width:1200px;
            }
            #module_new_medical_4 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_4 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_4 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_4 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='15412']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;height:700px;margin-top:0px;border-style:none;}.module[data-id_page='15412']:hover{;}.module[data-id_page='15412']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='15412'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='15412']:hover .background-img{
                        filter:brightness(0.2);
                    }
                
                .module[data-id_page='15412'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:brightness(0.2);
                }
            
                   .module[data-id_page='15412']  
                
                .module[data-id_page='15412'] .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='15412'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='15412']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='15412']{
                               background-image:url("https://taghzie.ir/files/1581169418_8.jpg");
                           }
                       
            #module_new_medical_1140 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_1140 .content_str{
				width:100%;
			}
            #module_new_medical_1140 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_1140 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_1140 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_1140 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_1140 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_1140 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_1140 .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_1140 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_1140 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_1140 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_1140 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_1140 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_1140 a{
                color:#00AFEF!important;
            }
            #module_new_medical_1140 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_1140 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_1140 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_3031 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/1692102331_00.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3031 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3031 .background-img{
                border-radius:;
            }
        
            #medical_box_3031 .new_medical_icon{
                
            }
        #medical_box_3031 .new_medical_title{color:#fff;font-weight:bold;font-size:18px;text-align:center;margin-top:25px;height:20px;line-height:20px;}#medical_box_3031:hover .new_medical_title{}
                #medical_box_3031 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3031 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:75%;height:300px;border-style:none;border-color:#000;}#medical_box_3031:hover .new_medical_icon{}#medical_box_3031.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_3031:hover{}#medical_box_3031 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:29px;text-align:center;margin-bottom:0px;padding-top:0px;padding-bottom:10px;border-style:solid;border-color:#555;}#medical_box_3031:hover .new_medical_description{}
                   #medical_box_3031  
                
                #medical_box_3031 .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_3031 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3031:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3031 .mode1-size_3031{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3031 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3031 > div{
               height:100%;
            }
            #medical_box_3031 .mode2-size_3031{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3031 .mode3-size_3031{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3031 .mode4-size_3031{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3031 .mode5-size_3031{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3031 .mode6-size_3031{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3031 .mode7-size_3031{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3031 .mode7-size_3031 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3031 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3031 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3031{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3031 span:hover{
                color:!important;
            }
            .custom2_3031{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3031 span:hover{
                color:;
            }
            #medical_box_3031 .mode-btn1_3031{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3031 .mode-btn1_3031 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3031 .mode-btn2_3031{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3031 .mode-btn2_3031 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3031 .div-btn-title_main_3031{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3031 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3031 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3283 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/1689844752_-07-20_12-47-11.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3283 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3283 .background-img{
                border-radius:;
            }
        
            #medical_box_3283 .new_medical_icon{
                
            }
        #medical_box_3283 .new_medical_title{color:#fff;font-weight:bold;text-align:center;}#medical_box_3283:hover .new_medical_title{}
                #medical_box_3283 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3283 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:300px;border-style:none;border-color:#000;}#medical_box_3283:hover .new_medical_icon{}#medical_box_3283 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:29px;text-align:center;margin-bottom:0px;padding-top:0px;padding-bottom:10px;border-style:solid;border-color:#555;}#medical_box_3283:hover .new_medical_description{}
                   #medical_box_3283  
                
                #medical_box_3283 .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_3283 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3283:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3283 .mode1-size_3283{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3283 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3283 > div{
               height:100%;
            }
            #medical_box_3283 .mode2-size_3283{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3283 .mode3-size_3283{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3283 .mode4-size_3283{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3283 .mode5-size_3283{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3283 .mode6-size_3283{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3283 .mode7-size_3283{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3283 .mode7-size_3283 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3283 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3283 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3283{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3283 span:hover{
                color:!important;
            }
            .custom2_3283{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3283 span:hover{
                color:;
            }
            #medical_box_3283 .mode-btn1_3283{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3283 .mode-btn1_3283 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3283 .mode-btn2_3283{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3283 .mode-btn2_3283 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3283 .div-btn-title_main_3283{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3283 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3283 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3282 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/1689844752_-07-20_12-47-05.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3282 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3282 .background-img{
                border-radius:;
            }
        
            #medical_box_3282 .new_medical_icon{
                
            }
        #medical_box_3282 .new_medical_title{color:#fff;font-weight:bold;font-size:18px;text-align:center;margin-top:25px;height:20px;line-height:20px;}#medical_box_3282:hover .new_medical_title{}
                #medical_box_3282 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3282 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:300px;border-style:none;border-color:#000;}#medical_box_3282:hover .new_medical_icon{}#medical_box_3282 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:29px;text-align:center;margin-bottom:0px;padding-top:0px;padding-bottom:10px;border-style:solid;border-color:#555;}#medical_box_3282:hover .new_medical_description{}
                   #medical_box_3282  
                
                #medical_box_3282 .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_3282 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3282:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3282 .mode1-size_3282{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3282 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3282 > div{
               height:100%;
            }
            #medical_box_3282 .mode2-size_3282{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3282 .mode3-size_3282{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3282 .mode4-size_3282{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3282 .mode5-size_3282{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3282 .mode6-size_3282{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3282 .mode7-size_3282{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3282 .mode7-size_3282 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3282 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3282 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3282{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3282 span:hover{
                color:!important;
            }
            .custom2_3282{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3282 span:hover{
                color:;
            }
            #medical_box_3282 .mode-btn1_3282{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3282 .mode-btn1_3282 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3282 .mode-btn2_3282{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3282 .mode-btn2_3282 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3282 .div-btn-title_main_3282{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3282 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3282 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3033 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/nutritionist/1661933768_susan-mohammadi.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3033 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3033 .background-img{
                border-radius:;
            }
        
            #medical_box_3033 .new_medical_icon{
                
            }
        #medical_box_3033 .new_medical_title{color:#fff;font-weight:bold;font-size:18px;text-align:center;margin-top:25px;height:20px;line-height:20px;}#medical_box_3018:hover .new_medical_title{}
                #medical_box_3033 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3033 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:300px;border-style:none;border-color:#000;}#medical_box_3020:hover .new_medical_icon{}#medical_box_3033 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:29px;text-align:center;padding-top:15px;border-style:solid;border-color:#555;}#medical_box_3018:hover .new_medical_description{}
                   #medical_box_3033  
                
                #medical_box_3033 .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_3033 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3033:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3033 .mode1-size_3033{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3033 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3033 > div{
               height:100%;
            }
            #medical_box_3033 .mode2-size_3033{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3033 .mode3-size_3033{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3033 .mode4-size_3033{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3033 .mode5-size_3033{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3033 .mode6-size_3033{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3033 .mode7-size_3033{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3033 .mode7-size_3033 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3033 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3033 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3033{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3033 span:hover{
                color:!important;
            }
            .custom2_3033{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3033 span:hover{
                color:;
            }
            #medical_box_3033 .mode-btn1_3033{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3033 .mode-btn1_3033 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3033 .mode-btn2_3033{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3033 .mode-btn2_3033 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3033 .div-btn-title_main_3033{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3033 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3033 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3037 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/nutritionist/1662013346_rsonalphoto-(1).jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3037 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3037 .background-img{
                border-radius:;
            }
        
            #medical_box_3037 .new_medical_icon{
                
            }
        #medical_box_3037 .new_medical_title{color:#fff;font-weight:bold;font-size:18px;text-align:center;margin-top:25px;height:20px;line-height:20px;}#medical_box_3018:hover .new_medical_title{}
                #medical_box_3037 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3037 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:300px;border-style:none;border-color:#000;}#medical_box_3030:hover .new_medical_icon{}#medical_box_3037 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:29px;text-align:center;padding-top:15px;border-style:solid;border-color:#555;}#medical_box_3018:hover .new_medical_description{}
                   #medical_box_3037  
                
                #medical_box_3037 .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_3037 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3037:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3037 .mode1-size_3037{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3037 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3037 > div{
               height:100%;
            }
            #medical_box_3037 .mode2-size_3037{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3037 .mode3-size_3037{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3037 .mode4-size_3037{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3037 .mode5-size_3037{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3037 .mode6-size_3037{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3037 .mode7-size_3037{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3037 .mode7-size_3037 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3037 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3037 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3037{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3037 span:hover{
                color:!important;
            }
            .custom2_3037{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3037 span:hover{
                color:;
            }
            #medical_box_3037 .mode-btn1_3037{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3037 .mode-btn1_3037 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3037 .mode-btn2_3037{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3037 .mode-btn2_3037 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3037 .div-btn-title_main_3037{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3037 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3037 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3036 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/nutritionist/1662012021_personalphoto.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3036 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3036 .background-img{
                border-radius:;
            }
        
            #medical_box_3036 .new_medical_icon{
                
            }
        #medical_box_3036 .new_medical_title{color:#fff;font-weight:bold;font-size:18px;text-align:center;margin-top:25px;height:20px;line-height:20px;}#medical_box_3018:hover .new_medical_title{}
                #medical_box_3036 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3036 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:300px;border-style:none;border-color:#000;}#medical_box_3029:hover .new_medical_icon{}#medical_box_3036 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:29px;text-align:center;padding-top:15px;border-style:solid;border-color:#555;}#medical_box_3018:hover .new_medical_description{}
                   #medical_box_3036  
                
                #medical_box_3036 .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_3036 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3036:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3036 .mode1-size_3036{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3036 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3036 > div{
               height:100%;
            }
            #medical_box_3036 .mode2-size_3036{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3036 .mode3-size_3036{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3036 .mode4-size_3036{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3036 .mode5-size_3036{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3036 .mode6-size_3036{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3036 .mode7-size_3036{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3036 .mode7-size_3036 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3036 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3036 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3036{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3036 span:hover{
                color:!important;
            }
            .custom2_3036{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3036 span:hover{
                color:;
            }
            #medical_box_3036 .mode-btn1_3036{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3036 .mode-btn1_3036 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3036 .mode-btn2_3036{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3036 .mode-btn2_3036 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3036 .div-btn-title_main_3036{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3036 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3036 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3035 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/nutritionist/1662015088_DSC_4460-01.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3035 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3035 .background-img{
                border-radius:;
            }
        
            #medical_box_3035 .new_medical_icon{
                
            }
        #medical_box_3035 .new_medical_title{color:#fff;font-weight:bold;font-size:18px;text-align:center;margin-top:25px;height:20px;line-height:20px;}#medical_box_3018:hover .new_medical_title{}
                #medical_box_3035 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3035 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:300px;border-style:none;border-color:#000;}#medical_box_3035:hover .new_medical_icon{}#medical_box_3035 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:29px;text-align:center;padding-top:15px;border-style:solid;border-color:#555;}#medical_box_3018:hover .new_medical_description{}
                   #medical_box_3035  
                
                #medical_box_3035 .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_3035 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3035:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3035 .mode1-size_3035{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3035 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3035 > div{
               height:100%;
            }
            #medical_box_3035 .mode2-size_3035{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3035 .mode3-size_3035{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3035 .mode4-size_3035{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3035 .mode5-size_3035{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3035 .mode6-size_3035{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3035 .mode7-size_3035{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3035 .mode7-size_3035 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3035 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3035 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3035{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3035 span:hover{
                color:!important;
            }
            .custom2_3035{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3035 span:hover{
                color:;
            }
            #medical_box_3035 .mode-btn1_3035{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3035 .mode-btn1_3035 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3035 .mode-btn2_3035{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3035 .mode-btn2_3035 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3035 .div-btn-title_main_3035{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3035 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3035 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_1140 .new_medical_title_main{color:#fff;font-weight:bold;font-size:30px;justify-content:center;text-align:center;margin-top:30px;height:30px;line-height:30px;}.module[data-id_page='15404']:hover .new_medical_title_main{}#module_new_medical_1140 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;border-style:none;}.module[data-id_page='15412']:hover .new_medical_box_main{}
            #module_new_medical_1140 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_1140 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_1140 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_1140 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_1140 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_1140 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_1140 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_1140 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_1140 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_1140 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_1140 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_1140 .new_medical_description p{
                    height:200px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_1140 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_1140 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_1140 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_1140 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_1140 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

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

            
            #module_new_medical_1140 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_1140{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_1140 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_1140 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_1140 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_1140 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_1140 .swiper-container{
                width:1200px;
            }
            #module_new_medical_1140 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_1140 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_1140 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_1140 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_6 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_6 .content_str{
				width:100%;
			}
            #module_new_medical_6 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_6 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_6 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_6 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_6 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_6 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_6 .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_6 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_6 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_6 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_6 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_6 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_6 a{
                color:#00AFEF!important;
            }
            #module_new_medical_6 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_6 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_6 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_2994 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/logo_hamkaran/1658304408_IRIMC_logo.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2994 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2994 .background-img{
                border-radius:;
            }
        
            #medical_box_2994 .new_medical_icon{
                
            }
        #medical_box_2994 .new_medical_title{color:#000137;font-weight:bold;font-size:24px;text-align:center;margin-top:20px;}#medical_box_42:hover .new_medical_title{}
                #medical_box_2994 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2994 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:70%;height:200px;border-style:none;border-color:#000;}#medical_box_2994:hover .new_medical_icon{}#medical_box_2994.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_42:hover{}#medical_box_2994 .new_medical_description{color:#000;font-weight:500;text-align:justify;margin-top:20px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#medical_box_42:hover .new_medical_description{}
                   #medical_box_2994  
                
                #medical_box_2994 .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_2994 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2994:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2994 .mode1-size_2994{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2994 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2994 > div{
               height:100%;
            }
            #medical_box_2994 .mode2-size_2994{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2994 .mode3-size_2994{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2994 .mode4-size_2994{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2994 .mode5-size_2994{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2994 .mode6-size_2994{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2994 .mode7-size_2994{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2994 .mode7-size_2994 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2994 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2994 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2994{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2994 span:hover{
                color:!important;
            }
            .custom2_2994{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2994 span:hover{
                color:;
            }
            #medical_box_2994 .mode-btn1_2994{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2994 .mode-btn1_2994 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2994 .mode-btn2_2994{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2994 .mode-btn2_2994 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2994 .div-btn-title_main_2994{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2994 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2994 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3002 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/logo_hamkaran/1659446803_mellat.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3002 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3002 .background-img{
                border-radius:;
            }
        
            #medical_box_3002 .new_medical_icon{
                
            }
        #medical_box_3002 .new_medical_title{color:#000137;font-weight:bold;font-size:24px;text-align:center;margin-top:20px;}#medical_box_42:hover .new_medical_title{}
                #medical_box_3002 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3002 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:70%;height:200px;border-style:none;border-color:#000;}#medical_box_3002:hover .new_medical_icon{}#medical_box_3002.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_42:hover{}#medical_box_3002 .new_medical_description{color:#000;font-weight:500;text-align:justify;margin-top:20px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#medical_box_42:hover .new_medical_description{}
                   #medical_box_3002  
                
                #medical_box_3002 .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_3002 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3002:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3002 .mode1-size_3002{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3002 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3002 > div{
               height:100%;
            }
            #medical_box_3002 .mode2-size_3002{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3002 .mode3-size_3002{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3002 .mode4-size_3002{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3002 .mode5-size_3002{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3002 .mode6-size_3002{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3002 .mode7-size_3002{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3002 .mode7-size_3002 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3002 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3002 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3002{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3002 span:hover{
                color:!important;
            }
            .custom2_3002{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3002 span:hover{
                color:;
            }
            #medical_box_3002 .mode-btn1_3002{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3002 .mode-btn1_3002 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3002 .mode-btn2_3002{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3002 .mode-btn2_3002 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3002 .div-btn-title_main_3002{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3002 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3002 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3001 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/logo_hamkaran/1658408453_parsian.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3001 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3001 .background-img{
                border-radius:;
            }
        
            #medical_box_3001 .new_medical_icon{
                
            }
        #medical_box_3001 .new_medical_title{color:#000137;font-weight:bold;font-size:24px;text-align:center;margin-top:20px;}#medical_box_42:hover .new_medical_title{}
                #medical_box_3001 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3001 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:70%;height:200px;border-style:none;border-color:#000;}#medical_box_3001:hover .new_medical_icon{}#medical_box_3001.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_42:hover{}#medical_box_3001 .new_medical_description{color:#000;font-weight:500;text-align:justify;margin-top:20px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#medical_box_42:hover .new_medical_description{}
                   #medical_box_3001  
                
                #medical_box_3001 .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_3001 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3001:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3001 .mode1-size_3001{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3001 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3001 > div{
               height:100%;
            }
            #medical_box_3001 .mode2-size_3001{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3001 .mode3-size_3001{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3001 .mode4-size_3001{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3001 .mode5-size_3001{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3001 .mode6-size_3001{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3001 .mode7-size_3001{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3001 .mode7-size_3001 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3001 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3001 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3001{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3001 span:hover{
                color:!important;
            }
            .custom2_3001{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3001 span:hover{
                color:;
            }
            #medical_box_3001 .mode-btn1_3001{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3001 .mode-btn1_3001 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3001 .mode-btn2_3001{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3001 .mode-btn2_3001 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3001 .div-btn-title_main_3001{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3001 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3001 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3000 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/logo_hamkaran/1658408079_Resalat.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3000 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3000 .background-img{
                border-radius:;
            }
        
            #medical_box_3000 .new_medical_icon{
                
            }
        #medical_box_3000 .new_medical_title{color:#000137;font-weight:bold;font-size:24px;text-align:center;margin-top:20px;}#medical_box_42:hover .new_medical_title{}
                #medical_box_3000 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3000 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:70%;height:200px;border-style:none;border-color:#000;}#medical_box_3000:hover .new_medical_icon{}#medical_box_3000.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_42:hover{}#medical_box_3000 .new_medical_description{color:#000;font-weight:500;text-align:justify;margin-top:20px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#medical_box_42:hover .new_medical_description{}
                   #medical_box_3000  
                
                #medical_box_3000 .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_3000 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3000:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3000 .mode1-size_3000{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3000 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3000 > div{
               height:100%;
            }
            #medical_box_3000 .mode2-size_3000{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3000 .mode3-size_3000{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3000 .mode4-size_3000{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3000 .mode5-size_3000{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3000 .mode6-size_3000{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3000 .mode7-size_3000{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3000 .mode7-size_3000 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3000 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3000 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3000{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3000 span:hover{
                color:!important;
            }
            .custom2_3000{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3000 span:hover{
                color:;
            }
            #medical_box_3000 .mode-btn1_3000{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3000 .mode-btn1_3000 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3000 .mode-btn2_3000{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3000 .mode-btn2_3000 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3000 .div-btn-title_main_3000{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3000 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3000 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_42 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/Logo/1614673675_shahrdari.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_42 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_42 .background-img{
                border-radius:;
            }
        
            #medical_box_42 .new_medical_icon{
                
            }
        #medical_box_42 .new_medical_title{color:#000137;font-weight:bold;font-size:24px;text-align:center;margin-top:20px;}#medical_box_42:hover .new_medical_title{}
                #medical_box_42 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_42 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:70%;height:200px;border-style:none;border-color:#000;}#medical_box_42:hover .new_medical_icon{}#medical_box_42.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_42:hover{}#medical_box_42 .new_medical_description{color:#000;font-weight:500;text-align:justify;margin-top:20px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#medical_box_42:hover .new_medical_description{}
                   #medical_box_42  
                
                #medical_box_42 .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_42 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_42:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_42 .mode1-size_42{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_42 .new_medical_box > div{
                width:100%;
            }
             #medical_box_42 > div{
               height:100%;
            }
            #medical_box_42 .mode2-size_42{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_42 .mode3-size_42{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_42 .mode4-size_42{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_42 .mode5-size_42{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_42 .mode6-size_42{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_42 .mode7-size_42{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_42 .mode7-size_42 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_42 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_42 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_42{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_42 span:hover{
                color:!important;
            }
            .custom2_42{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_42 span:hover{
                color:;
            }
            #medical_box_42 .mode-btn1_42{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_42 .mode-btn1_42 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_42 .mode-btn2_42{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_42 .mode-btn2_42 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_42 .div-btn-title_main_42{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_42 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_42 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2999 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/logo_hamkaran/1658315371_Ata.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2999 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2999 .background-img{
                border-radius:;
            }
        
            #medical_box_2999 .new_medical_icon{
                
            }
        #medical_box_2999 .new_medical_title{color:#000137;font-weight:bold;font-size:24px;text-align:center;margin-top:20px;}#medical_box_41:hover .new_medical_title{}
                #medical_box_2999 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2999 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:70%;height:200px;border-style:none;border-color:#000;}#medical_box_2999:hover .new_medical_icon{}#medical_box_2999 .new_medical_description{color:#000;font-weight:500;text-align:justify;margin-top:14px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#medical_box_41:hover .new_medical_description{}
                   #medical_box_2999  
                
                #medical_box_2999 .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_2999 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2999:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2999 .mode1-size_2999{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2999 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2999 > div{
               height:100%;
            }
            #medical_box_2999 .mode2-size_2999{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2999 .mode3-size_2999{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2999 .mode4-size_2999{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2999 .mode5-size_2999{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2999 .mode6-size_2999{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2999 .mode7-size_2999{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2999 .mode7-size_2999 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2999 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2999 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2999{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2999 span:hover{
                color:!important;
            }
            .custom2_2999{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2999 span:hover{
                color:;
            }
            #medical_box_2999 .mode-btn1_2999{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2999 .mode-btn1_2999 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2999 .mode-btn2_2999{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2999 .mode-btn2_2999 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2999 .div-btn-title_main_2999{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2999 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2999 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2998 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/logo_hamkaran/1658314985_Zobahan.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2998 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2998 .background-img{
                border-radius:;
            }
        
            #medical_box_2998 .new_medical_icon{
                
            }
        #medical_box_2998 .new_medical_title{color:#000137;font-weight:bold;font-size:24px;text-align:center;margin-top:20px;}#medical_box_41:hover .new_medical_title{}
                #medical_box_2998 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2998 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:70%;height:200px;border-style:none;border-color:#000;}#medical_box_2998:hover .new_medical_icon{}#medical_box_2998 .new_medical_description{color:#000;font-weight:500;text-align:justify;margin-top:14px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#medical_box_41:hover .new_medical_description{}
                   #medical_box_2998  
                
                #medical_box_2998 .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_2998 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2998:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2998 .mode1-size_2998{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2998 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2998 > div{
               height:100%;
            }
            #medical_box_2998 .mode2-size_2998{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2998 .mode3-size_2998{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2998 .mode4-size_2998{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2998 .mode5-size_2998{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2998 .mode6-size_2998{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2998 .mode7-size_2998{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2998 .mode7-size_2998 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2998 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2998 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2998{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2998 span:hover{
                color:!important;
            }
            .custom2_2998{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2998 span:hover{
                color:;
            }
            #medical_box_2998 .mode-btn1_2998{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2998 .mode-btn1_2998 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2998 .mode-btn2_2998{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2998 .mode-btn2_2998 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2998 .div-btn-title_main_2998{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2998 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2998 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_41 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/Logo/1615038667_shooting.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_41 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_41 .background-img{
                border-radius:;
            }
        
            #medical_box_41 .new_medical_icon{
                
            }
        #medical_box_41 .new_medical_title{color:#000137;font-weight:bold;font-size:24px;text-align:center;margin-top:20px;}#medical_box_41:hover .new_medical_title{}
                #medical_box_41 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_41 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:70%;height:200px;border-style:none;border-color:#000;}#medical_box_41:hover .new_medical_icon{}#medical_box_41 .new_medical_description{color:#000;font-weight:500;text-align:justify;margin-top:14px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#medical_box_41:hover .new_medical_description{}
                   #medical_box_41  
                
                #medical_box_41 .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_41 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_41:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_41 .mode1-size_41{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_41 .new_medical_box > div{
                width:100%;
            }
             #medical_box_41 > div{
               height:100%;
            }
            #medical_box_41 .mode2-size_41{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_41 .mode3-size_41{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_41 .mode4-size_41{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_41 .mode5-size_41{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_41 .mode6-size_41{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_41 .mode7-size_41{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_41 .mode7-size_41 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_41 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_41 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_41{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_41 span:hover{
                color:!important;
            }
            .custom2_41{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_41 span:hover{
                color:;
            }
            #medical_box_41 .mode-btn1_41{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_41 .mode-btn1_41 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_41 .mode-btn2_41{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_41 .mode-btn2_41 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_41 .div-btn-title_main_41{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_41 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_41 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2997 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/logo_hamkaran/1658314807_oolad mobarakeh.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2997 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2997 .background-img{
                border-radius:;
            }
        
            #medical_box_2997 .new_medical_icon{
                
            }
        #medical_box_2997 .new_medical_title{color:#000137;font-weight:bold;font-size:24px;text-align:center;margin-top:20px;}#medical_box_2972:hover .new_medical_title{}
                #medical_box_2997 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2997 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:70%;height:200px;border-style:none;border-color:#000;}#medical_box_2997:hover .new_medical_icon{}#medical_box_2997.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_42:hover{}#medical_box_2997 .new_medical_description{color:#c20215;font-weight:500;text-align:justify;margin-top:20px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#medical_box_42:hover .new_medical_description{}
                   #medical_box_2997  
                
                #medical_box_2997 .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_2997 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2997:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2997 .mode1-size_2997{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2997 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2997 > div{
               height:100%;
            }
            #medical_box_2997 .mode2-size_2997{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2997 .mode3-size_2997{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2997 .mode4-size_2997{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2997 .mode5-size_2997{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2997 .mode6-size_2997{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2997 .mode7-size_2997{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2997 .mode7-size_2997 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2997 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2997 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2997{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2997 span:hover{
                color:!important;
            }
            .custom2_2997{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2997 span:hover{
                color:;
            }
            #medical_box_2997 .mode-btn1_2997{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2997 .mode-btn1_2997 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2997 .mode-btn2_2997{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2997 .mode-btn2_2997 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2997 .div-btn-title_main_2997{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2997 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2997 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2996 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/logo_hamkaran/1658313908_Irandokht.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2996 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2996 .background-img{
                border-radius:;
            }
        
            #medical_box_2996 .new_medical_icon{
                
            }
        #medical_box_2996 .new_medical_title{color:#000137;font-weight:bold;font-size:24px;text-align:center;margin-top:20px;}#medical_box_2972:hover .new_medical_title{}
                #medical_box_2996 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2996 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:70%;height:200px;border-style:none;border-color:#000;}#medical_box_2996:hover .new_medical_icon{}#medical_box_2996.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_42:hover{}#medical_box_2996 .new_medical_description{color:#c20215;font-weight:500;text-align:justify;margin-top:20px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#medical_box_42:hover .new_medical_description{}
                   #medical_box_2996  
                
                #medical_box_2996 .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_2996 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2996:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2996 .mode1-size_2996{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2996 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2996 > div{
               height:100%;
            }
            #medical_box_2996 .mode2-size_2996{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2996 .mode3-size_2996{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2996 .mode4-size_2996{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2996 .mode5-size_2996{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2996 .mode6-size_2996{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2996 .mode7-size_2996{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2996 .mode7-size_2996 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2996 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2996 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2996{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2996 span:hover{
                color:!important;
            }
            .custom2_2996{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2996 span:hover{
                color:;
            }
            #medical_box_2996 .mode-btn1_2996{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2996 .mode-btn1_2996 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2996 .mode-btn2_2996{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2996 .mode-btn2_2996 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2996 .div-btn-title_main_2996{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2996 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2996 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2972 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/Logo/1625720896_Logo-Cacooti.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2972 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2972 .background-img{
                border-radius:;
            }
        
            #medical_box_2972 .new_medical_icon{
                
            }
        #medical_box_2972 .new_medical_title{color:#000137;font-weight:bold;font-size:24px;text-align:center;margin-top:20px;}#medical_box_2972:hover .new_medical_title{}
                #medical_box_2972 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_2972 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:70%;height:200px;border-style:none;border-color:#000;}#medical_box_2972:hover .new_medical_icon{}#medical_box_2972.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_42:hover{}#medical_box_2972 .new_medical_description{color:#c20215;font-weight:500;text-align:justify;margin-top:20px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#medical_box_42:hover .new_medical_description{}
                   #medical_box_2972  
                
                #medical_box_2972 .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_2972 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_2972:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2972 .mode1-size_2972{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2972 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2972 > div{
               height:100%;
            }
            #medical_box_2972 .mode2-size_2972{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2972 .mode3-size_2972{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2972 .mode4-size_2972{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2972 .mode5-size_2972{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2972 .mode6-size_2972{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2972 .mode7-size_2972{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2972 .mode7-size_2972 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2972 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_2972 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_2972{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2972 span:hover{
                color:!important;
            }
            .custom2_2972{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2972 span:hover{
                color:;
            }
            #medical_box_2972 .mode-btn1_2972{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2972 .mode-btn1_2972 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2972 .mode-btn2_2972{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2972 .mode-btn2_2972 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2972 .div-btn-title_main_2972{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2972 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2972 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_6 .new_medical_title_main{color:#000137;font-weight:bold;font-size:35px;justify-content:center;text-align:center;margin-top:50px;}.module[data-id_page='5241']:hover .new_medical_title_main{}#module_new_medical_6 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:50px;padding-bottom:0px;border-radius:3px;border-style:solid;}.module[data-id_page='5241']:hover .new_medical_box_main{}
            #module_new_medical_6 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_6 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_6 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_6 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_6 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_6 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_6 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_6 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_6 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_6 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_6 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_6 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_6 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_6 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_6 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_6 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_6 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

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

            
            #module_new_medical_6 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_6{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_6 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_6 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_6 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_6 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_6 .swiper-container{
                width:1200px;
            }
            #module_new_medical_6 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_6 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_6 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_6 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            .color_blue{color:#00AFEF;}
            .en_page{
                direction: ltr;
            }
            .fa_page{
                direction: rtl;
            }
            .w200 {
               width:200px;
            }
            .w400 {
               width:400px;
            }
            .w600 {
               width:600px;
            }
            .w800 {
               width:800px;
            }
            .w1000 {
               width:1000px;
            }
            .w1200 {
               width:1200px;
            }
            .dtcd {
                display:table-cell;
                padding:10px;
                text-align: justify;
            }
            .pdig {
                line-height: 1.75;
            }
            .imgdi{
                width:100%;
                height:100%;
            }
            .gerd{
                border-radius: 50%;
            }
            .diul{
                 padding:20px;
            }
            #description_2298 .ti_ma_h{
                width:1200px;
                text-align: center;
                margin: auto;
                padding: 0 10px;
                font-size:1px;
                line-height: 50px;
                color: #ffffff;
                background-color: #ffffff;
            }
            #description_2298 .ti_ma_h a{color: #ffffff;}
            .pborder{
                border-right-width:4px;
                border-right-style: solid;
                border-right-color: #ffffff;
                padding-right:25px;
                font-weight: 600;
            }
            .pborder_title{
                line-height: 1.42857143;
                padding-right: 25px;
                font-size:1em;
            }
            .p_text_pic{
                width:100%;
                border-radius: 3px;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                -webkit-transition: box-shadow 300ms 0s ease;
                -moz-transition: box-shadow 300ms 0s ease;
                -ms-transition: box-shadow 300ms 0s ease;
                -o-transition: box-shadow 300ms 0s ease;
                transition: box-shadow 300ms 0s ease;
                display:table;
                table-layout: fixed;
                }
            .p_text_pic:hover{
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
            }
            .pl_text_pic{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                padding: 14px 28px;
                /*background-color: #f4f4f4;*/
                text-align: center;
            }
            .pl_text_pic2{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                background-color: #f4f4f4;
                text-align: center;
            }
            .pr_text_pic{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 20px 65px 15px 20px;
                overflow: hidden;
            }
            .pr_text_pic2{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 10px 20px;
                overflow: hidden;
            }

        
            #description_2298 .public_center{
                border-spacing:0px;
            }
        #description_2298{
                    background-color:#ffffff;
                }#description_2298{
                        font-size:0px;
                }#description_2298 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_2298 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_2298 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_2298 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_2298 .color_title{/*range title asli module*/
                            color:#ffffff ;
                                }#description_2298 .color_text{/*range text haye module  */
                            color:#ffffff;
                                }#description_2298 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_2298 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_2298 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_2298 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color:#ffffff ;
                                }#description_2298 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_2298 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_2298 .color_box_text{/*range text dakhele box ha! */
                            color:#ffffff ;
                                }#description_2298 .color_box_title{/*range title dakhele box ha!*/
                            color:#ffffff ;
                                }#description_2298 .pr_1200 , #description_2298 .color_1200_bg{
                             background-color:#ffffff ;
                             padding:0px ;
                                }.module[data-id_page='15558']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:40px;padding-bottom:50px;border-style:none;}.module[data-id_page='15558']:hover{;}.module[data-id_page='15558']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='15558'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='15558']  
                
                .module[data-id_page='15558'] .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='15558'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='15558']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_1257 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_1257 .content_str{
				width:100%;
			}
            #module_new_medical_1257 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_1257 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_1257 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_1257 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_1257 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_1257 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_1257 .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_1257 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_1257 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_1257 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_1257 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_1257 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_1257 a{
                color:#00AFEF!important;
            }
            #module_new_medical_1257 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_1257 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_1257 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_3269 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/Logo/1582012668_076-recovered.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3269 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3269 .background-img{
                border-radius:;
            }
        
            #medical_box_3269 .new_medical_icon{
                
            }
        #medical_box_3269 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3269 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3269 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_12:hover .new_medical_icon{}#medical_box_3269.new_medical_module{background-color:#A1CCD1;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:280px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_15558:hover{}#medical_box_3269 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3269  
                
                #medical_box_3269 .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_3269 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3269:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3269 .mode1-size_3269{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3269 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3269 > div{
               height:100%;
            }
            #medical_box_3269 .mode2-size_3269{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3269 .mode3-size_3269{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3269 .mode4-size_3269{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3269 .mode5-size_3269{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3269 .mode6-size_3269{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3269 .mode7-size_3269{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3269 .mode7-size_3269 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3269 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3269 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3269{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3269 span:hover{
                color:!important;
            }
            .custom2_3269{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3269 span:hover{
                color:;
            }
            #medical_box_3269 .mode-btn1_3269{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3269 .mode-btn1_3269 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3269 .mode-btn2_3269{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3269 .mode-btn2_3269 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3269 .div-btn-title_main_3269{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3269 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3269 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3275 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/Logo/1581842485_010-hand.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3275 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3275 .background-img{
                border-radius:;
            }
        
            #medical_box_3275 .new_medical_icon{
                
            }
        #medical_box_3275 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3275 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3275 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_2973:hover .new_medical_icon{}#medical_box_3275.new_medical_module{background-color:#F4F2DE;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:280px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_15558:hover{}#medical_box_3275 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3275  
                
                #medical_box_3275 .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_3275 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3275:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3275 .mode1-size_3275{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3275 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3275 > div{
               height:100%;
            }
            #medical_box_3275 .mode2-size_3275{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3275 .mode3-size_3275{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3275 .mode4-size_3275{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3275 .mode5-size_3275{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3275 .mode6-size_3275{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3275 .mode7-size_3275{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3275 .mode7-size_3275 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3275 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3275 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3275{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3275 span:hover{
                color:!important;
            }
            .custom2_3275{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3275 span:hover{
                color:;
            }
            #medical_box_3275 .mode-btn1_3275{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3275 .mode-btn1_3275 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3275 .mode-btn2_3275{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3275 .mode-btn2_3275 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3275 .div-btn-title_main_3275{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3275 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3275 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3274 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/Logo/1581839621_026-doctor.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3274 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3274 .background-img{
                border-radius:;
            }
        
            #medical_box_3274 .new_medical_icon{
                
            }
        #medical_box_3274 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3274 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3274 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_18:hover .new_medical_icon{}#medical_box_3274.new_medical_module{background-color:#E9B384;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:280px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_15558:hover{}#medical_box_3274 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3274  
                
                #medical_box_3274 .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_3274 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3274:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3274 .mode1-size_3274{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3274 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3274 > div{
               height:100%;
            }
            #medical_box_3274 .mode2-size_3274{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3274 .mode3-size_3274{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3274 .mode4-size_3274{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3274 .mode5-size_3274{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3274 .mode6-size_3274{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3274 .mode7-size_3274{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3274 .mode7-size_3274 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3274 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3274 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3274{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3274 span:hover{
                color:!important;
            }
            .custom2_3274{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3274 span:hover{
                color:;
            }
            #medical_box_3274 .mode-btn1_3274{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3274 .mode-btn1_3274 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3274 .mode-btn2_3274{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3274 .mode-btn2_3274 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3274 .div-btn-title_main_3274{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3274 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3274 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3273 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/Logo/1581941136_5-speech-bubble.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3273 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3273 .background-img{
                border-radius:;
            }
        
            #medical_box_3273 .new_medical_icon{
                
            }
        #medical_box_3273 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3273 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3273 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_17:hover .new_medical_icon{}#medical_box_3273.new_medical_module{background-color:#7C9D96;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:280px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_15558:hover{}#medical_box_3273 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3273  
                
                #medical_box_3273 .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_3273 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3273:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3273 .mode1-size_3273{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3273 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3273 > div{
               height:100%;
            }
            #medical_box_3273 .mode2-size_3273{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3273 .mode3-size_3273{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3273 .mode4-size_3273{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3273 .mode5-size_3273{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3273 .mode6-size_3273{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3273 .mode7-size_3273{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3273 .mode7-size_3273 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3273 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3273 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3273{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3273 span:hover{
                color:!important;
            }
            .custom2_3273{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3273 span:hover{
                color:;
            }
            #medical_box_3273 .mode-btn1_3273{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3273 .mode-btn1_3273 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3273 .mode-btn2_3273{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3273 .mode-btn2_3273 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3273 .div-btn-title_main_3273{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3273 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3273 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3272 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/Logo/1581840678_066-mobile.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3272 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3272 .background-img{
                border-radius:;
            }
        
            #medical_box_3272 .new_medical_icon{
                
            }
        #medical_box_3272 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3272 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3272 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_16:hover .new_medical_icon{}#medical_box_3272.new_medical_module{background-color:#FAF0E4;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:280px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_15558:hover{}#medical_box_3272 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3272  
                
                #medical_box_3272 .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_3272 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3272:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3272 .mode1-size_3272{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3272 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3272 > div{
               height:100%;
            }
            #medical_box_3272 .mode2-size_3272{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3272 .mode3-size_3272{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3272 .mode4-size_3272{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3272 .mode5-size_3272{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3272 .mode6-size_3272{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3272 .mode7-size_3272{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3272 .mode7-size_3272 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3272 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3272 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3272{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3272 span:hover{
                color:!important;
            }
            .custom2_3272{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3272 span:hover{
                color:;
            }
            #medical_box_3272 .mode-btn1_3272{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3272 .mode-btn1_3272 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3272 .mode-btn2_3272{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3272 .mode-btn2_3272 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3272 .div-btn-title_main_3272{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3272 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3272 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3270 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/Logo/1581841717_075-records.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3270 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3270 .background-img{
                border-radius:;
            }
        
            #medical_box_3270 .new_medical_icon{
                
            }
        #medical_box_3270 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3270 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3270 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_14:hover .new_medical_icon{}#medical_box_3270.new_medical_module{background-color:#9BCDD2;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:280px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_15558:hover{}#medical_box_3270 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3270  
                
                #medical_box_3270 .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_3270 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3270:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3270 .mode1-size_3270{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3270 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3270 > div{
               height:100%;
            }
            #medical_box_3270 .mode2-size_3270{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3270 .mode3-size_3270{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3270 .mode4-size_3270{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3270 .mode5-size_3270{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3270 .mode6-size_3270{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3270 .mode7-size_3270{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3270 .mode7-size_3270 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3270 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3270 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3270{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3270 span:hover{
                color:!important;
            }
            .custom2_3270{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3270 span:hover{
                color:;
            }
            #medical_box_3270 .mode-btn1_3270{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3270 .mode-btn1_3270 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3270 .mode-btn2_3270{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3270 .mode-btn2_3270 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3270 .div-btn-title_main_3270{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3270 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3270 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3267 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/Logo/1582014508_022-healthy.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3267 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3267 .background-img{
                border-radius:;
            }
        
            #medical_box_3267 .new_medical_icon{
                
            }
        #medical_box_3267 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3267 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3267 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_10:hover .new_medical_icon{}#medical_box_3267.new_medical_module{background-color:#FF8551;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:280px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_15558:hover{}#medical_box_3267 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3267  
                
                #medical_box_3267 .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_3267 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3267:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3267 .mode1-size_3267{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3267 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3267 > div{
               height:100%;
            }
            #medical_box_3267 .mode2-size_3267{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3267 .mode3-size_3267{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3267 .mode4-size_3267{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3267 .mode5-size_3267{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3267 .mode6-size_3267{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3267 .mode7-size_3267{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3267 .mode7-size_3267 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3267 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3267 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3267{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3267 span:hover{
                color:!important;
            }
            .custom2_3267{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3267 span:hover{
                color:;
            }
            #medical_box_3267 .mode-btn1_3267{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3267 .mode-btn1_3267 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3267 .mode-btn2_3267{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3267 .mode-btn2_3267 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3267 .div-btn-title_main_3267{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3267 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3267 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3265 .new_medical_icon{
                background-image:url("https://taghzie.ir/files/test/Logo/1582015040_029-proteins.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3265 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3265 .background-img{
                border-radius:;
            }
        
            #medical_box_3265 .new_medical_icon{
                
            }
        #medical_box_3265 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;}#medical_box_18:hover .new_medical_title{}
                #medical_box_3265 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_3265 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:29%;height:81px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_8:hover .new_medical_icon{}#medical_box_3265.new_medical_module{background-color:#FFDEDE;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:280px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#02055a;}#medical_box_15558:hover{}#medical_box_3265 .new_medical_description{color:#000;font-weight:500;font-size:14px;height:100px;text-align:center;margin-top:14px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_18:hover .new_medical_description{}
                   #medical_box_3265  
                
                #medical_box_3265 .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_3265 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_3265:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3265 .mode1-size_3265{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3265 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3265 > div{
               height:100%;
            }
            #medical_box_3265 .mode2-size_3265{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3265 .mode3-size_3265{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3265 .mode4-size_3265{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3265 .mode5-size_3265{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3265 .mode6-size_3265{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3265 .mode7-size_3265{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3265 .mode7-size_3265 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3265 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_3265 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_3265{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3265 span:hover{
                color:!important;
            }
            .custom2_3265{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3265 span:hover{
                color:;
            }
            #medical_box_3265 .mode-btn1_3265{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3265 .mode-btn1_3265 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3265 .mode-btn2_3265{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3265 .mode-btn2_3265 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3265 .div-btn-title_main_3265{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3265 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3265 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_1257 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;margin-top:30px;border-style:none;}.module[data-id_page='5239']:hover .new_medical_box_main{}
            #module_new_medical_1257 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_1257 .new_medical_module{
                    width:292px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_1257 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_1257 .new_medical_module:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_1257 .medical_box_main_animation_trigger:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_1257 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_1257 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_1257 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_1257 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_1257 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_1257 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_1257{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_1257 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_1257 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_1257 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_1257 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_1257 .swiper-container{
                width:1200px;
            }
            #module_new_medical_1257 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_1257 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_1257 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_1257 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='4625']{;background-color:#000046;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:60px;padding-bottom:70px;border-style:none;}.module[data-id_page='4625']:hover{;}.module[data-id_page='4625']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='4625'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='4625']  
                
                .module[data-id_page='4625'] .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='4625'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='4625']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #new_comment_popup{
                    position:fixed;
                    display:flex;
                    background:rgba(0,0,0,0.5);
                    width:auto;
                    height:auto;
                    -webkit-transition:0;-moz-transition:0;-ms-transition:0;-o-transition:0;transition:0;
                    text-align:center;
                    top:0;
                    bottom:0;
                    right:0;
                    left:0;
                    z-index:99999;
                    visibility:hidden;
                    
                    flex-direction:column;
                    justify-content:center;
                
                }
                #new_comment_popup.show_popup{
                    visibility:visible;
                    
                }
                #new_comment_popup > div{
                    display:block;
                    background:#fff;
                    width:auto;
                    height:auto;
                    padding:20px 20px;
                    margin:auto;
                    transform:translateY(-150px);
                    -webkit-transition:transform .3s;-moz-transition:transform .3s;-ms-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s;
                    text-align:center;
                    border-radius:5px;
                    ;
                    position:relative;
                    z-index:999999;
                }
                #new_comment_popup.show_popup > div{
                    transform:translateY(0);
                    
                }
                #new_comment_popup .icon-close-popup{
                    position:absolute;
                    font-size:30px;
                    height:30px;
                    width:30px;
                    border-radius:50%;
                    color:red;
                    top:-10px;
                    right:-10px;
                    background-color:#fff;
                    z-index:9999;
                }
                #new_comment_popup .icon-close-popup i{
                    position:absolute;
                    top:0;
                    right:0;
                }
                #new_comment_popup .container-html{
                    height:100%;
                    overflow:auto;
                    max-height:90vh;
                }
                #new_comment_popup .container-html::-webkit-scrollbar{
                    width:5px;
                    height:100%;
                }
                #new_comment_popup .container-html::-webkit-scrollbar-track{
                    background-color:transparent;
                }
                #new_comment_popup .container-html::-webkit-scrollbar-thumb{
                    background-color:#777;
                    border-radius:20%;
                }
            
            #pagination_product{
                padding: 5px;
                border: 1px solid #e8e8e8;
                border-radius: 3px;
                justify-content: space-between;
                margin: 15px 0;
                display: flex;
                width: 100%;
                height: 50px;
                height: max-content;
                height: fit-content;
            }
            #pagination_product > div {
                display: flex;
            }
            #pagination_product > div > *{
                margin: 0 10px;
            }
            #pagination_product span,#pagination_product a,#pagination_product label{
                text-align: center;
                flex-direction: column;
                display: flex;
                justify-content: center;
                border: 1px solid #bababa;
                border-radius: 50%;
            }
            #pagination_product a,#pagination_product label{
                background-color: #ffffff;
                color: #0f0f0f;
                width: 30px;
                height: 30px;
                cursor: pointer;
            }
            #pagination_product span{
                background-color: #e8e8e8;
                color: #5e5e5e;
                opacity: .8;
                width: 32px;
                height: 32px;
            }
            #pagination_product i{
                font-size: 23px;
                margin-bottom: 1px;
            }
            #pagination_product .fa-caret-right{
                margin-left: 4px;
            }
            #pagination_product .fa-caret-left{
                margin-right: 4px;
            }
            #pagination_product label:after{
                content:"" !important;
            }
            #pagination_product_button{
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
            }
            .pagination_product_button_load_more{
                padding: 5px;
                border: 1px solid #e8e8e8;
                border-radius: 3px;
                margin: 15px 0;
                width: calc(100% - 50px);
                height: fit-content;
                text-align: center;
                color: #333;
                cursor: pointer;
            }
        
            .fw500{
                font-weight: 500;
            }
            .parent_input_box{
                background-color: #e8e8e8;
                padding: 0;
                border-radius: 3px;
                margin: 5px 0;
            }
            .parent_input_box:first-child{
                margin-top: 0;
            }
            .parent_input_box > div:first-child{
                width: 10%;
                text-align: center;
                color: #555;
            }
            
            .new_color_tag{
                color: #00AFEF !important;
            }
            .flex1{
                flex: 1 0;
            }
            .module_new_comment334 .input_box{
                background-color: #e8e8e8;
                padding: 5px 10px;
                border: 2px solid transparent;
                border-radius: 5px;
                width: 100%;
            }
            .module_new_comment .input_box:focus{
                border-color: #6ac7ff;
            }
            .module_new_comment .input_box.error{
                border-color: #f4b3b3;
            }
            .module_new_comment textarea{
                min-height: 140px;
                width: 100%;
                resize: vertical;
            }
            .module_new_comment input{
                width: 318px;
            }
            .module_new_comment334 button{
                padding: 9px 0;
                border: none;
                width: 100%;
                background-color: green;
                color: #FFFFFF;
                margin-top:3px;
                max-width: 250px;
                border-radius: 3px;
                cursor: pointer;
                -webkit-box-shadow:0 14px 26px -12px #afafaf, 0 4px 23px 0 #f7fff7, 0 8px 10px -5px #003700;
                -moz-box-shadow:0 14px 26px -12px #afafaf, 0 4px 23px 0 #f7fff7, 0 8px 10px -5px #003700;
                box-shadow:0 14px 26px -12px #afafaf, 0 4px 23px 0 #f7fff7, 0 8px 10px -5px #003700;
            }
            .module_new_comment334 button:hover{
                -webkit-box-shadow: 0 14px 26px -12px #417a41, 0 4px 23px 0 #ffffff, 0 8px 10px -5px #0c510a;
                -moz-box-shadow: 0 14px 26px -12px #417a41, 0 4px 23px 0 #ffffff, 0 8px 10px -5px #0c510a;
                box-shadow: 0 14px 26px -12px #417a41, 0 4px 23px 0 #ffffff, 0 8px 10px -5px #0c510a;
            }
            #new_comment_popup .module_new_comment{
                display: block;
                width: 600px;
            }
            #new_comment_popup .input_box{
                border-radius: 1px;
            }
            #new_comment_popup .parent_input_box{
                width: 49%;
                margin: 0;
            }
            #new_comment_popup .parent_input_box input{
                width: 265px;
            }
            .module_new_comment .result-msg{
                height:50px;
                line-height: 50px;
                padding: 0 20px;
                border: 2px solid;
                border-radius: 4px;
                font-weight: 300;
                margin: 10px 0;
                font-size: 14px;
            }
            .module_new_comment .result-msg.accept-send-msg{
                color: #054012;
                background-color: #a6edbb;
                border-color: #93e2ab;
            }
            .module_new_comment .result-msg.error-send-msg{    
                color: #570b10;
                background-color: #f8c3c3;
                border-color: #f4b3b3;
            }
            .parent-comment-box{
                background-color: #fff;
                padding: 30px 10px;
                font-size: 14px;
                border-bottom: 1px solid #eee;
                color: #2F425C;
                text-align: justify;
            }
            .parent-answer-box{
                background-color: #eee;
                padding: 10px;
                width: 98%;
                margin: 15px auto;
                position:relative;
                border: 1px solid #ddd;
                border-radius: 2px;
            }
            .parent-answer-box:before{
                content: "";
                border: 8px solid;
                position: absolute;
                right: 30px;
                bottom: 100%;
                border-color: transparent transparent #ddd transparent;
                z-index: 9;
            }
            .answer-comment-btn span{
                color: #c71b0c;
                font-weight: 500;
                margin-right: 5px;
                font-size: 15px;
            }
            .answer-comment-btn i{
                color: #c71b0c;
            }
            .parent-score{
                padding: 0 10px;
                margin: 0 3px;
                border: 1px solid #e0e0e0;
                border-radius: 2px;
            }
            .parent-score i{
                margin-right: 5px;
                cursor: pointer;
            }
            .like-score.chooses{
                color: #05810b;
            }
            .dis-like-score.chooses{
                color: #c71b0c;
            }
            .favorite-score i{
                cursor: pointer;
            }
            .favorite-score .like-score.chooses{
                color: #c71b0c;
            }
            .txtd-left{
                direction: ltr;
                text-align: left;
            }
            .txtd-right{
                direction: rtl;
                text-align: right;
            }
            .placeholder-right:-moz-placeholder{
                text-align: right !important;
            }
            .placeholder-right:-ms-input-placeholder{
                text-align: right !important;
            }
            .placeholder-right::-webkit-input-placeholder{
                text-align: right !important;
            }
            .placeholder-left:-moz-placeholder{
                text-align: left !important;
            }
            .placeholder-left:-ms-input-placeholder{
                text-align: left !important;
            }
            .placeholder-left::-webkit-input-placeholder{
                text-align: left !important;
            }
            #result_send_msg{
                text-align: center;
                padding: 0.5rem 0;
                color: red;
            }
        
                .subArrow{
                    color: !important;
                    padding-right: 5px;
                    vertical-align: middle;
                    font-size: 12px;
                    margin-top: 2px;
                }
                .lngBtn{
                    width: 24px;
                    height: 24px;
                    line-height: 21px;
                    color: #585757;
                    background-color: #ccc9c9;
                    font-size: 13px;
                    border-radius: 4px;
                    box-shadow: 2px 1px 2px #aaaaaa;
                    cursor:pointer;
                    border: 1px solid #ccc9c9;
                }
                .lngBtn.langActive{background-color: #f0f0fb;border-color:#cacaca;}
                .lngBtn>img{
                    width:100%;
                    height:100%;
                    object-fit:cover;
                }
                .lngBtn:hover{
                    background-color: #f0f0fb;
                    border-color: #d1d1d4;
                    color: gray;
                }
                .su_sub_menu{
                    right: 100%;
                    display:none;
                    position:absolute;
                    padding:0;
                    background: #ffffff;
                    z-index: 1000;
                    top: 0;
                     -webkit-transition: opacity,.3s ease-in-out;
                    -moz-transition: opacity,.3s ease-in-out;
                    -o-transition: opacity,.3s ease-in-out;
                    transition: opacity,.3s ease-in-out;
                    min-width: 120%;
                    cursor: pointer;
                    }
                .s_sub_sub_title {font-size:13px !important;font-weight:normal !important;white-space: nowrap;}
                .sub-nav li:hover .su_sub_menu,.sub-nav li ul li:hover .su_sub_menu{
                    display:block;
                }
                .su_sub_menu li:hover .s_sub_sub_title, .su_sub_menuEn li:hover .s_sub_sub_title{
                     color: !important;
                }
                .sub-nav li:hover .s_sub_title, .sub-navEn li:hover .s_sub_title{
                    color: !important;
                }
                .s_sub_title{display:inline-block;}
                .sub-nav li:hover .sub_arrow{
                    content: "";
                    background-image: url(https://taghzie.ir/files/main/main/img/icons/arrow-hi.png);
                    background-size:contain;
                    background-repeat:no-repeat;
                }
                .sub_arrow{width:5%;height:10px;}
                .sub_arrow.rotate{transform:rotate(180deg);}

                .m_title{width:92%;}
            
        .medical_main_content.fixed{
            position: fixed !important;
            top: 0 !important;
            height: 61px;
            z-index: 400 !important;
            top: 0;
            left: 0;
            right: 0;
            background-color:#FFFFFF;
            border-bottom: 1px #B5B5BB solid;
            box-shadow: 0 2px 4px rgba(51,51,51,0.20);
            box-shadow: 0 1px 5px rgba(0,0,0,0.1);
       }
       #header_menu_container>.co_main_content{
           height: 61px;
           background-color:#FFFFFF;
       }
        .st-box-w0{width:10%;}
        .st-box-w1{width:60%;}
        .st-box-w2{width:28%;}
       #s_breadCrump{
            width: 1200px;
            margin: auto;
            height: 60px;
            line-height:60px;
        }
        #s_breadCrump span,#s_breadCrump a{display:inline-block;padding: 0px 10px;}
        #div_profile_picture{vertical-align:middle;}
        .lineHeight{line-height:2;}
            #header{
                width:100%;
                position:relative;
                z-index:999;
            }
            #header_top_bg{
                width:100%;
                height:40px;
                background-color:#F1F1F1;
            }
            #tellNum{font-size:20px;}
            #tellRow{width:100%;}
            #header_top_container{
                width:1200px;
                margin:auto;
                padding:5px 0;
            }
            #header_center_container{
                width:1200px;
                height: 110px;
                line-height:110px;
                margin:auto;
                position:relative;
                z-index:102;
                background:#FFFFFF;
            }
            #leftSideBox{
                width:600px;
            }
            .subDiv{
                width:49%;display:inline-block;vertical-align:top;
            }
            #tellBox{
                text-align:left;
            }
            #header_menu_container{
                width:100%;
                border: .5px solid #eeeeee;
                position: relative;
                z-index: 10;
                background: #ffffff;
            }
            #fixed_header_menu_container{
                width:100%;
                border: .5px solid #eeeeee;
                position:fixed;
                top:-100px;
                z-index: 1000;
                background: #fff;
                opacity:0;

            }
            .sub-nav{
                width: max-content;
                right: 0px;
                visibility: hidden;
                opacity: 0;
                background: #ffffff;
                position: absolute;
                z-index: 1000;
                top: 100%;
                 -webkit-transition: opacity,.3s ease-in-out;
                 -moz-transition: opacity,.3s ease-in-out;
                 -o-transition: opacity,.3s ease-in-out;
                 transition: opacity,.3s ease-in-out;
                cursor:pointer;
                box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.32);
                min-width:120%;
            }
            .s_sub_title {
                font-size:14px !important;
                font-weight:normal !important;
                white-space:nowrap;
                cursor:pointer;
            }
            .sub-nav li {
                position: relative;
                display: block;
                padding: 5px 10px 0;
                box-sizing: border-box;
                line-height: 40px;
                z-index:100000;
                text-align:right;
            }

            .menu_items:hover .sub-nav{
                visibility: visible;
                opacity:1;
            }
            .sub-nav li:hover{background:;}
            #navigation{
                width:1200px;
                margin:auto;
                -webkit-flex-grow: 10;
                -moz-flex-grow: 10;
                -ms-flex-positive: 10;
                display: flex;
                -ms-flex-grow: 10;
                flex-grow: 10;
                -webkit-justify-content: flex-start;
                -moz-justify-content: flex-start;
                -ms-justify-content: flex-start;
                justify-content: flex-start;
                -ms-flex-pack: justify;
            }
            #fixed_navigation{
                width:1200px;
                margin:auto;
            }
            .active_g{
                border-top:2px solid  !important;
            }
            .activeTxt{color:;}
            #logoBox{width:600px;text-align:right;}
            #st_address{width:345px;
                text-align: right;}
            #st_gap{width:265px;}
            #st_tell{width:210px;
                text-align: left;}
            .header_center_box{
                display:table-cell;
            }
            .st-address{
                display:table-cell;
                vertical-align:middle;
            }
            #tellIcon{
                width:22px;
                background-image:url(https://taghzie.ir/files/1/tell.png);
                background-size:contain;
                background-repeat:no-repeat;
            }
            #addressIcon{
                width:10%;

            }
            .menu_items{
                display: flex;
                -webkit-flex-grow: 0;
                -moz-flex-grow: 0;
                -ms-flex-positive: 0;
                -ms-flex-grow: 0;
                flex-grow: 0;
                -webkit-justify-content: center;
                -moz-justify-content: center;
                -ms-flex-pack: center;
                -ms-justify-content: center;
                justify-content: center;

                height: 60px;
               /* display: table-cell;*/
                line-height: 20px;
                text-align: center;
                border: .5px solid #eeeeee;
                position: relative;
                padding:18px 20px 8px 20px;
            }
            .menu_items a,.menu_items span{
                font-size: 14px;
                font-weight: bold;
            }
            #img-logo{
               height:80px;
               object-fit: cover;
               max-height: 110px;
            }
            .st-box{
                display:inline-block;
                line-height:30px;
                vertical-align: top;
            }
            #lngBox{
               width:10%;
               display:inline-block;
               line-height:30px;
               vertical-align: top;
               text-align: center;
            }
            #st-txtRight{
                text-align:right;
            }
            .st-txtRight{
                text-align:right;
            }
            #st-txtLeft{
                text-align:left;
            }
            .st-icons{
                width:26px;
                height:26px;
            }
            .st-txtLeft{
                display:inline-block;
            }
            #en-fa{
                width:26px;
                height:26px;
            }
            .rightItems{
                display:inline-block;
                margin-left:20px;
           }
           .leftItems{
                display:inline-block;
                margin-left:10px;
           }
           #mailIcon{
                width:19px;
                height:22px;
                background-image:url(https://taghzie.ir/files/1/email.png);
                background-size:contain;
                background-repeat:no-repeat;
           }
           .st-mail{
                display: inline-block;
                vertical-align: middle;
                font-size:14px;
                color:#898989;
           }
           .address_box{
                padding:10px;
           }
           #address_txt{width:88%;font-size:14px;}
           #contactUsLink{
                font-size: 14px;
                color: #898989;
                text-decoration: underline;
           }

        
     #t-footer_bg{
        width:100%;
        background-color:#000137;
     }
     #footer-wrap{
        width:1200px;
        margin:auto;
     }
     #t-footer_container{
        width:100%;
        padding: 50px 0;
     }
     .t-footer_section{
        display:inline-block;
        vertical-align: top;
        width:330px;
        margin:0 30px;
        color:#FFFFFF;
     }
     #t-footer_construct p{
        width:100%;
        margin-bottom: 20px;
     }
     #footer_logo{
        width:100%;
        height:65px;
        object-fit:contain;
     }
     #construct_txt{
        margin-bottom:10px;
        text-align:justify;
        font-size: 14px;
        line-height: 26px;
        color:#ffffff;
     }
     .t-section_title{
        font-size:20px;
        font-weight:500;
     }
     .t-sub_section{
        margin-top: 10px;
     }
     .t-sub_section li{
        padding-top:10px;
     }
     .sub_subtitle{
        font-size:14px;
        color:#ffffff;
     }
     .service_txt span{
        color:#FFFFFF;
        font-size: 15px;
     }
   .news_content a{
        color:#ffffff;
        font-size:14px;
   }
   .news_content a:hover{
        color:#ffc000;
   }
   .news_content span{
        color:#85868c;
        font-size: 13px;
   }
   #bottom-bar_bg{
        width:100%;
        background:#252525 none repeat center top;
   }
   #bottom_bar_wrap{
        width:1200px;
        line-height:50px;
        margin:auto;
        font-size: 12px;
   }
   .bottom_txt{
        width:49%;
        display:inline-block;
        padding:10px 0;
        color: #aaaaaa;
   }
   .bottom_txt a{color: #aaaaaa;}
   .bottom_txt a:hover{text-decoration:underline}
   #bottom_right_txt{
        text-align:right;
        padding-right: 30px;
   }
   #bottom_left_txt{text-align:left;}


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