@charset "UTF-8";
/*
 * Breakpoint mixins to ease development conditions
 */




form.slideform-form {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
form.slideform-form .slideform-track {
  overflow: hidden;
  flex: 1;
}
form.slideform-form .slideform-wrapper {
  transition: all 0.5s ease;
}
form.slideform-form .slideform-slide {
  /*margin-top: 13vh;*/
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow: auto;
  box-sizing: border-box;
}
form.slideform-form .slideform-slide.active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
    input#address, input#city, select#state {
    width: 100% !important;
    margin-bottom: 9px;
}

   .addresscol{
       margin-left:9%;
margin-right:9%;
   }
    form#myform {
        margin-top: 9%!important;
    }


   form.slideform-form .options-buttons input[type=checkbox] + span, form.slideform-form .options-buttons input[type=radio] + span 
   {
               width: 114px !important;
        font-size: 1.1rem !important;
        padding: 8px 25px !important;
        font-weight: 200 !important;
    
    
}

input#fname, input#lname, input#email {
    width: 57%!important;
    margin-bottom: 24px;
}

form.slideform-form .options-buttons label {
    margin: 0 14px 15px 0!important;
    display: inline-block;
    text-transform: none;
}

.lbl {
        display: block!important;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100% !important;
    }
    


   h2{
       font-size:22px!important;
       margin-bottom: 32px!important;
   }
    form.slideform-form input:not([type=checkbox]):not([type=radio]):not([type=submit]), form.slideform-form textarea{
        width:50%!important;
    }
    
    
    form.slideform-form input:not([type=checkbox]):not([type=radio]):not([type=submit]), form.slideform-form textarea {
    width: 50% !important;
}


    
    form.slideform-form .slideform-progress-bar {
    max-width: 170px!important;
}

     .control{
       display:flex;
       justify-content:center;

   }
    form.slideform-form .slideform-btn {
        margin-top: 10%!important;
    }
    .w-100{
        width:100%!important;
    }
    .text-left1{
        display:grid;
    }
    
    .weight{
        width:100%!important;
    }
    
    .new{
        margin-right: -100%;
    }
  form.slideform-form .slideform-slide {
    display: block;
  }
   .stt{
      width: 50%!important;
  }
}
form.slideform-form .slideform-group {
  max-width: 600px;
  padding: 14px 15px;
  box-sizing: border-box;
  margin-top: 1%;
  text-align:center;
}
  
  .terms{
      padding:20px;
      font-size:12px!important;
      margin-bottom: -6px!important;
      
  }

@media screen and (max-width: 767px) {
  form.slideform-form .slideform-group {
    margin: auto;
  }
  ::placeholder {
    font-size:17px!important;
    text-align:center;
}
}

