@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(static/annex/material-icons-v6.7.0/MaterialIcons-Regular.eot);
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(/static/annex/material-icons-v6.7.0/MaterialIcons-Regular.woff2) format('woff2'),
    url(/static/annex/material-icons-v6.7.0/MaterialIcons-Regular.woff) format('woff'),
    url(/static/annex/material-icons-v6.7.0/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

.common-header {
	position: fixed;
	z-index: 9999;
	width: 100%;
	transition: none;
	top: 0;
	font-family: 'Open Sans', sans-serif;
}

.common-header-content {
	max-width: 1264px;
	margin: 0 auto;
	padding: 0 20px;
	column-count: 3;
	justify-content: space-between;
	align-items: center;
	position: relative;
	display: flex;
}

.common-header-navigation {
	display: flex;
	justify-content: center;
	flex-grow: 1;
	flex-shrink: 0;
}

.common-header-navigation--item {
	padding: 0 20px;
	position: relative;
}

.common-header-navigation--item a {
	font-family: sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 19px;
	letter-spacing: 0em;
	text-align: center;
	text-decoration: none;
	color: black !important;
	white-space: nowrap;
}

.common-header-navigation--submenu {
	position: absolute;
	background: #FFFFFF;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.18);
	border-radius: 8px;
	z-index: 10;
	top: 100%;
	transform: translate(-20px, 15px);
	min-width: 226px;
	display: none;
}

.common-header-navigation--submenu:before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	height: 22px;
}

.common-header-navigation--submenu>ul {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	flex-wrap: wrap;
	flex-direction: row;
	padding: 10px 0;
	justify-content: space-between;
	list-style: none;
	margin: 0;
}

.common-header-navigation--submenu>ul>li {
	flex: 1 1 auto;
	max-width: 100%;
	width: 100%;
	flex-basis: 100%;
	flex-grow: 0;
	text-align: left;
	position: relative;
	padding: 0;
}

.common-header-navigation--submenu>ul>li a {
	text-align: left;
	text-decoration: none !important;
	display: block;
	font: 500 13px/16px 'Open Sans';
	color: #626773 !important;
	padding: 12px 22px 12px 20px;
	border-bottom: none !important;
	border-left: 2px solid transparent;
}

.common-header-navigation--submenu>ul>li:not(:last-child):before {
	content: '';
	position: absolute;
	border-bottom: 1px solid rgba(153, 162, 180, 0.15);
	left: 20px;
	right: 20px;
	bottom: -1px;
}

.common-header-navigation--submenu>ul>li a:hover {
	border-left: 2px solid #8FAFF7;
	background: rgba(111, 150, 236, 0.09);
	color: #1468a0;
}

.common-header-navigation--item-popup:hover .common-header-navigation--submenu {
	display: block;
}

.common-header.elevation-1 {
	background-color: #fff;
	box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12) !important;
}

.common-header .theme--light.v-btn {
	color: #868686;
	border-radius: 5px;
	text-transform: none;
}

.common-header img {
	display: block;
}

#mobile-menu {
	display: none;
}

.common-header--lang img {
	margin-top: -2px;
	margin-right: 4px;
}

.common-header-burger {
	width: 28px;
	height: 28px;
	cursor: pointer;
	border-radius: 50%;
	position: relative;
	transition: all ease 0.15s;
	display: block;
}

.common-header-burger:hover {
	background: #F2F2F2;
}

.common-header-burger-lines {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%);
	height: 2px;
	background: #06163F;
	width: 18px;
}

.common-header-burger-lines:before,
.common-header-burger-lines:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #06163F;
	transition: all ease 0.15s;
}

.common-header-burger-lines:before {
	top: -5px;
}

.common-header-burger-lines:after {
	bottom: -5px;
}

.common-header--opened .common-header-burger-lines {
	background: transparent;
}

.common-header--opened .common-header-burger-lines:before {
	top: 0;
	left: 0;
	transform: rotate(45deg) translate(0);
}

.common-header--opened .common-header-burger-lines:after {
	top: 0;
	left: 0;
	transform: rotate(-45deg) translate(0);
}

.common-header.common-header--opened {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
}

.common-header--opened .common-header-navigation,
.common-header--opened .common-header-auth {
	display: block;
}

.common-header--opened .common-header-content {
	height: 100%;
	align-items: start;
	flex-direction: column;
	justify-content: start;
}

