/**************
TABLET CSS *************************************/


/* for higher resolutions (android and retina) */
@media screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (max--moz-device-pixel-ratio: 1.5) {
  
}


/*****TABLET
************************************************************/
@media (max-width: 1025px) and (min-width:691px){
  

   

:root {  
  
  /** sizes ***/
  	--smallsize: 11px;
	--basesize: 14px;

  /** weights ***/
  --extralight: 300; 
  --medium: 500; 
  --semibold: 500;
  
  /** paddings ***/
  --sidesmallpadding: 20px;
  --sidepadding:20px;
  --sideextrapadding: 20px;
  --verticalsmallpadding: 30px;
  --verticalpadding: 60px;
  --verticalextrapadding : 60px;
  

}
  
  
  
body {
  line-height: 1.4em !important;
}  
  

  
  
.mobileonly {
  display: block !important;
}
.desktoponly {
  display: none !important;
}
  

  
  
  
  
 /*
------------------------------------------------------------------------------------------------------
:::::::: GENERAL
------------------------------------------------------------------------------------------------------
*/ 
  
.row.invertonmobile {
  flex-direction: column-reverse;
}  
  
.noleftpaddingonmobile {
    padding-left:0 !important;
}
.norightpaddingonmobile {
    padding-right:0 !important;
} 
.notoppaddingonmobile {
    padding-top:0 !important;
}    
 .nobottompaddingonmobile {
    padding-bottom:0 !important;
}   
  
 
.knowmore i {
  width: 40px;
  height: 40px;
}  

  
  
  /*
------------------------------------------------------------------------------------------------------
:::::::: BOTS AND LINKS
------------------------------------------------------------------------------------------------------
*/    
  

  

  
  /*
------------------------------------------------------------------------------------------------------
:::::::: heights
------------------------------------------------------------------------------------------------------
*/  
  
.imagewrapper.fullheight, .imagewrapper.twothirdsheight {
 max-height: 400px !important;
    min-height: 400px;
}  
  

  
    
  /*
------------------------------------------------------------------------------------------------------
:::::::: TEXTS AND TITLES
------------------------------------------------------------------------------------------------------
*/ 

  
  
  
/*
------------------------------------------------------------------------------------------------------
:::::::: HEAD
------------------------------------------------------------------------------------------------------
*/
  
#head {
  z-index: 9991;
  position: fixed;
  width: 100vw !important;
  height: 60px;
}  
  div#head::after {
  content: "";
  width: 100%;
  height: 60px;
  background-color: #fff;
  position: fixed;
  top: -60px;
  left: 0;
  z-index: -1;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}


#head .headwrapper .brandlogo {
  display: flex;
  height: 60px;
  max-width: 140px;
}
#head .headwrapper .brandlogo img {
  margin-top: 2px !important;
}





/**
-------------------------------------------------------------------------
::::::::  NAV BURGUER
-------------------------------------------------------------------------
**/



/**** burger menu *****/
  #head .headwrapper .mobilemenu .openmenu {
  border: 1px solid #fff;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
#head .headwrapper .mobilemenu .openmenu .burguericon {
  height: 10px;
  width: 20px;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 0px;

}
  #head .headwrapper .mobilemenu .openmenu .burguericon span {
  width: 100%;
  height: 2px;
  display: block;
  background-color: #fff;
}

  /** when active ***/

#head.active .headwrapper .mobilemenu .openmenu {
  border: 1px solid var(--blacktext);
}

#head.active .headwrapper .mobilemenu .openmenu .burguericon span {
  background-color: var(--blacktext);
}  
 

/*** CONTENT IN ENGAGE BOX *****/

/* close button = open button */
    #dialog2 .eb-close.placement-inside {
        width: 40px;
        height: 40px;
        border: 1px solid var(--blacktext) !important;
        color: var(--blacktext) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 20px;
        top: 10px;
    }
    #dialog2 .eb-close span {
        padding: 0 !important;
        line-height: 100% !important;
        font-size: 30px !important;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -4px;
    }



#dialog2 .brandlogo {
  width: 140px;
  height: 60px;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
}
#dialog2 .brandlogo img {
  margin-top: 2px !important;
}

#dialog2 .eb-container {
  justify-content: center;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#dialog2 .sectionNav {
  text-align: center;
}

