@media print {
	.dont-print {
		display: none !important;
	}
}

:root {
	--text-color: #1e2328;
	--primary-color: #173766;
	--link-color: #32588f;
	--orange-color: #e37225;
	--foreground-color: #fff;
	--background-color: #ebedf0;
	--background-color-disabled: #f5f6f7;
	--border-color: #b9c3d1;
	--border-color-disabled: #dce1e8;
	--input-border-color: var(--border-color);
	--neutral-icon-color: #464b50;
	--green-color: #319124;
	--red-color: #cf222e;
	--warning-bg-color: #ffe6c3;
	--standard-border-radius: 4px;
	--medium-border-radius: 6px;
	--medium-shadow: 0 1px 5px rgba(70, 75, 80, 0.3);
}

html,
body {
	overflow: hidden;
	background-color: var(--background-color);
	color: var(--text-color);

	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;

	cursor: default;

	font-size: 14px;
	line-height: 1.5;

	font-family: "Open Sans";
}

* {
	box-sizing: border-box;
}

.stretchBoth {
	width: 100%;
	height: 100%;
}

.stretchVertical {
	height: 100%;
}

.stretchHorizontal {
	width: 100%;
}

html [wrap] {
	flex-wrap: wrap;
}

html [wrap-reverse] {
	flex-wrap: wrap-reverse;
}

html [content-start] {
	align-content: flex-start;
}

/* flex box layout */
html [layout] {
	display: flex;
}

html [horizontal] {
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
}

