@charset "utf-8";
@font-face {
	font-family: Roboto;
	src:url(../fonts/roboto/roboto-regular.woff) format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: Roboto;
	src:url(../fonts/roboto/roboto-italic.woff) format('woff');
	font-weight: normal;
	font-style: italic;
}
@font-face {
	font-family: Roboto;
	src:url(../fonts/roboto/roboto-bold.woff) format('woff');
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: Roboto;
	src:url(../fonts/roboto/roboto-bolditalic.woff) format('woff');
	font-weight: bold;
	font-style: italic;
}
@font-face {
	font-family: Roboto;
	src:url(../fonts/roboto/roboto-light.woff) format('woff');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: Roboto;
	src:url(../fonts/roboto/roboto-lightitalic.woff) format('woff');
	font-weight: 300;
	font-style: italic;
}

html {
	background: #fff;
	min-height: 100%;
	font: 1em/normal Roboto, sans-serif;
	color: #333;
	position: relative;
}
body {
	margin: 0;
}

textarea, input, button {
	font-size: 1rem;
	font-family: Roboto, sans-serif;
}
article, aside, footer, header, main, hgroup, nav, section {
	display: block;
}
template {
	display: none;
}
a {
	color: #334687;
	text-decoration:underline;
}
a:hover {
	text-decoration: none;
}
:focus {
	outline: none;
}
input:focus::-webkit-input-placeholder {
	opacity: 0;
}
input:focus::-moz-placeholder {  /* Firefox 19+ */
	opacity: 0;  
}
input:focus:-ms-input-placeholder {  
	opacity: 0;  
}
textarea:focus::-webkit-input-placeholder {
	opacity: 0;
}
textarea:focus::-moz-placeholder {  /* Firefox 19+ */
	opacity: 0;  
}
textarea:focus:-ms-input-placeholder {  
	opacity: 0;  
}

img {
	border: 0;
}

h1,
h2,
h3 {
	font-weight: 300;
	color: #1f337a;
	text-transform: uppercase;
	text-align: center;
}
h2 {
	font-size: 1.88rem;
	margin: 2.188rem 0;
}
h3 {
	font-size: 1.5rem;
}
h2 .h-small {
	font-size: 1.5rem;
	text-transform: none;
	display: block;
}

button::-moz-focus-inner {
	margin: -1px 0;
	padding: 0;
	border: 0
}
.btn {
	background: #fff;
	font-size: 1.13rem;
	color: #334687;
	display: inline-block;
	text-decoration: none;
	text-align: center;
	border: 2px solid #334687;
	padding: 11px 30px;
	border-radius: 5px;
	cursor: pointer;
	vertical-align: middle;
	transition: all .15s;
}
.btn:active {
	box-shadow: inset 0 3px 1px rgba(0,0,0,.3),
				inset 0 -2px 1px rgba(255,255,255,.3);
}
.btn.flexible {
	min-width: 100%;
}
.btn.bolder {
	font-weight: bold;
}
.btn.danger,
.btn.success {
	border: none;
	padding: 13px 30px;
	color: #fff;
}
.btn.danger {
	background: #dc1b20;
}
.btn.danger:hover {
	background: #E21E23;
}
.btn.danger:active {
	background: #dc1b20;
}
.btn.success {
	background: #58ad37;
}
.btn.success:hover {
	background: #5DB53B;
}
.btn.success:active {
	background: #58ad37;
}
.btn.white {
	border: none;
	padding: 13px 30px;
	color: #999;
}
.btn_header {
	margin-bottom: 5px;
}
.btn.ico-white-arrow:after {
	content: '';
	background: url(../img/ico-btn-arrow_white.png) no-repeat 0 0;
	width: 9px;
	height: 14px;
	display: inline-block;
	margin-left: 15px;
	vertical-align: middle;
}
.btn.ico-gray-arrow:before {
	content: '';
	background: url(../img/ico-btn-arrow_gray.png) no-repeat 0 0;
	width: 7px;
	height: 14px;
	display: inline-block;
	margin-right: 15px;
	vertical-align: middle;
}
.btn_mod {
	width: 165px;
}