#dialog2 .sectionNav a.menulink {
  line-height: 150%;
  margin-bottom: 10px;
  color: var(--basetext) !important;
  text-transform: uppercase;
  font-size: var(--basesize) !important;
  letter-spacing: 1px;
  font-weight: var(--regular) !important;
  display: inline-block;
}

#dialog2 .sectionNav a.bot {
  margin-top: 30px;
  text-align: center !important;
  justify-content: center;
  background-color: var(--bluebg);
  color: #fff !important;
  font-weight: var(--regular) !important;
  /*font-size: var(--basesize) !important;*/
  font-size: 13px !important;

}


/** setting active behaviour ***/
#dialog2 .sectionNav a.menulink::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--blacktext);
  transform: scale(0);
  transform-origin: center;
  transition: opacity 300ms, transform 300ms;
}

#dialog2 .sectionNav a.menulink.active::after {
  transform: scale(1);
  }
#dialog2 .sectionNav a.menulink.active {
  color: var(--blacktext) !important;
  }


/***** LANG SWITCH ********/

#dialog2 .langswitch {
  text-align: center;
  margin-top: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

  
  
  
/*
------------------------------------------------------------------------------------------------------
:::::::: FOOTER
------------------------------------------------------------------------------------------------------
*/  
  .footerwrapper {
  text-align: center;
}
  

 .zed {
    position: relative !important;
    float: left;
    left: 0;
    right: 0;
    margin: -5px auto 20px !important;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
  }
 
  
  
  
 /*
------------------------------------------------------------------------------------------------------
:::::::: IMAGES AND BANNERS
------------------------------------------------------------------------------------------------------
*/  
  


  

  
    /*
------------------------------------------------------------------------------------------------------
:::::::: ENGAGE BOX
------------------------------------------------------------------------------------------------------
*/  


/*** SIDE CTA ***/
  .eb-1.eb-floating-button div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    margin-bottom: 40px !important;
  }
 
  .eb-1.eb-middle-right {
  -webkit-box-pack: end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-end;
}
  
  
    
/*
------------------------------------------------------------------------------------------------------
:::::::: CONVERT FORMS
------------------------------------------------------------------------------------------------------
*/   
   
  
.convertforms ::placeholder {
  font-weight: 200 !important;
}  
  
  
   
/*
------------------------------------------------------------------------------------------------------
:::::::: GRID AND SCROLLERS
--------------------------------------------------------
*/    

/*** when in grid make full width for items ***/
  .grid .item {
    width: 100%;
    min-width: 100%;
    margin-right: 0px;
  }
  
 .scrollerNav {
   display:none;
 } 
  

.scroller, .scrolleronmobile {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  flex-direction: row;
  padding-bottom: 15px;
  padding-right: 0 !important;
}

.scroller .item, .scrolleronmobile .item {
  width: 80vw;
  min-width: 80vw;
  margin-right: 20px;
  margin-bottom: 0 !important;
}

.scroller .item .imagewrapper, .scrolleronmobile .item .imagewrapper {
  height: 250px;
  max-height: 250px;
  margin-bottom: 25px;
}



  
  
  
 /*
------------------------------------------------------------------------------------------------------
:::::::: IGNITE GALLERY
--------------------------------------------------------
*/    
   
  
/*** light box ***/
  
.igui-lightbox-items li {
  padding: 0px !important;
}  
  
.ig-lightbox-button-right, .ig-lightbox-button-left {
  display: none;
}  




 /*
------------------------------------------------------------------------------------------------------
:::::::: TABLE
--------------------------------------------------------
*/    

/** set height ***/
.dataTables_scrollBody {
  max-height: 420px !important;
}
.DTFC_LeftBodyWrapper {
  max-height: 420px;
}
  

/**** make columns responsive ****/
#droptablestable5.droptablestable .dtc0 {
  width: 55px !important;
  min-width: 55px !important;
}
#droptablestable5.droptablestable .dtc1 {
  width: 55px !important;
  min-width: 55px !important;
}
#droptablestable5.droptablestable .dtc2, #droptablestable5.droptablestable .dtc3, #droptablestable5.droptablestable .dtc4 {
  width: 90px !important;
  min-width: 90px !important;
}
#droptablestable5.droptablestable table .dtc5 {
   width: 55px !important;
  min-width: 55px !important;
}
#droptablestable5.droptablestable table .dtc6 {
   width: 120px !important;
  min-width: 120px !important;
}



  
  
 /****** END *************/ 
}