/*Styles for Glide.js - slider based on vanilla js */
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  min-height: 25px;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: currentColor;
  text-transform: uppercase;
  /* padding: 9px 12px; */
  padding: 0;
  background-color: transparent;
  border: 0px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  /* box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1); */
  /* text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1); */
  opacity: 1;
  cursor: pointer;
  /* transition: opacity 150ms ease, border 300ms ease-in-out; */
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow--left {
  left: 15px;
}
.glide__arrow--right {
  right: 15px;
}
.glide__arrow--disabled {
  opacity: 0.33;
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 3em;
  left: 90%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}

.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover,
.glide__bullet:focus {
  border: 2px solid #098ff6 ;
  background-color: white;
}
.glide__bullet--active {
  background-color: #098ff6;
}

.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

/* Modified arrows */
.arrow {
  display: block;
  color: currentColor;
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: opacity 300ms ease;
}
.arrow--left {
  background-image: url(../../img/arrow-circle-left.svg);
  background-repeat: no-repeat;
  background-position: left;
}
.arrow--right {
  background-image: url(../../img/arrow-circle-right.svg);
  background-repeat: no-repeat;
  background-position: right;
}
.glide__arrow:hover > .arrow {
  opacity: 1;
}
.glide__arrows.glide__arrows--big .arrow{
  height: 40px;
  width: 40px;
}
.glide__arrows.glide__arrows--big .arrow--right{
  background-image: url(../../img/chevron-right-solid.svg);
  background-repeat: no-repeat;
}
.glide__arrows.glide__arrows--big .arrow--left{
  background-image: url(../../img/chevron-left-solid.svg);
  background-repeat: no-repeat;
}
.glide__arrows .glide__arrow--left {
  left: 10px;
}
.glide__arrows .glide__arrow--right {
  right: 10px;
}
.glide__arrow .arrow {
  transition: all 0.3s ease-in-out;
}
.glide__arrows:not(.glide__arrows--full) .glide__arrow:hover > .arrow,
.glide__arrows:not(.glide__arrows--full) .glide__arrow:active > .arrow {
  transform: scale(1.1);
  outline: none;
}
.glide__arrows.glide__arrows--full .glide__arrow{
  background-color: #7B7B7B;
  opacity: 0.9;
  border-radius: 0px;
  height: 60px;
  width: 40px;
}
.glide__arrows.glide__arrows--full .glide__arrow--left{
  left: 0;
}
.glide__arrows.glide__arrows--full .glide__arrow--right{
  right: 0;
}
.glide__arrows--full .arrow{
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: none;
  border: 3px solid white;
  border-radius: 2px;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.glide__arrows--full .arrow--left{
  border-right: none;
  border-top: none;
  left: 60%;
}
.glide__arrows--full .arrow--right{
  border-left: none;
  border-bottom: none;
  left: 40%;
}

@charset "UTF-8";

/*! CONSTANTS */
:root{
  /* colors */
  --blue: #098ff6;
  --dark-blue: #007fad;
  --light-blue: #6FC2F3;
  --grey: #9eacb5;
  --darken-grey: #767F83;
  --dark-grey: #434749;
  --light-grey: #f3f7fa;
  --light-grey-border: #dee1e2;
  --black: #343434;
  --link-blue: #337ab7;
  --link-blue-hover: #23527c;
  --color-facebook: #43609c;
  --color-viber: #665cac;
  --color-youtube: #ff0000;
  --color-tg: #0088CC;


  /* fonts */
	--sans: 'Noto Sans', sans-serif;
  --serif: 'Noto Serif', sans-serif;
  --roboto: 'Roboto', sans-serif;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  margin: 0; }
body *,
body *::before,
body *::after{
  box-sizing: border-box;
}
  /**LINKS*/
a {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none !important;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px; }

main {
  position: relative;
  transition: padding-top 0.3s ease 0s;
  background-color: #ffffff;
}
main:not(class) {
  max-width: 1200px;
  margin: 0 auto;
}

.main{
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-top: 10px;
  background-color: #ffffff;
  overflow: visible;
  width: 100%;
  max-width: 1300px;
}
.container-max-width{
  display: flex;
  flex-flow: row wrap;
  justify-content: center; 
  width: 100%;
  padding: 25px 0 25px;
  margin: 20px 0;
}
.container--grey{
  background-color: var(--light-grey);
  /* position: relative; */
}
/* .container--grey::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -200vw;
  width: 500vw;
  height: 100%;
  background-color: var(--light-grey);
} */
.container-1200{
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center; 
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
.container-1200[data-width=fullscreen]{
  padding: 0;
}

.container-1000{
  display: flex;
  flex-flow: row wrap;
  justify-content: center; 
  width: 100%;
  max-width: 1000px;
}

.container-800{
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  margin-left: 0;
  margin-right: auto;
}
.container-800 p,
.container-800 ul {
  line-height: 1.8;
}
.container-770{
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 770px;
  margin-right: auto;
}

.container-700{
  display: flex;
  flex-flow: row wrap;
  justify-content: center; 
  width: 100%;
  max-width: 700px;
}
.container-400{
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start; 
  align-items: center;
  width: 100%;
  max-width: 350px;
}
.container-300{
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start; 
  align-items: center;
  width: 100%;
  max-width: 300px;
}
.container--float-left{
  justify-content: flex-start;
}
.container-right-column{
  height: 100%;
  margin: 20px 20px;
}
.container-left-column{
	width: 100%;
	max-width: 770px;
	margin-top: 0px;
	margin-right: auto;
}
@media screen and (max-width: 1199px){
	.container-left-column{
    max-width: 100%;
		margin: 0px auto 20px;
	}
}
.sticky-top-0{
  position: sticky;
  top: 0;
  z-index: 10;
}
.sticky-top-60{
  position: sticky;
  top: 60px;
  z-index: 2;
}
.sticky-top-90{
  position: sticky;
  top: 90px;
  z-index: 2;
}
.right-column__banner{
  overflow: hidden;
}
.mt-10{
  margin-top: 10px;
}
.mt-15{
  margin-top: 15px;
}
.mt-20{
  margin-top: 20px;
}
.mt-25{
  margin-top: 25px;
}
.mt-30{
  margin-top: 30px;
}
.mt-40{
  margin-top: 40px;
}
.mb-10{
  margin-bottom: 10px;
}
.mb-15{
  margin-bottom: 15px;
}
.mb-20{
  margin-bottom: 20px;
}
.mb-25{
  margin-bottom: 25px;
}
.mb-30{
  margin-bottom: 30px;
}
.mb-40{
  margin-bottom: 40px;
}

/*
* common design of the pages 
*/
.page-wrapper {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	width: 100%;
	/* max-width: 1200px; */
	margin: auto;
	background: white;
	font-family: var(--sans);
}

.container-wrapper .banner--top {
	width: 100%;
	max-width: 800px;
	text-align: center;
	margin: 0 0 25px;
}
/*title*/
.page__title{
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
	font-weight: normal;
	color: var(--black);
  text-shadow: 0 0 1px var(--black);
  width: 100%;
  margin: 0;
}
h1.page__title{
  font-size: 27px;
  margin: 20px 0;
}
h2.page__title{
	font-size: 24px;
}
h3.page__title{
	font-size: 20px;
}
h4.page__title,
h5.page__title,
h6.page__title{
	font-size: 18px;
}
/*text*/
.page__text{
  font-family: var(--serif);
  color: var(--black);
  margin: 13px 0;
  width: 100%;
}
.page__meta{
	width: 100%;
	margin: 0 0 20px;
}
.page__meta .meta__time{
	font-size: 14px;
	color: var(--grey);
	line-height: 19px;
	text-align: left;
	width: 100%;
}
/* .page-container .page__text{
	font-family: var(--serif);
  margin: 13px 0;
  text-align: justify;
} */
p{
  text-align: justify;
}
.text--center{
  text-align: center;
}
.text--left{
  text-align: left;
}
.text--right{
  text-align: right;
}
.text--grey{
  color: var(--grey);
}
/*buttons*/
.btn{
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 2em;
  color: var(--black);
  text-shadow: 0 0 1px var(--grey);
  font-weight: 400;
  background-color:white;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--grey);
  border-radius: 0;
  cursor: pointer;
  user-select: none;
  padding: 6px;
  height: 40px;
  width: 200px;
  transition: all 250ms ease-in-out;
}
.btn:hover,
.btn:focus{
  background-color: var(--light-grey-border);
}
.btn.btn--blue{
  color: white;
  font-weight: bold;
  text-shadow: none;
  background-color: var(--blue);
  border-color: var(--blue);
}
.btn.btn--blue:hover,
.btn.btn--blue:focus{
  color: var(--blue);
  background-color: white;
}
.btn.btn--grey{
  color: var(--grey);
  text-shadow: none;
  background-color: var(--light-grey);
  border-color: var(--light-grey);
}
.btn.btn--grey:hover,
.btn.btn--grey:focus{
  color: white;
  background-color: var(--blue);
  border-color: var(--blue);
}
.btn[disabled]
.btn[disabled]:hover,
.btn[disabled]:focus{
  color: #fff !important;
  background-color: var(--grey) !important;
  border-color: var(--grey) !important;
  cursor: default !important;
}

/*inputs*/
.form__input{
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  font-family: var(--sans);
  color: var(--dark-grey);
  background-color: #fff;
  width: 100%;
  border: 0;
  padding: 14px 20px;
  margin-bottom: 10px;
}
/*select*/
.select-css {
	display: block;
	font-size: 16px;
	font-family: sans-serif;
	font-weight: 700;
	color: #444;
	line-height: 1.3;
	padding: .6em 1.4em .5em .8em;
	width: 100%;
	max-width: 100%; 
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #aaa;
	box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
		linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}
.select-css::-ms-expand {
	display: none;
}
.select-css:hover {
	border-color: #888;
}
.select-css:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222; 
	outline: none;
}
.select-css option {
	font-weight:normal;
}

