@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(-20px);
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(-20px);
	}
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		transform: translateX(20px);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		transform: translateX(20px);
	}
}

.app2-fade-enter {
	opacity: 0;
}

.app2-fade-enter-active {
	-webkit-animation-name: fadeInDown;
	        animation-name: fadeInDown;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.3s;
	        animation-duration: 0.3s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.app2-fade-leave-to {
	-webkit-animation-name: fadeOutUp;
	        animation-name: fadeOutUp;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.2s;
	        animation-duration: 0.2s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.app2-fade-right-enter-active {
	-webkit-animation-name: fadeInRight;
	        animation-name: fadeInRight;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.3s;
	        animation-duration: 0.3s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.app2-fade-right-leave-to {
	-webkit-animation-name: fadeOutRight;
	        animation-name: fadeOutRight;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.2s;
	        animation-duration: 0.2s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.popover {
	border-radius: 2px;
}

.dropdown-menu a {
	text-decoration: none;
}

.dropdown-item:active, .dropdown-item.active {
	color: #FFFFFF !important;
}

.form-check-input {
	margin-top: 0.15rem;
}

.btn {
	border-radius: 1px;
	text-decoration: none !important;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle):not(.dropdown-handle), .btn-group > .btn-group:not(:last-child) > .btn {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) > .btn {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.dropdown-menu {
	border-radius: 2px;
	padding-top: 0;
	padding-bottom: 0;
}

.dropdown-item {
	padding: 0.25rem 0.5rem;
}

.card {
	border-radius: 1px;
}

.shadow-sm {
	box-shadow: 0 0.05rem 0.05rem rgba(0, 0, 0, 0.075) !important;
}

/* =Error pages
----------------------------------------*/
.app2-error h1 {
	color: #A90329;
	font-size: 22px;
	margin-bottom: 1rem;
}

.app2-error .error-code {
	display: inline-block;
	padding: 0 1rem;
	text-align: center;
	font-size: 46px;
	color: #FFFFFF;
	background-color: #A90329;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.app2-error .error-description {
	font-size: 0.9rem;
}
.app2-error .error-description a {
	text-decoration: underline;
}

.app2-error .error-trace {
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	padding: 1rem;
	margin-bottom: 3rem;
}
.app2-error .error-trace ol {
	margin: 0;
}

.app2-error .error-guy {
	height: 300px;
	width: 155px;
	background: url("../img/error-guy.png") no-repeat;
	margin-left: 3rem;
}

/* =Material design icons
----------------------------------------*/
.wf-loading .material-icons, .wf-materialicons-n4-inactive .material-icons {
	display: none !important;
}

/* =Goodies
----------------------------------------*/
.ripple {
	background-position: center;
	transition: background 0.8s;
}

.ripple:hover {
	background: rgba(18, 97, 165, 0.2) radial-gradient(circle, transparent 1%, rgba(18, 97, 165, 0.2) 1%) center/15000%;
}

.ripple:active {
	background-color: rgba(18, 97, 165, 0.2);
	background-size: 100%;
	transition: background 0s;
}

/* =Spinner
----------------------------------------*/
.app2-spinner {
	vertical-align: middle;
	-webkit-animation: app2-spin 2s linear infinite;
	        animation: app2-spin 2s linear infinite;
	transform-origin: center center;
}
.app2-spinner .app2-spinner__path {
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	-webkit-animation: app2-mat-dash 1.5s ease-in-out infinite;
	        animation: app2-mat-dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes app2-spin {
	0% {
		transform: rotate3d(0, 0, 1, 0deg);
	}
	25% {
		transform: rotate3d(0, 0, 1, 90deg);
	}
	50% {
		transform: rotate3d(0, 0, 1, 180deg);
	}
	75% {
		transform: rotate3d(0, 0, 1, 270deg);
	}
	100% {
		transform: rotate3d(0, 0, 1, 359deg);
	}
}

@keyframes app2-spin {
	0% {
		transform: rotate3d(0, 0, 1, 0deg);
	}
	25% {
		transform: rotate3d(0, 0, 1, 90deg);
	}
	50% {
		transform: rotate3d(0, 0, 1, 180deg);
	}
	75% {
		transform: rotate3d(0, 0, 1, 270deg);
	}
	100% {
		transform: rotate3d(0, 0, 1, 359deg);
	}
}

@-webkit-keyframes app2-mat-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

@keyframes app2-mat-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

/* =Switcher
----------------------------------------*/
.app2-switcher label {
	line-height: 1;
	position: relative;
	padding-left: 2.4375rem;
}
.app2-switcher label .app2-switcher__track {
	position: absolute;
	top: calc-top(1.5, 1rem, 0.875rem);
	left: 0;
	display: inline-block;
	width: 2.125rem;
	height: 0.875rem;
	cursor: pointer;
	background-image: linear-gradient(to right, #CED4DA 0%, #CED4DA 50%, #76A6CF 50%, #76A6CF 100%);
	background-position: 0;
	background-size: 4.25rem 0.875rem;
	border-radius: 2.125rem;
	transition: background-position 0.2s ease-in;
}
.app2-switcher label .app2-switcher__track::after {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	align-self: center;
	width: 1.25rem;
	height: 1.25rem;
	content: "";
	background: #F1F1F1;
	border-radius: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	transition: left 0.2s ease-in, background-color 0.2s ease-in, transform 0.3s ease;
	transform: translateY(-50%);
}
.app2-switcher label .app2-switcher__track:active::after {
	transform: translateY(-50%) scale3d(1.15, 0.85, 1);
}
.app2-switcher label input {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	opacity: 0;
}
.app2-switcher label input:checked + .app2-switcher__track {
	background-position: -100%;
}
.app2-switcher label input:checked + .app2-switcher__track::after {
	left: calc(100% - 1.25rem);
	background-color: #1261A5;
}
.app2-switcher label input:disabled + .app2-switcher__track:active::after {
	transform: translateY(-50%);
}
.app2-switcher label input:disabled + .app2-switcher__track {
	cursor: default;
	background: #E9ECEF;
}
.app2-switcher label input:disabled + .app2-switcher__track::after {
	background: #BDBDBD;
}

/* =User Avatar
----------------------------------------*/
.app2-user-avatar {
	height: 40px;
	width: 40px;
	border-radius: 50%;
	padding: 4px;
	opacity: 0.8;
	transition: opacity 0.2s ease-in-out;
	text-transform: uppercase;
	text-decoration: none !important;
}
.app2-user-avatar img, .app2-user-avatar span {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.app2-user-avatar span {
	background-color: #1261A5;
	color: #FFFFFF;
	width: 32px;
}

.app2-user-menu_active > .app2-user-avatar, .app2-user-avatar_active, .app2-user-menu_active > .app2-user-avatar {
	opacity: 1;
	background-color: #CED4DA !important;
}

/* =Forms
----------------------------------------*/
.app2-form div.form-control, .app2-form span.form-control, .app2-form input[type="text"], .app2-form input[type="tel"], .app2-form input[type="number"], .app2-form input[type="url"], .app2-form input[type="email"], .app2-form input[type="password"], .app2-form select, .app2-form textarea {
	display: block;
	box-sizing: border-box;
	border-width: 1px;
	border-style: solid;
	border-radius: 0;
	font: 13px/20px "Open Sans", Helvetica, Arial, sans-serif;
	color: #343A40;
}

.app2-form .input-group-addon {
	border-radius: 0;
}

.help-block a {
	color: inherit;
	font-weight: 600;
	text-decoration: underline;
}

/* =Pagination
----------------------------------------*/
.app2-pagination {
	list-style: none;
}
.app2-pagination a, .app2-pagination span {
	padding: 0.5rem 1rem;
	background-color: #FFFFFF;
	color: #6C757D;
	margin-right: 1px;
	border: 1px solid #E9ECEF;
	transition: all 0.1s ease-in-out;
}
.app2-pagination a:hover {
	background: #3682AC;
	border-color: #3682AC;
	color: #FFFFFF;
}
.app2-pagination .active a, .app2-pagination .active a:hover, .app2-pagination .active a:focus, .app2-pagination .active span, .app2-pagination .active span:hover, .app2-pagination .active span:focus {
	background-color: #1261A5;
	border-color: #1261A5;
	color: #FFFFFF;
	text-decoration: none;
}

/* =Breadcrumbs
---------------------------------------*/
.app2-breadcrumbs li {
	z-index: 0;
	position: relative;
	float: left;
	margin-right: 1rem;
	margin-bottom: 2px;
	height: 23px;
}
.app2-breadcrumbs li:before {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 12px;
	content: " ";
	width: 8px;
	height: 8px;
	margin-top: -4px;
	margin-left: -4px;
	border-radius: 50%;
	background-color: #FFFFFF;
}
.app2-breadcrumbs li:after {
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 100%;
	content: " ";
	pointer-events: none;
	width: 18px;
	height: 18px;
	margin-top: -8.5px;
	margin-left: -9px;
	border-radius: 2px;
	transform: rotate(45deg);
	border-top: 1px solid #D74B6A;
	border-right: 1px solid #D74B6A;
	background-color: #D74B6A;
}

.app2-breadcrumbs a {
	z-index: 1;
	position: relative;
	display: block;
	height: 24px;
	padding: 2px 0.25rem 2px 1.5rem;
	border: 1px solid #D74B6A;
	border-right: none;
	border-radius: 2px 0 0 2px;
	color: #FFFFFF;
	background-color: #D74B6A;
	font-size: 12px;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 250px;
}
.app2-breadcrumbs a:hover {
	background-color: #D13255;
	color: #F0F0F0;
}

.app2-breadcrumbs li:hover:after, .app2-breadcrumbs li:hover a {
	background-color: #D13255;
	border-color: #C42B4D;
}

@media (max-width: 575.98px) {
	.app2-breadcrumbs li {
		display: none;
	}
	.app2-breadcrumbs li:last-child {
		display: block;
	}
}

/* =Scaffolding
----------------------------------------*/
body {
	font-family: "Roboto", sans-serif;
	min-height: 100%;
}

h1, h2, h3, h4 {
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	margin: 0;
}

a {
	text-decoration: underline;
}

#sso-iframe {
	position: absolute;
	top: -10000px;
}

.app2 {
	display: flex;
	min-height: 100vh;
	margin-bottom: 0 !important;
	padding: 0 !important;
}

.app2-header {
	position: relative;
}

.app2-content {
	background-color: #E9ECEF;
	background-image: linear-gradient(to bottom, rgba(239, 245, 255, 0.65) 0, #FFFFFF 100px);
	background-repeat: repeat-x;
	flex: 1;
	min-height: 100px;
	width: 100%;
	border-top: 1px solid #DEE2E6;
}

.app2-footer {
	border-top: 1px solid #DEE2E6;
	flex: none;
}
.app2-footer a {
	color: #6C757D;
}
.app2-footer a:hover {
	color: #343A40;
}

.app2-footer__nav ul, .app2-footer__nav li, .app2-footer__lang-switcher ul, .app2-footer__lang-switcher li {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 12px;
}

.app2-footer__nav ul, .app2-footer__lang-switcher ul {
	margin-right: 32px;
}

.app2-footer__lang-switcher .active {
	display: inline-block;
	padding: 0 3px;
	margin-left: -3px;
	font-weight: bold;
	color: #495057;
	background-color: #E9ECEF;
}

.app2-footer__copy {
	font-size: 13px;
}

.app2-unsupported-browser {
	padding: 0.5rem;
	text-align: center;
	color: #FFFFFF;
	background-color: #C79121;
}
.app2-unsupported-browser a {
	color: white;
	text-decoration: underline;
}

@media (max-width: 575.98px) {
	.app2-header__search-col, .app2-header__drawer-btn-col {
		background-image: linear-gradient(to bottom, #1469B3 0%, #0F538E 100%);
		background-repeat: repeat-x;
	}
	.app2-header__drawer-btn-col {
		height: 48px;
	}
	.app2-header__logo-col {
		flex: none;
		width: auto;
	}
	.app2-header__search-col {
		flex: 1;
		width: auto;
	}
	.app2-header {
		transition: all 0.2s ease-in;
	}
}

/* =Logo
----------------------------------------*/
@media (max-width: 767.98px) {
	.app2-toolbar-logo span {
		display: block;
		margin-top: 1px;
		width: 100px;
		height: 47px;
		background: url("../img/logo100.png");
		background-image: url("../img/logo.svg"), none;
		background-size: contain;
		background-repeat: no-repeat;
	}
}

@media (min-width: 576px) {
	.app2-toolbar-logo span {
		display: block;
		width: 177px;
		height: 65px;
		background: url("../img/logo.png");
		background-image: url("../img/logo.svg"), none;
		background-size: 177px 65px;
		background-repeat: no-repeat;
		background-position: 2px;
	}
}

/* =Drawer button
----------------------------------------*/
.app2-drawer-btn {
	height: 48px;
	width: 32px;
	background-color: transparent;
	background-image: url("../img/menu-light.svg");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	border: none;
	cursor: pointer;
}

/* =Search form
----------------------------------------*/
.app2-search__container {
	background-image: linear-gradient(to bottom, #1469B3 0%, #0F538E 100%);
	background-repeat: repeat-x;
}
.app2-search__container input {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: none !important;
	font-size: 18px;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	border: none;
}
.app2-search__container input:first-child {
	color: #6C757D;
}

.app2-search__fc {
	height: 31px;
}

.app2-search__btn {
	background: transparent;
	color: white;
	text-shadow: none;
	font-size: 0.9rem;
	margin-left: 2px;
	border: 1px solid #DEE2E6;
	transition: all 0.1s ease-in-out;
}
.app2-search__btn:hover {
	background-image: linear-gradient(to bottom, #1364AA 0%, #0E4E85 100%);
	background-repeat: repeat-x;
	border: 1px solid #ADB5BD;
}

.app2-search__example {
	font-size: 0.8rem;
}
.app2-search__example a {
	text-decoration: none;
	border-bottom: 1px dotted;
}

.app2-search__retto {
	font-size: 0.8rem;
}

.app2-search__suggestions {
	z-index: 999;
	position: absolute;
	background: #FFFFFF;
	top: 55px;
	left: 0;
	right: 0;
	list-style: none;
	margin: 0;
	border: 1px solid #CED4DA;
	border-top: none;
	padding: 0;
}
.app2-search__suggestions:empty {
	display: none;
}

.app2-search__suggestion {
	padding: 0.25rem 0.5rem;
	font-size: 0.9rem;
	cursor: pointer;
}

.app2-search__suggestion_active {
	background: #D6DDE7;
}

.app2-search__suggestion-type {
	float: right;
	color: #6C757D;
	font-size: 0.8rem;
}

.app2-search__suggestion_category .app2-search__suggestion-snippet, .app2-search__suggestion_company .app2-search__suggestion-snippet, .app2-search__suggestion_shop .app2-search__suggestion-snippet {
	color: #337AB7;
	text-decoration: underline;
}

@media (max-width: 575.98px) {
	.app2-search__container {
		min-height: 48px;
	}
	.app2-search__btn, .app2-search__btn:hover {
		color: #FFFFFF;
		background-image: url("../img/search-light.svg");
		background-repeat: no-repeat;
		background-position: 50% 50%;
		width: 32px;
	}
	.app2-search_active .app2-header {
		margin-left: -100px;
		margin-right: -32px;
	}
}

.app2-search__container {
	border-radius: 3px;
}

/* =Auth form
----------------------------------------*/
.app2-menu-auth-form__last-login {
	opacity: 0.8;
	cursor: pointer;
}
.app2-menu-auth-form__last-login:hover {
	opacity: 1;
}

.app2-menu-auth-form__selected-user {
	cursor: default;
}

.app2-menu-auth-form__cancel {
	cursor: pointer;
}
.app2-menu-auth-form__cancel i {
	font-size: 12px !important;
}

.app2-menu-auth-form__submit-btn-group .btn {
	z-index: 1601 !important;
}

/* =Toolbar menu
----------------------------------------*/
.app2-toolbar-menu li {
	min-width: 60px;
	text-align: center;
	padding: 0;
}

.app2-toolbar-menu a {
	position: relative;
	display: inline-block;
	height: 50px;
	padding-top: 38px;
	font-size: 12px;
	line-height: 1em;
}
.app2-toolbar-menu a span {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -16px;
	background-size: 32px 32px;
	background-repeat: no-repeat;
	height: 32px;
	width: 32px;
}

.app2-toolbar-menu__icon-sign-in span {
	background: url("../img/toolbar-menu/x1/sign-in.png");
	background-image: -webkit-image-set(url("../img/toolbar-menu/x1/sign-in.png") 1x, url("../img/toolbar-menu/x2/sign-in.png") 2x, url("../img/toolbar-menu/x3/sign-in.png") 3x);
	background-image:         image-set(url("../img/toolbar-menu/x1/sign-in.png") 1x, url("../img/toolbar-menu/x2/sign-in.png") 2x, url("../img/toolbar-menu/x3/sign-in.png") 3x);
	background-image: url("../img/toolbar-menu/svg/sign-in.svg");
}

.app2-toolbar-menu__icon-1 span {
	background: url("../img/toolbar-menu/x1/icons-01.png");
	background-image: -webkit-image-set(url("../img/toolbar-menu/x1/icons-01.png") 1x, url("../img/toolbar-menu/x2/icons-01.png") 2x, url("../img/toolbar-menu/x3/icons-01.png") 3x);
	background-image:         image-set(url("../img/toolbar-menu/x1/icons-01.png") 1x, url("../img/toolbar-menu/x2/icons-01.png") 2x, url("../img/toolbar-menu/x3/icons-01.png") 3x);
	background-image: url("../img/toolbar-menu/svg/icons-01.svg");
}

.app2-toolbar-menu__icon-2 span {
	background: url("../img/toolbar-menu/x1/icons-02.png");
	background-image: -webkit-image-set(url("../img/toolbar-menu/x1/icons-02.png") 1x, url("../img/toolbar-menu/x2/icons-02.png") 2x, url("../img/toolbar-menu/x3/icons-02.png") 3x);
	background-image:         image-set(url("../img/toolbar-menu/x1/icons-02.png") 1x, url("../img/toolbar-menu/x2/icons-02.png") 2x, url("../img/toolbar-menu/x3/icons-02.png") 3x);
	background-image: url("../img/toolbar-menu/svg/icons-02.svg");
}

.app2-toolbar-menu__icon-3 span {
	background: url("../img/toolbar-menu/x1/icons-03.png");
	background-image: -webkit-image-set(url("../img/toolbar-menu/x1/icons-03.png") 1x, url("../img/toolbar-menu/x2/icons-03.png") 2x, url("../img/toolbar-menu/x3/icons-03.png") 3x);
	background-image:         image-set(url("../img/toolbar-menu/x1/icons-03.png") 1x, url("../img/toolbar-menu/x2/icons-03.png") 2x, url("../img/toolbar-menu/x3/icons-03.png") 3x);
	background-image: url("../img/toolbar-menu/svg/icons-03.svg");
}

.app2-toolbar-menu__icon-4 span {
	background: url("../img/toolbar-menu/x1/icons-04.png");
	background-image: -webkit-image-set(url("../img/toolbar-menu/x1/icons-04.png") 1x, url("../img/toolbar-menu/x2/icons-04.png") 2x, url("../img/toolbar-menu/x3/icons-04.png") 3x);
	background-image:         image-set(url("../img/toolbar-menu/x1/icons-04.png") 1x, url("../img/toolbar-menu/x2/icons-04.png") 2x, url("../img/toolbar-menu/x3/icons-04.png") 3x);
	background-image: url("../img/toolbar-menu/svg/icons-04.svg");
}

.app2-toolbar-menu__icon-5 span {
	background: url("../img/toolbar-menu/x1/icons-05.png");
	background-image: -webkit-image-set(url("../img/toolbar-menu/x1/icons-05.png") 1x, url("../img/toolbar-menu/x2/icons-05.png") 2x, url("../img/toolbar-menu/x3/icons-05.png") 3x);
	background-image:         image-set(url("../img/toolbar-menu/x1/icons-05.png") 1x, url("../img/toolbar-menu/x2/icons-05.png") 2x, url("../img/toolbar-menu/x3/icons-05.png") 3x);
	background-image: url("../img/toolbar-menu/svg/icons-05.svg");
}

.app2-toolbar-menu__icon-6 span {
	background: url("../img/toolbar-menu/x1/icons-06.png");
	background-image: -webkit-image-set(url("../img/toolbar-menu/x1/icons-06.png") 1x, url("../img/toolbar-menu/x2/icons-06.png") 2x, url("../img/toolbar-menu/x3/icons-06.png") 3x);
	background-image:         image-set(url("../img/toolbar-menu/x1/icons-06.png") 1x, url("../img/toolbar-menu/x2/icons-06.png") 2x, url("../img/toolbar-menu/x3/icons-06.png") 3x);
	background-image: url("../img/toolbar-menu/svg/icons-06.svg");
}

.app2-toolbar-menu__icon-7 span {
	background: url("../img/toolbar-menu/x1/icons-07.png");
	background-image: -webkit-image-set(url("../img/toolbar-menu/x1/icons-07.png") 1x, url("../img/toolbar-menu/x2/icons-07.png") 2x, url("../img/toolbar-menu/x3/icons-07.png") 3x);
	background-image:         image-set(url("../img/toolbar-menu/x1/icons-07.png") 1x, url("../img/toolbar-menu/x2/icons-07.png") 2x, url("../img/toolbar-menu/x3/icons-07.png") 3x);
	background-image: url("../img/toolbar-menu/svg/icons-07.svg");
}

.app2-toolbar-menu__icon-8 span {
	background: url("../img/toolbar-menu/x1/icons-08.png");
	background-image: -webkit-image-set(url("../img/toolbar-menu/x1/icons-08.png") 1x, url("../img/toolbar-menu/x2/icons-08.png") 2x, url("../img/toolbar-menu/x3/icons-08.png") 3x);
	background-image:         image-set(url("../img/toolbar-menu/x1/icons-08.png") 1x, url("../img/toolbar-menu/x2/icons-08.png") 2x, url("../img/toolbar-menu/x3/icons-08.png") 3x);
	background-image: url("../img/toolbar-menu/svg/icons-08.svg");
}

/* =Toolbar user zone
----------------------------------------*/
.app2-toolbar-user {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
}

.app2-toolbar-user__home {
	float: left;
	margin-right: 10px;
	filter: grayscale(1);
}
.app2-toolbar-user__home:after {
	content: "/";
	position: absolute;
	top: 10px;
	left: 100%;
	font-size: 10px;
	margin-left: 2px;
}

.app2-toolbar-user .app2-user-menu {
	float: left;
}

.app2-toolbar-user_menu-toggle {
	position: relative;
	z-index: 1061;
}
.app2-toolbar-user_menu-toggle:hover, .app2-toolbar-user_menu-toggle:active {
	background-color: #DEE2E6;
	text-decoration: none;
	opacity: 1;
}

.app2-toolbar-guest-menu__dropdown {
	width: 200px !important;
	background-color: #E9ECEF;
	border: 1px solid #CED4DA;
}
.app2-toolbar-guest-menu__dropdown .arrow:after {
	border-bottom-color: #E9ECEF !important;
}

/* =Drawer
----------------------------------------*/
.app2-drawer__content {
	z-index: 2000;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 250px;
	background: #F8F9FA;
	border-right: 1px solid #DEE2E6;
	font-size: 0.9rem;
	transform: translateX(-260px);
	transition: all 0.2s ease-in-out;
	overflow-y: auto;
}

.app2-drawer__overlay {
	z-index: 1999;
	position: fixed;
	display: none;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.7);
}

.app2-drawer_active .app2-drawer__content {
	transform: translateX(0);
}

.app2-drawer_active .app2-drawer__overlay {
	display: block;
}

/* =User Menu
----------------------------------------*/
.app2-user-menu h6 {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.8rem;
}

.app2-user-menu__dropdown, .app2-user-menu__loading {
	top: 42px;
	left: auto;
	right: 0;
	width: 300px;
	box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.25);
}
.app2-user-menu__dropdown > .arrow, .app2-user-menu__loading > .arrow {
	left: auto;
	right: 6px;
}
.app2-user-menu__dropdown .popover-body, .app2-user-menu__loading .popover-body {
	padding: 0;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
}

.app2-user-menu__link, .app2-user-menu__link:hover {
	text-decoration: none;
}

.app2-user-menu__link:hover {
	background-color: #DEE2E6;
}

.app2-user-menu__loading {
	width: 64px;
	height: 64px;
}

.app2-user-menu__link-content, .app2-user-menu__link-content:hover {
	text-decoration: none;
	flex: 1;
}

.app2-user-menu-enter {
	opacity: 0;
}

.app2-user-menu-enter-active {
	-webkit-animation-name: fadeInDown;
	        animation-name: fadeInDown;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.2s;
	        animation-duration: 0.2s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.app2-user-menu-leave-to {
	-webkit-animation-name: fadeOutUp;
	        animation-name: fadeOutUp;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.1s;
	        animation-duration: 0.1s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.app2-user-menu_animate {
	overflow: hidden;
}

.app2-user-menu__logout {
	height: 38px;
	width: 38px;
	text-align: center;
}
.app2-user-menu__logout img {
	margin-left: 2px;
}
.app2-user-menu__logout:hover {
	background-color: #DEE2E6;
}

.app2-user-menu__adult-toggle {
	margin-left: 63px;
}

.app2-toolbar-ie .app2-toolbar-ie__username {
	font-size: 13px;
	font-weight: bold;
}

.app2-toolbar-ie .app2-toolbar-ie__logout i {
	height: 16px;
	font-size: 16px;
	margin-left: 0.5rem;
}

/* =IE
----------------------------------------*/
.show-ie {
	display: none !important;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.app2.d-flex {
		display: block !important;
	}
	div.d-flex {
		width: 100%;
	}
	.hide-ie {
		display: none !important;
	}
	.show-ie {
		display: block !important;
	}
}

/* =Lazyload
----------------------------------------*/
.app2-lazyload_fade-up {
	opacity: 0;
	transition: opacity 700ms;
}

.app2-lazyload_blur-up {
	filter: blur(5px);
	transition: filter 400ms;
	transform: translate3d(0, 0, 0);
}

.app2-lazyloaded.app2-lazyload_fade-up {
	opacity: 1;
}

.app2-lazyloaded.app2-lazyload_blur-up {
	filter: blur(0);
}

.app2-lazyload-error {
	display: none;
}

/* =Redactor
----------------------------------------*/
.re-glavred {
	height: 33px;
}

.re-glavred .material-icons {
	font-size: 16px;
}

.glavred__btn-spinner {
	height: 16px;
	width: 16px;
}

.glavred__btn--red-active {
	background: #DA570F !important;
	color: #FFFFFF !important;
}

.glavred__btn--blue-active {
	background: #10807F !important;
	color: #FFFFFF !important;
}

.glvrd__underline {
	border-radius: 0.2em;
	padding: 3px 2px;
	margin: 0 -2px;
}

.glvrd--active {
	color: #FFFFFF !important;
}

.glvrd__underline--red {
	background: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgogICAgICAgIHdpZHRoPSI4cHgiIGhlaWdodD0iMnB4IiB2aWV3Qm94PSIwIDAgOCAyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDIiIHhtbDpzcGFjZT0icHJlc2VydmUiPgogICAgICAgIDxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RhNTcwZiIgc3Ryb2tlLXdpZHRoPSIwLjc1IiBkPSJNLTguMDY4LDFjMS4wMDYtMC45NzgsMy4wMTctMC45NzgsNC4wMjIsMAogICAgICAgIGMxLjAwNiwwLjk3OCwzLjAxNywwLjk3OCw0LjAyMywwQzAuOTgzLDAuMDIyLDIuOTk0LDAuMDIyLDQsMWMxLjAwNiwwLjk3OCwzLjAxNywwLjk3OCw0LjAyMywwYzEuMDA2LTAuOTc4LDMuMDE3LTAuOTc4LDQuMDIyLDAKICAgICAgICBjMS4wMDYsMC45NzgsMy4wMTcsMC45NzgsNC4wMjMsMCIvPgogICAgICAgIDwvc3ZnPgogICAg) 0 100% repeat-x;
	color: #DA570F;
}
.glvrd__underline--red.glvrd--active {
	background: #DA570F;
}

.glvrd__underline--blue {
	background: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgogICAgICAgIHdpZHRoPSI4cHgiIGhlaWdodD0iMnB4IiB2aWV3Qm94PSIwIDAgOCAyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDIiIHhtbDpzcGFjZT0icHJlc2VydmUiPgogICAgICAgIDxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzEwODA3ZiIgc3Ryb2tlLXdpZHRoPSIwLjc1IiBkPSJNLTguMDY4LDFjMS4wMDYtMC45NzgsMy4wMTctMC45NzgsNC4wMjIsMAogICAgICAgIGMxLjAwNiwwLjk3OCwzLjAxNywwLjk3OCw0LjAyMywwQzAuOTgzLDAuMDIyLDIuOTk0LDAuMDIyLDQsMWMxLjAwNiwwLjk3OCwzLjAxNywwLjk3OCw0LjAyMywwYzEuMDA2LTAuOTc4LDMuMDE3LTAuOTc4LDQuMDIyLDAKICAgICAgICBjMS4wMDYsMC45NzgsMy4wMTcsMC45NzgsNC4wMjMsMCIvPgogICAgICAgIDwvc3ZnPgogICAg) 0 100% repeat-x;
	color: #10807F;
}
.glvrd__underline--blue.glvrd--active {
	background: #10807F;
}

.glvrd__underline--orange {
	background: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgogICAgICAgIHdpZHRoPSI4cHgiIGhlaWdodD0iMnB4IiB2aWV3Qm94PSIwIDAgOCAyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDIiIHhtbDpzcGFjZT0icHJlc2VydmUiPgogICAgICAgIDxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmOTAwMCIgc3Ryb2tlLXdpZHRoPSIwLjc1IiBkPSJNLTguMDY4LDFjMS4wMDYtMC45NzgsMy4wMTctMC45NzgsNC4wMjIsMAogICAgICAgIGMxLjAwNiwwLjk3OCwzLjAxNywwLjk3OCw0LjAyMywwQzAuOTgzLDAuMDIyLDIuOTk0LDAuMDIyLDQsMWMxLjAwNiwwLjk3OCwzLjAxNywwLjk3OCw0LjAyMywwYzEuMDA2LTAuOTc4LDMuMDE3LTAuOTc4LDQuMDIyLDAKICAgICAgICBjMS4wMDYsMC45NzgsMy4wMTcsMC45NzgsNC4wMjMsMCIvPgogICAgICAgIDwvc3ZnPgogICAg) 0 100% repeat-x;
	color: #FF9000;
}
.glvrd__underline--orange.glvrd--active {
	background: #FF9000;
}

.glvrd__underline--purple {
	background: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgogICAgICAgIHdpZHRoPSI4cHgiIGhlaWdodD0iMnB4IiB2aWV3Qm94PSIwIDAgOCAyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDIiIHhtbDpzcGFjZT0icHJlc2VydmUiPgogICAgICAgIDxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmOTAwMCIgc3Ryb2tlLXdpZHRoPSIwLjc1IiBkPSJNLTguMDY4LDFjMS4wMDYtMC45NzgsMy4wMTctMC45NzgsNC4wMjIsMAogICAgICAgIGMxLjAwNiwwLjk3OCwzLjAxNywwLjk3OCw0LjAyMywwQzAuOTgzLDAuMDIyLDIuOTk0LDAuMDIyLDQsMWMxLjAwNiwwLjk3OCwzLjAxNywwLjk3OCw0LjAyMywwYzEuMDA2LTAuOTc4LDMuMDE3LTAuOTc4LDQuMDIyLDAKICAgICAgICBjMS4wMDYsMC45NzgsMy4wMTcsMC45NzgsNC4wMjMsMCIvPgogICAgICAgIDwvc3ZnPgogICAg) 0 100% repeat-x;
	color: #4D0063;
}
.glvrd__underline--purple.glvrd--active {
	background: #4D0063;
}

.glavred__score--low {
	color: #A90329;
}

.glavred__score--medium {
	color: #C79121;
}

.glavred__score--high {
	color: #739E73;
}