.inp {
	background: #f6f6f6;
	color: #999;
	border: 1px solid #ddd;
	box-shadow: inset 0 0 5px rgba(0,0,0,.15);
	padding: 13px 15px;
	border-radius: 5px;
	vertical-align: middle;
	box-sizing: border-box;
}
.inp.flexible {
	width: 100%;
}
.inp.centered {
	text-align: center;
}
.inp.error {
	background: #fbf2f2;
	border-color: #dc1b20;
	box-shadow: inset 0 0 5px rgba(220,27,32,.15);
}

.inp_dark {
	background: #2b4687;
	color: #fff;
	border: 2px solid #51629f;
	box-shadow: inset 0 0 10px rgba(0,0,0,.5);
	padding: 12px 15px;
	border-radius: 5px;
	vertical-align: middle;
	box-sizing: border-box;
}
.inp_dark.flexible {
	width: 100%;
}
.inp_dark.centered {
	text-align: center;
}
.inp_dark.error {
	border-color: #dc1b20;
	box-shadow: inset 0 0 10px rgba(220,27,32,.5);
}
.inp_dark::-webkit-input-placeholder {
	color: #fff;
	opacity: 1;
}
.inp_dark::-moz-placeholder {
	color: #fff;
	opacity: 1;
}
.inp_dark:-ms-input-placeholder {  
	color: #fff;
	opacity: 1;
}

.inp_light {
	background: #fff;
	color: #333;
	border: 2px solid #ddd;
	padding: 12px 15px;
	border-radius: 5px;
	vertical-align: middle;
	box-sizing: border-box;
	resize: none;
}
.inp_light.flexible {
	width: 100%;
}
.inp_gray {
	background: #f2f2f2;
	color: #333;
	border: 2px solid #e7e7e7;
	padding: 12px 15px;
	border-radius: 5px;
	vertical-align: middle;
	box-sizing: border-box;
}
.inp_gray.flexible {
	width: 100%;
}
.inp_phone {
	width: 300px;
}

