@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200;
  src: local('Nunito ExtraLight'), local('Nunito-ExtraLight'),
       url('../fonts/nunito-v9-latin-200.woff2') format('woff2'), 
       url('../fonts/nunito-v9-latin-200.woff') format('woff'); 
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: local('Nunito Regular'), local('Nunito-Regular'),
       url('../fonts/nunito-v9-latin-regular.woff2') format('woff2'), 
       url('../fonts/nunito-v9-latin-regular.woff') format('woff'); 
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: local('Nunito Bold'), local('Nunito-Bold'),
       url('../fonts/nunito-v9-latin-700.woff2') format('woff2'), 
       url('../fonts/nunito-v9-latin-700.woff') format('woff'); 
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: local('Nunito ExtraBold'), local('Nunito-ExtraBold'),
       url('../fonts/nunito-v9-latin-800.woff2') format('woff2'), 
       url('../fonts/nunito-v9-latin-800.woff') format('woff'); 
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --main-color: #ccc;
  --fontsize: 15px;
  --strip_height: 50px;
  --hdr-height: 33%;
  --gutter: 7px;
}

html, body{
  height:100%;
  background-color:#f5f5f5;
  background-color: var(--main-color);
  margin: 0px !important;
}

body{
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 15px;
  overflow-y:scroll;
  overflow-x: hidden;
  min-width: 250px;
  position: relative;
  min-height: 100%;
}

:focus {
    outline: none !important;
}

textarea {
    outline: none !important;
}

#mainHider{
  background: var(--main-color);
  position: fixed;
  width:100%;
  height: 100%;
  top:0px; left:0px;
  z-index: 10000;
}

