.service-form .service-form__field {
	background: #fff;
	display: flex;
	margin-bottom: 12px;
	padding: 17px 20px;
	align-items: center;
	justify-content: space-between;
}
.service-form .service-form__field label {
	font-size: 14px;
	white-space: nowrap;
}
.service-form .service-form__field input {
    width: 87%;
    flex-shrink: 1;
	font-size: 14px;
	appearance: none;
	outline: none;
	border: none;
	padding-left: 20px;
}
.service-form .service-form__field.error label {
	color: #f00;
}
.service-form .service-form__field.error input::placeholder {
	color: #f00;
}

.service-form .service-form__submit {
	margin-top: 25px;
	margin-left: auto;
	width: 300px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
    position: relative;
    transition: color 0.25s;
    z-index: 2;
    border: 1px solid #fff;
    background: transparent;
    cursor: pointer;
}
.service-form .service-form__submit:after {
	content: ' ';
    position: absolute;
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
    background: #fff;
    transition: width 0.25s ease;
    z-index: -1;
}
.service-form .service-form__submit:hover:after {
	width: 100%;
}


.service-form .service-form__submit button {
	appearance: none;
	display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
	line-height: 16px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    text-align: center;
    transition: all .25s;
}
.service-form .service-form__submit:hover button {
	color: #A92238;
}


#service-callback-success.callback-success .callback-success__title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
#service-callback-success.callback-success .callback-success__text {
  text-align: center;'
  font-size: 16px;
}
#service-callback-success.callback-success .callback-success__btn {
  display: block;
  margin: 30px auto 0 auto;
  width: 70px;
  padding: 13px 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  color: #cc2939;
  background-color: #fff;
  border-color: #cc2939;
  transition: .5s;
}
#service-callback-success.callback-success .callback-success__btn:hover {
  color: #fff;
  background-color: #cc2939;
  border-color: #cc2939;
}
.service-form form
.confidential-checkbox
input:checked + label .check-box::after {
    background: #fff;
}
.service-form form .confidential-checkbox label {
    color: #fff;
}
.service-form form .confidential-checkbox label a {
    color: #fff;
}