.loclnk {
	text-decoration: none;
	border-bottom: 2px dotted #334687;
	display: inline-block;
	position: relative;
}
.loclnk_gray {
	color: #aeaeae;
	border-bottom: 2px dotted #aeaeae;
}
.loclnk:hover {
	border-bottom-color: rgba(0,0,0,0);
}
.loclnk.ico-mapplace {
	margin-left: 20px;
}
.loclnk.ico-mapplace:before {
	content: '';
	background: url(../img/ico-sprite.png) no-repeat -18px 0;
	width: 16px;
	height: 22px;
	position: absolute;
	left: -20px;
	bottom: -3px;
}
.loclnk.ico-phone {
	margin-left: 23px;
}
.loclnk.ico-phone:before {
	content: '';
	background: url(../img/ico-sprite.png) no-repeat 0 0;
	width: 18px;
	height: 19px;
	position: absolute;
	left: -23px;
	bottom: -5px;
}
.loclnk.ico-addcomment {
	margin-left: 30px;
}
.loclnk.ico-addcomment:before {
	content: '';
	background: #f7f7f7;
	background: linear-gradient(#f8f8f8, #e5e5e5);
	width: 22px;
	height: 22px;
	border: 2px solid #d9d9d9;
	border-radius: 3px;
	position: absolute;
	top: 0px;
	left: -30px;
	box-sizing: border-box;
}
.loclnk.ico-addcomment:after {
	content: '';
	background: url(../img/ico-addcomment.png);
	width: 11px;
	height: 11px;
	position: absolute;
	top: 6px;
	left: -24px;
}

.box {}
.box-base {
	display: block;
}
.box-side {
	float: left;
}
.box-side_right {
	float: right;
}
.box_modabout {}
.box_modabout .box-side {
	width: 110px;
	text-align: right;
	padding: 10px 10px 0 0;
}
.box_modabout .box-base {
	padding-right: 30px;
}

.nav {}
.nav-itm {
	display: block;
}
.nav.horizontal {
	letter-spacing: -.25em;
}
.nav.horizontal .nav-itm {
	letter-spacing: normal;
	display: inline-block;
	vertical-align: top;
}
.nav_top {
	text-align: center;
}
.nav_top .nav-itm {
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	padding: 17px 8px;
}
.nav_top .nav-itm:hover {
	background: rgba(255,255,255,.05);
}

.nav_owlgeoslider {
	font-size: 1.13rem;
	font-weight: bold;
	text-align: center;
	margin: 50px 0;
}
.nav_owlgeoslider .nav-itm {
	text-decoration: none;
	margin: 0 5px;
	padding: 21px 25px 21px 80px;
	border: 2px solid #e7e7e7;
	border-radius: 35px;
	position: relative;
	box-sizing: border-box;
}
.nav_owlgeoslider .nav-itm:hover,
.nav_owlgeoslider .nav-itm.active {
	background: #334687;
	border-color: #334687;
	color: #fff;
}
.nav_owlgeoslider .nav-itm.ico-slider-sprite-2 {
	padding-left: 95px;
}
.nav_owlgeoslider .nav-itm.ico-slider-sprite-3 {
	padding-left: 85px;
}
.nav_owlgeoslider .nav-itm.ico-slider-sprite-0:before,
.nav_owlgeoslider .nav-itm.ico-slider-sprite-1:before,
.nav_owlgeoslider .nav-itm.ico-slider-sprite-2:before,
.nav_owlgeoslider .nav-itm.ico-slider-sprite-3:before {
	content: '';
	background: url(../img/ico-slider-sprite.png) no-repeat 0 0;
	height: 53px;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
}
.nav_owlgeoslider .nav-itm.ico-slider-sprite-0:before {
	background-position: 0 0;
	width: 43px;
	left: 27px;
}
.nav_owlgeoslider .nav-itm.ico-slider-sprite-0:hover:before,
.nav_owlgeoslider .nav-itm.ico-slider-sprite-0.active:before {
	background-position: 0 -53px;
}
.nav_owlgeoslider .nav-itm.ico-slider-sprite-1:before {
	background-position: -43px 0;
	width: 43px;
	left: 27px;
}
.nav_owlgeoslider .nav-itm.ico-slider-sprite-1:hover:before,
.nav_owlgeoslider .nav-itm.ico-slider-sprite-1.active:before {
	background-position: -43px -53px;
}
.nav_owlgeoslider .nav-itm.ico-slider-sprite-2:before {
	background-position: -86px 0;
	width: 58px;
	left: 28px;
}
.nav_owlgeoslider .nav-itm.ico-slider-sprite-2:hover:before,
.nav_owlgeoslider .nav-itm.ico-slider-sprite-2.active:before {
	background-position: -86px -53px;
}
.nav_owlgeoslider .nav-itm.ico-slider-sprite-3:before {
	background-position: -144px 0;
	width: 48px;
	left: 30px;
}
.nav_owlgeoslider .nav-itm.ico-slider-sprite-3:hover:before,
.nav_owlgeoslider .nav-itm.ico-slider-sprite-3.active:before {
	background-position: -144px -53px;
}

.nav_popular {
	font-size: 1.13rem;
	text-align: center;
	margin: -20px 0 25px;
}
.nav_popular .nav-itm {
	font-weight: bold;
	line-height: 33px;
	color: #fff;
	text-decoration: none;
	border: 2px solid #445799;
	margin: 0 5px;
	padding: 14px 30px 16px;
	border-radius: 35px;
}
.nav_popular .nav-itm img {
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
}
.nav_popular .nav-itm:hover,
.nav_popular .nav-itm.active {
	background: #445799;
}

.nav_modaltab {
	text-align: center;
}
.nav_modaltab.horizontal .nav-itm {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid #354889;
	vertical-align: middle;
	box-sizing: border-box;
}
.nav_modaltab .nav-itm.active {
	background: #dc1b20;
	border: 2px solid #dc1b20;
}
.nav_modaltab .nav-separate {
	background: url(../img/ico-nav-separate.png) repeat-x 0 0;
	width: 53px;
	height: 3px;
	margin: 0 3px;
	letter-spacing: normal;
	display: inline-block;
	vertical-align: middle;
}
.nav_modaltab img {
	display: block;
	margin: 3px;
}

.wrap {
	width: 1200px;
	margin: auto;
	padding: 0 45px;
	box-sizing: border-box;
}
.header {
	min-width: 1200px;
}
.header-top {
	background: #334687;
	z-index: 3;
}
.header-mid {}
.logo,
.logo-img {
	text-decoration: none;
	display: block;
}
.header-midbase {
	text-align: right;
	padding: 10px 0 10px 10px;
}
.header-case {
	font-size: 0.88rem;
	text-align: center;
	display: inline-block;
	margin-left: 25px;
	vertical-align: bottom;
}
.whours {
	color: #334687;
}
.whours-time {
	font-size: 1.875rem;
	line-height: 1;
	margin-bottom: 5px;
}
.header-phone {
	font-size: 1.875rem;
	line-height: 1;
	color: #e30613;
	margin-bottom: 5px;
}
.header-bottom {}
.rootbanner {
	min-height: 649px;
	position: relative;
	overflow: hidden;
}
.rootbanner-img {
	display: block;
	position: relative;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.rootbanner-inner {
	width: 1110px;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.rootbanner-title {
	font-size: 3rem;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	text-shadow: 0 0 10px rgba(0,0,0,.5);
	margin: 85px 0 25px;
}
.rootbanner-eco {
	background-image: linear-gradient(rgba(220,27,32,1), rgba(220,27,32,1)),
					  linear-gradient(45deg, rgba(220,27,32,1) 50%, rgba(220,27,32,0) 50%),
					  linear-gradient(-45deg, rgba(220,27,32, 0) 50%, rgba(220,27,32,1) 50%),
					  linear-gradient(45deg, rgba(220,27,32,0) 50%, rgba(220,27,32,1) 50%),
					  linear-gradient(-45deg, rgba(220,27,32, 1) 50%, rgba(220,27,32,0) 50%);
	background-repeat: repeat,
					   repeat-y, repeat-y,
					   repeat-y, repeat-y;
	background-position: 0 0,
						 100% -6px, 100% 6px,
						 0 -6px, 0 6px;
	background-size: auto auto,
					 12px 12px, 12px 12px,
					 12px 12px, 12px 12px;
	background-origin: padding-box,
					   border-box, border-box,
					   border-box, border-box;
	background-clip: padding-box,
					 border-box, border-box,
					 border-box, border-box;
	border-left: 5px solid rgba(0,0,0,0);
	border-right: 6px solid rgba(0,0,0,0);
	min-height: 102px;
	font-size: 2.25rem;
	text-transform: uppercase;
	color: #fff;
	display: inline-block;
	margin: 0 auto 25px;
	padding: 3px 25px 3px 125px;
	position: relative;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	box-sizing: border-box;
}
.rootbanner-eco:before {
	content: '';
	background: rgba(220,27,32,1);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.rootbanner-eco:after {
	content: '';
	background: url(../img/ico-discount.png) no-repeat 0 0;
	width: 101px;
	height: 120px;
	position: absolute;
	top: -8px;
	left: 15px;
}
.rootbanner-footer {
	width: 100%;
	position: absolute;
	bottom: 100px;
}
.appform {
	background: #fff;
	padding: 15px 30px 30px;
	box-shadow: 0 5px 35px rgba(0,0,0,.35);
	border-radius: 5px;
}
.appform-label {
	font-weight: bold;
	color: #333;
	display: block;
}
.appform-group {
	letter-spacing: -.25em;
	margin-left: -20px;
}
.appform-itm {
	letter-spacing: normal;
	display: inline-block;
	padding-left: 20px;
	vertical-align: bottom;
}
.appform-itm_fromto {
	width: 373px;
}
.appform-itm_time {
	width: 241px;
}
.appform-itm_count {
	width: 159px;
}
.appform-itm_submit {
	width: 212px;
}
.appform-itmsub {
	display: inline-block;
	vertical-align: bottom;
}
.appform-itm_fromto .appform-itmsub {
	width: 184px;
}
.appform-itm_time .appform-itmsub:nth-child(1) {
	width: 176px;
}
.appform-itm_time .appform-itmsub:nth-child(2) {
	width: 60px;
}
.appform-itm_count .appform-itmsub:nth-child(1) {
	width: 93px;
}
.appform-itm_count .appform-itmsub:nth-child(2) {
	width: 61px;
}
.main {
	min-width: 1200px;
	padding: 0 0 640px;
	box-sizing: border-box;
}
.main-group {}

.main-group_dark {
	background-image: linear-gradient(rgba(51,70,135,1), rgba(51,70,135,1)),
					  linear-gradient(-45deg, rgba(51,70,135,1) 50%, rgba(51,70,135,0) 50%),
					  linear-gradient(45deg, rgba(51,70,135,1) 50%, rgba(51,70,135,0) 50%),
					  linear-gradient(-45deg, rgba(51,70,135,0) 50%, rgba(51,70,135,1) 50%),
					  linear-gradient(45deg, rgba(51,70,135,0) 50%, rgba(51,70,135,1) 50%);
	background-repeat: repeat,
					   repeat-x, repeat-x,
					   repeat-x, repeat-x;
	background-position: 0 0,
						 -6px 0, 6px 0,
						 -6px 100%, 6px 100%;
	background-size: auto auto,
					 12px 12px, 12px 12px,
					 12px 12px, 12px 12px;
	background-origin: padding-box,
					   border-box, border-box,
					   border-box, border-box;
	background-clip: padding-box,
					 border-box, border-box,
					 border-box, border-box;
	border-top: 6px solid rgba(0,0,0,0);
	border-bottom: 6px solid rgba(0,0,0,0);
	/* color: #fff; */
	position: relative;
}
.main-group_dark:before {
	content: '';
	background: #334687;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.main-group_dark h1,
.main-group_dark h2,
.main-group_dark h3 {
	color: #fff;
}

.owl-carousel-itm {
	width: 920px;
	display: table;
	table-layout: fixed;
}
.owl-carousel-side {
	width: 255px;
	display: table-cell;
	vertical-align: middle;
}
.owl-carousel-base {
	display: table-cell;
	vertical-align: middle;
}
.owl-carousel-title {
	text-align: left;
	margin: 0 0 30px;
}

.requestbox {
	background: #445699;
	margin: 50px 0;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 35px rgba(0,0,0,.35);
}
.requestbox-title {
	margin-top: 0;
}
.requestbox-group {
	text-align: center;
}
.requestbox-case {
	display: inline-block;
	margin: 0 8px;
}

.howtowork {
	min-height: 215px;
	text-align: center;
	margin: 50px 0;
	position: relative;
}
.howtowork-itm {
	width: 240px;
	line-height: 1.2;
	text-align: center;
	color: #1f337a;
	display: inline-block;
	margin: 0 0 0 140px;
}
.howtowork-itm:first-child {
	margin-left: 0;
}
.howtowork-img {
	display: block;
	margin: 0 auto 15px;
}
.howtowork-dot_first,
.howtowork-dot_second {
	background: url(../img/howto_dots.png) repeat-x 0 0;
	width: 135px;
	height: 9px;
	position: absolute;
	top: 80px;
}
.howtowork-dot_first {
	left: 295px;
}
.howtowork-dot_second {
	left: 675px;
}

.feedback {
	margin: 50px 0 75px;
	padding: 0 65px;
}
.feedback-box {
	margin: 15px 0;
}
.feedback-img {
	margin-right: 30px;
	float: left;
	border-radius: 50%;
}
.feedback-itm:nth-child(even) .feedback-img {
	float: right;
	margin-right: 0;
	margin-left: 30px;
}
.feedback-body {
	display: block;
	padding-right: 220px;
}
.feedback-itm:nth-child(even) .feedback-body {
	text-align: right;
	padding-right: 0;
	padding-left: 220px;
}
.feedback-name {
	font-size: 1.875rem;
	font-weight: 300;
	color: #dc1b20;
}
.feedback-place {
	color: #334687;
}
.feedback-place:before {
	content: '';
	background: url(../img/ico-feedback-place.png) no-repeat 0 0;
	width: 12px;
	height: 17px;
	display: inline-block;
	margin-right: 5px;
}
.feedback-msg {
	line-height: 1.2;
	margin: 20px 0 0px;
}
.feedback-footer {
	margin-top: 40px;
	text-align: center;
}

.advancedsearch {
	background: url(../img/advancedsearch-wave.png) repeat-x 0 0;
	padding-top: 6px;
}

.banner {
	background: url(../img/banner_bg.png) no-repeat 0 0;
	width: 1110px;
	height: 148px;
	color: #fff;
	margin: 45px 0;
	position: relative;
}
.banner-btn {
	position: absolute;
	top: 50px;
	right: 30px;
}
.banner-body {
	font-size: 30px;
	text-transform: uppercase;
	position: absolute;
	top: 33px;
	left: 250px;
}
.footer {
	min-width: 1200px;
	height: 640px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.footer-top {
	height: 580px;
	position: relative;
}
.mapbox {
	background: #eee;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.fcontact {
	background: #fff;
	width: 475px;
	text-align: center;
	padding: 30px 30px 35px;
	position: relative;
	top: 60px;
	border-radius: 5px;
	box-shadow: 0 0 25px rgba(0,0,0,.35);
	box-sizing: border-box;
}
.fcontact-stitle {
	font-size: 1rem;
	margin: 15px 0 5px;
}
.fcontact-phone {
	font-size: 1.875rem;
	color: #333;
	margin: 10px 0;
}
.fcontact-bottom {
	background: url(../img/fcontact-wave.png) repeat-x 0 0;
	margin-top: 30px;
	padding: 20px 50px 0;
}
.footer-bottom {
	background: #334687;
	font-size: 0.88rem;
	height: 60px;
	color: #fff;
	text-align: center;
	padding-top: 10px;
	box-sizing: border-box;
}

.overlay {
	background: rgba(0,0,0,.5);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: auto;
	z-index: 10;
}
.modal {
	background: #fff;
	margin: 35px auto 75px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,.5);
	position: absolute;
	right: 50%;
	-webkit-transform: translate(50%,0);
	-ms-transform: translate(50%,0);
	transform: translate(50%,0);
}
.modal-calc {
	width: 880px;
}
.box_modalheader {
	min-height: 150px;
}
.modal-contact {
	text-align: center;
	padding: 45px 30px 30px 20px;
}
.modal-phone {
	font-size: 2rem;
	color: #dc1b20;
}
.modal-logo {
	padding: 50px 0 30px 30px;
}
.modal-logo img {
	display: block;
}
.modal-place {
	background: #334687;
	font-size: 1.5rem;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	padding: 24px 30px;
}
.modal-tab {
	background: #445699;
	color: #fff;
	padding: 10px 30px;
}
.modal-tabbody {
	width: 540px;
	min-height: 430px;
	margin: 0 auto;
	box-sizing: border-box;
}
.modal-where {
	padding-top: 140px;
}
.modal-when {
	padding-top: 140px;
}
.modal-count {
	padding-top: 100px;
}
.modal-about {
	padding-top: 40px;
}
.modal-title {
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 1em; 
}
.modal-title-small {
	font-size: 1rem;
}
.modal-center {
	text-align: center;
}
.modal-select {
	width: 260px;
}
.modal-footer {
	border-top: 1px solid #eaeaea;
	padding: 17px 20px 20px;
}

.modal-callaway {
	width: 640px;
	padding: 25px 30px 30px;
	box-sizing: border-box;
}

.modal-callback {
	width: 470px;
	padding: 20px 20px 30px;
	box-sizing: border-box;
}
.modal-callback-header {
	margin-bottom: 25px;
	padding: 30px 0 50px;
	border-bottom: 2px dotted #ccc;
}
.modal-callback-header img {
	display: block;
	margin: auto;
}
.modal-callback-group {
	width: 340px;
	margin: 0 auto;
}
.modal-callback-label {
	font-size: 1.13rem;
	display: block;
	margin-bottom: 5px;
}
.modal-callback-line {
	margin-bottom: 10px;
}
.modal-callback-footer {
	text-align: center;
	margin-top: 30px;
}
.modal-input-wrap {
	position: relative;
}
.modal-count-case {
	display: inline-block;
	margin: 0 10px;
}
.modal-center-label {
	font-size: 1.13rem;
	text-align: center;
	margin-bottom: 5px;
}
.modal-kid-array {
	width: 260px;
	margin: auto;
	text-align: left;
}
.form-array-itm {
	background: #fbe6e4;
	font-size: 0.88rem;
	color: #f38d64;
	border: 2px solid #f8b6b1;
	margin: 10px 0;
	padding: 10px 30px 11px 20px;
	position: relative;
}
.form-array-close {
	background: url(../img/ico-array-close_red.png) no-repeat 0 0;
	width: 14px;
	height: 10px;
	display: block;
	margin-top: -5px;
	position: absolute;
	top: 50%;
	right: 12px;
	cursor: pointer;
}

.modal-about-wrap {
	width: 410px;
	margin: 0 auto;
	padding-bottom: 50px;
}
.modal-about-case {
	padding: 0 30px 0 120px;
}
.modal-about-line {
	margin-bottom: 20px;
}
.modal-about-label {
	font-size: 1.13rem;
}
.modal-about-slidedown {
	display: none;
}

.modal-input-wrap.error .tooltip {
	display: block;
}
.tooltip {
	background: #f2f2f2;
	width: 220px;
	font-size: 14px;
	border: 1px solid #e7e7e7;
	border-radius: 2px;
	color: #333;
	text-align: left;
	margin-left: 10px;
	padding: 10px 10px;
	display: none;
	position: absolute;
	top: 3px;
	left: 100%;
	box-sizing: border-box;
}
.tooltip_bottom {
	width: auto;
	min-width: 180px;
	text-align: center;
	margin: 10px 0 0 0;
	padding: 5px;
	top: 100%;
	left: 5px;
	right: 5px;
}
.tooltip:before {
	content: '';
	border-right: 8px solid #e7e7e7;
	border-top: 8px inset transparent;
	border-bottom: 8px inset transparent;
	position: absolute;
	top: 12px;
	left: -9px;
}
.tooltip:after {
	content: '';
	border-right: 7px solid #f2f2f2;
	border-top: 7px inset transparent;
	border-bottom: 7px inset transparent;
	position: absolute;
	top: 13px;
	left: -7px;
}
.tooltip_bottom:before {
	content: '';
	border: none;
	border-bottom: 8px solid #e7e7e7;
	border-left: 8px inset transparent;
	border-right: 8px inset transparent;
	position: absolute;
	top: -9px;
	left: 12px;
}
.tooltip_bottom:after {
	content: '';
	border: none;
	border-bottom: 7px solid #f2f2f2;
	border-left: 7px inset transparent;
	border-right: 7px inset transparent;
	position: absolute;
	top: -7px;
	left: 13px;
}
.tooltip.error {
	background: #fbe6e4;
	border: 1px solid #f8b6b1;
	color: #e54d42;
}
.tooltip.error:before {
	border-right-color: #f8b6b1;
}
.tooltip.error:after {
	border-right-color: #fbe6e4;
}
.tooltip_bottom.error:before {
	border-right-color: transparent;
	border-bottom-color: #f8b6b1;
}
.tooltip_bottom.error:after {
	border-right-color: transparent;
	border-bottom-color: #fbe6e4;
}

.inpnumber {
	background: #fff;
	font-size: 0.88rem;
	color: #333;
	text-align: center;
	border: 2px solid #ddd;
	display: inline-block;
	padding: 13px 60px 14px;
	position: relative;
	border-radius: 5px;
	vertical-align: middle;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.inpnumber_mod {
	width: 260px;
}
.inpnumber-plus {
	background: #dc1b20;
	width: 45px;
	border-radius: 0 5px 5px 0;
	position: absolute;
	top: -2px;
	right: -2px;
	bottom: -2px;
	cursor: pointer;
}
.inpnumber-minus {
	background: #dc1b20;
	width: 45px;
	border-radius: 5px 0 0 5px;
	position: absolute;
	top: -2px;
	left: -2px;
	bottom: -2px;
	cursor: pointer;
}
.inpnumber-plus:before,
.inpnumber-minus:before {
	content: '';
	background: #fff;
	width: 14px;
	height: 2px;
	margin: -1px 0 0 -7px;
	position: absolute;
	top: 50%;
	left: 50%;
}
.inpnumber-plus:after {
	content: '';
	background: #fff;
	width: 2px;
	height: 14px;
	margin: -7px 0 0 -1px;
	position: absolute;
	top: 50%;
	left: 50%;
}
.inpnumber input {
	display: none;
}


/* Dimox */
.jq-radio {
	top: -1px;
	vertical-align: middle;
	width: 17px;
	height: 17px;
	margin: 0 4px 0 0;
	border: 1px solid #cfcfcf;
	border-radius: 50%;
	background: #F5F5F5;
	background: -webkit-linear-gradient(#FFF, #E6E6E6);
	background:         linear-gradient(#FFF, #E6E6E6);
	box-shadow: 0 1px 1px rgba(0,0,0,.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
	cursor: pointer;
}
.jq-radio.checked .jq-radio__div {
	width: 13px;
	height: 13px;
	margin: 2px 0 0 2px;
	border-radius: 50%;
	background: #e54d42;
	border: 1px solid #b7281d;
	box-sizing: border-box;
}
.jq-radio.focused {
	border: 1px solid #08C;
}
.jq-radio.disabled {
	opacity: .55;
}


.jq-selectbox {
	vertical-align: middle;
	cursor: pointer;
}
.jq-selectbox__select {
	height: 45px;
	padding: 0 45px 0 10px;
	border: 2px solid #ddd;
	border-radius: 3px;
	background: #fff;
	font: 14px/45px Roboto, sans-serif;
	color: #333;
}
.jq-selectbox__select:hover {
	background: #fff;
}
.jq-selectbox__select:active {
	background: #fff;
}
.jq-selectbox.focused .jq-selectbox__select {
	border: 2px solid #ddd;
}
.jq-selectbox.disabled .jq-selectbox__select {
}
.jq-selectbox__select-text {
	display: block;
	overflow: hidden;
	width: 100% !important;
	white-space: nowrap;
	text-align: left;
	text-overflow: ellipsis;
}
.jq-selectbox .placeholder {
	color: #888;
}
.jq-selectbox__trigger {
	background: #dc1b20;
	border-radius: 0 3px 3px 0;
	position: absolute;
	top: -2px;
	right: -2px;
	bottom: -2px;
	width: 45px;
}
.jq-selectbox__trigger-arrow {
	background: url(../img/ico-select-arrow.png) no-repeat 0 0;
	width: 18px;
	height: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.jq-selectbox__dropdown {
	box-sizing: border-box;
	width: 100%;
	margin: 12px 0 0;
	padding: 10px;
	text-align: left;
	border: 1px solid #ddd;
	border-radius: 3px;
	background: #FFF;
	box-shadow: 0 0 10px rgba(0,0,0,.35);
	font: 14px/18px Roboto, sans-serif;
}
.jq-selectbox__search {
	margin: 5px;
}
.jq-selectbox__search input {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 5px 27px 6px 8px;
	border: 1px solid #CCC;
	border-radius: 3px;
	outline: none;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
	box-shadow: inset 1px 1px #F1F1F1;
	color: #333;
	-webkit-appearance: textfield;
}
.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
	-webkit-appearance: none;
}
.jq-selectbox__not-found {
	margin: 5px;
	padding: 5px 8px 6px;
	background: #F0F0F0;
	font-size: 13px;
}
.jq-selectbox ul {
	margin: 0;
	padding: 0;
}
.jq-selectbox li {
	min-height: 18px;
	padding: 5px 10px 6px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	white-space: nowrap;
	color: #231F20;
	border: 1px solid transparent;
	box-sizing: border-box;
}
.jq-selectbox li.selected {
	background-color: #fbe6e4;
	color: #e54d42;
	border: 1px solid #f8b6b1;
	border-radius: 2px;
}
.jq-selectbox li:hover {
	background-color: #fafafa;
	color: #333;
	border: 1px solid #eaeaea;
	border-radius: 2px;
}
.jq-selectbox li.disabled {
	color: #AAA;
}
.jq-selectbox li.disabled:hover {
	background: none;
}
.jq-selectbox li.optgroup {
	font-weight: bold;
}
.jq-selectbox li.optgroup:hover {
	background: none;
	color: #231F20;
	cursor: default;
}
.jq-selectbox li.option {
	padding-left: 25px;
}

.modal-select_gray {
	width: 260px;
}
/* Dimox select */

.hide {
	display: none;
}

/* clearfix */
.clearfix {
	display: table;
}
.clearfix:after {
	content: '1 1';
	font: .1px/0 a;
	display: block;
	word-spacing: 99in;
	overflow: hidden;
}
/* end clearfix */