.gpos{
  position:absolute; top:0px; left:0px;
  width:100%; height:100%;
}
.rpos{
  position: relative;
}
.centerpos{
  position:absolute; top:50%; left:50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%); 
}
.centery{
  position:absolute; top:50%; left:0;
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
.centerx{
  position:absolute; top:0; left:50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}
.circular_el{
  border-radius: 50%;
}
.w100{
  width: 100%;
}
.mw100{
  max-width: 100%;
  height: auto;
}
.imgFit{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.transit_all_25{ -webkit-transition: all 0.25s ease; transition: all 0.25s ease; }
.transit_all_3{ -webkit-transition: all 0.3s ease; transition: all 0.3s ease; }
.transit_all_4{ -webkit-transition: all 0.4s ease; transition: all 0.4s ease; }
.transit_all_8{ -webkit-transition: all 0.8s ease; transition: all 0.8s ease; }

.cursp{
  cursor:pointer;
}
.clearfloat{
  clear:both;
}
.tar{
  text-align: right;
}
.vishid{
  visibility:hidden;
}
.dispNone{ display: none; }
.dispB{ display: block; }
.dispFlex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ohid{
  overflow: hidden;
}
.blur1{
  -webkit-filter: blur(1px);
  filter: blur(1px);
}
.blur2{
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.blur3{
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
.blur4{
  -webkit-filter: blur(4px);
  filter: blur(4px);
}
.blur5{
  -webkit-filter: blur(5px);
  filter: blur(5px);
}
.blur6{
  -webkit-filter: blur(6px);
  filter: blur(6px);
}
.blur10{
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.blur15{
  -webkit-filter: blur(15px);
  filter: blur(15px);
}

.hspace5{ height:5px; }
.hspace10{ height:10px; }
.hspace15{ height:15px; }
.hspace20{ height:20px; }
.hspace25{ height:25px; }

.ghit{
  cursor: pointer;
}

.fs120{
  font-size: 120%;
}

.vam{
  vertical-align: middle;
}

.s100{
  width:100%;
  height: 100%;
}
.s110{
  width:115%;
  height: 115%;
}
.sd120{
  position: absolute;
  top:-10%;
  left:-10%;
  width:120%;
  height: 120%;
}
.sd115{
  position: absolute;
  top:-7.5%;
  left:-7.5%;
  width:115%;
  height: 115%;
}
.sd110{
  position: absolute;
  top:-5%;
  left:-5%;
  width:110%;
  height: 110%;
}

.centermode{ margin:0 auto; max-width:1920px;}

.imgscale{
  -webkit-transform: scale(0.92);
  transform: scale(0.92);
}

.aotop{
  z-index: 1000;
}

#wrapAll{
  position: relative;
  width: 100%;
  height: 100%;
}

.hdr_wrap{
  /*
  padding-top: 18%;
  min-height: 200px;
  min-height: var(--strip_height);
  height: 33%;

  padding-bottom: 23%;
   height: var(--hdr-height);
   max-height: 530px;
*/

  min-height: 100px;
  

  width:100%;
  position: relative;
  background-color: var(--c1_d6);
}
.hdr_strip{
  position: absolute;
  bottom:0px;

  width:100%; 
  background-color: rgba(0,0,0,0.4);
  overflow:hidden;
}
.hdr_logo_wrap {
  position: absolute;
  padding: 10px;
  height: calc(100% - 100px);
  top: 0px;
}
.hdr_logo_img{
  max-height: 100%;
  max-width: 100%;
}
.hdr_logo_wrap_strip {
  position: absolute;
  top:0px; left: 0px;
  padding: 7px;
  display: none;
  opacity: 0;
  height: var(--strip_height);
}

.hdr_nav_wrap{
  position: relative;
  height: var(--strip_height); 
  width:100%;
  font-size: 0;
  text-align: right;
}
.hdr_link_wrap {
  position: relative;
  min-width: 120px;
  height: 100%;
  text-align: center;
  display: inline-block;
  font-size: var(--fontsize);
  color: rgba(255,255,255,0.7);
  padding: 10px;
  /*
  border-left: 1px solid rgba(0,0,0,0.1);
  */
}

.hdr_nav_text_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.hdr_nav_text{
  display: table-cell;
  vertical-align: middle;
}
.hdr_nav_hover{
  background-color: rgba(0,0,0,0.3);
  border-bottom: 5px solid rgba(0,0,0,0.3);
  opacity: 0;
}
.hdr_link_wrap.active .hdr_nav_hover{
  opacity: 1;
}
.hdr_link_wrap.active .hdr_nav_text_wrap{
  color: #fff;
}

.hdr_nav_sub_hover{
  /*
  height: calc(100% + 5px);
  background-color: var(--main-color);
  */
  opacity: 0;
}
.hdr_link_wrap.active .hdr_nav_sub_hover{
  opacity: 1;
}
.hdr_nav_hovered{
  background: #000;
  opacity: 0;
}

.hdr_subnav_wrap{
  position: relative;
  height: var(--strip_height);
  width: 100%;
  font-size: 0;
  background-color: var(--c1_l2);
  border-bottom:5px solid var(--c1_d1);
  /*
  text-align: right;
  */
}
.hdr_sublink_wrap {
  /*
  border-left: 1px solid rgba(0,0,0,0.025);
  */
}
.hdr_sublink_hold{
  height: 100%;
  opacity: 0;
  display: none;
}

.hdr_x_height{
  height: calc(100% + var(--strip_height));
}
.sticknav{
  position: fixed;
  top:0px;
  bottom: auto;
}
.stickhdr{
  position: fixed;
  top: calc(-1 * var(--hdr-height));
}
.sticklogo{
  display: block;
  opacity: 1;
}

#scroll_space_skimmer{
  position: relative;
  width:100%;
  height: 10px;
}


.mtxt1{
  color: var(--c1_l4);
  font-size: 120%;
  padding:20px;
}


.sideNavWrap .aDrop{
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-top:0; border-left: 0; border-right: 0;
    color: rgba(255,255,255,0.6);
}
.sideNavWrap .dropClick{
    padding-left: 25px;
}
.sideNavWrap {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    overflow-y: auto;
    max-width: 80%;
    height: 100%;
    background: #b7986e;
    -webkit-box-shadow: -2px 0px 20px rgba(0,0,0,0.4);
    box-shadow: -2px 0px 20px rgba(0,0,0,0.4);

    background-color: var(--c1_d6);
    min-width: 220px;
}
.side_nav_btns_wrap {
  padding: 10px 40px 20px 20px;
}
.side_nav_btn_hold{
  position: relative;
  display: block;
  padding: 10px;
}
.side_nav_section{
  position: relative;
}
.side_nav_sub_wrap {
  position: relative;
  padding: 5px 0px 5px 0px;
  display: none;
}
.side_nav_sub {
  position: relative;
  padding: 7px 0px 12px 20px;
  color: rgba(255,255,255,0.5);
}
.side_nav_sub.active .side_nav_text_wrap {
  color: rgba(255,255,255,1);
}
.side_sub_nav_caret{
  position: absolute;
  right:-25px; top:2px;
  opacity: 0.6;
}
.side_sub_nav_caret-down{
}
.side_sub_nav_caret-up{
  opacity: 0.2;
  display: none;
}
.side_sub_nav_text{
}
.side_nav_section.active .side_sub_nav_caret-down{
  display:none;
}
.side_nav_section.active .side_sub_nav_caret-up{
  display:block;
}
.side_nav_section.active .side_nav_sub_wrap{
  display: block;
}

.hamburger{
  font-size: 150%;
}

.sideNavWrap a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sideNavWrap .active a {
    color: rgba(255,255,255,1);
}
.sideNavWrap a:hover{
    color: rgba(255,255,255,1);
}
.navClose{
    display: block;
    padding: 20px 23px 5px 30px;
    color: rgba(255,255,255,0.6);
    font-size: 20px;
    font-weight: normal;
}
.navCloseHit{
    cursor: pointer;
    text-align: right;
}
.nav_side_logo_wrap {
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
.nav_side_logo_img{
  max-height: 200px;
  max-width: 100px;
  display: inline-block;
}

#hamburger_wrap{
  display: none;
}
.hamburgerr_link_wrap {
  position: relative;
  min-width: 100px;
  height: 100%;
  text-align: center;
  display: inline-block;
  font-size: var(--fontsize);
  color: rgba(255,255,255,0.8);
  padding: 10px;
}
#hdr_nav {
  display: block;
}


.overlay_img_wrap{
  position: absolute;
  bottom:0px;
  left:0px;
  width:100%;
}
.overlay_img_content{
  position: relative;
  color:#fff;
}
.overlay_content_wrap{
  padding:0px 20px 15px 20px;
  
}
.overlay_icons{
  text-align: right;
}
.overlay_wrap{
  position: relative;
  padding-top:15px;
}
.overlay_bg{
  background-color: rgba(0,0,0,0.6);
}
.overlay_icon_wrap{
  color: rgba(255,255,255,0.7);
  font-size: 125%;
  cursor: pointer;
  display: inline-block;
  margin-left: 20px;
  position: relative;
}


.footer_wrap {
  padding: 20px 16px;
  color: var(--c1_l4);
  position: relative;
}
.footer_text{
  float: left;
}
.footer_social{
  float: right;
}

.social_icon_wrap {
  width: 33px;
  height: 33px;
  border: 1px solid rgba(255,255,255,0.5);
  background-color: rgba(0,0,0,0.2);
  color: rgba(255,255,255,0.7);
  display: inline-block;
  margin-left: 20px;
  position: relative;
}
.social_icon{

}


@media screen and (max-height: 240px) {
  .hdr_logo_wrap{
    opacity: 0;
  }
  .hdr_logo_wrap_strip {
    display: block;
    opacity: 1;
  }
}

@media screen and (max-width: 800px) {
  #hamburger_wrap{
    display: block;
  }
  #hdr_subnav {
    display: none;
  }
  #hdr_nav {
    display: none;
  }
}