html [layout][justified] {
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

html [vertical] {
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

html [flex] {
	-ms-flex: 1 1 0.000000001px;
	-webkit-flex: 1;
	flex: 1;
	-webkit-flex-basis: 0.000000001px;
	flex-basis: 0.000000001px;
}

/*
::content > .flex,
::content > [flex],
::content > [fit] {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	-moz-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}*/

html [layout][start] {
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

html [layout][end] {
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

html [layout][center] {
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

html [layout][stretch] {
	-ms-align-self: stretch;
	-webkit-align-self: stretch;
	align-self: stretch;
}

html [layout][start-justified] {
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

/* alignment in main axis */

html paper-ripple {
	display: none;
}

html [start-justified] {
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

html [end-justified] {
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

html [center-justified] {
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

html [hidden] {
	display: none !important;
}

.cursor-pointer {
	cursor: pointer;
}

/* dropdown */
dropdown-item {
	width: 100%;
	display: inline-block;
	cursor: pointer;
}

.dropdownPanel {
	border: 1px solid rgb(200, 200, 200);
	padding: 0 0 0 4px;
	overflow: hidden;
	cursor: pointer;
}

.dropdownPanel .icon {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -3px;
	margin-right: 4px;
	height: 6px;
	width: 11px;
	background-image: url("../images/arrow_down.png");
	background-position: 0px 0px;
	background-repeat: no-repeat;
}

.dropdownPanel .text {
	overflow: hidden;
	margin-right: 18px;
	padding-left: 4px;
}

.dropdownPanel:hover .icon {
	background-position: 0px -6px;
}

.dropdownControl[disabled] .dropdownPanel,
.dropdownControl[disabled] dropdown-item {
	cursor: default;
}

.dropdownControl[disabled] .dropdownPanel .text {
	color: rgb(200, 200, 200);
}

.dropdownControl[disabled] .dropdownPanel .icon {
	background-position: 0px -12px;
}

.dropDownMenu {
	margin: 0px;
	border: 1px solid rgb(200, 200, 200);
	z-index: 100003;
	padding: 0px;
}

.dropDownMenu .dropDownItem {
	border: 1px solid white;
	padding: 0 4px 0 4px;
	overflow: hidden;
}

.dropDownMenu .dropDownItem:hover {
	border-color: #1894d8;
}

.dropDownMenu .dropDownItem.selected {
	background-color: #1894d8;
	border-color: #1894d8;
	color: #ffffff;
}

/* language switcher */
.languageSwitcherDiv .dropdownPanel {
	border: none;
}

.languageSwitcherDiv .dropdownPanel .text {
	line-height: 35px;
	padding-left: 50px;
	margin-right: 30px;
	overflow: hidden;
	height: 100%;
}

.languageSwitcherDiv .dropdownPanel .icon {
	background-image: url("../images/arrow_down_icon.png");
	width: 13px;
	height: 9px;
	margin-right: 12px;
	margin-top: -4px;
}

.languageSwitcherDiv .dropdownPanel:hover .icon {
	background-position: 0px 0px;
}

.languageSwitcherDiv .dropdownControl[disabled] .dropdownPanel .text {
	color: white;
}

.languageSwitcherDiv .dropdownControl[disabled] .dropdownPanel .icon {
	background-position: 0px 0px;
}

.languageSwitcherMenu {
	border: 2px solid black;
	padding: 7px 0 7px 0;
}

.languageSwitcherMenu .dropDownItem.selected {
	background-color: #dcdcdc;
	border-color: #dcdcdc;
	color: black;
}

.languageSwitcherMenu .dropDownItem:hover {
	border-color: #dcdcdc;
}

.languageSwitcherDiv .flag {
	display: inline-block;
	height: 26px;
	width: 26px;
	background-image: url("../images/flags_24.png");
	position: absolute;
	left: 14px;
	top: 50%;
	margin-top: -13px;
}

.languageSwitcherDiv .flag.en {
	background-position: 0 -25px;
}

.languageSwitcherDiv .flag.fr {
	background-position: 0 -75px;
}

.languageSwitcherDiv .flag.es {
	background-position: 0 -100px;
}

.languageSwitcherDiv .flag.ru {
	background-position: 0 -125px;
}

/* fonts */

@font-face {
	font-family: "Roboto";
	src: url("../fonts/roboto/roboto-regular.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto";
	src: url("../fonts/roboto/roboto-medium.woff2") format("woff2");
	font-weight: bold;
}

@font-face {
	font-family: "Roboto Bold";
	src: url("../fonts/roboto/roboto-bold.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto Bold";
	src: url("../fonts/roboto/roboto-black.woff2") format("woff2");
	font-weight: bold;
}

@font-face {
	font-family: "Open Sans Bold";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/opensans/opensans-regular-latin.woff2") format("woff2");
}

/* latin-ext */
@font-face {
	font-family: "Open Sans Bold";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/opensans/opensans-regular-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "Open Sans Bold";
	font-weight: 400;
	font-style: italic;
	src: url("../fonts/opensans/opensans-italic.woff2") format("woff2");
}

@font-face {
	font-family: "Open Sans Bold";
	font-weight: 700;
	font-style: normal;
	src: url("../fonts/opensans/opensans-extrabold.woff2") format("woff2");
}

@font-face {
	font-family: "Open Sans Bold";
	font-weight: 700;
	font-style: italic;
	src: url("../fonts/opensans/opensans-extrabolditalic.woff2") format("woff2");
}

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/opensans/opensans-regular-latin.woff2") format("woff2");
}

/* latin-ext */
@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/opensans/opensans-regular-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "Open Sans";
	font-weight: 600;
	font-style: normal;
	src: url("../fonts/opensans/opensans-bold.woff2") format("woff2");
}

@font-face {
	font-family: "Open Sans";
	font-weight: 400;
	font-style: italic;
	src: url("../fonts/opensans/opensans-italic.woff2") format("woff2");
}

@font-face {
	font-family: "Open Sans";
	font-weight: 700;
	font-style: italic;
	src: url("../fonts/opensans/opensans-bolditalic.woff2") format("woff2");
}

@font-face {
	font-family: "Comic Neue";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/ComicNeue-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto Condensed";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/roboto_condensed/RobotoCondensed-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto Condensed";
	font-weight: bold;
	src: url("../fonts/roboto_condensed/RobotoCondensed-Bold.woff2") format("woff2");
}

@font-face {
	font-family: "Cousine";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/cousine/Cousine-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Cousine";
	font-style: normal;
	font-weight: bold;
	src: url("../fonts/cousine/Cousine-Bold.woff2") format("woff2");
}

@font-face {
	font-family: "Cousine";
	font-style: italic;
	font-weight: normal;
	src: url("../fonts/cousine/Cousine-Italic.woff2") format("woff2");
}

@font-face {
	font-family: "Cousine";
	font-style: italic;
	font-weight: bold;
	src: url("../fonts/cousine/Cousine-BoldItalic.woff2") format("woff2");
}
/* cyrillic-ext */
@font-face {
	font-family: "Tinos";
	src: url("../fonts/tinos/Tinos-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Tinos";
	font-weight: bold;
	src: url("../fonts/tinos/Tinos-Bold.woff2") format("woff2");
}

@font-face {
	font-family: "Source Sans Pro";
	src: url("../fonts/source_sans_pro/SourceSansPro-Regular.woff2") format("woff2");
}
@font-face {
	font-family: "Source Sans Pro";
	font-weight: bold;
	src: url("../fonts/source_sans_pro/SourceSansPro-Bold.woff2") format("woff2");
}

@font-face {
	font-family: "Charis Sil";

	src: url("../fonts/charis_sil/CharisSILEur-R.woff2") format("woff2");
	font-weight: normal;
}

@font-face {
	font-family: "Charis Sil";
	src: url("../fonts/charis_sil/CharisSILEur-B.woff2") format("woff2");
	font-weight: bold;
}

@font-face {
	font-family: "Charis Sil";

	src: url("../fonts/charis_sil/CharisSILEur-I.woff2") format("woff2");
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: "Charis Sil";
	src: url("../fonts/charis_sil/CharisSILEur-BI.woff2") format("woff2");
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: "Charis Sil";
	src: url("../fonts/charis_sil/CharisSILCyr-R.woff2") format("woff2");
	font-weight: normal;
	unicode-range: U+0400-04F9;
}

@font-face {
	font-family: "Charis Sil";
	src: url("../fonts/charis_sil/CharisSILCyr-B.woff2") format("woff2");
	font-weight: bold;
	unicode-range: U+0400-04F9;
}

@font-face {
	font-family: "Charis Sil";
	src: url("../fonts/charis_sil/CharisSILCyr-I.woff2") format("woff2");
	font-weight: normal;
	font-style: italic;
	unicode-range: U+0400-04F9;
}

@font-face {
	font-family: "Charis Sil";
	src: url("../fonts/charis_sil/CharisSILCyr-BI.woff2") format("woff2");
	font-weight: bold;
	font-style: italic;
	unicode-range: U+0400-04F9;
}

@font-face {
	font-family: "Liberation Sans";
	src: url("../fonts/liberation_sans/LiberationSans-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Liberation Sans";
	src: url("../fonts/liberation_sans/LiberationSans-Italic.woff2") format("woff2");
	font-style: italic;
}

@font-face {
	font-family: "Liberation Sans";
	src: url("../fonts/liberation_sans/LiberationSans-Bold.woff2") format("woff2");
	font-weight: bold;
}

@font-face {
	font-family: "Liberation Sans";
	src: url("../fonts/liberation_sans/LiberationSans-BoldItalic.woff2") format("woff2");
	font-weight: bold;
	font-style: italic;
}

/* latin-ext */
@font-face {
	font-family: "Inconsolata";
	font-style: normal;
	font-weight: bold;
	src: url("../fonts/inconsolata/Inconsolata-Bold.woff2") format("woff2");
}

/* latin */
@font-face {
	font-family: "Inconsolata";
	font-style: normal;
	font-weight: normal;
	src: url("../fonts/inconsolata/Inconsolata-Regular.woff2") format("woff2");
}

.richTextDefault {
	/* font-family: "Open Sans";
	font-size: 16px; */
	line-height: 1;
}

td {
	word-break: break-word;
}

pro-weather-popup #forecastContainer .weatherIcon svg {
	height: 42px;
	width: 42px;
}

pro-weather-display #weatherContainer .weatherIcon svg {
	height: 60px;
	width: 60px;
}

pro-weather-display #forecastContainer .weatherIcon svg {
	height: 36px;
	width: 36px;
}

pro-weather-display #popupButton svg path {
	fill: inherit !important;
}

.displayNone,
.hideElement,
.reallyHideElement {
	display: none !important;
}

dialog {
	position: fixed;
	top: 50%;
	transform: translate(0, -50%);
}

#scrollContainer {
	overscroll-behavior: contain;
}

@-moz-document url-prefix() {
	#scrollContainer {
		scrollbar-color: var(--scrollbar-foreground) var(--scrollbar-background);
		scrollbar-width: var(--scrollbar-firefox-width, auto);
	}
}

#scrollContainer::-webkit-scrollbar,
#scrollContainer::-webkit-scrollbar-corner {
	display: none;
	background: var(--scrollbar-background);
	width: var(--scrollbar-width);
	height: var(--scrollbar-height);
	border-radius: var(--scrollbar-radius);
}

#scrollContainer::-webkit-scrollbar-thumb {
	background: var(--scrollbar-foreground);
	border-radius: var(--scrollbar-radius-thumb);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.buttonStyleResetPlayer {
	border: none;
	background-color: transparent;
	font-family: inherit;
	font-feature-settings: inherit;
	font-variation-settings: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}
