.box-inner {
	z-index: 1;
	background: #fff;
	position: relative;
	border-radius: 3px;
	padding: 30px 40px;
	min-height: 500px;
	margin-bottom: 45px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}

/* book */
.book {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 5px solid #f2f2f2;
}
.book .options li {
	padding-left: 25px;
	position: relative;
}
.book .options li:not(.last) {
	margin-bottom: 10px;
}
.book .options li::before {
	left: 0;
	width: 20px;
	color: #888888;
	position: absolute;
	font-family: FontAwesome;
}
.book h2 {
	color: #0089cf;
	font-size: 20px;
	margin: 0 0 15px;
	font-weight: 700;
	line-height: 1.5;
	text-transform: uppercase;
}
.qrcode {
	padding: 10px;
	background: #ffffff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
}

/* box-form */
#box-form .box-form {
	position: relative;
}
#box-form .form-wrap {
	z-index: 1;
	position: relative;
}
#box-form .form-field {
	margin-bottom: 10px;
	display: flex;
	width: 100%;
}
#box-form .form-field.last {
	margin-bottom: 0;
	margin-top: 17px;
}
#box-form .form-field .form-label {
	width: 130px;
}
#box-form .form-field .form-input {
	width: calc(100% - 130px);
	position: relative;
}
#box-form .form-field .form-label label {
	cursor: pointer;
	font-weight: 400;
	margin-bottom: 3px;
}
#box-form .form-field.required label::after {
	content: '*';
	color: #ec0e17;
	margin-left: 5px;
}
#box-form .form-field .form-control {
	min-height: 40px;
	border-radius: 0;
	box-shadow: none;
	-webkit-appearance: none;
	border-color: #d3d3d3;
}
#box-form .form-field .form-control:focus {
	border-color: var(--c5);
}
#box-form #security-code .form-control {
	width: calc(100% - 150px);
}
#box-form #security-code .captcha {
	width: 150px;
	top: 0;
    right: 0;
	position: absolute;
}
#box-form .btn {
	background: #f2f3f7;
    border: 1px solid #e4e6ed;
    height: 45px;
    min-width: 185px;
    color: #444;
    border-radius: 45px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: none;
	outline: none;
}
#box-form .btn::before {
	font-weight: 400;
	margin-right: 10px;
}
#box-form .btn.btn-submit {
	color: white;
	background: #105caa;
	border-color: #105caa;
	margin-left: 20px;
}
#box-form .alert-danger {
	border-radius: 0;
	margin: 50px 0 0;
}



.box-info h2 {
	font-size: 26px;
	margin: 0 0 20px;
	line-height: 1.4;
	font-weight: 700;
	color: var(--c5);
	padding-right: 100px;
}
ul.address {
	margin-bottom: 30px;
}
ul.address li:not(:last-child) {
    margin-bottom: 7px;
}
ul.address li {
	position: relative;
    padding-left: 25px;
}
ul.address li::before {
	font-family: FontAwesome;
    content: '\f041';
    position: absolute;
    left: 0;
    font-size: 22px;
    color: var(--c5);
    top: -5px;
}

.line {
	position: relative;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 16px;
	margin-bottom: 20px;
}
.line::after {
	content: '';
	top: 50%;
	left: 0;
	right: 0;
	position: absolute;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	border-top: 1px solid #dedede;
}
.line span {
	display: inline-block;
	vertical-align: middle;
	padding-right: 13px;
	background: white;
	z-index: 1;
	position: relative;
}


ul.contacts {}
ul.contacts li:not(:last-child) {
    margin-bottom: 12px;
	line-height: 1.6;
}
ul.contacts li:first-child {
    color: var(--c5);
    position: relative;
    padding-left: 30px;
}
ul.contacts li:first-child::before {
    font-family: FontAwesome;
    content: '\f095';
    position: absolute;
    left: 0;
    font-size: 22px;
    top: -5px;
	color: var(--c5);
}
ul.contacts li:not(:first-child) {
    position: relative;
    padding-left: 30px;
}
ul.contacts li:not(:first-child)::before {
    font-family: FontAwesome;
    content: '\f095';
    position: absolute;
    left: 0;
    font-size: 22px;
    top: -5px;
    color: var(--c5);
}

ul.contacts li:last-child::before {
    font-size: 20px;
    content: '\f2b6';
}



























/* Mobile 1024px */
@media screen and (max-width: 1024px)
{
	.box-inner {
		padding: 20px;
		min-height: 540px;
		margin-bottom: 20px;
	}
	#box-form .form-field .form-label {
		width: 90px;
	}
	#box-form .form-field .form-input {
		width: calc(100% - 90px);
	}
	#box-form .btn {
		width: 100%;
		min-width: 100%;
	}
	#box-form .btn.btn-submit {
		margin: 15px 0 0;
	}
}

/* Mobile 768px */
@media screen and (max-width: 768px)
{
	.box-inner {
		min-height: initial;
	}
}


/* Mobile 767px */
@media screen and (max-width: 767px)
{
	#content {
		margin-top: 20px;
	}
	.box-info h2 {
		padding-right: 0;
	}
	#box-form .form-field {
		display: block;
		overflow: hidden;
	}
	#box-form .form-field .form-label,
	#box-form .form-field .form-input {
		width: 100%;
	}
}

/* Mobile 480px */
@media screen and (max-width: 480px)
{
	
}

/* Mobile 420px */
@media screen and (max-width: 420px)
{
	
}

/* Mobile 375px */
@media screen and (max-width: 380px)
{
	
}

/* Mobile 370px */
@media screen and (max-width: 370px)
{
	
}

/* Mobile 330px */
@media screen and (max-width: 330px)
{
	
}