.scrollcover{
  height: var(--gutter);
  background-color: var(--main-color);
}
.vidhover{
  cursor: pointer;
}
.vidbtnwrap{
  background-color: rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.7);
  width:100px;
  height: 100px;
  color: rgba(255,255,255,0.7);
  font-size: 200%;
}
.vidbtnicon{
  margin-left: 4px;
}
.vidcircle{
  border: 2px solid rgba(255,255,255,0.2);
  width:100px;
  height: 100px;
}
.vid_simple{
  width: 100%;
}

.block_wrap{
  padding: var(--gutter);
  padding-top:0px;
  padding-bottom: 12px;
  background-color: var(--main-color);
}

.block{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border:  var(--gutter) solid var(--main-color);
    float: left;
    position: relative;
    height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.1);
}

.block_h_1{
    padding-bottom: 23%;
}
.block_h_2{
    padding-bottom: 47%;
}
.block_h_3{
    padding-bottom: 71%;
}


.block25 {
    width: 25%;
}
.block50 {
    width: 50%;
}
.block75 {
    width: 75%;
}
.block100 {
    width: 100%;
}

.block33 {
    width: 33.33%;
}
.block66 {
    width: 66.66%;
}



@media (max-width: 1020px){

  .block50 {
      width: 100%;
  }
  .block25 {
      width: 50%;
  }
  .block75 {
      width: 50%;
  }

  .block33 {
      width: 50%;
  }
  .block66 {
      width: 50%;
  }

  .block_h_1{
      padding-bottom: 37%;
  }
  .block_h_2{
      padding-bottom: 61%;
  }
  .block_h_3{
      padding-bottom: 85%;
  }

}

