.form-input{
  position: relative;
}
.label{
  font-size: 1.4rem;
  line-height: 2rem;
  color: #0B0A0A;
  font-weight: 700;
  display: flex;
  margin-bottom: 1.6rem;
}
.form-control{
  outline: none !important;
  width: 100%;
  border: 1px solid #0B0A0A;
  height: 4.8rem;
  border-radius: 3.2rem;
  font-family: inherit;
  padding: 0 2.4rem;
  color: #0B0A0A;
  background: transparent;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 2rem;
}
select.form-control{
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background: url(../images/icon-select-arrow.png) no-repeat center right 1.4rem;
}
.form-control-search{
  height: 4.2rem;
  padding: 0 2.4rem 0 4.8rem !important;
  background: url(../images/icon-search.png) no-repeat center left 1.6rem;
}
textarea.form-control{
  height: 10rem;
  resize: none;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  display: block;
}
.form-control.error{
  border-color: red;
}
.form-control.no-radius{
  border-radius: 0.8rem;
}
.form-control::placeholder{
  opacity: 1;
  color: rgba(11, 10, 10, 0.5);
}
.form-control.no-radius::placeholder,
.form-control-search::placeholder{
  color: #0B0A0A;
}
.form-control:-ms-input-placeholder{
  color: rgba(11, 10, 10, 0.5);
}
.form-control.no-radius:-ms-input-placeholder,
.form-control-search:-ms-input-placeholder{
  color: #0B0A0A;
}
.chk-item{
  margin-bottom: 1.6rem;
}
.chk-item:last-child{
  margin-bottom: 0;
}
.chk {
  display: block;
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 2rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.chk a:hover{
  text-decoration: underline !important;
}
.chk-sm{
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.chk-sm-v1{
  line-height: 2rem;
  min-height: 2.4rem;
}
.chk input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.chk .checkmark {
  position: absolute;
  top: -0.2rem;
  left: 0;
  height: 2.4rem;
  width: 2.4rem;
  border-radius: 0.8rem;
  border: 1px solid #0B0A0A;
}
.chk-sm .checkmark{
  top: 0;
}
.chk input:checked ~ .checkmark {
  border-color: #5EDC86;
  background: #5EDC86;
}
.chk input.error ~ .checkmark{
  border-color: red;
}
.chk .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.chk input:checked ~ .checkmark:after {
  display: block;
}
.chk .checkmark:after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1rem;
  height: 1rem;
  background: url(../images/icon-checkmark.png);
  background-size: cover;
  background-position: center;
}
.line{
  border: 0;
  border-top: 1px solid #000;
}
label.error {
  font-size: 1.4rem;
  line-height: 2rem;
  display: block;
  margin: 0.3rem 0 0;
  color: red;
  font-weight: 400;
}
.form-input-file .form-control {
  padding-right: 17rem;
}
.input-upload{
  position: absolute;
  top: 0;
  right: 0;
}
input[type="file"] {
  display: none;
}
.input-upload label{
  height: 4.8rem;
  padding: 0 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 2rem;
}
@media(min-width:1200px) and (max-width:1359.98px){
  .label {
    margin-bottom: 1.3rem;
  }
  .chk-item {
    margin-bottom: 1.4rem;
  }
  .chk br{
    display: none;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .label {
    margin-bottom: 1.3rem;
  }
  .chk-item {
    margin-bottom: 1.2rem;
  }
  .chk br{
    display: none;
  }
}
@media(min-width:768px) and (max-width:991.98px){
  .label {
    margin-bottom: 1.2rem;
  }
  .form-control {
    padding: 0 2rem;
    height: 4.4rem;
  }
  .chk-item {
    margin-bottom: 1.2rem;
  }
  .chk br{
    display: none;
  }
  .input-upload label {
    height: 4.4rem;
    padding: 0 1.4rem;
  }
  .form-input-file .form-control {
    padding-right: 15rem;
  }
}
@media(max-width:767.98px){
  .label {
    margin-bottom: 1.2rem;
  }
  .form-control {
    padding: 0 2rem;
  }
  .input-upload label {
    padding: 0 1.4rem;
  }
  .form-input-file .form-control {
    padding-right: 14rem;
  }
  .chk br{
    display: none;
  }
}