.slideform-btn-prev
{
          -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* height: 58px; */
    padding: 0px 20px;
    font-size: 1.5em;
    margin-right: 10px;
    margin-top: 56px;
    border-radius: 25px;
    background: none;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

form.slideform-form .slideform-btn {
      -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* height: 58px; */
    padding: 0px 20px;
    font-size: 1.5em;
    margin-top: 56px;
    border-radius: 25px;
    background: #FF9800;
    border: 0px solid #FF9800;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}
form.slideform-form .slideform-btn:active {
  border-color: #dd6600;
  background: #dd6600;
}
form.slideform-form .slideform-btn:disabled {
  background: #f6f6f6;
  border: 1px solid #f6f6f6;
  color: #E0E0CE;
}


form.slideform-form input:not([type=checkbox]):not([type=radio]):not([type=submit]), form.slideform-form textarea {
     border-radius: 50px;
    width: 80%;
    padding: 29px 20px;
    font-size: 20px;
    box-sizing: border-box;
    border: 1px solid #6fb253;
    outline: none;
    border-radius: none;
    background: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color:gray;

}


form.slideform-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
form.slideform-form textarea:focus {
  border-bottom: 2px solid #6FB253;
}
form.slideform-form input[type=text], form.slideform-form input[type=email], form.slideform-form input[type=tel], form.slideform-form input[type=number] {
  height: 45px;
}
form.slideform-form input[type=text].small, form.slideform-form input[type=email].small, form.slideform-form input[type=tel].small, form.slideform-form input[type=number].small {
  height: 40px;
  padding: 10px 15px;
  font-size: 16px;
}
form.slideform-form .options-list label {
      display: block;
    margin: 0;
    padding: 10px 0;
    font-size: 1.3em;
}
form.slideform-form .options-list input[type=checkbox], form.slideform-form .options-list input[type=radio] {
  position: absolute;
  z-index: -1;
  visibility: hidden;
  width: auto;
  height: auto;
}
form.slideform-form .options-list input[type=checkbox]:checked + span:after, form.slideform-form .options-list input[type=radio]:checked + span:after {
  opacity: 1;
  transform: scale(1);
}


form.slideform-form .options-list input[type=checkbox] + span, form.slideform-form .options-list input[type=radio] + span {
  display: inline-block;
  position: relative;
  font-weight: 600;
}
form.slideform-form .options-list input[type=checkbox] + span:before, form.slideform-form .options-list input[type=radio] + span:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  background: #f6f6f6;
  border:2px solid #4CAF50;
}
form.slideform-form .options-list input[type=checkbox] + span:after, form.slideform-form .options-list input[type=radio] + span:after {
  font-family: "slideform" !important;
  display: inline-block;
  content: "\F00C";
  font-size: 22px;
  color: #6FB253;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  text-align: center;
  line-height: 30px;
  opacity: 0;
  transform: scale(3);
  transition: all 0.3s ease;
}
form.slideform-form .options-list input[type=radio] + span:before {
  border-radius: 50%;
}
form.slideform-form .options-list input[type=radio] + span:after {
     content: "";
    width: 20px;
    height: 20px;
    background: #fc9600;
    border-radius: 50%;
    top: 8px;
    left: 5px;
}
form.slideform-form .options-buttons label {
  margin: 0 0px 15px 0;
  display: inline-block;
  text-transform: none;
}
form.slideform-form .options-buttons input[type=radio], form.slideform-form .options-buttons input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
form.slideform-form .options-buttons input[type=radio]:checked + span, form.slideform-form .options-buttons input[type=checkbox]:checked + span {
  background: #6FB253;
  border: 1px solid white;
  color: #fff;
}
form.slideform-form .options-buttons input[type=checkbox] + span, form.slideform-form .options-buttons input[type=radio] + span {
    width:170px;
   font-size: 1.4rem;
    line-height: 29px;
    display: inline-block;
    background: white;
    border: 1px solid #6fb350;
    padding: 13px 47px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 500;
    color: #6fb350;
}

form.slideform-form label.error {
    color: red;
    display: block;
    font-size: 13px;
    margin-top: 5px;
    text-transform: none;
    background: white;
    padding: 3px 9px;
    border-radius: 3px;
}

form.slideform-form .slideform-condition {
  display: none;
}
form.slideform-form .slideform-footer {
  background: #fff;
  padding: 0 15px;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin-top:2%;
}
form.slideform-form .slideform-footer .slideform-btn {
    display: inline-block;
    line-height: 0;
    font-size: 20px;
    margin: 2px 7px 0px -72px;
}
form.slideform-form .slideform-progress-bar {
    border: 1px solid #6FB253;
    height: 18px;
    border-radius: 50px;
    max-width: 253px;
    background: white;
    display: inline-block;
    overflow: hidden;
    line-height: 0;
    flex: 1;
}
form.slideform-form .slideform-progress-bar span {
  display: inline-block;
  width: 0%;
  height: 100%;
  background: #6FB253;
  transition: all 0.5s ease;
}

@font-face {
  font-family: "slideform";
  src: url("../fonts/slideform.eot?p7vt47");
  src: url("../fonts/slideform.eot?p7vt47#iefix") format("embedded-opentype"), url("../fonts/slideform.ttf?p7vt47") format("truetype"), url("../fonts/slideform.woff?p7vt47") format("woff"), url("../fonts/slideform.svg?p7vt47#slideform") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

i.icon-chevron-up,i.icon-chevron-down {
    font-family: "slideform" !important;
}



.icon-check:before {
  content: "\F00C";
}

.icon-close:before {
  content: "\F00D";
}

.icon-remove:before {
  content: "\F00D";
}

.icon-times:before {
  content: "\F00D";
}

.icon-chevron-left:before {
  content: "\F053";
}

.icon-chevron-right:before {
  content: "\F054";
}

.icon-chevron-up:before {
  content: "\F077";
}

.icon-chevron-down:before {
  content: "\F078";
}

.icon-paper-plane:before {
  content: "\F1D8";
}

.icon-send:before {
  content: "\F1D8";
}


.redrt {
    font-size: 18px;
    color: #6c6c6c;
    margin-top: 103px;
    font-weight: 100;
}