.input-control.lardin-error-field{
	background-color: #F55533;
}
.lardin-form-notice{
	display: none;
	color: green;
}
.lardin-form-error{
	color: red;
}

.input-control {
  height: 50px;
  margin: 0 0 10px;
  background-color: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 5px;
  font-family: "Inter", Arial, sans-serif;
  padding: 0 15px;
  width: 100%;
  font-size: 16px;
  color: #666;
}

textarea.input-control {
  height: 120px;
  padding: 10px 15px;
}
.box-form {
  max-width: 580px;
  width: 100%;
  border-radius: 10px;
 // padding: 50px 80px;
  position: relative;
  margin: 0 auto;
}
.b-check__name {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    font-weight: normal;
    position: relative;
    padding: 2px 0 0 35px;
    cursor: pointer;
}
.b-check__name::after {
    content: "";
    font-family: "fontello";
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 23px;
    border-radius: 5px;
    text-align: center;
    overflow: hidden;
    border: 1px solid #E6E6E6;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.b-check {
    padding: 10px 0 0 0;
    margin: 0 0 20px;
	display: block;
	width: 100%;
}
.b-check__input {
    width: 0;
    height: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.b-check__input:checked + .b-check__name:after {
  content: "\2714";
  color: #84BC2D;
}
.b-check__input.error-check + .b-check__name:after{
  border: 2px solid red;
}
input[type="checkbox"], input[type="radio"] {
    margin: 4px 0 0;
    margin-top: 1px;
    line-height: normal;
}
label.b-check__name {
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
}
/*.input-submit {
    background: #0000ff;
    display: block;
    text-align: center;
    height: 50px;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 65px;
    border: none;
    width: 100%;
    font-weight: 600;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    padding: 0;
	max-width: 260px;
	margin: 0 auto;
	cursor: pointer;
}*/
.input-submit {
    position: relative;
    background-color: #BE0505;
    border: none;
    font-size: 28px;
    color: #FFFFFF;
    padding: 20px;
    width: 200px;
    text-align: center;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
   	margin: 0 auto;
    cursor: pointer;
  }  
.input-submit:after {
    content: "";
    background: #F57733;
    display: block;
    position: absolute;
    padding-top: 300%;
    padding-left: 350%;
    margin-left: -20px!important;
    margin-top: -120%;
    opacity: 0;
    transition: all 0.8s
}

.input-submit:active:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s
}