@charset 'utf-8';

/* Reset
*******************************************************************************/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,main,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,hr,button,input,select,textarea{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;outline:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}main,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,video{display:block}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}ol,ul{list-style:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}blockquote,q{quotes:none}table{border-collapse:collapse;border-spacing:0;vertical-align:top}strong{font-weight:700}small{font-size:80%}big{font-size:120%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}fieldset{border:1px solid silver}button,input,select,textarea{font-family:inherit;font-size:100%;line-height:normal;text-transform:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}textarea{overflow:auto;vertical-align:top}button,input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],input[disabled]{cursor:default}input[type="search"]{-webkit-appearance:textfield;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}svg:not(:root){overflow:hidden}

html {
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	-webkit-overflow-scrolling:touch;
	overflow-scrolling:touch;
}

@font-face {
  font-family: 'rub';
  src: url(/_/common/fonts/rub/rouble.eot);
  src: local('☺'),
       url(/_/common/fonts/rub/rouble.eot?#iefix) format('embedded-opentype'),
       url(/_/common/fonts/rub/rouble.woff)       format('woff'),
       url(/_/common/fonts/rub/rouble.ttf)        format('truetype'),
       url(/_/common/fonts/rub/rouble.svg#rub)    format('svg');
  font-weight: normal;
  font-style: normal;
}

i.r {
  font-weight: normal;
  font-size: 85%;
  font-family: 'rub';
  font-style: inherit;
  text-transform: none;
}

/* Typography
*******************************************************************************
*/

body {
	line-height: 1;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
}

h1 {
	margin-left: -0.06em;
}

p,
li {
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}
p a,
li a {
	color: #103a71;
	text-decoration: underline;
}
p a:hover {
	text-decoration: none;
}

b {
  font-weight: 700;
}
b b {
  font-weight: 800;
}
i {
  font-style: italic;
}

ul {
  list-style: none;
}
ol {
  list-style: decimal;
}
ol, ul {
  padding-left: 25px;
}
p + p,
p + ul, ul + p,
p + ol, ol + p,
p + img {
	margin-top: 1.5em;
}
li + li {
	margin-top: 1em;
}

ul li {
	position: relative;
}
ul li::before {
	content: '';
	position: absolute;
	top: 6px;
	left: -20px;
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #103a71;
}

svg {
	display: block;
}

.accent {
	color: #103a71;
}

/* Forms
*******************************************************************************/

[placeholder]:focus::-webkit-input-placeholder { color: transparent; }
[placeholder]:focus::-moz-placeholder          { color: transparent; }
[placeholder]:focus:-webkit-input-placeholder  { color: transparent; }
[placeholder]:focus:-moz-placeholder           { color: transparent; }

form {
	position: relative;
}
form::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	display: block;
	z-index: 1;
	cursor: wait;
	background: rgba(0,0,0,.1);
	opacity: 0;
	visibility: hidden;
}
form .loader {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100px;
	height: 100px;
	margin: -50px 0 0 -50px;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
}
form.wait .loader,
form.wait::before {
	opacity: 1;
	visibility: visible;
}

form label {
	cursor: pointer;
}
form input[type="radio"],
form input[type="checkbox"] {
	display: none;
}
form textarea {
	width: 100%;
	height: 120px;
	padding: 5px 10px;
	border: 1px solid #e0e5ea;
	resize: vertical;
}

button {
	position: relative;
	background: none;
	border: none;
}
button[disabled] {
	cursor: default;
}

.btn_main {
	display: inline-block;
	padding: 0 20px;
	line-height: 40px;
	color: #fff;
	font-size: 17px;
	background: #0c3a6f;
}
.btn_main.fav {
	background: #6eabda;
}
.btn_main.fav:hover {
	background: #5690bc;
}
.btn_sub {
	line-height: 40px;
	color: #fff;
	font-size: 17px;
	background: #c1c1c1;
}
.btn_sub:hover {
	color: #fff;
	background: #aaa;
}

@media (min-width: 1280px) {
	.btn_main:hover {
		background: #16549b;
	}
}

form .message {
	display: none;
	margin: 10px 0;
	padding: 8px 10px;
	border: 2px solid;
}
form .success {
	color: #36a110;
	border-color: #36a110;
}
form .errors {
	color: #b81818;
	border-color: #b81818;
}

/* Other
*******************************************************************************/

hr {
	width: 100%;
	height: 1px;
	margin: 20px 0;
	background: #ddd;
}

.box {
	position: relative;
	width: 100%;
	max-width: 1590px;
	margin: 0 auto;
	padding: 0 20px;
}
.inner {
	position: relative;
}
.inner:after,
.inner:before,
.clear:after,
.clear:before {
	content: '';
	display: block;
	width: 100%;
	height: 0;
	margin: 0;
	padding: 0;
	float: none;
	clear: both;
	border: none;
	background: none;
}

img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}

