/* ==========================================================================
   $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
   ========================================================================== */.module[data-id_page='8087']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:450px;border-style:none;}.module[data-id_page='8087']:hover{;}.module[data-id_page='8087']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='8087'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='8087']:hover .background-img {
                    filter:brightness(0.7);
                }
            
                .module[data-id_page='8087'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: brightness(0.7);
                }
            
                .module[data-id_page='8087'] 
            
            .module[data-id_page='8087'] .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='8087'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='8087']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='8087']{
                               background-image:url("https://irantabligh.co/files/1692617714_88.jpg");
                           }
                       
            #module_new_medical_1062 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_1062 .content_str{
				width:100%;
			}
            #module_new_medical_1062 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_1062 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_1062 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_1062 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_1062 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_1062 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_1062 .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_1062 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_1062 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_1062 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_1062 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_1062 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_1062 .new_medical_description a,#module_new_medical_1062 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_1062 .new_medical_description a:hover,#module_new_medical_1062 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_1062 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_1062 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_4001 .new_medical_icon{
                background-image:url("https://irantabligh.co/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_4001 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_4001 .background-img{
                border-radius:;
            }
        #medical_box_4001 .new_medical_title{color:#ffffff;font-weight:bold;font-size:32px;text-align:right;line-height:48px;}#medical_box_4001:hover .new_medical_title{}
                #medical_box_4001 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_4001 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_1585:hover .new_medical_icon{}#medical_box_4001.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-left:400px;border-style:none;}#medical_box_1585:hover{}#medical_box_4001 .new_medical_description{color:#ffffff;font-weight:500;font-size:16px;line-height:32px;text-align:right;padding-top:16px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_4001:hover .new_medical_description{}
                #medical_box_4001 
            
            #medical_box_4001 .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_4001 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_4001:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_4001 .mode1-size_4001{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_4001 .new_medical_box > div{
                width:100%;
            }
             #medical_box_4001 > div{
               height:100%;
            }
            #medical_box_4001 .mode2-size_4001{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_4001 .mode3-size_4001{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_4001 .mode4-size_4001{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_4001 .mode5-size_4001{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_4001 .mode6-size_4001{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_4001 .mode7-size_4001{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_4001 .mode7-size_4001 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_4001 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_4001 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_4001{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_4001 span:hover{
                color:!important;
            }
            .custom2_4001{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_4001 span:hover{
                color:;
            }
            #medical_box_4001 .mode-btn1_4001{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_4001 .mode-btn1_4001 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_4001 .mode-btn2_4001{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_4001 .mode-btn2_4001 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_4001 .div-btn-title_main_4001{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_4001 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_4001 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_1062 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:64px;border-style:none;}.module[data-id_page='1044']:hover .new_medical_box_main{}
            #module_new_medical_1062 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_1062 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_1062 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_1062 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_1062 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_1062 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_1062 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_1062 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_1062 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_1062 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_1062 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_1062{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_1062 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_1062 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_1062 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_1062 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_1062 .swiper-container{
                width:1200px;
            }
            #module_new_medical_1062 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_1062 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_1062 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_1062 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='8089']{;background-size:contain;background-repeat:no-repeat;background-position:top;background-attachment:scroll;width:100%;max-width:100%;padding-top:128px;padding-bottom:128px;z-index:50;border-style:none;}.module[data-id_page='8089']:hover{;}.module[data-id_page='8089']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='8089'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='8089']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='8089'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='8089'] 
            
            .module[data-id_page='8089'] .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='8089'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='8089']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='8089']{
                               background-image:url("https://irantabligh.co/files/sample/melk_1639571458_2.jpg");
                           }
                       
            #module_new_medical_1063 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_1063 .content_str{
				width:100%;
			}
            #module_new_medical_1063 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_1063 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_1063 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_1063 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_1063 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_1063 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_1063 .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_1063 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_1063 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_1063 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_1063 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_1063 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_1063 .new_medical_description a,#module_new_medical_1063 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_1063 .new_medical_description a:hover,#module_new_medical_1063 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_1063 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_1063 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_4004 .new_medical_icon{
                background-image:url("https://irantabligh.co/files/icons/1692619051_emovebg-preview.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_4004 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_4004 .background-img{
                border-radius:;
            }
        
            #medical_box_4004 .new_medical_icon{
                
            }
        #medical_box_4004 .new_medical_title{color:#555c66;font-weight:bold;font-size:24px;text-align:center;margin-top:16px;line-height:40px;}#medical_box_931:hover .new_medical_title{}
                #medical_box_4004 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_4004 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_4004:hover .new_medical_icon{}#medical_box_4004 .new_medical_description{color:#000;font-weight:300;font-size:16px;line-height:32px;text-align:center;margin-top:16px;border-style:solid;border-color:#555;}#medical_box_931:hover .new_medical_description{}
                #medical_box_4004 
            
            #medical_box_4004 .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_4004 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_4004:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_4004 .mode1-size_4004{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_4004 .new_medical_box > div{
                width:100%;
            }
             #medical_box_4004 > div{
               height:100%;
            }
            #medical_box_4004 .mode2-size_4004{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_4004 .mode3-size_4004{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_4004 .mode4-size_4004{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_4004 .mode5-size_4004{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_4004 .mode6-size_4004{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_4004 .mode7-size_4004{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_4004 .mode7-size_4004 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_4004 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_4004 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_4004{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_4004 span:hover{
                color:!important;
            }
            .custom2_4004{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_4004 span:hover{
                color:;
            }
            #medical_box_4004 .mode-btn1_4004{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_4004 .mode-btn1_4004 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_4004 .mode-btn2_4004{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_4004 .mode-btn2_4004 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_4004 .div-btn-title_main_4004{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_4004 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_4004 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_4003 .new_medical_icon{
                background-image:url("https://irantabligh.co/files/sample/image_contact-us_contact-us8_1639559813_ebg-preview (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_4003 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_4003 .background-img{
                border-radius:;
            }
        
            #medical_box_4003 .new_medical_icon{
                
            }
        #medical_box_4003 .new_medical_title{color:#555c66;font-weight:bold;font-size:24px;text-align:center;margin-top:16px;line-height:40px;}#medical_box_931:hover .new_medical_title{}
                #medical_box_4003 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_4003 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_930:hover .new_medical_icon{}#medical_box_4003 .new_medical_description{color:#000;font-weight:300;font-size:16px;line-height:32px;text-align:center;margin-top:16px;border-style:solid;border-color:#555;}#medical_box_931:hover .new_medical_description{}
                #medical_box_4003 
            
            #medical_box_4003 .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_4003 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_4003:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_4003 .mode1-size_4003{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_4003 .new_medical_box > div{
                width:100%;
            }
             #medical_box_4003 > div{
               height:100%;
            }
            #medical_box_4003 .mode2-size_4003{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_4003 .mode3-size_4003{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_4003 .mode4-size_4003{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_4003 .mode5-size_4003{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_4003 .mode6-size_4003{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_4003 .mode7-size_4003{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_4003 .mode7-size_4003 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_4003 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_4003 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_4003{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_4003 span:hover{
                color:!important;
            }
            .custom2_4003{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_4003 span:hover{
                color:;
            }
            #medical_box_4003 .mode-btn1_4003{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_4003 .mode-btn1_4003 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_4003 .mode-btn2_4003{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_4003 .mode-btn2_4003 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_4003 .div-btn-title_main_4003{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_4003 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_4003 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_4002 .new_medical_icon{
                background-image:url("https://irantabligh.co/files/icons/1692619052_emovebg-preview.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_4002 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_4002 .background-img{
                border-radius:;
            }
        
            #medical_box_4002 .new_medical_icon{
                
            }
        #medical_box_4002 .new_medical_title{color:#555c66;font-weight:bold;font-size:24px;text-align:center;margin-top:16px;line-height:40px;}#medical_box_931:hover .new_medical_title{}
                #medical_box_4002 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_4002 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_4002:hover .new_medical_icon{}#medical_box_4002 .new_medical_description{color:#000;font-weight:300;font-size:16px;line-height:32px;text-align:center;margin-top:16px;border-style:solid;border-color:#555;}#medical_box_931:hover .new_medical_description{}
                #medical_box_4002 
            
            #medical_box_4002 .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_4002 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_4002:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_4002 .mode1-size_4002{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_4002 .new_medical_box > div{
                width:100%;
            }
             #medical_box_4002 > div{
               height:100%;
            }
            #medical_box_4002 .mode2-size_4002{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_4002 .mode3-size_4002{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_4002 .mode4-size_4002{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_4002 .mode5-size_4002{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_4002 .mode6-size_4002{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_4002 .mode7-size_4002{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_4002 .mode7-size_4002 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_4002 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_4002 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_4002{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_4002 span:hover{
                color:!important;
            }
            .custom2_4002{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_4002 span:hover{
                color:;
            }
            #medical_box_4002 .mode-btn1_4002{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_4002 .mode-btn1_4002 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_4002 .mode-btn2_4002{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_4002 .mode-btn2_4002 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_4002 .div-btn-title_main_4002{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_4002 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_4002 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_1063 .new_medical_title_main{color: #f58200;font-weight:bold;font-size:32px;justify-content:center;text-align:center;line-height:64px;}.module[data-id_page='788']:hover .new_medical_title_main{}#module_new_medical_1063 .new_medical_description_main{color:#ffffff;font-weight:300;font-size:16px;line-height:32px;text-align:center;margin-top:16px;padding-right:350px;padding-left:350px;border-style:solid;border-color:#555;}.module[data-id_page='788']:hover .new_medical_description_main{}#module_new_medical_1063 .new_medical_box_main{background-color:#f5f7fa;display:flex;flex-wrap:wrap;visibility:visible;margin-top:64px;padding-top:64px;padding-bottom:64px;padding-right:32px;padding-left:32px;border-style:none;}.module[data-id_page='788']:hover .new_medical_box_main{}
            #module_new_medical_1063 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_1063 .new_medical_module{
                    width:357px;
                    position:relative;
                    overflow:hidden;
                    margin-left:32px;
                    margin-bottom:0px;
                }
                #module_new_medical_1063 .medical_box_main_animation_trigger{
                    margin-left:32px;
                    margin-bottom:0px;
                }
                #module_new_medical_1063 .new_medical_module:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_1063 .medical_box_main_animation_trigger:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_1063 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_1063 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_1063 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_1063 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_1063 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_1063 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_1063{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_1063 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_1063 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_1063 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_1063 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_1063 .swiper-container{
                width:1200px;
            }
            #module_new_medical_1063 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_1063 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_1063 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_1063 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='8090']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;margin-top:-380px;border-style:none;}.module[data-id_page='8090']:hover{;}.module[data-id_page='8090']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='8090'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='8090'] 
            
            .module[data-id_page='8090'] .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='8090'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='8090']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layoutfull_box_77.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;height:50vw;border-style:none;}#layoutfull_box_77:hover{}
                #layoutfull_box_77:hover .background-img {
                    filter:none;
                }
            
                #layoutfull_box_77 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://irantabligh.co/files/icons/location/1692619664_iran tabligh.JPG");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layoutfull_box_77 
            
            #layoutfull_box_77 .new_layoutfull_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layoutfull_box_77 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_77:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_77 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_77.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_77 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_90{
                overflow:hidden;
            }
            #module_new_layoutfull_90 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_90 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_90 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
            .color_title{
               color:;
            }
            #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_8_name_country{
                color: #333;
                height:30px;
                line-height:30px;
            }
            #pform_8_code{
                border-right:1px solid #d1d1d1;
                width: 150px;
            }
            #pform_8_tell{
                padding: 10px;
            }
        
            .delete_img{
                position: absolute;
                right: 0;
                top: 0;
                cursor:pointer;
                width: 20px;
                hei