* { -webkit-tap-highlight-color: transparent }

a, button, input, select, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0
}
label{
    font-size: 18px;
    font-weight: 600;
}
.form-field-input {
    width: 100%;
    padding: 20px;
    font-family: 'Segoe UI',SegoeUI,'Segoe WP',Tahoma,Arial,sans-serif;
    font-size: 18px;
    background-color: #f8fafb;
    transition: .2s background ease;
    resize: none;
    border: 0px;
    border-radius: 0px;
    border-bottom: 2px solid #eef2f5;
    transition: .2s border-color ease;
}
.form-field-input:active, .form-field-input:focus {
	border-color: #260BAD
}

.form-field-input.error {
	border-color: #c33
}
.hs-fieldtype-checkbox {
    border-radius: 5px;
    box-shadow: inset 0 0 0 2px #eef2f5;
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    min-height: 90px;
    padding: 25px 55px;
    font-family: 'Segoe UI',SegoeUI,'Segoe WP',Tahoma,Arial,sans-serif;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    outline: 0;
    transition: .2s box-shadow ease;
    will-change: box-shadow;
}
.hs-fieldtype-checkbox-type1 {
  border: none;
  box-shadow: none;
  -webkit-align-items: left;
  -ms-flex-align: left;
  align-items: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
  width: 100%;
  min-height: 0px;
  padding: 5px 90px;
}
.custom-checkbox {
    position: relative;
}
.hs-fieldtype-checkbox::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: auto;
    overflow: hidden;
    vertical-align: middle;
    background-color: #eef2f5;
    border-radius: 5px;
    content: '';
    transition: .2s background-image ease;
}
.hs-fieldtype-radio::after {
  border-radius: 50%;
}
.hs-fieldtype-checkbox img {
    height: 50px;
}
.hs-fieldtype-checkbox::before {
    display: none;
}
.custom-checkbox-checked .hs-fieldtype-checkbox::after {
    background-color: #260BAD;
}
.custom-checkbox-checked .hs-fieldtype-checkbox {
    box-shadow: inset 0 0 0 2px #260BAD;
}
.custom-checkbox-checked .hs-fieldtype-checkbox-type1 {
  box-shadow: none;
}
.form-check-label{
    font-size: 18px;
    font-weight: 400;
}
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .form-group{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .hulaTX {
    z-index: 9998;
    background: #090452;
    color: #fff;
    border-radius: 0px;
    font-weight: 100px;
  }
  .progressbar__bar {
    position: relative;
    width: 100%;
    height: 7px;
    margin: 10px 0 0;
    overflow: hidden;
    background: #ccc;
    border-radius: 100px;
}
.progressbar__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #3f1ee4;
  transition: .2s width ease;
  will-change: width;
}
@media (max-width: 768px){
  label{
    font-size: 14px;
    font-weight: 600;
  }
  .hs-fieldtype-checkbox {
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: 60px;
    margin-bottom: 10px;
  }
  .hs-fieldtype-checkbox-type1 {
    padding-left: 30px;
    padding-right: 0px;
    text-align: left;
  }
  .hs-fieldtype-checkbox-type1::after {
    left: 0px;
  }
  .form-group {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}