@media (max-width: 520px){

  .block50 {
      width: 100%;
  }
  .block25 {
      width: 100%;
  }
  .block75 {
      width: 100%;
  }

  .block33 {
      width: 100%;
  }
  .block66 {
      width: 100%;
  }

  .block_h_1{
      padding-bottom: 55%;
  }
  .block_h_2{
      padding-bottom: 74%;
  }
  .block_h_3{
      padding-bottom: 98%;
  }

}

.fademein{
  opacity: 0;
}

.block_text_wrap{
  background-color: var(--c1_d2);
}
.block_text {
  padding: 20px;
  color: var(--c1_l20);
  color: #fff;
  font-size: 105%;
}
.block_text_overflow{
  position: absolute;
  bottom:0px; left:0px;
  width:100%;
  height: 40px;
  background-color: var(--c1_d2);
  text-align: right;
}
.block_icon_wrap{
  display: inline-block;
  color: rgba(255,255,255,0.6);
  cursor:pointer;
  padding: 10px 20px 0px 0px;
  font-size: 125%;
  position: relative;
  bottom: 3px;
}


.block_text h1{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 200%;
}
.block_text h2{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 170%;
}
.block_text h3{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 150%;
}
.block_text h4{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 130%;
}

.block_text a {
  color: #fff;
  font-style: italic;
}
.scroll_text a {
  color: #000;
  font-style: italic;
}


.block_text_wrap_dark{
  background-color: var(--c1_d16);
}
.block_text_dark{
  padding:20px;
  color: var(--c1_l18);
  font-size: 105%;
}
.block_text_overflow_dark{
  position: absolute;
  bottom:0px; left:0px;
  width:100%;
  height: 40px;
  background-color: var(--c1_d16);
  text-align: right;
}
.block_icon_wrap_dark{
  display: inline-block;
  color: rgba(255,255,255,0.5);
  cursor:pointer;
  padding: 10px 20px 0px 0px;
  font-size: 125%;
  position: relative;
  bottom: 3px;
}

.block_text_dark h1{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 200%;
}
.block_text_dark h2{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 170%;
}
.block_text_dark h3{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 150%;
}
.block_text_dark h4{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 130%;
}
.block_text_dark a{
  color: var(--c1_d3);
  font-weight: bold;
}


.img_text{
  font-size: 105%;
}
.img_text h1{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 200%;
}
.img_text h2{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 170%;
}
.img_text h3{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 150%;
}
.img_text h4{
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 130%;
}
.img_text a{
  color: var(--c1_d3);
  font-weight: bold;
}

.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}
.text-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}


.mfp-close-btn-in .mfp-close{
  right: 6px;
  color: #000;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-image-holder .mfp-close {
  top: 0px;
  right: -6px;
  color: rgba(255,255,255,0.5);
}
.mfp-vid .mfp-close {
  top: -35px;
  right: -6px;
  color: rgba(255,255,255,0.5);
}

.tvideo{
  width:100%;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.85;
  position: fixed !important;
  height: 100% !important;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.mfp-vid{
  position: relative;
  background: rgba(255,255,255,0.6);
  width: auto;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.22), 0px 0px 28px 0px rgba(0,0,0,0.30);
  box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.22), 0px 0px 28px 0px rgba(0,0,0,0.30);
}
.mfp-inline-holder .mfp-content{
  padding: 30px;
}
.mfp-text-scroll{
  height: 100%;
  max-height: 480px;
}

.testopenimg{
  position: absolute; top:5% ; left:5%; color:#fff; font-size:10px;
}