.common-header--opened .common-header-navigation--item {
	padding: 0;
}

.common-header--opened .common-header-navigation {
	width: 100%;
	padding: 24px 0 0;
	flex-grow: 0;
}

.common-header--opened .common-header-navigation--item a {
	display: block;
	text-align: left;
	padding: 8px 0;
}

.common-header--opened .common-header-navigation--submenu>ul>li a {
	border: none;
}

.common-header--opened .common-header-navigation--item-popup:hover .common-header-navigation--submenu,
.common-header--opened .common-header-navigation--submenu>ul>li:before,
.common-header--opened .common-header-navigation--submenu::before {
	display: none;
}

.common-header--opened .common-header-navigation--item:not(.common-header--lang) .common-header-navigation--submenu>ul>li a {
	text-decoration: underline !important;
}

.common-header--opened .common-header-navigation--submenu>ul>li a:hover {
	text-decoration: none !important;
}

.common-header--opened .common-header-navigation--submenu>ul>li {
	margin: 8px 0;
}

.common-header--opened .common-header-navigation--submenu {
	position: inherit;
	display: none;
	box-shadow: none;
	transform: none;
}

.common-header--opened .common-header-navigation--item-popup-opened+.common-header-navigation--submenu {
	display: block !important;
}

.common-header--opened .common-header--lang {
	display: block;
	width: 100%;
}

.common-header--opened .common-header-navigation--submenu>ul {
	padding: 0 0 12px;
}

.common-header--opened .common-header-auth {
	width: 100%;
	white-space: normal;
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px solid #f0f0f0;
}

.common-header--opened .common-header-auth button {
	width: 100%;
	margin: 0 0 16px !important;
}

.main-page-feedback input,
.main-page-feedback textarea {
	border-color: transparent;
	box-shadow: none;
	height: 100%;
	margin: 0;
}

.d-none {
	display: none;
}

.common-header-auth {
	display: flex;
	flex: 0 1 auto;
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: auto;
	flex-wrap: nowrap;
	flex-direction: row;
	align-items: center;
}

.common-header-feedback {
	min-width: 111px;
}

.header-lang-img,
.common-header .header-lang-img {
	vertical-align: middle;
	display: inline-block;
	height: 18px;
	width: 26px;
}

.header-lang-a {
	color: #464646 !important;
	text-decoration: none !important;
	font-size: 14px;
	line-height: 16px;
	display: inline-block;
	padding: 0;
}

.header-auth-row {
	display: flex;
	align-items: center;
}

.header-language-select {
	position: relative;
	cursor: pointer;
	padding: 0 20px;
}

.position-relative {
  position: relative;
}

.cursor--pointer {
  cursor: pointer !important;
}

.text-left {
  text-align: left !important;
}

.inline-block {
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
  flex: none;
}

.z-feedback-item-date {
  float: right;
  color: #c0c0c0;
  font-size: 12px;
}

.z-feedback-i.v-expansion-panel__container--active .v-expansion-panel__header {
  background: #fafafa;
}

.multiline-btn {
  height: auto;
  padding-top: 14px;
  padding-bottom: 14px;
}

.multiline-btn .v-btn__content {
  white-space: normal;
}

.z-card-content .v-window,
.z-card-content .v-window__container,
.z-card-content .v-window-item {
  height: 100%;
}

.z-card-content .v-window {
  height: calc(100% - 48px);
}

.z-feedback-send-form {
  width: 100%;
}

.to-borders {
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

.z-feedback-file {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.z-feedback-file-content {
  border: 1px solid #e4e2e2 !important;
  background: #fff;
  border-radius: 3px;
  text-decoration: none;
  cursor: default;
}

.z-feedback-file-content img {
  max-height: 78px;
}

@media screen and (max-width: 850px) {
	.common-header-auth,
	.common-header--lang,
	.common-header-navigation {
		display: none;
	}

	.common-header-logo {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	#mobile-menu {
		display: flex;
	}

	.common-header-opened .common-header-navigation {
		display: block;
		width: 100% !important;
		margin-bottom: 30px;
		padding-top: 120px;
	}

	.common-header-opened .common-header-logo {
		position: absolute;
		top: 0;
	}

	.common-header-navigation--item a {
		display: block;
		text-align: left;
		padding: 8px 0;
	}

	.common-header-navigation--submenu>ul>li:not(:last-child):before {
		left: 0;
	}
}