@media screen and (max-width: 1199px){
  .container-wrapper .banner--top {
		max-width: 1200px;
  }
  .container-800 {
    margin-left: auto;
    margin-right: auto;
  }
  .container-400 {
		max-width: 800px;
		margin-top: 30px;
  }
  .container-770 {
    margin: 30px auto 20px;
  }
}
@media screen and (max-width: 800px){
	.container-wrapper .page-container {
		justify-content: space-between;
		margin-left: 15px;
		margin-right: 15px;
  }
  .container-wrapper .banner--top {
	margin: 0 0 10px;
  }
}
/*
* common design of the pages 
*/


@media (min-width: 992px) {
  .container {
    width: 945px; }
}

@media (min-width: 1250px) {
  .container {
    width: 1200px;
    padding: 0 15px; }
}



.blue-text {
  color: var(--blue); }

  .blue-text__right {
    float: right;
  }

a.blue-text, a.blue-text:focus, a.blue-text:visited {
  color: var(--blue);
  text-decoration: none; }

a.blue-text:hover, a.blue-text:active {
  text-decoration: underline; }

.gray-text {
  color: var(--grey); 
}



.right-column-helper{display:inline-block;width:100%;margin:20px 0px;padding-left: 5px;}
.right-column-helper p.title{font-weight:normal;font-size:19px;text-transform:uppercase;font-style:normal;text-decoration:none;color:var(--dark-blue);font-family: sans-serif;text-align:left;border-bottom:1px solid var(--dark-blue);margin-bottom:10px;padding:0;}
.right-column-helper ul{list-style:disc;padding: 10px 0 10px 20px;}
.right-column-helper ul li{padding:0 3px;font-size:12px;float:left;width:calc(50% - 20px);width:-moz-calc(50% - 20px);margin-right:20px;margin-bottom:2px;display:list-item;}
.right-column-helper ul li:before{display:none;}
.right-column-helper ul li a{color:#464646; font-size:14px;}
.right-column-helper ul li a:hover{color:#0096dd;text-decoration:underline;}
.right-column-helper .letters{display:inline-block;width:100%;margin-top:15px;text-align:center; padding-left: 0px;cursor: default;}
.right-column-helper .letters .item{width:auto;float:none;display:inline-block;margin-right:0;}
.right-column-helper .letters .item a{font-size:14px;}



.by-center {
	text-align: center;
}

.mt-15 {
	margin-top: 15px;
}

.mb-15 {
	margin-bottom: 15px;
}
.banner-300x600 {
  width: 300px;
  height: 600px;
  /* overflow: hidden; */
  margin: 30px auto 0px;
}

.banner-300x250 {
  width: 300px;
  height: 250px;
  overflow: hidden;
  margin: 0 auto;
}

.banner-320x100 {
  width: 320px;
  /*   height: 100px; */
  overflow: hidden;
  margin: 0 auto;
}
.banner--top_desktop{
  margin-top: 25px;
}

.w-100p {
	width: 100%;
}

.p-20px-0px {
    padding: 20px 0px;
    overflow: hidden;
}

.h-100px {
	height: 100px;
}

.of-h {
	overflow: hidden;
}

.d-ib {
	display: inline-block;
}

.ta-c {
	text-align: center;
}

.m-0a {
	margin: 0 auto;
}

.d-b {
	display: block;
}

.banner__inner_sticky {
  transition: margin-top 0.3s ease 0s;
}

.banner_adsense_consult_new_index {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 15px;
  text-align: center;
}

.enter-registr-recov__close{position:absolute;right:10px;top:10px;width:25px;height:25px;cursor:pointer;}
.enter-registr-recov__close:before,.enter-registr-recov__close:after{content:' ';display:block;position:absolute;width:25px;height:1px;background-color:#000;top:12px;}
.enter-registr-recov__close:before{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);}
.enter-registr-recov__close:after{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);}
.enter-registr-recov__popup{display:none;position:fixed;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);transform:translate(-50%, -50%);background-color:white;-moz-box-shadow:0 0 8px rgba(0,0,0,0.8);-webkit-box-shadow:0 0 8px rgba(0,0,0,0.8);box-shadow:0 0 8px rgba(0,0,0,0.8);width:400px;z-index:99999;padding-top:24px;}
.enter-registr-recov__popup.opened{display:block;}
.enter-registr-recov__popup-inner{display:none;width:280px;margin:0 auto;}
.enter-registr-recov__popup-inner .logo{display:block;width:100%;margin-top:28px;margin-bottom:48px;}
.enter-registr-recov__popup-inner.inner-active{display:block;}
.enter-registr-recov__popup-inner .title{display:block;margin-bottom:29px;color:#333;font-family: sans-serif;font-size:18px;text-align:center;}
.enter-registr-recov__popup-inner .title a{color:var(--blue);text-decoration:underline;}
.enter-registr-recov__form{padding-bottom:19px;border-bottom:1px solid #cfcfcf;}
.enter-registr-recov__form.recovery{border-bottom:none;}
.enter-registr-recov__form.recovery label{line-height:21px;text-align:center;margin-bottom:23px;}
.enter-registr-recov__form.recovery .btns{display:table;width:100%;font-size:0!important;margin-top:20px;}
.enter-registr-recov__form.recovery .btn{display:inline-block;width:46%;min-width:auto;padding:0;margin-left:8%;font-size:14px;color:white;text-align:center;height:32px;line-height:32px;text-transform:uppercase;background-color:#2997c9;}
.enter-registr-recov__form.recovery .btn.enter-registr-recov__form-submit{background-color:var(--blue);}
.enter-registr-recov__form.recovery .btn:first-child{margin-left:0;}
.enter-registr-recov__form .forget{display:inline-block;position:relative;color:#333;font-family: sans-serif, sans-serif;font-size:12px;text-decoration:underline;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);}
.enter-registr-recov__form-submit{display:block;min-width:160px;height:32px;margin:20px auto 17px;color:white;font-family: sans-serif, sans-serif;font-size:16px;line-height:32px;background-color:var(--blue);border:none;padding:0 19px;text-transform:uppercase;cursor:pointer;}
.enter-registr-recov__form .bla-bla{margin:39px 0;font-size:12px;font-family: sans-serif, sans-serif;text-align:center;line-height:19px;}
.enter-registr-recov__form .bla-bla a{color:var(--blue);text-decoration:underline;}
.enter-registr-recov__checkbox{margin-top:16px;}
.enter-registr-recov__checkbox input{display:none;}
.enter-registr-recov__checkbox input:checked + label:before{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUBAMAAAB/pwA+AAAAGFBMVEVmzP////+45/+u5P+t5P+M2f+R2v+I1/8VNTmvAAAAI0lEQVQI12MocYECVwZDQSgQQmEKMIAB4+BjYnVvkBIUqAEA0OUMJmKjCZ4AAAAASUVORK5CYII=") 0px 0px no-repeat;}
.enter-registr-recov__checkbox label{display:inline-block;position:relative;padding-left:30px;line-height:20px;color:#333;font-family: sans-serif, sans-serif;font-size:12px;}
.enter-registr-recov__checkbox label:before{content:' ';display:block;position:absolute;width:20px;height:20px;left:0;top:0;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUBAMAAAB/pwA+AAAAFVBMVEX///+urq64uLi3t7eMjIyRkZGIiIjTmES6AAAAGklEQVQI12NIFIQCEQYBBihgHspMJyUoUAUAdeQDy5crUkcAAAAASUVORK5CYII=") 0px 0px no-repeat;}
.enter-registr-recov__input-wrap{width:100%;}
.enter-registr-recov__input-wrap label{display:block;color:#333;font-family: sans-serif, sans-serif;font-size:12px;margin-bottom:9px;}
.enter-registr-recov__input-wrap input{width:100%;height:32px;padding-left:10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid;border-color:#adadad;background-color:white;margin-bottom:16px;-webkit-transition:border-color 0.2s, box-shadow 0.2s;-moz-transition:border-color 0.2s, box-shadow 0.2s;transition:border-color 0.2s, box-shadow 0.2s;}
.enter-registr-recov__input-wrap input:focus{-moz-box-shadow:inset 0 0 6px rgba(9,12,18,0.3);-webkit-box-shadow:inset 0 0 6px rgba(9,12,18,0.3);box-shadow:inset 0 0 6px rgba(9,12,18,0.3);border-color:#9fd6f1;}
.enter-registr-recov__socials{text-align:center;}
.enter-registr-recov__socials .likar_in_soc{display:block;line-height:40px;text-align:left;}
.enter-registr-recov__socials a{display:inline-block;vertical-align:middle;position:relative;width:32px;height:32px;margin:0 15px;-webkit-transition:opacity 0.2s;-moz-transition:opacity 0.2s;transition:opacity 0.2s;}
.enter-registr-recov__socials a:hover{opacity:0.8;}
.enter-registr-recov__socials-item__icon{display:block;position:absolute;width:20px;height:20px;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);transform:translate(-50%, -50%);}
.enter-registr-recov__socials-item__icon svg path{fill:white;}
.enter-registr-recov__socials .soc-item--fb{background-color:#3765a3;}
.enter-registr-recov__socials .soc-item--vk{background-color:#4b75a3;}
.enter-registr-recov__socials .soc-item--gp{background-color:#dd4f43;}
.js-auth-form-error{text-align:center;color:#FF0000;}
.login-form-recovery-form .register__response,
.enter-registr-recov__popup-inner .register__response{
  margin: 50px auto;
  text-align: center;
  font-weight: bold;
}

.enter-registr-recov__overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    opacity: 0.8;
    background-color: black;
    top: 0;
    left: 0;
    display: none;
}

.enter-registr-recov__overlay.opened {
    display: block;
}

.drug-slider__panel {
  margin-top: 20px;
}

.main-content-section .container,
.answears-section .container {
  background: #FFFFFF;
}

input[type="file"].question-container__input-box-file {
  display: none;
}

.question-container__photo-lbl {
    color: #FFFFFF;
    font-weight: 400;
    background: var(--blue);
    border: none;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 15px;
    cursor: pointer;
    margin-right: 10px;
}

@media screen and (max-width: 760px){
/*img{height:auto!important;}*/

._show_1e.wrap_mW {
  bottom: 33%;
}
}



/*! Redirect form-link */
.form-link__button{
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

/*! ATX in the drug page*/
.atx .atx__item--link{
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--link-blue);
}
.atx .atx__item--link:hover
.atx .atx__item--link:focus{
  color: var(--link-blue-hover);
  outline: none;
}
.atx .atx__item--link:active{
  opacity: 0.8;
  outline: none;
}

/*! hidden */
.hidden{
	display: none !important;
	position: absolute;
	height: 1px;
	width: 1px;
}
/*! visually hidden */
.visually-hidden {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding:0 !important;
	border:0 !important;
	height: 1px !important; 
	width: 1px !important; 
	overflow: hidden;
}

.js-auth-form-error-login{
  color: tomato;
}

/*! no scrollable */
.no-scrollable{
  overflow: hidden;
}

/*! adaptive branding */
div#adpartner_branding{
  width: 100% !important;
  position: relative;
}


/*! SEARCH BOX (doctors)*/
.article__search {
	margin: 20px 0px;
}
.article__search-form {
	display: flex;
}
.article__search-form__input {
	border: none;
	padding: 15px;
	box-sizing: border-box;
	border: 1px solid #F0F4F7;
	font-size: 20px;
	font-weight: bold;
	color: #000000;
	outline: none;
	width: calc(100% - 60px);
}
.article__search-form__submit {
	background: #328CFF;
    width: 60px;
    height: auto;
    border: none;
    outline: none;
    box-sizing: border-box;
}
.article__search-form__input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	font-size: 20px;
	font-weight: normal;
	color: #a5adb3;
}
.article__search-form__input::-moz-placeholder { /* Firefox 19+ */
	font-size: 20px;
	font-weight: normal;
	color: #a5adb3;
}
.article__search-form__input:-ms-input-placeholder { /* IE 10+ */
	font-size: 20px;
	font-weight: normal;
	color: #a5adb3;
}
.article__search-form__input:-moz-placeholder { /* Firefox 18- */
	font-size: 20px;
	font-weight: normal;
	color: #a5adb3;
}
.article__search-form__input:placeholder {
	font-size: 20px;
	font-weight: normal;
	color: #a5adb3;
}


/*!articles status*/
.article__status{
  display: inline-block;
  font-size: 75%;
  line-height: 1;
  text-align: center;
  border-radius: 10rem;
  padding: 0.25em 0.6em;
  margin-left: 10px;
}
.article__status--edit{
  color: white;
  background-color: var(--blue);
  border-radius: 0;
  font-size: 90%;
  padding: 5px 20px;
  margin: 0 0 10px;
}
.article__status--no-published{
  color: var(--black);
  background-color: #ECCD8E;
}
.article__status--published{
  color: white;
  background-color: #28a745;
}
.article__status--planned{
  color: white;
  background-color: #17a2b8;
}
.article__status--pay{
  color: white;
  background-color: #e25d5d;
}



/*!IMAGES: optimization*/
.img-wrapper {
	display: block;
  min-height: 1em;
	background-color: #f6f6f6;
	background-size: cover;
	background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
	width: 100%;
	height: 100%;
}
.img-wrapper img{
  display: block;
  max-width: 100%;
	max-height: 100%;
	/* transition: filter 300ms ease-in-out; */
}
/*blured previews*/
.img-wrapper img[data-status=preview]{
  /* filter: blur(6px); */
  /* filter: grayscale(1) */
	/* this is needed so Safari keeps sharp edges */
	/* transform: scale(1); */
}


@media screen and (max-width: 800px){
  .banner-300x600 {
    width: 300px;
    max-height: 250px;
  }
  .container-max-width{
    padding-bottom: 0;
  }
  .page__meta {
    margin: 0 0 10px;
	}
	.page__meta .meta__time{
		font-size: 13px;
		line-height: 15px;
	}
}
@media screen and (max-width: 640px){
  .article__status--edit{
      width: 100%;
  }
  h1.page__title{
    font-size: 25px;
  }
  h2.page__title{
    font-size: 22px;
  }
  h3.page__title{
    font-size: 18px;
  }
  h4.page__title,
  h5.page__title,
  h6.page__title{
    font-size: 16px;
  }
}


/* banners styling for HON */
*[data-google-query-id],
*[data-adsbygoogle-status],
*[id*="adpartner-vunit"] a{
  position: relative;
  box-shadow: 0 0 0 2px var(--grey);
}
*[id*="adpartner-vunit"]{
  overflow: visible !important;
  margin: 20px auto !important;
}

*[data-google-query-id]::before,
*[data-adsbygoogle-status]::before,
[id*="adpartner-vunit"] a::before{
  content: "Реклама";
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  right: -2px;
  display: block;
  background-color: var(--grey);
  color: white;
  font-family: var(--sans);
  font-size: 14px;
  text-transform: uppercase;
  min-height: 20px;
  padding: 5px 15px;
}

header {
	width: 100%;
}
.header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row nowrap;
	    -ms-flex-flow: row nowrap;
	        flex-flow: row nowrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	background-color: var(--light-grey);
	border-bottom: 1px solid var(--light-grey-border);
}


/*! HEADER: logo */
.logo__icon {
	display: block;
}
.logo__icon img {
	display: block;
	width: auto;
	height: 30px;
	padding: 0 0 0 20px;
}


/*! HEADER: menu */
.header__navigation{
	width: 100%;
	height: 68px;
	margin: 0;
	padding: 0 20px;
	z-index: 11;
}
.header__navigation .menu{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row nowrap;
	    -ms-flex-flow: row nowrap;
	        flex-flow: row nowrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 1200px;
}
.menu__item{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-flow: column;
	    -ms-flex-flow: column;
	        flex-flow: column;
	position: relative;
	white-space: nowrap;
}
.menu__item--for-mobile{
	display: none;
}
.menu__item .checkbox__label{
	margin: 0;
}
.menu__item .menu__item-link{
	display: block;
	padding: 25px 0px;
	font-family: var(--sans);
	font-size: 15px;
	font-weight: bold;
	color: var(--dark-grey);
	background: transparent;
	border: none;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
}
.menu__item .form-link .menu__item-link{
	background: transparent;
	border: none;
}
.menu__item span.menu__item-link{
	cursor: default;
}
.menu__item span.menu__item-link:hover{
	color: var(--dark-grey);
}
.menu__item--has-submenu .menu__item-link:after{
	content: '';
	display: block;
	position: absolute;
	bottom: 7px;
	left: -webkit-calc(50% - 8px);
	left: calc(50% - 8px);
	border-width: 6px;
	border-color: var(--dark-grey) transparent transparent transparent;
	border-style: solid;
	height: 0px;
	width: 0px;
}
.menu__item .menu__item-link:hover ~ .menu__item-submenu,
.menu__item .menu__item-link:focus ~ .menu__item-submenu,
.menu__item .menu__item-submenu:hover,
.menu__item .menu__item-submenu:focus{
	top: 65px;
	opacity: 1;
	visibility: visible;
}
.menu__item .menu__item-link:hover,
.menu__item .menu__item-link:focus{
	outline: none;
	color: var(--blue);
}
.menu__item:first-child .menu__item-submenu{
	overflow-x: hidden;
	overflow-y: scroll;
}
.menu__item .menu__item-submenu{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-flow: column nowrap;
	    -ms-flex-flow: column nowrap;
	        flex-flow: column nowrap;
	position: absolute;
	left: 0px;
	top: 50px;
	width: 350px;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: var(--light-grey);
	padding-left: 0px;
	z-index: 1000;
	max-height: 300px;
	list-style: none;
	visibility: hidden;
}
.submenu__item-link{
	display: block;
	width: 100%;
	padding: 5px 15px;
	font-family: var(--sans);
	font-size: 15px;
	font-weight: bold;
	color: var(--dark-grey);
	background: transparent;
	border: none;
	text-decoration: none;
	text-transform: uppercase;
	text-align: left;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.submenu__item-link:hover,
.submenu__item-link:focus{
	outline: none;
	color: var(--blue);
	background: var(--light-grey-border);
}

/*! HEADER: tools */
.header__tools{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row nowrap;
	    -ms-flex-flow: row nowrap;
	        flex-flow: row nowrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 68px;
	margin-left: 70px;
}
.header__tools .tools__item{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row nowrap;
	    -ms-flex-flow: row nowrap;
	        flex-flow: row nowrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-left: 1px solid var(--light-grey-border);
	width: 68px;
	height: 100%;
	-webkit-transition: background-color 300ms ease-in-out;
	-o-transition: background-color 300ms ease-in-out;
	transition: background-color 300ms ease-in-out;
}
.header__tools .tools__item:not(:last-child):hover,
.header__tools .tools__item:not(:last-child):focus{
	background-color: #dbe0e2;
}

.header__tools .tools__item:last-child{
	display: none;
}

/*! HEADER: tools (login) */
.registration__button {
	background: transparent url('/img/header/unlock-grey.svg') center / 20px no-repeat;
	border: none;
	height: 100%;
	width: 100%;
	padding: 0;
	cursor: pointer;
}
.registration__button:hover,
.registration__button:focus {
	background-image: url('/img/header/unlock-blue.svg');
	outline: none;
}

.login-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
	position: relative;
  width: 100%;
	height: 100%;
}
.login-box .login.login--admin,
.login-box .login.login--user{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-flow: column;
	    -ms-flex-flow: column;
	        flex-flow: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #A5ADB3;
	font-size: 11px;
	cursor: pointer;
	height: 100%;
  width: 100%;
}
.login-box .login.login--user{
	cursor: default;
}
.login-box .login .login__button {
	background: url('/img/header/lock-grey.svg') center no-repeat;
	border: none;
	cursor: pointer;
	outline: none;
	height: 23px;
	width: 100%;
	padding: 0;
}
.login-box .login:hover .login__button,
.login-box .login:focus .login__button {
	background-image: url('/img/header/lock-blue.svg');
	outline: none;
}
.login-box .login--user .login__button,
.login-box .login--user:hover .login__button,
.login-box .login--user:focus .login__button{
	cursor: default;
	background-image: url('/img/icons/icon_user.svg');
}
.login-box .login .login__name {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	max-width: 63px;
	-webkit-transition: color 300ms ease-in-out;
	-o-transition: color 300ms ease-in-out;
	transition: color 300ms ease-in-out;
}
.login-box .login.login--admin:hover .login__name,
.login-box .login.login--admin:focus .login__name {
	color: var(--blue);
}
.login-box .login--logout {
	position: absolute;
	top: 0px;
	right: 5px;
	font-size: 18px;
	color: #eca89c;
}
.login-box .login--logout:hover {
	color: #e24327;
}

/*! HEADER: humburger button*/
.hamburder__button {
  display: none;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: transparent;
	border: none;
	width: 47px;
	height: 47px;
	padding: 0;
}
.hamburder__button:focus{
	outline: none;
}
.hamburder__line {
  position: relative;
  background-color: var(--grey);
  height: 2.5px;
	width: 60%;
}
.hamburder__line:after,
.hamburder__line:before {
  content: '';
  position: absolute;
  background-color: var(--grey);
  left: 0;
  height: 2.5px;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.hamburder__line:after {
  top: -8px;
}
.hamburder__line:before {
  top: 8px;
}
/* .hamburder__button:hover, */
.hamburder__button:focus,
.hamburder__button[data-status=active]{
	outline: none;
	/* background-color: var(--blue); */
}

.hamburder__button:hover .hamburder__line,
.hamburder__button:focus .hamburder__line,
.hamburder__button[data-status=active] .hamburder__line,
.hamburder__button:hover .hamburder__line::after,
.hamburder__button:focus .hamburder__line::after,
.hamburder__button[data-status=active] .hamburder__line::after,
.hamburder__button:hover .hamburder__line::before,
.hamburder__button:focus .hamburder__line::before,
.hamburder__button[data-status=active] .hamburder__line::before{
	background-color: var(--blue);
}
.hamburder__button[data-status=active] .hamburder__line {
  background-color: transparent;
}
.hamburder__button[data-status=active] .hamburder__line:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -1px;
}
.hamburder__button[data-status=active] .hamburder__line:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -1px;
}

/*! HEADER: search box */
/*! HEADER: search box (button)*/
.search__button--open {
	border: none;
	background: url('/img/header/icon_search_grey.svg') center / 20px no-repeat;
	width: 100%;
	height: 100%;
	cursor: pointer;
	padding: 0;
}
.search__button--open:hover,
.search__button--open:focus {
	background-image: url('/img/header/icon_search_blue.svg');
	outline: none;
}

/*! HEADER: search box (field)*/
.header__search-box {
	display: block;
	width: 100%;
	left: 0px;
	position: absolute;
	top: 0px;
	opacity: 0;
	z-index: -1;
	-webkit-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	transition: all 400ms linear;
}
.search-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row nowrap;
	    -ms-flex-flow: row nowrap;
	        flex-flow: row nowrap;
	height: 68px;
	border-bottom: 1px solid var(--light-grey-border);
}
.header__search-box.active {
	width: 100%;
	opacity: 1;
	z-index: 99999;
}
.header__search-box.active .search__field {
	width: -webkit-calc(100% - 64px);
	width: calc(100% - 64px);
	display: block;
	background-color: var(--light-grey);
	height: 68px;
}

.header__search-box .search__button--close {
	background: #FFFFFF;
	width: 64px;
	height: 68px;
	display: block;
	border: none;
	font-size: 40px;
	line-height: 1em;
	font-weight: 300;
	color: var(--dark-grey);
	background: var(--light-grey);
	border-right: 1px solid var(--light-grey-border);
	outline: none;
}


/*! MEDIA QUERIES*/
@media screen and (max-width: 1500px) {
	.logo__icon img {
		height: 20px;
	}
	.menu__item .menu__item-link{
		font-size: 12px;
	}
	.submenu__item-link{
		font-size: 12px;
	}
}


@media screen and (max-width: 1199px) {
	.header__tools{
		height: 47px;
		margin-left: 0;
	}
	.header__tools .tools__item{
		width: 47px;
	}
	.header__tools .tools__item:last-child{
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	.logo__icon {
    padding-left: 20px;
	}
	.logo__icon img {
		height: 35px;
	}
	.search-container {
		height: 48px;
	}
	.header__search-box.active .search__field {
		width: -webkit-calc(100% - 47px);
		width: calc(100% - 47px);
    height: 47px;
    overflow: hidden;
	}
	.header__search-box .search__button--close {
		width: 47px;
		height: 47px;
	}

	/*! NAVIGATION MENU (for mobile)*/
	.header__navigation{
		display: none;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
		position: absolute;
		top: 48px;
		right: 0;
    left: 0;
    bottom: 0;
		width: 100%;
		height: 100vh;
		padding: 0;
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.navigation--active{
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		background: rgba(0, 0, 0, 0.8);
	}
	.header__navigation.navigation--active .menu {
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
	}
	.header__navigation .menu {
		display: block;
    list-style: none;
    background: var(--light-grey);
		width: 300px;
		-webkit-transform: translateX(300px);
		    -ms-transform: translateX(300px);
		        transform: translateX(300px);
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		max-height: 200vh;
		height: -webkit-calc(100% - 48px);
		height: calc(100% - 48px);
		overflow-y: auto;
    overflow-x: hidden;
		z-index: 9999; 
	}
	.menu__item {
		width: 100%;
	}
	.menu__item--for-mobile{
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	.menu__item--has-submenu .menu__item-link:after{
		display: none;
	}
	.menu__item .checkbox__label{
		position: absolute;
		top: 0;
		right: 0;
		border-left: 1px solid var(--light-grey-border);
		cursor: pointer;
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		width: 47px;
		height: 47px;
		margin: 0;
	}
	.menu__item .checkbox__label:hover,
	.menu__item .checkbox__input:checked ~ .checkbox__label{
		border-left: none;
		background: var(--blue);
	}
	.menu__item .checkbox__label:after{
		content: "";
		display: block;
		position: absolute;
		top: 15px;
		left: 50%;
		-webkit-transform: translateX(-50%) rotate(-45deg);
		    -ms-transform: translateX(-50%) rotate(-45deg);
		        transform: translateX(-50%) rotate(-45deg);
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		border-left: 2px solid var(--grey);
		border-bottom: 2px solid var(--grey);
		width: 13px;
		height: 13px;
	}
	.menu__item .checkbox__label:hover::after{
		border-color: white;
	}
	.menu__item .checkbox__input:checked ~ .checkbox__label:after {
		top: 50%;
		-webkit-transform: translateX(-50%) rotate(-225deg);
		    -ms-transform: translateX(-50%) rotate(-225deg);
		        transform: translateX(-50%) rotate(-225deg);
		border-color: white;
	}
	.menu__item .menu__item-link {
		text-align: left;
    padding: 13px 0 13px 10px;
		font-size: 14px;
		border-bottom: 1px solid var(--light-grey-border) !important;
	}
	.menu__item .menu__item-link:hover ~ .menu__item-submenu,
	.menu__item .menu__item-link:focus ~ .menu__item-submenu,
	.menu__item .menu__item-submenu:hover,
	.menu__item .menu__item-submenu:focus{
		display: none;
		top: 0;
	}
	.menu__item .menu__item-link:hover ~ .checkbox__input:checked ~ .menu__item-submenu,
	.menu__item .menu__item-link:focus ~ .checkbox__input:checked ~ .menu__item-submenu{
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	.menu__item .checkbox__input:checked ~ .menu__item-submenu{
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		visibility: visible;
	}
	.menu__item .menu__item-submenu {
    display: none;
    position: relative;
		max-width: 300px;
		top: 0;
		opacity: 1;
		visibility: visible;
	}
	.submenu__item-link{
		font-size: 13px;
		background: white;
		border-bottom: 1px solid var(--light-grey-border);
		padding: 15px;
	}
	.registration .registration__button{
		height: 24px;
	}
	.search__button--submmit-show{
		background-size: 24px 24px;
	}
	.hamburder__button {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	.login-box .login .login__name {
    max-width: 40px;
	}
	.login-box .login--logout {
		right: 0px;
	}
}

@media screen and (max-width: 520px) {
	.logo__icon {
    padding-left: 10px;
}
	.logo__icon img {
		height: 25px;
	}
	.registration__button{
		height: 22px;
	}
	.search__button--submmit-show{
		background-size: 22px 22px;
		padding: 34px 25px;
	}
}

@media screen and (max-width: 375px) {
	.logo__icon img {
		height: 25px;
	}
}

@media screen and (max-width: 319px) {
	.search__button--open {
		padding: 34px 15px;
	}
}


/*! HEADER: specprojects slider */
.specprojects-slider-wrapper {
	box-shadow: 0px 10px 10px -15px var(--dark-grey);
	background: #FFFFFF;
	border-bottom: 1px solid var(--light-grey-border);
	height: 55px;
	width: 100%;
	overflow: hidden;
	z-index: 10;
}
.glide--specprojects {
	position: unset;
	width: calc(100% - 70px);
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
}
.glide--specprojects .glide__slides,
.glide--specprojects .glide__track{
	height: 100%;
}
.glide--specprojects .slide-specprojects {
	display: flex;
	align-items: center;
	padding: 0 0 0 10px;
	width: 200px;
}
.glide--specprojects .slide-specprojects a{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	text-decoration: none;
	outline: none;
	width: 100%;
}
.glide--specprojects .slide-specprojects .slide-specprojects__img{
	display: inline-block;
	width: 37px;
	height: 37px;
	border-radius: 50%;
	overflow: hidden;
}
.glide--specprojects .slide-specprojects a .slide-specprojects__title{
	font-family: var(--sans);
	font-size: 11px;
	line-height: 1.2em;
	color: var(--black);
	text-align: left;
	font-weight: bold;
	overflow: hidden;
	width: calc(100% - 37px);
  max-height: 30px;
	padding-left: 7px;
}
.glide--specprojects .slide-specprojects a:hover .slide-specprojects__title{
	color: var(--blue);
	text-decoration: none;
}
@media screen and (max-width: 1199px) {
	.specprojects-slider-wrapper{
		height: 47px;
	}
	.glide--specprojects .slide-specprojects .slide-specprojects__img {
    width: 34px;
    height: 34px;
	}
	.glide--specprojects .slide-specprojects a .slide-specprojects__title{
    font-size: 11px;
	}
}
@media screen and (max-width: 520px) {
	.glide--specprojects .slide-specprojects {
		width: 100%;
	}
}

/*! POPULAR NEWS */
.popular-news-box {
  display: flex;
  justify-content: center;
  background-color: var(--light-grey);
  width: 100%;
}
.popular-news-box .popular-topics {
  justify-self: flex-start;
  width: 100%;
  padding: 20px 0;
}
.popular-news-box .popular-topics .title {
  font-size: 11px;
  margin: 10px 0;
  color: var(--grey);
  text-shadow: 0 0 1px var(--grey);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.topics {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}
.topics a {
  display: inline-block;
  font-size: 11px;
  line-height: 15px;
  font-weight: 500;
  color: var(--blue);
  border: 1px solid #73c9ff;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  padding: 4px 10px 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.topics a:hover {
  color: white;
  background-color: var(--blue);
  border-color: var(--blue);
}

@media screen and (max-width: 829px){
  .topics a{
		white-space: nowrap;
    overflow: hidden;
    height: 22px;
    text-overflow: ellipsis;
		padding: 2px 6px 3px;
		margin-right: 10px;
    margin-bottom: 10px;
	}
}

#pixel-to-watch {
  position: absolute;
  width: 1px;
  height: 1px;
  top: 400px;
  left: 0;
}
.btn_scroll_top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  color: var(--darken-grey);
  background-color: var(--light-grey);
  border: 0;
  box-shadow: 0px 0px 7px var(--darken-grey);
  opacity: 0.7;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 200ms ease-in;
  z-index: 9;
}
.btn_scroll_top:hover {
  color: white;
  background-color: var(--blue);
  opacity: .9;
}
.btn_scroll_top:focus {
  outline: none;
}
.btn_scroll_top span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: inherit;
  width: 100%;
  height: 100%;
  margin: 0;
}
.btn_scroll_top span::after{
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%) rotate(-225deg);
  color: inherit;
  border-radius: 0 0 0 2px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 640px){
  .btn_scroll_top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/*!LOGIN: popup*/
.popup-login{
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	z-index: 999;
}
.popup-login .popup__close{
    position: absolute;
    top: 10px;
    right: 10px;
		background: #FFFFFF;
		color: var(--grey);
		border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.popup-login .popup__close:after,
.popup-login .popup__close:before{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	width: 2px;
	color: inherit;
	background-color: currentColor;
}
.popup-login .popup__close:before {
	transform: rotate(45deg);
}
.popup-login .popup__close:after {
	transform: rotate(-45deg);
}
.popup-login .popup__close:hover,
.popup-login .popup__close:focus{
	color: var(--blue);
}


.popup-login .login-wrapper{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	position: relative;
	font-family: Tahoma, Arial, sans-serif;
	background: #FFFFFF;
	border: 1px solid var(--blue);
	height: 480px;
	max-width: 400px;
	padding-top: 50px;
	margin: 100px auto 0;
}
.popup-login .login-wrapper .login__title{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	font-family: var(--sans);
	font-size: 20px;
	color: var(--blue);
	font-weight: 700;
	margin-bottom: 25px;
}
.popup-login .login-wrapper	.title__logo{
	padding-top: 5px;
	padding-left: 20px;
}



.popup-login .login-wrapper	.form{
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	margin-bottom: 10px;
}
.popup-login .login-wrapper	.form__field{
	display: flex;
	flex-flow: column nowrap;
	font-size: 13px;
	line-height: 26px;
	width: 250px;
	margin: 0px auto 10px;
}

.popup-login .login-wrapper	.form__input{
	border: 1px solid var(--light-blue);
	padding-left: 10px;
	height: 30px;
	background: var(--light-grey);
}
.popup-login .login-wrapper	.form__input:hover,
.popup-login .login-wrapper	.form__input:focus{
	box-shadow: 0 0 2px var(--blue);
}

.popup-login .login-wrapper	.form__input:invalid:not(:focus):not(:placeholder-shown){
	background: lightcoral;
}

.popup-login .login-wrapper	.form__field--checkbox{
	flex-flow: row nowrap;
}
.popup-login .login-wrapper	.form__checkbox{
	margin-top: 8px;
}

.popup-login .login-wrapper	.form__else{
	margin: 20px auto;
	font-size: 14px;
}
.popup-login .login-wrapper	.form__else .else__link{
	font-style: italic;
	color: var(--blue);
	cursor: pointer;
	transition: all 200ms ease-in-out;
}
.popup-login .login-wrapper	.form__else	.else__link:hover{
	text-decoration: underline;
}


.popup-login .login-wrapper	.form__submit{
	align-self: center;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 10px;
}


.popup-login .login-wrapper .login__error{
	position: absolute;
	text-align: center;
	background: white;
	font-weight: 600;
	width: 100%;
	height: 100%;
	font-weight: normal;
	padding: 150px 30px 50px;
	margin-top: -30px;
	opacity: 1;
	transition: all 300ms ease-in-out;
}
.popup-login .login-wrapper .login__error[data-status=hidden]{
	opacity: 0;
}


.popup-login .login-wrapper .login__loader{
	position: absolute;
  text-align: center;
  bottom: 20px;
  width: 100%;
}


/*!LOGIN: page*/
.login-page	.popup-login{
	display: block !important;
	padding: 20px;
	position: relative;
	background: var(--black);
}
.login-page	.login-wrapper{
	border: none;
	margin: 0px auto;
}
.login-page	.popup__close{
	display: none;
}

@media screen and (max-width: 599px){
	.popup-login .login-wrapper{
		margin-top: 50px;
	}
}

.footer{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 35px 0 0;
  background-color: #1f2122;
  min-height: 200px;
  color: white;
}
.footer__menu{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  list-style: none;
  padding: 10px 0;
  width: 100%;
  margin-bottom: 0;
}
.footer__menu a{
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 15px;
  margin-right: 5px;
}
.footer__menu a:hover{
  color: var(--blue);
}
.footer__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.footer__social .social__title{
  text-align: center;
  width: 100%;
}
.footer__social .social__links{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 15px;
}

.footer__social .social__links .social__link{
  display: block;
  position: relative;
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;
  -webkit-transition: background-color 300ms ease-in;
  -o-transition: background-color 300ms ease-in;
  transition: background-color 300ms ease-in;
}
.footer__social .social__links .social__link--fb:hover,
.footer__social .social__links .social__link--fb:focus{
  background-color: var(--color-facebook);
}
.footer__social .social__links .social__link--viber:hover,
.footer__social .social__links .social__link--viber:focus{
  background-color: var(--color-viber);
}
.footer__social .social__links .social__link--youtube:hover,
.footer__social .social__links .social__link--youtube:focus{
  background-color: var(--color-youtube);
}
.footer__social .social__links .social__link--tg:hover,
.footer__social .social__links .social__link--tg:focus{
  background-color: var(--color-tg);
}
.footer__social .social__links .social__link:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer__social .social__links .social__link--fb:before{
  background: url(/img/icons/icon_fb.svg) center no-repeat;
}
.footer__social .social__links .social__link--viber:before{
  background: url(/img/icons/icon_viber.svg) center no-repeat;
}
.footer__social .social__links .social__link--youtube:before{
  background: url(/img/icons/icon_youtube.svg) center / 65% no-repeat;
}
.footer__social .social__links .social__link--tg:before{
  background: url(/img/icons/icon_tg.svg) center / 55% no-repeat;
}
.footer__hon{
  text-align: center;
  width: 100%;
}
.footer__hon .hon__text{
  font-size: smaller;
  max-width: 450px;
  margin: 0 auto;
}
.footer__hon .hon__text a{
  color: var(--blue);
}
.footer__hon .hon__text .hon__img{
  display: inline;
}
.footer__trademark {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #bdc3c6;
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid #272a2b;
}
.footer__trademark--mark {
  font-size: 14px;
  width: 2%;
  margin-right: 4px;
}
.footer__trademark--text {
  font-size: 12px;
  line-height: 17px;
  text-align: justify;
  width: 96%;
  margin-top: 0;
}
.footer__attention {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 15px 0 0;
}
.footer__attention .attention__title {
  font-size: 11px;
  line-height: 15px;
  color: #ff6600;
  width: 75px;
}
.footer__attention .attention__title--border{
  content: '';
  margin-top: 17px;
  width: -webkit-calc(100% - 90px);
  width: calc(100% - 90px);
  border-top: 1px solid #944115;
}
.footer__attention .attention__text {
  color: #bdc3c6;
  font-size: 12px;
  line-height: 17px;
  text-align: justify;
}
.footer__title {
  font-family: 'Merriweather', sans-serif;
  font-size: 19px;
  line-height: 35px;
  font-style: italic;
  color: #676d71;
  margin: 15px 0;
  text-align: center;
  text-transform: none;
  font-weight: 300;
}
.footer__text p {
  font-size: 12px;
  line-height: 17px;
  color: #9da6ab;
  text-align: justify;
  margin: 0;
}

/*!bigmir-container*/
.bigmir-container{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  width: 100%;
  margin: 20px 0 0;
  background: transparent;
  position: relative;
  padding: 0;
}


@media screen and (min-width: 800px) {
  .footer__menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    width: 100%;
  }
  .footer__menu a {
    margin-right: 10px;
  }
  .footer__menu a:first-child {
    margin-left: 0px;
  }
  .footer__social .social__links {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    width: 50%;
  }
}

@media screen and (min-width: 991px) {
  .footer__menu {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 50%;
    margin-bottom: auto;
  }
  .footer__social {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 40%;
  }
  .footer__hon{
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  .footer__trademark {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    margin: 30px 15px 0 15px;
    width: 40%;
  }
  .footer__attention {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
    margin: 15px 15px 0;
    width: 53%;
  }
  .footer__attention .attention__title:after {
    width: -webkit-calc(50% - 80px);
    width: calc(50% - 80px);
  }
  .footer__title{
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .footer__text{
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
}


@media screen and (max-width: 678px){
  .footer__hon .hon__text *:not(:first-child){
    display: none;
  }
  .footer__hon .hon__text .hon__img{
    display: block;
    width: 70px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=common-styles.css.map */
