/* =============================================================================
   TYPOGRAPHY
   ========================================================================== */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/helvetica_neue_ultralight/helveticaneue-ultralight.eot');
    src: url('../fonts/helvetica_neue_ultralight/helveticaneue-ultralight.eot?#iefix') format('embedded-opentype'),
         url('../fonts/helvetica_neue_ultralight/helveticaneue-ultralight.woff') format('woff'),
         url('../fonts/helvetica_neue_ultralight/helveticaneue-ultralight.ttf') format('truetype'),
         url('../fonts/helvetica_neue_ultralight/helveticaneue-ultralight.svg#HelveticaNeue-UltraLight') format('svg');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/helvetica_neue_light/helveticaneue-light.eot');
    src: url('../fonts/helvetica_neue_light/helveticaneue-light.eot?#iefix') format('embedded-opentype'),
         url('../fonts/helvetica_neue_light/helveticaneue-light.woff') format('woff'),
         url('../fonts/helvetica_neue_light/helveticaneue-light.ttf') format('truetype'),
         url('../fonts/helvetica_neue_light/helveticaneue-light.svg#HelveticaNeue-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}
html { 
    overflow-x: hidden;
}
body {
    font-family: "Poppins", sans-serif; 
    font-weight: 300;  
    font-size: .85em;
    color: #333; /*Dark gray/brown */
    background: #eee;  
    overflow-x: hidden;
}
a {
    color: #333;
    text-decoration: none;
}
a h1:hover, a h2:hover, a h3:hover, a h4:hover, a h5:hover, a p:hover {color: #;}
a[href^=tel], a[href^=mailto]{
    color:inherit;
    text-decoration:none;
}
img,object { max-width: 100%; }
h1, h2, h3, h4 {
    font-weight: 500;
}
h1 {}
h2 {}
h3 {}
h4 {}
h5 {}
p { font-weight: 400; }
br { font-size: .9em;}
hr {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: 0px;
    border: 0;
    border-top: 1px solid #ccc; 
}
label h5{
  margin: 2px 0 3px 0;
}

/* =============================================================================
   ANCHOR BUTTONS
   ========================================================================== */
.gen_button1, .gen_button2, .gen_button3,.gen_button4, .gen_button5  {
    text-align: center;
    vertical-align: middle;    
    display: table;
    cursor: pointer;    
}
.gen_button1 { padding: 5px 5px; }
.gen_button2 { padding: 5px 20px; }
.gen_button3 { padding: 10px 10px; }
.gen_button4 { padding: 10px 20px; }
.gen_button5 { padding: 15px 30px; }


.button1 { 
    text-align: center;    
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1.125em;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 10px; 
    -moz-border-radius: 10px; 
    border-radius: 10px;
    letter-spacing: 1px;
    width:  auto;
    display: table;  
    margin: auto;
    padding: 15px 20px;
    background: #7FE57F; /*Alert Green*/
}
    .button1:hover { background: #92EF92; /* Lighter Alert Green */ }

.anchor_disabled {
  pointer-events: none;
  cursor: default;
}

/* =============================================================================
   INPUTS
   ========================================================================== */

input[type="submit"] {
    text-align: center;    
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1.125em;
    padding: 2px 10px;
    display: block;
    border: 0;
    border-radius: 0; /* Need for safari */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.submit_bttn_1 input[type="submit"],
.submit_bttn_1_1 input[type="submit"],
.button_std_1,
.submit_bttn_2 input[type="submit"],
.button_std_2,
.submit_bttn_3 input[type="submit"],
.button_std_3 {
    text-align: center;    
    color: #fff;
    font-size: 1.125em;
    padding: 15px 20px;
    margin: 0px 0% 0 0%;
    display: block;
    border: 0;
    width: 100%;
    -webkit-border-radius: 10px; 
    -moz-border-radius: 10px; 
    border-radius: 10px;
    letter-spacing: 1px;  
}
.button_std_1, .button_std_2, .button_std_3 {
  width: auto;
}

.submit_bttn_1 input[type="submit"], .submit_bttn_1_1 input[type="submit"], .button_std_1 {
    background: #34D399; /*Alert Green*/
}
    .submit_bttn_1_1 input[type="submit"] {
        padding: 3px 1%; /* Need this otherwise mobile will pad to much */
        margin: 3px;
        height: 53px;
    }
    .submit_bttn_1 input[type="submit"]:hover, .submit_bttn_1_1 input[type="submit"]:hover, .button_std_1:hover { background: #2AC18A; /* Lighter Alert Green */}
    .submit_bttn_1 input[type="submit"]:disabled, .submit_bttn_1_1 input[type="submit"]:disabled, .button_std_1:disabled { background: #999; /*  */}


.submit_bttn_2 input[type="submit"], .button_std_2 {
    background: #D62D21; /*Alert Red */
}
    .submit_bttn_2 input[type="submit"]:hover, .button_std_2:hover { background: #E53530; /* Lighter Alert Red */}
    .submit_bttn_2 input[type="submit"]:disabled, .button_std_2:hover { background: #E53530; /*Alert Red */}

.submit_bttn_3 input[type="submit"], .button_std_3 {
    background: #ccc; 
}
    .submit_bttn_3 input[type="submit"]:hover, .button_std_3:hover { background: #ddd; /* Lighter Alert Green */}
    .submit_bttn_3 input[type="submit"]:disabled, .button_std_3:disabled { background: #ddd; /* Lighter Alert Green */}

input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="time"], input[type="tel"], input[type="number"], textarea, select{
    text-align: left;
    -webkit-appearance: none;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.05em;
    padding: 3px 1%; /* Need this otherwise mobile will pad to much */
    margin: 3px;
    height: 45px;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-radius: 0; /* Need for safari */
    background: #e5e5e5; /**/
    color: #333;
    width: 97%; /*fall back if needed */
    width: calc(98% - 6px);
    -webkit-border-radius: 10px; 
    -moz-border-radius: 10px; 
    border-radius: 10px;
}
    input[type="text"]:hover,
    input[type="password"]:hover,
    input[type="email"]:hover,
    input[type="date"]:hover,
    input[type="time"]:hover,
    input[type="tel"]:hover,
    input[type="number"]:hover,
    textarea:hover {
        background: #ccc; /**/
    }
    input[type="text"]:focus,
    input[type="password"]:focus,
    input[type="email"]:focus,
    input[type="date"]:focus,
    input[type="time"]:focus,
    input[type="tel"]:focus,
    input[type="number"]:focus,
    textarea:focus {
        background: #ccc; /**/
        outline-color: #000; /*Lighter Dark gray/brown */
        outline: none;
    }
textarea {
    height: 150px;
    min-height: 150px;
    resize: vertical;
}
select {
    width: 99%; /*fall back if needed */
    width: calc(100% - 6px);
    padding: 7px 1%; /* Need this otherwise mobile will pad to much */
    height: 53px;
}
    select:focus {
        outline-color: #333;
        outline: none;
    }
.label_height{
  margin-top: -25px
}
/* =============================================================================
   INPUTS: RANGE
   ========================================================================== */
input[type=range] {
  -webkit-appearance: none;
  margin: 18px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  background: #ddd;
  border-radius: 1px;
  border: 0.2px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #333, 0px 0px 1px #0d0d0d;
  border: 1px solid #333;
  height: 36px;
  width: 15px;
  border-radius: 3px;
  background: #333;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -14px;
}
input[type=range]:hover::-webkit-slider-thumb {
  background: #444;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #bbb;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  background: #ddd;
  border-radius: 1px;
  border: 0.2px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #333, 0px 0px 1px #0d0d0d;
  border: 1px solid #333;
  height: 36px;
  width: 15px;
  border-radius: 3px;
  background: #333;
  cursor: pointer;
}
input[type=range]:hover::-moz-range-thumb {
  background: #444;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #ddd;
  border: 0.2px solid #010101;
  border-radius: 2px;
}
input[type=range]::-ms-fill-upper {
  background: #ddd;
  border: 0.2px solid #010101;
  border-radius: 2px;
}
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #333, 0px 0px 1px #0d0d0d;
  border: 1px solid #333;
  height: 36px;
  width: 15px;
  border-radius: 3px;
  background: #333;
  cursor: pointer;
}
input[type=range]:hover::-ms-thumb{
  background: #444;
}
input[type=range]:focus::-ms-fill-lower {
  background: #bbb;
}
input[type=range]:focus::-ms-fill-upper {
  background: #bbb;
}

::-webkit-input-placeholder { color: #888; }
:-moz-placeholder { color: #888; }
/* firefox 19+ */
::-moz-placeholder { color: #888; }
/* ie */
:-ms-input-placeholder { color: #888 !important; /*darker gray - important needed to for ie10+*/}
input:-moz-placeholder { color: #888; }

input[type="radio"] {
    width: 16px;
    margin-right: 10px;
    display: none;
}
input[type="checkbox"] {
    width: 16px;
    margin-right: 10px;
}
.button::-webkit-file-upload-button {
  visibility: hidden;
}

/* =============================================================================
   ALERTS & ERRORS
   ========================================================================== */

.form_error {
    margin-bottom: 20px;
    margin-top: -5px;
    padding: 10px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    display: none;
}
    .form_error h4 {
     color: #EB4924; /*Red */
     text-align: center;
    }
.text_box_error {
    border-color: #EB4924; /*Red */
}
    .text_box_error:focus {
        border-color: #EB4924; /*Red */
        outline-color: #EB4924; /*Red */
    }
.alert_message {
    width: 100%;
    margin: 0px auto;
    text-align: center;
    padding: 20px 0px;
    border-radius: 0 0 20px 20px;
    -webkit-border-radius: 0 0 20px 20px;
    -moz-border-radius: 0 0 20px 20px;
}
    .alert_message h1, .alert_message h2, .alert_message h3, .alert_message h4, .alert_message h5, .alert_message h6 {
        margin: 0;
        color: #fff;
    }
.warning_element {
    border: 3px solid #D62D21; /*Alert Red */
    padding: 20px;
    width: 80%;
    text-align: center;
    margin: auto;
}
/* =============================================================================
   LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    margin: 0px;
}
.h100 {        
    min-height: 100%;   
    min-height: 100vh;
}
.container_nar{
    max-width: 960px;
    padding: 0 10px;
    margin: 0px auto;
}   
.container_wide{
    max-width: 1200px;
    padding: 0 10px;
    margin: 0px auto;
}   
.container_content{
    width: 100%;
    margin: 0;
    padding: 20px 0px;
}    

.ci { display: block; }
    .ci:first-of-type{  /*ci=content item*/}
    .ci:last-of-type{  /*ci=content item*/}
.fill_img {
    width: 100%;
}

/* =============================================================================
   SECTIONS
   ========================================================================== */
.std_section {
    width: 90%;
    padding: 30px 5% 30px 5%;
    position: relative;
    z-index: 1;
}
    .std_section img {
        margin: 1em auto 0 auto;
        display: block;
    }
    .std_section h5 {
        text-align: center;
        margin-top: 1em;
    }

.section_title_1, .section_title_2 {
    text-align: center;
    margin: 10px auto 0px auto;
    padding-bottom: 10px;
    width: 80%;
    border-bottom: 3px solid #666;
}
.section_title_2 {
    color: #fff;
    border-bottom: 3px solid #fff;
}
.breadcrumb{
    float: left;
    margin: 0 10px;
}
.lone_element, .lone_element_1200{
    width: 75%;
    margin: 0px auto;
    text-align: left;
}
/* =============================================================================
   ----------/////////  MEDIA QUERRIES  /////////------------
   ========================================================================== */
@media screen and (max-width: 1200px) { 
  .lone_element_1200{
        width: 100%;
  } 
}
@media screen and (max-width: 979px) {
    .lone_element{
        width: 100%;
    } 
}
@media screen and (max-width: 859px) { 

}
@media screen and (max-width: 767px) {

}
@media screen and (max-width: 640px) {
    input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="time"], input[type="tel"], input[type="number"], textarea, select{       
        font-size: .9em;
    }
}
@media screen and (max-width: 479px) {
  input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="time"], input[type="tel"], input[type="number"], textarea, select {       
        font-size: .80em;
        height: 30px;  
        -webkit-border-radius: 2px; 
        -moz-border-radius: 2px; 
        border-radius: 2px; 
  }
  textarea {
    height: 100px;
    min-height: 100px;
  }
  select {       
      height: 38px;
  }
  .submit_bttn_1_1 input[type="submit"] {
      height: 38px;
  }
  .submit_bttn_1 input[type="submit"],
  .submit_bttn_1_1 input[type="submit"],
  .button_std_1,
  .submit_bttn_2 input[type="submit"],
  .button_std_2,
  .submit_bttn_3 input[type="submit"],
  .button_std_3 {
      font-size: .90em;
      margin-top: 5px;
      -webkit-border-radius: 2px; 
      -moz-border-radius: 2px; 
      border-radius: 2px;
  }
  input[type=range]::-webkit-slider-thumb {
    width: 8px;
  }
  input[type=range]::-moz-range-thumb {
    width: 8px;
  }
  input[type=range]::-ms-thumb {
    width: 8px;
  }
  .label_height{
    margin-top: -22px
  }
}