table {
  width: 100%;
}

a,
button {
	transition: all 200ms linear;
}

.table_cover {
	width: 100%;
	overflow: auto;
}

/*
*******************************************************************************/

@media (min-width: 1024px) {
	.page_grid {
		display: table;
		width: 100%;
	}
	.page_cell {
		display: table-cell;
		vertical-align: top;
	}
	.page_cell + .page_cell {
		width: 360px;
		padding: 0 0 0 20px;
	}
}

@media (min-width: 1280px) {
	.page_cell + .page_cell {
		width: 400px;
		padding: 0 0 0 40px;
	}
}

@media (min-width: 1440px) {
	.page_cell + .page_cell {
		width: 430px;
	}
}

@media (min-width: 1600px) {
	.page_cell + .page_cell {
		padding: 0 0 0 60px;
	}
}

/* Заголовки
*******************************************************************************/

.page_head {
	padding: 0 0 20px;
}
.page_head_label {
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
	line-height: 22px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	background: #444;
}
.page_head .title_main h1 {
	display: inline;
}

.title_main {
	padding: 20px 0;
	color: #103a71;
	font-size: 24px;
	font-weight: 700;
}

.title_second {
	padding: 15px 0;
	line-height: 24px;
	color: #103a71;
	font-size: 18px;
	font-weight: 700;
}

@media (min-width: 1024px) {
	.page_head_label {
		line-height: 26px;
		font-size: 20px;
	}
	.title_main {
		padding: 30px 0 20px;
	}
	.title_second {
		padding: 20px 0 30px;
	}
}

@media (min-width: 1280px) {
	.title_main {
		padding: 40px 0 20px;
		font-size: 40px;
	}
	.title_second {
		padding: 30px 0 40px;
		font-size: 24px;
	}
}

/* (i)
*******************************************************************************/

.i_toggle {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
}
.i_toggle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	background: url(/_/common/img/sprite.png) -484px -70px no-repeat;
}
.i_toggle.light::after {
	background: url(/_/common/img/sprite.png) -484px -50px no-repeat;
}

/*
*******************************************************************************/

@media (max-width: 1023px) {
	div#bx-panel-back,
	div#bx-panel {
		display: none !important;
	}
}

/*
*******************************************************************************/

#modal_send_to_email .modal_message_title {
	margin: 0 0 20px;
}
#modal_send_to_email .rf_item {
	margin: 0;
}
#modal_send_to_email button[type="submit"] {
	margin: 20px 0 0;
}

/*
*******************************************************************************/

.print_link {
	display: inline-block;
	color: #0663a4;
	font-size: 15px;
	background: none;
	border-bottom: 1px dashed;
}
.print_link:hover {
	border-bottom-color: #fff;
}

/*
*******************************************************************************/

.g-recaptcha {
	margin: 10px 0;
	overflow: hidden;
}
.g-recaptcha > div {
	max-width: 100% !important;
}

@media (max-width: 375px) {
	.g-recaptcha iframe {
		transform: scale(0.79);
		transform-origin: 0;
		margin: 0 auto 0 0;
	}
}

article {
	-webkit-column-count:2;
	-moz-column-count:2;
	column-count:2;
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}

/*
*******************************************************************************/

#modal_auth {
	width: 100%;
	max-width: 430px;
}
#modal_auth .modal_h1 {
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 600;
	color: #0c3a6f;
	line-height: 1.4;
}
#modal_auth .modal_h2 {
	margin-bottom: 20px;
	font-size: 18px;
}
#modal_auth .rf_grid {
	height: 50px;
}
.modal_auth_act {
	text-align: center;
}
.modal_auth_or {
	position: relative;
	display: grid;
	gap: 10px;
	justify-items: center;
	text-align: center;
	margin-top: 20px;
}
.modal_auth_or::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 15px;
	left: 0;
	background: #ddd;
}
.modal_auth_or_text {
	position: relative;
	display: inline-block;
	padding: 5px 10px;
	background: #fff;
	line-height: 21px;
	color: #ddd;
}
.modal_auth_confirm_sms_row {
  display: grid;
  grid-template-columns: repeat(4, 42px);
  justify-content: center;
  grid-gap: 17px;
  margin: 20px auto 0;
}
.modal_auth_confirm_sms_row input {
  width: 100%;
  height: 64px;
  padding: 0;
  border: 1px solid #D8D8D8;
  border-radius: 10px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16) inset;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}
.modal_auth_send_again {
	margin-top: 20px;
	text-align: center;
}

/*
*******************************************************************************/