.mfp-text{
  position: relative;
  background-color: var(--c1_l20);
  /*  
   background-color: #efefef;
  */
  width: auto;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.22), 0px 0px 28px 0px rgba(0,0,0,0.30);
  box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.22), 0px 0px 28px 0px rgba(0,0,0,0.30);
  font-size: 115%;
  padding:30px;
  padding-right: 14px;
  height: 100%;
}
.mfp-text .block_text{
  color: var(--c1_d18);
}
.mfp-form{
  max-width: 580px;
}
.mfp-wrap{
  z-index:10001;
}
.mfp-container{
  overflow-y: auto;
}
.mfp-bg{
  background: #000;
}

.block_text_overflow{
  display: none;
}


.blockvid{
  width:100%;
  /*
  height: 100%;
  */
}

.inlineblockvid{
  /*
  width:100%;
  height: 100%;
  */
}
.inlinevid{
  height: 100%;
  width:100%;
}
.plyr__control--overlaid{
  background:rgba(0,0,0,0.5);
}

.scroll_text{
  position: relative;
  padding-right: 0px;
  height: 100%;
  overflow-y:auto;
}

.ftscroller_container {
  padding-right: 20px;
}
.ftscroller_scrollbary {
  /* opacity: 0.3; */
}


.open-img-hit {
  cursor: pointer;
  width: 300%;
  height: 200%;
}
.ff_title{
  color:  var(--c1_d14);
  font-size: 125%;
  margin-bottom:15px;
}
.ff_wrap{
  font-size: 95%;
  position: relative;
}
.ff_group{

}
.ff_control{

}
.ff_group label {
  color: rgba(0,0,0,0.3);
  font-weight: normal;
  font-size: 90%;
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
}

.ff_group {
  margin-bottom: 10px;
}
.ff_control {
  display: block;
  width: 100%;
  height: 45px;
  padding: 10px;
  color:  var(--c1_d10);
  background-color: #ffffff;
  background-image: none;
  border: 1px solid var(--c1_l17);
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .3s, -webkit-box-shadow ease-in-out .3s;
  transition: border-color ease-in-out .3s, -webkit-box-shadow ease-in-out .3s;
  transition: border-color ease-in-out .3s, box-shadow ease-in-out .3s;
  transition: border-color ease-in-out .3s, box-shadow ease-in-out .3s, -webkit-box-shadow ease-in-out .3s;
}
.ff_control, input {
  border-width: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
textarea.ff_control {
  height: auto;
  resize: none;
}

.ff_control:focus {
  border-color: var(--c1_d2);
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(44, 62, 80, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(44, 62, 80, 0.6);
}
.ff_control:focus, input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ff_control:focus.ff_error_field{
  border-color: rgba(189, 0, 0, 0.25);
}

.ff_btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 10px 15px;
  font-size: 15px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ff_btn {
  border-width: 2px;
}
.ff_btn-primary {
  color: var(--c1_l19);
  background-color: var(--c1_d3);
  border-color: var(--c1_d3);
}
.ff_btn-primary:hover {
  color: var(--c1_l20);
  background-color: var(--c1_d7);
  border-color: var(--c1_d5);
}
.ff_btn:hover, .ff_btn:focus, .ff_btn.focus {
  color: var(--c1_l20);
  text-decoration: none;
}
.ff_btn-primary:focus, .ff_btn-primary.focus {
  color: #ffffff;
  background-color: var(--c1_d15);
  border-color: var(--c1_d17);
}
.ff_btn:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ff_btn-primary:active, .ff_btn-primary.active{
  color: var(--c1_l20);
  background-color: var(--c1_d15);
  border-color: var(--c1_d17);
}

.ff_success{
  background-color: var(--c1_l20);
  display: none;
}

.ff_success_text{
}

.ff_error {
  padding: 10px;
  margin: 5px;
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 5px;
  color: #9c0000;
  font-size: 90%;

  display: none;
}

.ff_btn:disabled{
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}


#hdr_bg_wrap{
  position: absolute;
  top:0px; 
  width:100%;
}
.fixhdr{
  height: calc(100% - 4px);
}

#respheightfix{
  position: absolute;
  top:0px;
  height: 105px;
}
@media screen and (max-width: 800px) {
  #respheightfix{
    height: 55px;
  }
}

