/* ==========================================================================
   $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='1202']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:200px;padding-bottom:200px;border-style:none;}.module[data-id_page='1202']:hover{;}.module[data-id_page='1202']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1202'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1202']:hover .background-img {
                    filter:brightness(0.7);
                }
            
                .module[data-id_page='1202'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: brightness(0.7);
                }
            
                .module[data-id_page='1202'] 
            
            .module[data-id_page='1202'] .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='1202'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1202']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='1202']{
                               background-image:url("https://shimilink.com/files/background/1718715493_شیمی لینک (1).webp");
                           }
                       
            #module_new_medical_242 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
            #module_new_medical_242 .new_medical_description ul{
               list-style-position:inside;
            }
            
			#module_new_medical_242 .content_str{
				width:100%;
			}
            #module_new_medical_242 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_242 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_242 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_242 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_242 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_242 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_242 .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_242 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_242 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_242 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_242 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_242 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_242 .new_medical_description a,#module_new_medical_242 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_242 .new_medical_description a:hover,#module_new_medical_242 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_242 .swiper-pagination{
                position: absolute;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_242 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_427 .new_medical_icon{
                background-image:url("https://shimilink.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_427 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_427 .background-img{
                border-radius:;
            }
        #medical_box_427 .new_medical_button{color:#fff;background-color:#C938B5;font-weight:500;font-size:20px;width:150px;height:45px;line-height:45px;text-align:center;margin-top:40px;border-radius:3px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_427 .new_medical_button:hover{box-shadow:0px 0px 0px 0px  !important;}#medical_box_427 .new_medical_title{color:#ffffff;font-weight:bold;font-size:30px;text-align:right;line-height:32px;}#medical_box_2:hover .new_medical_title{}
                #medical_box_427 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_427 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_2:hover .new_medical_icon{}#medical_box_427 .new_medical_description{color:#ffffff;font-weight:bold;font-size:24px;line-height:64px;text-align:right;margin-top:32px;border-style:solid;border-color:#555;}#medical_box_2:hover .new_medical_description{}
                #medical_box_427 
            
            #medical_box_427 .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_427 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_427:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_427:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_427 .mode1-size_427{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_427 .new_medical_box > div{
                width:100%;
            }
             #medical_box_427 > div{
               height:100%;
            }
            #medical_box_427 .mode2-size_427{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_427 .mode3-size_427{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_427 .mode4-size_427{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_427 .mode5-size_427{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_427 .mode6-size_427{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_427 .mode7-size_427{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_427 .mode7-size_427 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_427 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_427 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_427{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_427 span:hover{
                color:!important;
            }
            .custom2_427{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_427 span:hover{
                color:;
            }
            #medical_box_427 .mode-btn1_427{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_427 .mode-btn1_427 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_427 .mode-btn2_427{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_427 .mode-btn2_427 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_427 .div-btn-title_main_427{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_427 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_427 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_242 .new_medical_title_main{font-weight:bold;justify-content:center;text-align:center;}.module[data-id_page='1202']:hover .new_medical_title_main{}#module_new_medical_242 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-left:200px;border-style:none;}.module[data-id_page='1']:hover .new_medical_box_main{}
            #module_new_medical_242 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_242 .new_medical_module{
                    width:1000px;
                    position:relative;
                    overflow:hidden;
                    margin-left:0px;
                    margin-bottom:0px;
                }
                #module_new_medical_242 .medical_box_main_animation_trigger{
                    margin-left:0px;
                    margin-bottom:0px;
                }
                #module_new_medical_242 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_242 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_242 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_242 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_242 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_242 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_242 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_242 .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_242{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_242 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_242 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_242 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_242 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_242 .swiper-container{
                width:1200px;
            }
            #module_new_medical_242 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_242 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_242 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_242 .bottom_layer_diagonal{
                z-index:9 !important;
            }
          
            .all-content{
                height: 430px;
            }
        
                    #s_breadCrump{
                        flex: 0 0 100%;
                        max-width: 100%;
                        width: 100%;
                        margin: auto;
                        height: 50px;
                        line-height:24px;
                        padding:0 20px;
                        font-size: 12px;
                        color:#000000;
                    }
                    #s_breadCrump span,#s_breadCrump a{display:inline-block;padding: 0px 5px;color:#000000;}
                 
            .card-main{
                width: 100%;
                padding: 0 10px;
            } 
            #locals_main .card-box-width{
                flex: 0 0 25%;
                max-width: 25%;
            }
            .pagination{
                width: 100%;
                flex: 0 0 calc(100% - 20px);
                max-width: calc(100% - 20px);
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                height: 50px;
                padding: 15px;
                margin: 20px 10px;
                border-radius: 50px;
                background-color: #222831;
                box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
            }
            .arrow-pagination > svg{
                width: 100%;
                height: 100%;
            }
            .arrow-pagination > svg path{
                fill: #222831;
            }
            .left-pagination{
                transform: rotate(180deg);
            }
            .number-pagination{
                display: flex;
                flex-direction: row;
                align-items: center;
                height: 100%;
            }
            .num-pagination:hover{
                background-color: #1e5f74;
            }
            .num-pagination:hover > a{
                color: #fff;
            }
            .arrow-pagination:hover{
                background-color: #1e5f74;
            }
            .arrow-pagination:hover >svg path{
                fill: #fff;
            }
            .pagination-style{
                flex:0 0 30px;
                max-width: 30px;
                width:100%;
                height: 30px;
                background-color: #dddddd;
                border-radius: 50%;
                padding: 5px;
                cursor: pointer;
                text-align: center;
            }
            .number-pagination .pagination-style{
                margin: 0 7px;
            }
            .number-pagination .arrow-pagination > a{
                display: block;
                text-align: center;
            }
            .active-pagination{
                background-color: #00baff !important;
            }
            .active-pagination > a{
                color: #fff !important;
            }
            .pagination-style > span{
                display: block;
                margin-top: -4px;
                font-weight: 600;
            }
            .non-product{   
                font-size: 25px;
                display: block;
                text-align: center;
                font-weight: 600;
                color: #222;
                margin: 50px 0;
                width: 100%;
            }
            .post-details > i{
                transform: rotate(180deg);
            }
            .post-details::after{
                right: 0;
            }
            .link-box::after{
                right: 0;
            }
            .link-box > i{
                transform: rotate(180deg) translateY(-3px);
            }
            .link-box:hover i{
             color:#39dfaa;
            }
            #top_custom_review{
                flex: 0 0 100%;
                width: 100%;
                max-width: 100%;
            }
            .adv-img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                padding: 15px;
                user-drag: none;
                -webkit-user-drag: none;
                user-select: none;
                -moz-user-select: none;
                -webkit-user-select: none;
                -ms-user-select: none;
            }
           
                .card-main{ 
                    flex: 0 0 100%;
                    max-width: 100%;
                }
            .card{        display: block;        width: 100%;        -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%);        border-radius: 4px;position: relative;    }    .card:hover{        -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 32%);    }    .div-box-img{        width: 100%;        height: 200px;        position: relative;    }    .img-card{        width: 100%;        height: 100%;        object-fit: cover;            user-drag: none;            -webkit-user-drag: none;            user-select: none;            -moz-user-select: none;            -webkit-user-select: none;            -ms-user-select: none;    }    .all-content{        padding: 10px 11px 0;overflow: auto;    }    .div-title-brand-model{        width: 100%;        display: flex;        justify-content: start;        align-items: start;        flex-direction: column;        flex-wrap: wrap;        border-bottom: 1px solid #E8E8E8;    }    .title-model{width: 98%;        height: 40px;        font-size: 16px;        font-weight: 600;padding: 8px 8px 0;white-space: nowrap;    overflow: hidden;    text-overflow: ellipsis;    }    .title-full-model{        width: 100%;        padding: 8px;        font-size: 15px;        line-height: 20px;        font-variant: normal;        color: #9b9b9b;        letter-spacing:.28px;        font-weight: 500;        white-space: nowrap;    overflow: hidden;    text-overflow: ellipsis;        justify-content: start;        align-items: center;    }    .box-info{        width: 100%;        display: flex;        flex-wrap: wrap;        overflow: hidden;        padding: 0.7rem 0;        border-bottom: 1px solid #E8E8E8;    }    .info{        list-style:none;        width: 100%;        font-size: 13px;        font-weight: 300;        white-space: nowrap;       overflow: hidden;       text-overflow: ellipsis;padding: 8px;    }    .info:nth-child(even){        padding-left: 16px;    }    .div-field{        width: 100%;        padding: 8px;    font-size: 15px;        display: flex;        align-items: center;        overflow: hidden;        font-weight: 500;        border-bottom: 1px solid #E8E8E8;    }.div-field > span{        overflow: hidden;        text-overflow: ellipsis;        text-decoration: none;        -webkit-line-clamp: 2;        display: -webkit-box;        -webkit-box-orient: vertical;    }    .block-svg{        width: 20px;        display: inline-block!important;        -ms-flex-item-align: center;        align-self: center;    }    .safe-deal-svg{        fill:#1da15e;    }    .div-product-code{        width: 100%;           padding: 8px;        background: #F1F2F2;        overflow: hidden;        display: flex;        justify-content: center;        align-items: center;       font-size: 12px;    }    .text-before-code{        font-size: 13px !important;        color: #1B1A17;        font-weight: bold;    }    .box-heart{        width: 35px;        height: 35px;        border-radius: 50%;        background: white;        position: absolute;        top: 4%;        right: 1%;        display: flex;        align-items: center;        justify-content: center;        z-index: 10;    }    .heart-svg{        fill: #fff;        width:20px;        transition: all 0.2s;    }    .heart-svg:hover{        opacity: 0.6;        fill:#1da15e;        width:17px;    }    .heart-svg:hover .path-svg-heart{        stroke: none;    }    .path-svg-heart{        stroke-width:0.6px;        stroke: black;    }    .p-15px{        padding: 15px;    }            .discount{                position: relative;                color: rgb(235, 25, 25);            }                   .discount::before{                content: '';                position: absolute;                background-color: rgb(235, 25, 25);                height: 1px;                width: 100%;                right: 0px;                left: 0px;                top: 50%;                box-sizing: border-box;            }.address-div {    position: absolute;    bottom: 0;    right: 0;width: 100%;    color: #fff;    font-size: 12px;    font-weight: 600;    background: rgba(0, 0, 0, 0.5);height: 24px;}.address-svg {    margin:4px;    width: 1rem;height: 1rem;    fill: #fff;}.share-svg {    width: 1rem;    fill: #fff;cursor: pointer;}.like-svg {    width: 1rem;    fill: #fff;cursor: pointer;}.fl-40{flex: 0 0 40%;}.fl-20{flex: 0 0 20%;}.tag-card{position: absolute;    font-size: 11px;    padding: 2px 8px;    top: 8px;    left: 8px;    color: #fff;    border-radius: 3px;    background-color: black;}.address-div > div > span {    overflow: hidden;    text-overflow: ellipsis;    text-decoration: none;    -webkit-line-clamp: 1;    display: -webkit-box;    -webkit-box-orient: vertical;    width: 90%;font-weight: 500;    font-size: 1em;    padding: 0 4px 0 4px;}.address-div >  div:nth-of-type(1) {    flex: 0 0 85%;}.address-div >  div:nth-of-type(2) {    flex: 0 0 15%;}            .expired-box{                position: absolute;                top: 0;                right: 0;                background: rgba(0, 0, 0, 0.4);                width: 100%;                height: 100%;z-index: 1;            }            .expired-box-img{                width: 100%;                height: 200px;            }.expired-box-img > img{    width: 100%;    height: 100%;    opacity: 0.7;            user-drag: none;            -webkit-user-drag: none;            user-select: none;            -moz-user-select: none;            -webkit-user-select: none;            -ms-user-select: none;}.jcsa{justify-content: space-around;}            .div-product-code div {                flex: 0 0 100% !important;                width: 100% !important;                max-width: 100% !important;            }.module[data-id_page='1203']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:64px;padding-bottom:64px;border-style:none;}.module[data-id_page='1203']:hover{;}.module[data-id_page='1203']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1203'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1203'] 
            
            .module[data-id_page='1203'] .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='1203'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1203']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_243 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
            #module_new_medical_243 .new_medical_description ul{
               list-style-position:inside;
            }
            
			#module_new_medical_243 .content_str{
				width:100%;
			}
            #module_new_medical_243 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_243 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_243 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_243 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_243 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_243 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_243 .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_243 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_243 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_243 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_243 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_243 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_243 .new_medical_description a,#module_new_medical_243 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_243 .new_medical_description a:hover,#module_new_medical_243 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_243 .swiper-pagination{
                position: absolute;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_243 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_428 .new_medical_icon{
                background-image:url("https://shimilink.com/files/1720510268_Untitled Design.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_428 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_428 .background-img{
                border-radius:;
            }
        
            #medical_box_428 .new_medical_icon{
                
            }
        #medical_box_428 .new_medical_title{color: #03132b;font-weight:bold;font-size:24px;text-align:right;padding-left:32px;line-height:40px;}#medical_box_3:hover .new_medical_title{}
                #medical_box_428 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_428 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:400px;margin-right:32px;border-style:none;border-color:#000;}#medical_box_428:hover .new_medical_icon{}#medical_box_428 .new_medical_description{color:#000;font-weight:300;font-size:16px;line-height:32px;text-align:right;margin-top:32px;border-style:solid;border-color:#555;}#medical_box_3:hover .new_medical_description{}
                #medical_box_428 
            
            #medical_box_428 .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_428 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_428:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_428 .mode1-size_428{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_428 .new_medical_box > div{
                width:100%;
            }
             #medical_box_428 > div{
               height:100%;
            }
            #medical_box_428 .mode2-size_428{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_428 .mode3-size_428{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_428 .mode4-size_428{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_428 .mode5-size_428{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_428 .mode6-size_428{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_428 .mode7-size_428{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_428 .mode7-size_428 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_428 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_428 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_428{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_428 span:hover{
                color:!important;
            }
            .custom2_428{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_428 span:hover{
                color:;
            }
            #medical_box_428 .mode-btn1_428{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_428 .mode-btn1_428 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_428 .mode-btn2_428{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_428 .mode-btn2_428 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_428 .div-btn-title_main_428{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_428 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_428 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_243 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='3']:hover .new_medical_box_main{}
            #module_new_medical_243 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_243 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:0px;
                    margin-bottom:0px;
                }
                #module_new_medical_243 .medical_box_main_animation_trigger{
                    margin-left:0px;
                    margin-bottom:0px;
                }
                #module_new_medical_243 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_243 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_243 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_243 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_243 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_243 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_243 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_243 .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_243{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_243 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_243 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_243 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_243 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_243 .swiper-container{
                width:1200px;
            }
            #module_new_medical_243 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_243 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_243 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_243 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='1205']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:64px;padding-bottom:64px;border-style:none;}.module[data-id_page='1205']:hover{;}.module[data-id_page='1205']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1205'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1205'] 
            
            .module[data-id_page='1205'] .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='1205'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1205']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_244 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
            #module_new_medical_244 .new_medical_description ul{
               list-style-position:inside;
            }
            
			#module_new_medical_244 .content_str{
				width:100%;
			}
            #module_new_medical_244 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_244 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_244 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_244 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_244 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_244 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_244 .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_244 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_244 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_244 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_244 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_244 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_244 .new_medical_description a,#module_new_medical_244 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_244 .new_medical_description a:hover,#module_new_medical_244 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_244 .swiper-pagination{
                position: absolute;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_244 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_429 .new_medical_icon{
                background-image:url("https://shimilink.com/files/icon/1717586051_niversal access.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_429 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_429 .background-img{
                border-radius:;
            }
        
            #medical_box_429 .new_medical_icon{
                
            }
        #medical_box_429 .new_medical_title{color:#000;font-weight:bold;font-size:24px;text-align:center;margin-top:16px;line-height:40px;}#medical_box_275:hover .new_medical_title{}
                #medical_box_429 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_429 .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_155:hover .new_medical_icon{}#medical_box_429.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}#medical_box_275:hover{}#medical_box_429 .new_medical_description{color:#000;font-weight:500;font-size:16px;line-height:24px;text-align:center;margin-top:16px;border-style:solid;border-color:#555;}#medical_box_275:hover .new_medical_description{}
                #medical_box_429 
            
            #medical_box_429 .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_429 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_429:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_429 .mode1-size_429{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_429 .new_medical_box > div{
                width:100%;
            }
             #medical_box_429 > div{
               height:100%;
            }
            #medical_box_429 .mode2-size_429{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_429 .mode3-size_429{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_429 .mode4-size_429{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_429 .mode5-size_429{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_429 .mode6-size_429{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_429 .mode7-size_429{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_429 .mode7-size_429 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_429 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_429 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_429{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_429 span:hover{
                color:!important;
            }
            .custom2_429{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_429 span:hover{
                color:;
            }
            #medical_box_429 .mode-btn1_429{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_429 .mode-btn1_429 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_429 .mode-btn2_429{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_429 .mode-btn2_429 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_429 .div-btn-title_main_429{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_429 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_429 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_430 .new_medical_icon{
                background-image:url("https://shimilink.com/files/icon/1717586206_rice comparison.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_430 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_430 .background-img{
                border-radius:;
            }
        
            #medical_box_430 .new_medical_icon{
                
            }
        #medical_box_430 .new_medical_title{color:#000;font-weight:bold;font-size:24px;text-align:center;margin-top:16px;line-height:40px;}#medical_box_275:hover .new_medical_title{}
                #medical_box_430 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_430 .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_156:hover .new_medical_icon{}#medical_box_430.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}#medical_box_275:hover{}#medical_box_430 .new_medical_description{color:#000;font-weight:500;font-size:16px;line-height:24px;text-align:center;margin-top:16px;border-style:solid;border-color:#555;}#medical_box_275:hover .new_medical_description{}
                #medical_box_430 
            
            #medical_box_430 .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_430 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_430:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_430 .mode1-size_430{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_430 .new_medical_box > div{
                width:100%;
            }
             #medical_box_430 > div{
               height:100%;
            }
            #medical_box_430 .mode2-size_430{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_430 .mode3-size_430{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_430 .mode4-size_430{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_430 .mode5-size_430{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_430 .mode6-size_430{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_430 .mode7-size_430{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_430 .mode7-size_430 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_430 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_430 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_430{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_430 span:hover{
                color:!important;
            }
            .custom2_430{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_430 span:hover{
                color:;
            }
            #medical_box_430 .mode-btn1_430{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_430 .mode-btn1_430 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_430 .mode-btn2_430{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_430 .mode-btn2_430 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_430 .div-btn-title_main_430{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_430 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_430 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_431 .new_medical_icon{
                background-image:url("https://shimilink.com/files/icon/1717585835_Secure shopping.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_431 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_431 .background-img{
                border-radius:;
            }
        
            #medical_box_431 .new_medical_icon{
                
            }
        #medical_box_431 .new_medical_title{color:#000;font-weight:bold;font-size:24px;text-align:center;margin-top:16px;line-height:40px;}#medical_box_275:hover .new_medical_title{}
                #medical_box_431 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_431 .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_157:hover .new_medical_icon{}#medical_box_431.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}#medical_box_275:hover{}#medical_box_431 .new_medical_description{color:#000;font-weight:500;font-size:16px;line-height:24px;text-align:center;margin-top:16px;border-style:solid;border-color:#555;}#medical_box_275:hover .new_medical_description{}
                #medical_box_431 
            
            #medical_box_431 .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_431 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_431:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_431 .mode1-size_431{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_431 .new_medical_box > div{
                width:100%;
            }
             #medical_box_431 > div{
               height:100%;
            }
            #medical_box_431 .mode2-size_431{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_431 .mode3-size_431{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_431 .mode4-size_431{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_431 .mode5-size_431{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_431 .mode6-size_431{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_431 .mode7-size_431{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_431 .mode7-size_431 span{
               width:100%;
               text-align:center;
               cursor: