.callback-form-wr {
	position: relative;
}

.callback-form-field-title {
	color: #0D0D0D;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 10px;
}

.callback-form-field input {
	width: calc(100% - 24px);
	border: 1px solid #CCCCCC;
	background-color: #F7F7F7;
	padding: 7px 10px;
	border-radius: 6px;
	font-family: 'Roboto';
	font-weight: 700;
	font-size: 14px;
	color: #000;
	transition: 0.2s linear;
	margin-bottom: 15px;
}

.callback-form-field input:hover {
	transition: 0.2s linear;
	border: 1px solid #fff6a3;
}

.callback-form-field input:focus {
	transition: 0.2s linear;
	border: 1px solid #FFE921;
}

.callback-form input[type="submit"] {
	border: none;
	color: #0D0D0D;
	background: #FFE921;
	border-radius: 6px;
	width: 100%;
	padding: 10px;
	font-size: 14px;
	font-family: 'Roboto';
	font-weight: bold;
	transition: 0.2s linear;
}

.callback-form input[type="submit"]:hover {
	transition: 0.2s linear;
	color: #fff;
	background: #F13A30;
	cursor: pointer;
}

.callback-form input:hover,
.callback-form input:focus,
.callback-form input:active {
	outline: none;
}

.callback-form-field > div {
	transition: 0.2s linear;
}

.callback-form-field > div > input {
	/* border: 2px solid #fff; */
	transition: 0.2s linear;
}

.callback-form-field > div.alert-form > input {
	/* border: 2px solid #e60000; */
	transition: 0.2s linear;
}

.success-message {
	text-align: left;
	font-weight: 500;
	color: #000;
  font-size: 16px;
	margin-bottom: 20px;
  line-height: 120%;
}

.success-message span {
	font-weight: bold;
}

.success-message-wr {
	display: flex;
	justify-content: center;
    margin: 20px 0 5px 0
}

.success-message-img {
	margin-right: 15px;
}

.success-message-img img {
	max-width: 100%
}

.form-checkbox {
	margin-bottom: 15px;
}

.form-checkbox input[type="checkbox"]:checked,
.form-checkbox input[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.form-checkbox input[type="checkbox"]:checked + label,
.form-checkbox input[type="checkbox"]:not(:checked) + label {
  display: inline-block;
	/* display: flex; */
  position: relative;
  padding-left: 30px;
  line-height: 20px;
  cursor: pointer;
	font-weight: 500;
	font-size: 12px;
	color: #666666;
}

.form-checkbox input[type="checkbox"]:checked + label a,
.form-checkbox input[type="checkbox"]:not(:checked) + label a {
	text-decoration: none;
  color: #F13A30;
}

.form-checkbox input[type="checkbox"]:checked + label a:hover,
.form-checkbox input[type="checkbox"]:not(:checked) + label a:hover {
	text-decoration: underline;
  color: #F13A30;
}

.form-checkbox input[type="checkbox"]:checked + label:before,
.form-checkbox input[type="checkbox"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 18px;
  height: 18px;
  border: 1px solid #CCCCCC;
  background-color: #ffffff;
	transition: 0.2s linear;
}

.form-checkbox input[type="checkbox"]:checked + label:before,
.form-checkbox input[type="checkbox"]:not(:checked) + label:before {
  border-radius: 2px;
}


.form-checkbox input[type="checkbox"]:checked + label:after,
.form-checkbox input[type="checkbox"]:not(:checked) + label:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form-checkbox input[type="checkbox"]:checked + label:after{
  left: 3px;
  top: 4px;
  width: 10px;
  height: 5px;
  border-radius: 1px;
  border-left: 4px solid #FFE921;
  border-bottom: 4px solid #FFE921;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.callback-form-field > div.alert-form > .form-checkbox > label:before {
	border-color: #e60000;
	transition: 0.2s linear;
}

.red-color {
	color: #e60000;
}

@media screen and (max-width: 1023px) {

	.callback-form-field {
		width: 100%;
	}

	.callback-form-wr {
		padding: 50px 15px;
	}
}
