.include_checkbox > input[type="checkbox"] {
    display:none;
}
.include_checkbox input[type="checkbox"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    background: url(../images/unchecked.png) no-repeat;
    cursor: pointer;
    margin-left: 15px;
    vertical-align: middle;
}
.include_checkbox input[type="checkbox"]:checked + label span
{
   background: url(../images/checked.png) no-repeat center;
}
.include_checkbox label, input[type="checkbox"] + label {
  color: #9d1021;
  font-weight: 500;
  font-size: 17px;
}
@-webkit-keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}
@keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}
/* Icon Float Away */
.top_buttons {margin-top: -3px;}
.top_buttons .hvr-icon-float-away:before, .top_buttons .hvr-icon-float-away:after {
  color: #008dd2;
  font-size: 22px;
}
.top_buttons .hvr-icon-float-away {
  vertical-align: top;
}
.top_buttons .hvr-icon-float-away:not(:last-child) {
  margin-right: 15px;
}
.hvr-icon-float-away {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 1.2em;
}
.hvr-icon-float-away:before, .hvr-icon-float-away:after {
  content: "\f055";
  position: absolute;
  font-family: FontAwesome;
  color: #231f20;
  font-size: 26px;
  right: 0;
  left: 0;
  margin: auto;
}
.hvr-icon-float-away:after {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.hvr-icon-float-away:hover:after, .hvr-icon-float-away:focus:after, .hvr-icon-float-away:active:after {
  -webkit-animation-name: hvr-icon-float-away;
  animation-name: hvr-icon-float-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
a.facebook:before, a.facebook:after{
  content: "\f082";
}
a.linkedin:before, a.linkedin:after{
  content: "\f08c";
}
a.google_plus:before, a.google_plus:after{
  content: "\f0d5";
}

/*slideout icons mobile*/
div.slideouticons { /* main container for slide out icons */ 
  position: relative; /* change position to fixed or absolute if desired */
  -webkit-perspective: 1000px;
  perspective: 1000px;
  z-index: 1000;
  float: right;
  padding-right: 3vw;
  padding-top: 1.5vh;
}
div.slideouticons input{
  display: none;
}
div.slideouticons label.mainlabel{ /* menu anchor icon style */
  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;
  cursor: pointer;
  font-size: 18px;
  width: 35px;
  height: 35px;
  text-align: center;
  color: #40a9dd;
    background: #fff;
  border-radius: 50%;
  outline: none;
  z-index: 100000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
div.slideouticons div.iconswrapper{ /* DIV that flips over to reveal the hidden icons */
  position: absolute;
  margin: 0;
  top: 60px; /* vertical offset of icons wrapper from the top of main container */
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
div.slideouticons div.iconswrapper ul{
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: -1;
}
div.slideouticons div.iconswrapper ul li{
  margin-bottom: 10px;
  position: relative;
  opacity: 0;
  width: 30px;
  height: 30px;
  -webkit-transform: translateY(-100%) rotate(0);
  transform: translateY(-100%) rotate(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
div.slideouticons div.iconswrapper ul li a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #40a9dd;
  border: 2px solid #40a9dd;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background: #fff; 
  text-decoration: none;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
div.slideouticons div.iconswrapper ul li a:hover{
  background: #40a9dd; /* background color of icons on hover */
  color: white;
}
div.slideouticons input:checked ~ label.mainlabel{
  background: #fff; /* background color of toggler icon when activated */
}
div.slideouticons input:checked ~ div.iconswrapper{ /* flip icons wrapper to reveal icons when activated */
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
div.slideouticons input:checked ~ div.iconswrapper ul li{ /* rotate and shift icons into view when activated */
  opacity: 1;
  -webkit-transform: translateY(0) rotate(360deg);
  transform: translateY(0) rotate(360deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
div.slideouticons input:checked ~ div.iconswrapper ul li:nth-of-type(1){
  -webkit-transition-delay: 0;
  transition-delay: 0;
  z-index: 4;
}
div.slideouticons input:checked ~ div.iconswrapper ul li:nth-of-type(2){
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s; /* increment delay by 0.3s for each icon */
  z-index: 3; /* decrement z-index by 1 for each icon */
}
div.slideouticons input:checked ~ div.iconswrapper ul li:nth-of-type(3){
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
  z-index: 2;
}
div.slideouticons input:checked ~ div.iconswrapper ul li:nth-of-type(4){
  -webkit-transition-delay: .9s;
  transition-delay: .9s;
  z-index: 1;
}
div.slideouticons input:checked ~ div.iconswrapper ul li:nth-of-type(5){
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
  z-index: 1;
}
div.slideouticons.horizontal div.iconswrapper{
  top: 0;
  left: 60px;
}
div.slideouticons.horizontal div.iconswrapper ul li{
  display: inline;
  float: left;
  margin-bottom: 0;
  margin-right: 10px;
  -webkit-transform: translateX(-100%) rotate(0);
  transform: translateX(-100%) rotate(0);
}
div.slideouticons.horizontal input:checked ~ div.iconswrapper ul li{
  -webkit-transform: translateX(0) rotate(360deg);
  transform: translateX(0) rotate(360deg);
}
input.style_input_search_meu_bar::-webkit-input-placeholder{
  font-size: 14px;
  color: #52aa6b;
  font-family: 'Roboto', sans-serif;
}
/*end slide out icons mobile*/
/*mmenu*/
.mm-menu {background: #40a9dd}
.submenu_ul.mm-listview{background: transparent; position: static; max-width: 100%; width: 100%; padding: 0;}
.mm-listview .submenu_ul_li_a i {display: none;}
.mm-listview>li:not(.mm-divider):after {right: -35px;}
.mm-listview>li>a, .mm-listview>li>span, .mm-menu .mm-navbar a, .mm-menu .mm-navbar>* {font-size: 18px; color: #fff;}
.mm-menu .mm-btn:after, .mm-menu .mm-btn:before, .mm-menu .mm-listview>li .mm-next:after {border-color: #fff;}
.mm-menu em.mm-counter {color: #fff;}
.mm-panel .short_descritpion_expur p { font-size: 25px;}
.megamenu_ul.mm-listview {width: 100%; column-count: 1; height: 100%;}
.megamenu_ul.mm-listview .megamenu_ul_li_a {padding-left: 60px;}
.megamenu_ul.mm-listview .megamenu_ul_li_a:before {left: 23px; top: 8px;}
.mm-listview>li>a, .mm-listview>li>span {padding-left: 15px;}
.mm-listview>li:not(.mm-divider):after {left: 0;}
.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next), .mm-menu .mm-listview>li.mm-selected>span {color: #fff;}
/*scrollbar*/
.scroll-bar.vertical {
  width: 8px;
  background: #fdb813;
  border-radius: 10px;
}
.scrollable .scroll-bar.vertical {
  top: 60px;
  height: 73px!important;
  right: 5px;
}
.wrap_act .viewport {width: 100%!important; max-width: 98%; margin: auto;}
.form_element::-webkit-input-placeholder {
  font-size: 20px;
  color: #2d2d2d;
}
.form_element::-moz-input-placeholder {
  font-size: 20px;
  color: #2d2d2d;
}
.form_element::-ms-input-placeholder {
  font-size: 20px;
  color: #2d2d2d;
}
.form_element::-o-input-placeholder {
  font-size: 20px;
  color: #2d2d2d;
}
/*end scrollbar*/
/*upload button*/
.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.inputfile + label {
  width: 100%;
    font-size: 1.25em;
    font-weight: 500;
    color: white;
    background-color: #363636;
    display: inline-block;
/*    width: 287px;*/
    height: 54px;
    padding-top: 15px;
    padding-left: 15px;
    text-align: center;
}
.inputfile:focus + label,
.inputfile + label:hover {
    background-color: #fff;
}
.inputfile + label {
  cursor: pointer; /* "hand" cursor */
}
.inputfile:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}
.inputfile + label * {
  pointer-events: none;
}
.fa-upload:before {
  padding-left: 15px;
}
.inputfile-6 + label {
    color: #d3394c;
}
.inputfile-6 + label {
    border: 1px solid #b7b7b7;
    background-color: #fff;
    padding: 0;
}
.inputfile-6:focus + label,
.inputfile-6.has-focus + label,
.inputfile-6 + label:hover {
    border-color: #b7b7b7;
}
.inputfile-6 + label span,
.inputfile-6 + label strong {
    padding: 1rem 1.25rem;
    /* 10px 20px */
}
.inputfile-6 + label span {
    min-height: 54px;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
    color: #363636;
}
.inputfile-6 + label strong {
    height: 100%;
    color: #fff;
    background-color: #363636;
    display: inline-block;
    width: 258px;
    height: 53px;
    font-weight: 500;
/*    margin-right: -3px;*/
    float: right;
}
.inputfile-6:focus + label strong,
.inputfile-6.has-focus + label strong {
    background-color: #9d1021;
}
/*end upload button*/
@media (max-width: 767px) {
  .mm-panel .short_descritpion_expur p { font-size: 22px;}
  .form_element::-webkit-input-placeholder {
    font-size: 18px;
  }
  .form_element::-moz-input-placeholder {
    font-size: 18px;
  }
  .form_element::-ms-input-placeholder {
    font-size: 18px;
  }
  .form_element::-o-input-placeholder {
    font-size: 18px;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .mm-panel .short_descritpion_expur p {max-width: 400px; font-size: 14px;}
  .mm-panel .read_more_button {height: 35px; margin-top: 10px; width: 200px;}
  .mm-panel .read_more_button a, .mm-listview>li>a, .mm-listview>li>span, .mm-menu .mm-navbar a, .mm-menu .mm-navbar>* {font-size: 12px;}
  .mm-panels>.mm-panel>.mm-listview {margin: 10px -20px;}
}
@media(max-width: 600px) {
.form_element::-webkit-input-placeholder {
  font-size: 16px;
}
.form_element::-moz-input-placeholder {
  font-size: 16px;
}
.form_element::-ms-input-placeholder {
  font-size: 16px;
}
.form_element::-o-input-placeholder {
  font-size: 16px;
}
}
@media (max-width: 560px) {
  .inputfile-6 + label strong {display: block; float: none; margin-top: 15px; margin-right: auto; margin-left: auto;}
}
@media (max-width: 480px) {
  .mm-panel .short_descritpion_expur p { font-size: 15px; padding-right: 20px;}
  .mm-panel .read_more_button {width: 170px; height: 32px;}
  .mm-panel .read_more_button a {font-size: 13px;}
  .mm-listview>li>a, .mm-listview>li>span, .mm-menu .mm-navbar a, .mm-menu .mm-navbar>* {font-size: 14px;}
}