
@font-face {
	font-family: 'RF-v';
	src: url('/font/cms/rf_variable.ttf') format('truetype');
	font-optical-sizing: auto;
	font-weight: 100 1000;
	font-stretch: 25% 151%;
	font-style: normal;

	font-display: block;

	font-variation-settings:
		"slnt" -10 0,
		"wdth" 25 151,
		"GRAD" -200 150,
		"XOPQ" 27 175,
		"XTRA" 323 603,
		"YOPQ" 25 135,
		"YTAS" 649 854,
		"YTDE" -305 -98,
		"YTFI" 560 788,
		"YTLC" 416 570,
		"YTUC" 528 760;
}



/* layout /////////////////////////////////////////////////////////// */

:root {

	font-stretch: 100%;
	font-optical-sizing: none;
	font-optical-sizing: auto;
		
	--fontfamily:  "RF-v", "Segoe UI", Roboto, Helvetica, -apple-system, BlinkMacSystemFont, Arial, sans-serif;

	--maxpagewidth: 1550px;
	--menu-width: 16rem;
	
	--header-height: 5rem;	
	--header-height-max: 5rem;

	--accounts-menu-height: 2.5rem;

	--radius-box:  0.5rem;
	--radius-menu: 0.4rem;	
	--radius-button: 0.4rem;
	--radius-element: 0.3rem;
	--radius-small: 2px;

	--gap: 1.8rem;
	--gap-small: 0.9rem;
	--gap-small-negative: -0.9rem;
	--gap-medium: 1.2rem;
	--gap-big: 3rem;	
	
	--space: 1.8125rem;
	--space-small: 1.5rem;
	--space-medium: 1.5rem;
	--space-big: 3.6rem;

	--shadow1: 0px 1px 3px rgba(0,0,0,0.25);
	--shadow1: 0px 1px 4px rgba(0,0,0,0.2);
	--shadow2: 0px 1px 6px rgba(0,0,0,0.2);
	--shadow3: 0px 2px 4px rgba(0,0,0,0.3);
    --shadow-big: 0 2px 32px rgba(20, 20, 20, 0.08); 

	--maincolor: #e10c3c;

	--text-color: #333333;
	--gray-color: #6b6c71;	
	--light-color: #aeaeae;	
	--light-gray-color: #d1d1d1;		

	--defaultcolor: #1b94ac;
	--primarycolor: #cc336c;
	--secondarycolor: #9973b2;

	--wincolor: #6c9f3a;
	--lostcolor: #cc334d;
	--drawcolor: #0071c1;
	
	--goldcolor: #a8903c;
	--silvercolor: #848f9a;
	--bronzecolor: #9e856f;

	--green: #69a029;
	--blue: #4d71c2;
	--red: #d1168a;
	--orange: #db6f3b;
	--aqua: #1b94ac;
	--darkblue: #001e53;
	
	--panels-bg: #ffffff;
	--panels-bg-2: #ffffff;
	--header-bg: #ffffff;
	--panels-bg-dark: #f3f3f3;
	--footer-bg: #f7f7f7;
	
}
.darktheme{

	--maincolor: #ff446e;

	--text-color: #ffffff;
	--gray-color: #e6e6e8;
	--light-color: #909090;
	--light-gray-color: #515357;

	--defaultcolor: #15b3d2;
	--primarycolor: #cc336c;

	--wincolor: #68b31d;
	--lostcolor: #e21d3e;
	--drawcolor: #0071c1;

	--green: #25b325;
	--blue: #2472dc;
	--red: #dc1461;
	--orange: #db6f3b;
	--aqua: #1b94ac;
	--darkblue: #d9e7ff;

	--panels-bg: #23252a;
	--panels-bg-2: #2c2e33;
	--header-bg: #25272c;
	--panels-bg-dark: #424850;
	--footer-bg: #292b30;
}
.scrolled{
	--header-height: 4rem;				
}

@media (max-width:767px){
	:root {

		--gap: 1.5rem;
		--gap-medium: 1rem;
		--gap-small: 0.9rem;

		--space: 1.2rem;
		--space-small: 0.5rem;
		--space-medium: 1rem;
		--space-big: 2rem;

	}
}

html{
	width: 100%;
	height:100%;
	padding:0;
	margin:0;
	font-size: 3.8vw;
	background-color:#ffffff;
	color:#333333;
	
	scrollbar-gutter: auto;
	scrollbar-color: var(--light-color) var(--panels-bg-dark);
	scrollbar-width: thin;

}
html.darktheme{
	background-color: #171717;
	color: #f9f9f9;
	scrollbar-color: #959595 #18181b;
}

@media (orientation: landscape) and (max-width:767px){
	html{
		font-size: 1.8vw;
	}
}

.container {
	width: 100%;
	max-width: var(--maxpagewidth);

	position: relative;
	padding-left: 0;
	padding-right: 0;
}
.container:before,
.container:after{
	content: "";
	display: none;
}



@media (min-width: 768px){
	html{
		font-size: 1.1vw;
	}
	.container {
		width: 100%;
	}
}
@media (min-width: 992px){
	html{
		font-size: 1.1vw;
	}
	.container {
		width: 100%;
	}
}
@media (min-width: 1290px){
	.container {
		width: 100%;
	}
}
@media (min-width: 1455px){
	html{
		font-size: 16px;
	}
}
@media (max-width: 767px) {
	html {
		font-size: 3.65vw;
	}
}
@media (orientation: landscape) and (max-width: 767px) {
	html {
		font-size: 1.8vw;
	}
}


body{
	padding:0;
	margin:0;
	font-family: var(--fontfamily);
	font-weight: 300;
	font-style: normal;
    font-size: 0.875rem;
    line-height: 1.4;
	text-align: left;
	vertical-align: baseline;
	word-break: normal;
	width: 100%;
	min-height: 100svh;
	
	background-color: #ffffff;
	color: #333333;

}
body.darktheme{
	background-color: #202022;
	color: #f9f9f9;
}
@media (max-width:767px){
	body{
		font-size: 0.9rem;
		line-height: 1.34;
	}
}


.dark-bg{
	--text-color: #ffffff;
	--maincolor: #ffffff;
}

















.page-structure {
	display: grid;
	
	grid-template-columns: 1fr;
	

	grid-template-areas: 		
		"accounts accounts"	
		"header header"	
		"content content"	
		"footer footer";					
		
	grid-template-rows: auto auto 1fr auto;
	min-height: 100svh;
	width: 100%;
	max-width: 100%;
	overflow-wrap: break-word;
}
.user-logged .page-structure{

	--margin: calc((100% - var(--maxpagewidth)) / 2 + var(--menu-width));

	grid-template-columns: minmax(var(--menu-width), var(--margin)) auto;
	
	grid-template-areas: 		
		"accounts accounts"	
		"header header"	
		"side content"	
		"side footer";			
}

.page-structure > *{
	padding: 0rem;
	margin: 0;
	border: none;
	min-width: 0;
	min-height: 0;
}

#accountsMenu {
	grid-area: accounts;
}
#pageHeader {
	grid-area: header;
}	
#pageNav {
	grid-area: side;
}				
#pageContent {
	grid-area: content;
}						
#pageFooter {
	grid-area: footer;
}	

@media screen and (max-width:767px){
	.page-structure {
		grid-template-columns: 1fr;
		grid-template-areas: 		
			"accounts"	
			"header"
			"content"	
			"footer";
		grid-template-rows: auto auto 1fr auto;
	}
	.user-logged .page-structure{
		grid-template-columns: 1fr;
		grid-template-areas: 		
			"accounts"	
			"header"
			"side"	
			"content"	
			"footer";
		grid-template-rows: auto auto auto 1fr auto;
	}
}		





.bars-menu-icon{
	padding: 0.25rem 0.5rem 0.15rem 0.5rem;
	border: none;
	background: transparent;
	position: relative;
	display: flex;
	gap: 0.5rem;
	align-items: center;
	line-height: 1.15;
	height: 100%;
}
@media (max-width: 767px) {
	.bars-menu-icon.visible-xs {
		display: flex !important;
		height: auto;
		color: var(--text-color);
		padding: 0.5rem;
	}
}
.bars-menu-icon > span.icons{
	position: relative;
}
.bars-menu-icon i{
	color: inherit;	
	font-size: 1rem;
	line-height: 1;	
	transition: opacity 0.35s ease;						
}
.page-header .bars-menu-icon i{
	font-size: 1.5rem;
}

.bars-menu-icon > *{
	user-select: none;
	pointer-events: none;			

}
.bars-menu-icon .fa-times{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	opacity:0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bars-menu-icon.collapsed .fa-times,
.bars-menu-icon:not(.collapsed) .fa-bars{
	opacity:0;
}
.bars-menu-icon:not(.collapsed) .fa-times,
.bars-menu-icon.collapsed .fa-bars{
	opacity:1;
}




.nav-menu{
	position: absolute;
	top: 100%;
	left: 0px;
	right: 0px;
	max-height: calc(100vh - var(--header-height) - var(--accounts-menu-height));
	margin: 0;

	background: var(--panels-bg);
	color: var(--text-color);
	box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.3);
	border-radius: 0 0 0.5rem 0.5rem;
	--side-padding: 0.6rem;
	padding: 0;	
}
.nav-menu ul{
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.nav-menu span,
.nav-menu a{
	color: inherit;
	display: flex;
	gap: 0.5rem;
	padding: 0.35rem var(--side-padding) 0.3rem var(--side-padding);
	align-items: center;
	line-height: 1.2;
	border-radius: 0.3rem;
}
@media (max-width: 767px) {
	.nav-menu {
		font-size: 1rem;
	}
}

.nav-menu a:focus,
.nav-menu a:hover {
	background-color: #073e68;
	color: #ffffff;	
	text-decoration: none;	
}
.nav-menu i{
	font-size: 90%;
	line-height: 0.5;
}
.nav-menu .section {
	font-size: 1.15rem;
	font-weight: 100;
	line-height: 1.2;
	text-transform: none;
	letter-spacing: 0.04rem;
	padding-bottom: 0.4rem;
}
.nav-menu * + .section{
	padding-top: 1rem;
}

.nav-menu li.disabled {
	opacity: 0.64;
}
.nav-menu li small {
	display: block;
	padding: 0 0 0.45rem var(--side-padding);
	color: inherit;
	font-size: 0.72rem;
	line-height: 1.25;
	opacity: 0.64;
}

.menu-container {
	padding: 1rem 1rem 1rem 1rem;
	position: relative;
}
.menu-container > ul{
	position: relative;
	z-index: 2;
}
.menu-container:last-child {
	padding-bottom: 1.5rem;
}

.menu-container:before{
	position: absolute;
	content: "";
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-top: solid 1px rgba(255, 255, 255, 0.1);
	background-image: linear-gradient(197deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 1) 50%);
	
	border-top: solid 1px rgba(255, 255, 255, 0.02);
	background-image: linear-gradient(203deg, rgba(0, 0, 0, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
	
	
}
.menu-container-background:before {
	background-color: rgba(8, 5, 121, 0.1);
	background-blend-mode: hard-light;
	mask-image: none;	
	background-blend-mode: overlay;
}


.nav-menu .divider {
	display:none;
	height: 0rem;
	font-size: 0;
	line-height: 0;
	margin: 0.9rem 0 -0.7rem 0;
	border-top: 2px dotted #ffffff;
	opacity: 0.3;
	mask-image: linear-gradient(-90deg, transparent 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, transparent 100%);
}
.nav-menu h3 {
	margin: 0 0 0.35rem 0.8rem;
	xxcolor: var(--academy-panel-muted);
	font-size: 0.7rem;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}


.nav-menu.collapse {
	display:block;
	visibility: visible;
	opacity: 0;
	transition: opacity 0.35s ease, height 0.35s ease;
	user-select: none;
	pointer-events: none;
}
.nav-menu.collapse:not(.in) {
	height: 0 !important;
	overflow: hidden; 
}			
.nav-menu.collapsing{
	transition: opacity 0.35s ease, height 0.35s ease;
}
.nav-menu.collapse.in {
	visibility: visible;
	display: block;
	opacity: 1;
	overflow: auto; 
		pointer-events: all;
	
}
@media screen and (min-width:768px){
	.nav-menu{
		right: auto;
		left: var(--space-small);
		min-width: var(--menu-width);
		max-width: 25rem;
	}			
}





.accounts-menu{
	z-index: 1191;
	position: relative;
	background-color: #1b3a65;
	color: #ffffff;
	
	font-size: 0.8rem;
	line-height: 1;
}
.accounts-menu a{
	color: inherit;

	text-decoration: underline;
	text-decoration-color: transparent;	
	text-decoration-thickness: 2px;
	text-decoration-style: dotted;
	text-underline-offset: 3px;	
	
	text-decoration: none;	
	
}
.accounts-menu a:focus,
.accounts-menu a:hover {
	background-color: #073e68;
	color: inherit;	
	text-decoration: none;	
}


.accounts-nav.nav-menu{
	background: #76216b;
	color: #ffffff;	
}

.accounts-menu-container{
	display: flex;
	gap: 1rem;
	height: var(--accounts-menu-height);
	align-items: center;
	max-width: var(--maxpagewidth);
	margin: 0 auto;
	position: relative;
	padding: 0 var(--space-small);		
}
@media (max-width:767px){
	.accounts-menu-container{
		padding: 0 0.3rem 0 0;
	}
}
.accounts-menu-space{
	flex-grow: 1;
}

.accounts-title{
	font-weight: 300;
	font-size: 105%;
	line-height: 1.6;
}
.accounts-title span{
	xxcolor: #ff2a5a;
	font-weight: 600;
}





.profile-menu {
	display: flex;
	height: 100%;
	align-items: center;
}
.profile-menu > a{
	height: 100%;
	display: flex;
	height: 100%;
	align-items: center;
	padding: 0.2rem 0.5rem;
}
.profile-menu-nav.nav-menu{
	background: #20798c;
	color: #ffffff;			

}
@media screen and (min-width:768px){
	.profile-menu-nav.nav-menu{
		left: auto;
		right: var(--space-small);
	}			
}
	

.page-nav{
	z-index: 1189;
	padding: 0;
	position: sticky;
	border: none;
	top: var(--header-height);
	min-height: 0;
	height: 0;
	transition: top 0.2s ease;

}
.page-nav .nav-menu{
	background: #811a50;
	color: #fff;
}			

.page-nav a{
	color: inherit;
	text-decoration: none;	
}
.page-nav a:focus,
.page-nav a:hover {
	background-color: var(--defaultcolor);
	xxcolor: inherit;	
	text-decoration: none;	
}

.page-nav .active a,
.page-nav .active a:focus,
.page-nav .active a:hover {
	background-color: var(--primarycolor);
}


@media screen and (min-width:768px){
	.page-nav{
		display: block;
		height: auto !important;
		transition: none;
		background: #03223a;
		background: linear-gradient(55deg, #0e1d41 0%, #1e4171 100%);
		color: #ffffff;	
		
		
		background: linear-gradient(55deg, #0e1d41 0%, #1e4171 30%);
		color: #ffffff;
		background-origin: content-box;
		background-attachment: fixed;
		
		
	}
	.page-nav:before{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		content: "";

		background-color: #000000;
		background-image: url('/_images/common/halftone.png');
		background-position: top right;
		background-repeat: repeat-y;
		background-size: 35rem auto;
		mask-image: linear-gradient(45deg, rgb(0, 0, 0) 80%, transparent 100%);
		mask-origin: view-box;
		mix-blend-mode: multiply;
		opacity: 0.3;


		background-image: url('/_images/common/bg4.jpg');
		background-position: top left;
		background-repeat: no-repeat;
		background-size: contain;
		background-attachment: fixed;


		background-position: top left;
		background-repeat: no-repeat;
		background-size: contain;
		background-attachment: fixed;
		mix-blend-mode: soft-light;
		opacity: 0.1;
		
	}
	
	.page-nav .nav-menu.collapse:not(.in),
	.page-nav .nav-menu{
		display: block;
		position: sticky;
		top: var(--header-height);
		transition: top 0.2s ease;
		background: transparent;
		box-shadow: none;	
		opacity: 1;		
		visibility: visible;
		height: auto !important;
		margin: 0 0 0 auto;
		max-width: var(--menu-width);
		pointer-events: all;
		color:inherit;
		font-size: 0.8rem;
		max-height: unset;
		padding: 0;
		border-radius: 0;

		right: 0;
		left: 0;
		min-width: var(--menu-width);
		max-width: 100%;	
			
	}
	
	
	.page-nav .menu-container {
		padding: 1.2rem 1rem 1rem var(--space-small);
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	.page-nav .menu-container:last-child {
		padding-bottom: 3rem;
	}
	.page-nav .menu-container > ul{
		width: 100%;
		max-width: calc(var(--menu-width) - var(--space-small) - 1.5rem);
	}
	
	
	
}



.page-nav .academy-sidebar {
	--academy-panel-border: rgba(255, 255, 255, 0.22);
	--academy-panel-muted: rgba(255, 255, 255, 0.72);
}
.page-nav .academy-sidebar-academies {
	margin-top: 0.8rem;
	padding-top: 0.8rem;
	xxborder-top: 1px solid var(--academy-panel-border);
}









.page-header{
	z-index: 1190;
	position: sticky;
	top: 0;
	height: var(--header-height-max);
	pointer-events: none;	

	padding: 0rem;
	margin: 0;
	border: none;
}
.page-header-main{
	height: var(--header-height);
	pointer-events: none;
	background: var(--header-bg);
	box-shadow: var(--shadow1);		
	
	box-shadow: 0 2px 1.5rem rgba(0, 0, 0, 0.08);
	
	border-bottom: 1px solid var(--panels-bg-dark);
	transition: height 0.2s ease;
}
.page-header-container{
	height: var(--header-height);
	display: flex;
	gap: var(--gap-small);
	align-items: center;
	max-width: var(--maxpagewidth);
	margin: 0 auto;
	transition: height 0.2s ease;
	padding: 0 var(--space-small);	
	pointer-events: all;	
}


.page-header-logo a{
	display: block;
	margin-bottom: 1px;
	margin-left: 0.4rem;
}
.page-header-logo img{
	display: block;
	height: 3rem;	
}
@media screen and (min-width:768px){
	.page-header-logo img{
		display: block;
		height: 3.375rem;	
		
	}
}
body.darktheme .page-header-logo img{
	filter: invert(1) grayscale(1) contrast(0.7) brightness(1.9);
}

.logo:hover {
    xxborder-color: var(--maincolor);
    xxborder-width: 0 0 2px 0;
}
.logo:focus {
    xxborder-color: var(--maincolor);
    xxborder-style: solid;
    xxborder-width: 0 0 2px 0;
}



@media screen and (min-width:768px){
	.page-header-logo{
		width: calc(var(--menu-width) - var(--space-small) - var(--gap-small));
		display: block;
	}	
			
}
.page-header-content{
	flex-grow: 1;
	
}
.page-header-content h1.title{
	display: flex;
	flex-direction: column;
	font-size: 1.45rem;
	line-height: 1;
	gap: 1px;
	border-left: dotted 1px var(--light-gray-color);
	padding-left: var(--gap-small);
}
.page-header-content h1.title span{
	font-size: 0.65rem;
	font-weight: 450;
	color: var(--primarycolor);
	text-transform: uppercase;
}
@media screen and (min-width:768px){
	.page-header-content h1.title{
		font-size: 1.3rem;
	}
	.page-header-content h1.title span{
		font-size: 0.6rem;
	}
}




.page-header-second-logo{
	gap: 0.7rem;
	display: flex;
	max-height: 4rem;
	overflow: hidden;
	align-items: center;
	margin-left: 0.7rem;
}
.page-header-second-logo img{
	width: auto;
	height: 2.8rem;
}
.page-header-second-logo .headline{
	color: var(--light-color);
	font-size: 0.64rem;
	font-weight: 600;
}
.page-header-second-logo .title{
	margin: 0;
	font-size: 1.6rem;
	font-weight: 200;
	line-height: 0.8;
}






.page-content{
	background-color: var(--panels-bg);
	padding: 0;
}
.page-content-container{
	position: relative;
	z-index: 1;
}
.page-content-container .container{
	max-width: var(--maxpagewidth);
	margin: 0 auto;
	padding: var(--space);	
}	
@media screen and (min-width:768px){
	.page-content-container .container{
		width: 95%;
	}

}



.user-logged .page-content-container .container{
	max-width: calc(var(--maxpagewidth) - var(--menu-width));
	margin: 0 auto 0 0;
}

.page-content-background{
	background: #1e4171;
	background: linear-gradient(55deg, #0e1d41 0%, #1e4171 30%);
	background-origin: content-box;
	background-attachment: fixed;
}
.page-content-background:before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	z-index: 0;
	background-color: #000000;
	background-image: url('/_images/common/bg4.jpg');
	mask-image: linear-gradient(45deg, transparent 0%, rgb(0, 0, 0) 50%, transparent 100%);
	mask-origin: view-box;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	mix-blend-mode: soft-light;
	opacity: 0.15;
}

.page-content-background .page-content-container{
	background-color: var(--panels-bg);
	border-radius: var(--radius-box);
	box-shadow: var(--shadow1);
	padding: var(--gap-small);
}

.page-content-center{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: var(--gap);	
	
}
.page-content-center .page-content-container{
	min-width: 60%;
	max-width: 70rem;
}
.page-content-center .page-content-container  .container{
	padding: var(--space-small);
}


.content-header {
	padding: var(--gap-small) 0 var(--gap);
	margin: 0 0 var(--gap);
	border-bottom: 1px dotted var(--light-gray-color);
}

@media screen and (min-width:768px){
	.content-header h1{
		font-size: 2.3rem;
	}
}



.accounts-menu-container,
.page-header-container,
.page-content-container,
.footer-container{
	outline: solid 0px #ff248a;
	outline-offset: -2px;
}



/*  footer ///////////////////////////////////////////////////////////*/


.footer-container{
	max-width: var(--maxpagewidth);
	margin: 0 auto;	
	padding: 0 var(--space);	
}
.user-logged .footer-container{
	max-width: calc(var(--maxpagewidth) - var(--menu-width));
	margin: 0 auto 0 0;			
}

footer{
	padding:0rem;
	position:relative;
	line-height: 1.2;
	background-color: var(--footer-bg);
	padding-left: 0;
	padding-right: 0;
}
footer ul{
	list-style:none;
}

footer label{
	font-size: 0.7rem;
	margin-top: 0;
}

footer .btn{
	padding: 0.3rem 0.8rem 0.3rem 0.8rem !important;
	min-height: 2.3rem;
}
footer .form-control {
	padding: 0.35rem 0.7rem 0.25rem 0.7rem;
	min-height: 2.3rem;
}

.footer-boxes{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space);
	padding: 0.8rem 0;
}
.footer-boxes > *{
	flex-grow: 1;
}
.footer-menu {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	gap: 0.8rem;
	font-family: var(--fontfamily);
	font-weight: 500;
	font-size: 0.8rem;
	line-height: 1;
}
.footer-menu a:not(:focus):not(:hover):not(.active){
  color: inherit;
}
.footer-menu a{
	display: block;
    padding: 0.4rem 0;
    margin: 0;
}



.footer-menu a:not(:focus):not(:hover):not(.active){
  color: inherit;
}




.footer-box-main{
	min-width: 20rem;
    max-width: 23rem;
}


.footer-copyright{
	padding: 1rem 0rem 1.1rem 0rem;
	width: 100%;
	display: flex;
	gap: 0.45rem;
	justify-content: space-between;
	font-size: 0.75rem;
	align-items: center;
	font-weight: 500;
	font-stretch: 80%;
	font-family: var(--fontfamily);
	color: var(--light-color);
	line-height: 1;
	position: relative;
}
.footer-copyright:before{
	position: absolute;
	display: block;
	content: "";
	height: 0px;
	border-top: dotted 2px var(--text-color);
	opacity: 0.2;
	flex-grow: 1;
	min-width: 1rem;
	top: 0;
	left: 0;
	right: 0;
	transform: none;
	mask-image: linear-gradient(90deg, 
				transparent 0%, 
				rgba(0, 0, 0, 0.5) 20%, 
				rgba(0, 0, 0, 1) 50%, 
				rgba(0, 0, 0, 0.5) 80%, 
				transparent 100%);
}
.footer-copyright p{
	margin:0;
	padding: 0;
}







.footer-sponsors-grid{
	display:grid;
	gap: 0rem;
	margin: 0;
	grid-template-columns: 1fr;
	xxmargin-top: -0.3rem;
}


@media screen and (min-width: 768px){
	.footer-sponsors-grid{
		display:grid;
		grid-template-columns: 0.85fr 0.85fr 1.15fr 1.15fr;
	}

	.footer-sponsors-grid .footer-sponsors-box {
		grid-column: 1 / span 4;
	}
	.footer-sponsors-grid .footer-sponsors-box-big ~ .footer-sponsors-box {
		grid-column: 2 / span 3;
	}
	.footer-sponsors-grid .footer-sponsors-box:nth-child(5) {
		grid-column: 1 / span 4;
	}


	.footer-sponsors-grid .footer-sponsors-box-big:nth-child(2) ~ .footer-sponsors-box:nth-child(3) {
		grid-column: 3 / span 2;
	}
	.footer-sponsors-grid .footer-sponsors-box-big:nth-child(2) ~  .footer-sponsors-box:nth-child(4) {
		grid-column: 3 / span 2;
	}
	.footer-sponsors-grid .footer-sponsors-box-big:nth-child(2) ~  .footer-sponsors-box:nth-child(5) {
		grid-column: 2 / span 3;
	}
	.footer-sponsors-grid .footer-sponsors-box-big:nth-child(2) ~  .footer-sponsors-box:nth-child(6) {
		grid-column: 1 / span 4;
	}


	.footer-sponsors-grid .footer-sponsors-box-big {
		grid-column: 1 / span 1;
		grid-row: 1 / span 3;
	}
	.footer-sponsors-grid .footer-sponsors-box-big:nth-child(2) {
		grid-column: 2 / span 1;
		grid-row: 1 / span 2;
	}
}


.footer-sponsors {
	padding: 0;
	position: relative;
	z-index: 2;	
}

.footer-sponsors .flex-row{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    width: calc(100% + 1rem);
}
.footer-sponsors .flex-row > div {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    float: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-grow: 1;
}

.footer-sponsors .flex-row > .col-sm-9  .col-sm-3{
	width: 30%;
}
.footer-sponsors .flex-row > .col-sm-9  .col-sm-9{
	width: 70%;
}

.footer-sponsors .footer-sponsors-box{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	align-content: space-around;
	flex-grow: 1;
	gap: 0.5rem;

	overflow: hidden;
	border: none;
	margin: 0.3rem;
	padding: 1.2rem 0.5rem 0.5rem 0.5rem;
	
}

.footer-sponsors-title {
	text-transform: unset;
	background-color: transparent;
	left: 0;
	right: 0;
	top: 0rem;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-family: var(--fontfamily);
	color: var(--light-color);
	font-weight: 300;
	font-size: 0.9rem;
	z-index: 5;
	font-stretch: 100%;
	line-height: 1.2;
	position: absolute;
	overflow: hidden;
	letter-spacing: 0.04rem;
}
.footer-sponsors-title:before, 
.footer-sponsors-title:after {
	position: relative;
	display: block;
	content: "";
	height: 0px;
	border-top: dotted 2px var(--text-color);
	opacity: 0.2;
	flex-grow: 1;
	min-width: 1rem;
	left: 0;
	right: 0;
	transform: none;
}
.footer-sponsors-title:before {
	mask-image: linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
}
.footer-sponsors-title:after {
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
}








.footer-sponsors a{
    position:relative;
    z-index:1;
    text-decoration: none;
    border: none;
    display: inline-block;
    text-align: center;
    margin: 0.01rem;
    width: 9.4rem;
    padding: 0.8rem;
    border-radius: var(--radius-element);
    background-attachment: fixed;
    transition: background-color 0.3s ease;
    margin: 0;
	padding: 0.5rem 0.6rem;
}
body .footer-sponsors a img{
    width: 100%;
    height: auto;
    filter: saturate(0) contrast(0.6) brightness(0.9);
    opacity: 0.4;
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}
body.darktheme .footer-sponsors a img{
	filter: invert(1) grayscale(1) contrast(0.7) brightness(1.9);
}

.footer-sponsors-box-big a{
    width: 100%;
    max-width: 18rem;
}
.footer-sponsors-box-medium a,
.footer-sponsors-box a.medium{
    width: 100%;
    max-width: 15rem;
}


.footer-sponsors a:focus,
.footer-sponsors a:hover{
	background-color: #ffffff;
	text-decoration: none;
    transition: background-color 0.3s ease;
}
body .footer-sponsors a:focus img,
body .footer-sponsors a:hover img{
    filter: saturate(1);
    opacity: 1;
}
.footer-sponsors a:focus {
    z-index:2;
}

@media screen and (max-width:767px){
	.footer-boxes {
		flex-wrap: wrap;
    }
	.footer-box-main > *{
		padding:0.5rem 0;
	}
	.footer-menu {
		flex-direction: column;
		margin-bottom: 0.5rem;
		padding:0rem;
	}
	.footer-copyright {
		flex-direction: column;
	}
	.footer-sponsors-box a{
		width: 30%;
		max-width: 9rem;
	}
	.footer-sponsors-box-big a{
		width: 50%;
		max-width: 11rem;
	}
	.footer-sponsors-box-medium a,
	.footer-sponsors-box a.medium{
		width: 50%;
		max-width: 10rem;
	}	
	body .footer-sponsors-box a img{
		max-width: 9rem;
	}
	body .footer-sponsors-box-big a img{
		max-width: 9rem;
	}
	.footer-sponsors .flex-row > .col-sm-9  .col-sm-3{
		width: 100%;
	}
	.footer-sponsors .flex-row > .col-sm-9  .col-sm-9{
		width: 100%;
	}
}





















.theme-change > span{
	display:block;
	font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    line-height: 1;
    width: 2.2rem;
    height: 1.1rem;
    padding: 0 !important;
    overflow: hidden;
    background: #fba200;
    position: relative;
    border: none !important;
    border-radius: 0.6rem !important;
}
.theme-change > span > span{
	position:absolute;
	display: block;
	transition: all 0.25s ease;
}
.theme-change .day:before {
    content: "☀";
    font-size: 0.91rem;
    font-weight:900;
}
.theme-change .night:before {
    content: "\f186";
}
.theme-change .day {
	top: 0.05rem;
    left: 0.12rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    opacity: 1;
}
.theme-change .night {
	top: 0.2rem;
    right: 1.2rem;
    font-size: 0.78rem;
    color: #5da0ff;
    opacity: 0;
    transform: rotate(235deg);
}
body.darktheme .theme-change > span{
    background:#0d3f89;
}
body.darktheme .theme-change .day {
    left: 1.1rem;
    opacity: 0;
}
body.darktheme .theme-change .night {
    right: 0.2rem;
    opacity: 1;
}


font[class]{
	background-color: transparent !important;
	box-shadow: none !important;
}

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

@keyframes blink-animation {
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
}
@keyframes nextdown{
	0% {transform: translateY(0px);}
	10%{transform: translateY(10px);}
	20%{transform: translateY(0px);}
	30%{transform: translateY(10px);}
	40%{transform: translateY(0px);}
	100%{transform: translateY(0px);}
}
@keyframes point-right-animation{
	0% {left: 0.3em;}
	60%{left: 0.3em;}
	70%{left: 1em;}
	80%{left: 0.3em;}
	90%{left: 1em;}
	100%{left: 0.3em;}
}
@keyframes point-down-animation{
	0% {top: 0em;}
	60%{top: 0em;}
	70%{top: 0.4em;}
	80%{top: -0.4em;}
	90%{top: 0.4rem;}
	100%{top: 0em;}
}

@keyframes point-pulse-animation{
	0% {scale: 1;}
	60%{scale: 1;}
	70%{scale: 1.2;}
	80%{scale: 0.8;}
	90%{scale: 1.2;}
	100%{scale: 1;}
}

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

.tooltip-icon{
	cursor: help;
}
.game-date .tooltip-icon{
	font-size: 0.8em;
	line-height: 1;
	display: inline-block;
	position: relative;
	top: -0.1em;
	opacity: 0.7;

}

scriptconfiguration {
    display: none;
}


.flex{
	display:flex;
}
.flex-middle{
	align-items: center;
}
.flex-center{
	justify-content: center;
}
.row {
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items:stretch;
	align-content:stretch;

	margin-left: var(--gap-small-negative);
	margin-right: var(--gap-small-negative);
}

.row:before,
.row:after{
	display:none !important;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2,
.col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4,
.col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6,
.col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8,
.col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10,
.col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
	float:none;
	padding-left: var(--gap-small);
	padding-right: var(--gap-small);
}


@media (min-width: 768px){
	.col-sm-9 {
		xxwidth: 74.8%;
	}
	.col-sm-3 {
		xxwidth: 25.2%;
	}
}
.row-0{
	margin-left: 0rem;
	margin-right: 0rem;
}
.row-0 > *{
	padding-left: 0rem;
	padding-right: 0rem;
}

.row-1{
	margin-left: -0.5rem;
	margin-right: -0.5rem;
}
.row-1 > *{
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}


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


p{
	margin:0;
	position:relative;
	color: inherit;
}
* + p{
	margin-top: 1rem;
}
p + *{
	margin-top: 1rem;
}
p + p{
	margin-top: 1rem;
}

.content p{
	xxtext-align: justify;
	text-align: inherit;
	word-break: break-word;
}
@media (max-width:767px){
	.content p{
		text-align: left;
	}
}

* + p.small{
	margin-top: 0.4rem;
}




h1, h2, h3, h4, h5, h6{
	font-style: normal;
    color: inherit;
    padding: 0;
    margin: 0;
    text-align: inherit;
    position: relative;
    line-height: 1.1;
    font-stretch: 100%;
}
h1{
	font-size: 2rem;
	line-height:1.1;
	font-weight: 200;
}
h2{
	font-size: 1.8rem;
	font-weight: 210;
	line-height:1.1;	
}
h3{
	font-size: 1.6rem;
	font-weight: 220;
}
h4{
	font-size: 1.4rem;
	font-weight: 230;
}
h5{
    font-size: 1.2rem;
    font-weight: 240;
}
h6 {
	font-size: 1.1rem;
	font-weight: 250;
}

h1 + *,
h2 + *,
h3 + *,
h4 + *,
h5 + *,
h6 + *{
	margin-top: 1.2rem;
}

* + h2,
* + h3,
* + h4,
* + h5,
* + h6{
	margin-top:2rem;
}

h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i{
	color: var(--defaultcolor);
	opacity: 1;
	font-size: 100%;
}



@media screen and (max-width:767px){

	h1,h2,h3,h4,h5,h6{
		line-height: 1.05;
	}
	h1{
		font-size: 1.7rem;
	}
	h2{
		font-size: 1.5rem;
	}
	h3{
		font-size: 1.35rem;
	}
	h4{
		font-size: 1.2rem;
	}
	h5{
		font-size: 1.1rem;
		line-height: 1.24;
	}
	h6 {
		font-size: 0.8rem;
		line-height: 1.34;
	}
}

.eyebrow{
	margin-bottom: 0.2rem;
	color: var(--light-color);
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}
.eyebrow + *{
	margin-top: 0;
}





h3.small{
	font-size: 1.3rem;
}

small, .small {
	font-size: 85%;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small,
.h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small,
h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small,
.h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: inherit;
    opacity: 0.8;
}




.circled{
	background: var(--maincolor);
	color: var(--panels-bg);
	border-radius: 50%;
	display: inline-flex;
	padding: 0;
	margin: 0.5rem;
	min-width: 2.8rem;
	width: 2.8rem;
	height: 2.8rem;
	text-align: center;
	position: relative;
	z-index: 2;
	justify-content: center;
	align-items: center;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1;
}
@media screen and (max-width:767px){
	.circled{
		xxmargin: 1rem;
	}
}


.col-center{
	position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow:hidden;
}
.col-center:before{
	position:absolute;
	z-index:1;
	content:"";
	top:0;
	left:50%;
	bottom:0;
	right: 50%;	
	border-left:dotted 1px rgba(100,100,100,0.3);
}
@media screen and (max-width:767px){
	.col-center:before{
		top: 50%;
		left: 0;
		bottom: 50%;
		right: 0;
		border-left: none;
		border-top: dotted 1px rgba(100,100,100,0.3);
	}
}

.full-height{
	display: flex;
	flex-direction: column;
}
.full-height-left{
	align-items: flex-start;
}
.full-height .full-height-item{
	flex-grow: 1;
}

*.title{
	font-size: 1.1rem;
	xxline-height: 1.2;
	xxdisplay: flex;
	xxgap: 0.5rem;
}
*.title i{
	opacity: 0.7;
}


*.narrow{
	font-stretch: 75%;
	font-weight: 500;
}
*.inherit{
	color: inherit !important;
}
.relative{
	position:relative;
}


.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

blockquote {
    font-size: inherit;
    font-style: italic;
    border-left: 4px solid var(--maincolor);
    margin: 2rem 0 0 0;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    background: #f7f7f7;
    position: relative;
    border-radius: var(--radius-menu);
}
blockquote + *{
	margin-top: 2rem;
}
blockquote:before {
    font-family: var(--fontfamily);
    content: "ˮ";
    position: absolute;
    top: 2.2rem;
    left: 0.4rem;
    opacity: 0.3;
    font-size: 5.3rem;
    line-height: 0.5;
}
blockquote footer{
    display: block;
    font-size: 80%;
    line-height: 1.4;
    color: inherit;
    background: none;
}
blockquote footer:before{
    content: '';
}
code, kbd, pre, samp {
    font-family: var(--fontfamily);
    font-family: monospace;
}
code {
	display: inline-block;
	padding: 0rem 0.4rem;
	font-size: 90%;
	color: inherit;
	background: var(--panels-bg-dark);
	border-radius: var(--radius-small);
}
kbd {
	padding: 0rem 0.5rem;
	font-size: 90%;
	color: var(--panels-bg);
	background-color: var(--text-color);
	border-radius: var(--radius-small);
}
.tag{
	display: inline-block;
	padding: 0rem 0.5rem;
	font-size: 90%;
	color: #ffffff;
	background-color: var(--maincolor);
	border-radius: var(--radius-small);
}
.content * + .tag{
	margin-top:1rem;
}


pre {
    display: block;
    padding: 1rem;
    font-size: 100%;
    line-height: inherit;
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
	color: var(--text-color);
	background: var(--panels-bg-dark);
    border: none;
    border-radius: var(--radius-menu);
    font-size: 0.85em;
	font-weight: 500;
	line-height: 1.3;
}

.box-link {
    font-size: inherit;
    border-left: 4px solid var(--maincolor);
    margin: 2rem 0;
    padding: 1rem 1.5rem 1rem 3.5rem;
    background: #f7f7f7;
    position: relative;
    border-radius: var(--radius-menu);
}
.box-link a{
	font-weight: 600;
	font-size:1em;
}
.box-link:before {
    font-family: var(--fontfamily);
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f06a";
    position: absolute;
    top: 1rem;
    left: 0.9rem;
    color: var(--maincolor);
    font-size: 1.5rem;
    line-height: 1;
}

body.darktheme .box-link,
body.darktheme blockquote,
body.darktheme code,
body.darktheme pre{
    background: #191919;
}


.number{
	font-family: var(--fontfamily);
	font-weight: 400;
}


.number.win{
	color: var(--wincolor);
}
.number.lost{
	color: var(--lostcolor);
}
.number.draw{
	color: var(--drawcolor);
}
.number.gs.win{
	color: #a7a07f;
}

p.desc{
	font-size: 0.75rem;
	line-height: 1.2;
	font-weight: 260;
	margin-top: 0.3rem;
}

* + *.sub-title {
	margin-top: 0.4rem;
    font-size: 1rem;
}

img[style*="float"] + p{
	margin-top:0;
}

:focus {
	outline: 0;
}
a,
a.box-link *,
body .ui-widget-content .ui-datepicker-buttonpane > button,
.btn{
	transition: color 0.25s ease,
				background-color 0.25s ease,
				border-color 0.25s ease,
				text-decoration 0.25s ease,
				outline-color 0.25s ease;
}
a,
a:focus{
	color: var(--maincolor);
    outline: none;
    text-decoration: underline;
    text-decoration-thickness: 1px;
	text-decoration-color: transparent;	
	text-underline-offset: 1px;
}

a:hover,
a:focus{
	color: var(--maincolor);
	text-decoration-color: var(--maincolor);
}

a.more,
a.back{
    text-decoration:none;
    border-bottom: 2px solid transparent;
}
a.more:hover,
a.more:focus,
a.back:hover,
a.back:focus{
    border-color: var(--maincolor);
}

h1 a:not(:focus):not(:hover),
h2 a:not(:focus):not(:hover),
h3 a:not(:focus):not(:hover),
h4 a:not(:focus):not(:hover),
h5 a:not(:focus):not(:hover),
h6 a:not(:focus):not(:hover){
    color: inherit;
}
.content p a{
	font-weight:500;
}
a[id]:empty,
a[name]:empty{
	height:20px;
	position:absolute;
	left:0;
	top:-15vw;
}

.button-link{
	padding: 0.4rem 0.5rem;
    font-size: 1rem;
    line-height: 1;
    border: solid 2px transparent;
    border-radius: var(--radius-element);
    display: inline-block;
    overflow: hidden;
}
.button-link img{
	vertical-align:unset;
	width: 2.05rem;
}
.button-link:hover{
	border-color: var(--maincolor);
}
.button-link:focus{
	border: solid 2px var(--maincolor);
	color:var(--maincolor);
}
.button-white:hover{
	border-color: #ffffff;
}
.button-white:focus{
	border: solid 2px #ffffff;
	color:#ffffff;
}

button{
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.anchor {
    position: absolute;
    top: 0rem;
    font-size: 0;
    line-height: 0;
    height: 0;
    display: block;
}
a.anchorlink:empty {
    position: absolute;
    top: -2.6rem;
    font-size: 0;
    line-height: 0;
    height: 0;
    display: block;
}





sub, sup {
	font-size: 83%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.3em;
}

i,em{
	font-weight: normal;
	font-style: italic;
}
.bold,b,strong{
	font-weight: 500;
	font-style: normal;
}
b i,b em
strong i,strong em,
i b,em b,
i strong,em strong{
	font-weight: 660;
	font-style: italic;
}





ul,ol{
	margin:0;
	padding:0;
	line-height: 1.3;
}
li{
	margin:0;
	padding:0;
}
ol.numbered-list,
ul:not([class]),
ol:not([class]){
	padding:0 0 0 1.4rem;
	position:relative;
}

ul[type="none"]{
	padding:0 0 0 0rem;
}

ul:not([class]):not([style]) > li::marker {
    letter-spacing: -0.01rem;
    font-weight: 500;
    color: var(--maincolor);
}
ol:not([class]):not([style]) > li::marker {
    letter-spacing: -0.01rem;
    font-stretch: 90%;
    font-weight: 500;
    color: var(--maincolor);
}
ol[type="I"]:not([class]):not([style]) > li::marker {
	font-weight: 500;
	font-size: 1.1rem;
}
ul:not([class]) > li,
ol:not([class]) > li{
	position:relative;
}
ul:not([class]) > li + li,
ol:not([class]) > li + li{
	margin-top: 1rem;
}

ul:not([class]) > li:last-child,
ol:not([class]) > li:last-child{
	xxmargin-bottom: 1rem;
}

* + ul:not([class]),
* + ol:not([class]){
	margin-top:2rem;
}

ul:not([class]) ul:not([class]),
ul:not([class]) ol:not([class]),
ol:not([class]) ol:not([class]),
ol:not([class]) ul:not([class]){
	margin-top:1rem;
	padding: 0 0 0 1rem;
	
}
ul:not([class]) + ul:not([class]),
ul:not([class]) + ol:not([class]),
ol:not([class]) + ol:not([class]),
ol:not([class]) + ul:not([class]){
	margin-top:1rem;
	
}

.container.content .embed-responsive{
	clear:both;
	margin-bottom: 1.2rem;
    border-radius: var(--radius-box);
    box-shadow: var(--shadow1);
    background: rgba(180,180,190,0.2);

}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.nowrap {
    white-space: nowrap !important;
}


.max-embed .embed-responsive.embed-responsive-16by9{
	display: flex;
	flex-direction: row;
	position: relative;
	width: 100%;
	height: 53vw;
	max-height: calc(100vh - 10rem);
	min-height: 22rem;
	overflow-x: clip;
	background: #000;
	padding: 0 !important;
}

.short-bg{
	background: rgba(160,160,160,0.2);
}
.short-embed{
	max-width: 27rem;
	margin-left: auto;
	margin-right: auto;
}
.short-embed .embed-responsive.embed-responsive-16by9{
	padding-bottom: 178% !important;
}



.clr {
	font-size: 0px;
	line-height: 0;
	height: 0px;
	clear: both;
	margin: 0 !important;
	padding: 0 !important;
}

hr{
	border-top: dotted 2px var(--text-color);
	opacity: 0.2;
	mask-image: linear-gradient(90deg, 
				transparent 0%, 
				rgba(0, 0, 0, 0.5) 10%, 
				rgba(0, 0, 0, 1) 50%, 
				rgba(0, 0, 0, 0.5) 90%, 
				transparent 100%);
}
.hr{
	line-height:0;
	margin:var(--space) 0 !important;
	position: relative;
	border-top: dotted 2px var(--text-color);
	opacity: 0.2;
	mask-image: linear-gradient(90deg, 
				transparent 0%, 
				rgba(0, 0, 0, 0.5) 10%, 
				rgba(0, 0, 0, 1) 50%, 
				rgba(0, 0, 0, 0.5) 90%, 
				transparent 100%);
	
}
.hr.medium{
	margin:1rem 0 !important;
}
.hr.small{
	margin:0.5rem 0 !important;
}
.hr.color{
	border-top-color: var(--maincolor);
}

.full{
	width:100%;
}
.no-margin{
	margin:0 !important;
}
.no-margin-top{
	margin-top:0 !important;
}
.upper-case{
	text-transform:uppercase;
}
.no-padding{
	padding:0 !important;
}

.space{
	height:3rem;
	font-size: 0px;
	line-height: 0;
	margin: 0 !important;
}
.space-tiny{
	height:1rem;
}
.space-small{
	height:1.5rem;
}
.space-medium{
	height:2rem;
}
.space-big{
	height:5rem;
}
.space + *{
	margin-top:0;
}
@media screen and (max-width:767px){
	.space{
		height:2rem;
	}
	.space-tiny{
		height:0.5rem;
	}
	.space-small{
		height:1rem;
	}
	.space-medium{
		height:1.5rem;
	}
	.space-big{
		height:3rem;
	}
}

figure {
	display:inline-block;
	padding: 0px;
	position:relative;
	line-height:0;
	max-width:100% !important;
	height:auto  !important;
	z-index:2;
}
figure img {
	width:100% !important;
	height:auto  !important;
	line-height:0;
	display:inline-block !important;
	border-radius:var(--radius-box);
	box-shadow: var(--shadow1);
}
figure.img-responsive img{
	box-shadow: var(--shadow1);
	background: rgba(180,180,190,0.2);
	background: rgba(150, 150, 160, 0.3);
}

figure figcaption{
    font-size: 0.73rem;
    line-height: 1.25;
    font-weight: 500;
    opacity: 0.8;
    padding: 0.5rem 0;
}
figure aside{
    display: block;
    font-size: 0.68rem;
    line-height: 1.25;
    font-weight: 600;
    position: absolute;
    bottom: 0.5rem;
    z-index: 3;
    padding: 0.34rem 0.5rem;
    background: rgba(0,0,0,0.6);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border-radius: var(--radius-element);
    right: 0.5rem;
    max-width: calc(100% - 1rem);
    text-align: right;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.content figure{
	margin-bottom: 1.2rem;
}
.content p figure {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.content figure aside{
	bottom:auto;
    margin-top: -2rem;
}

@media (max-width: 767px) {
	figure figcaption,
	figure aside{
		font-size: 0.5rem;
		font-weight: 500;
		max-width:calc(100% - 1rem);
	}
	figure figcaption {
		bottom:auto;
		top:0.5rem;
	}
	figure aside{
		right: auto;
		left: 0.5rem;
	}
	.content figure aside {
		bottom: auto;
		margin-top: -1.7rem;
	}
	.content p figure {
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
}
figure[style*="float:right"] figcaption,
figure[style*="float: right"] figcaption{
	text-align:right;
}
figure[style*="float:left"] figcaption,
figure[style*="float: left"] figcaption{
	text-align:left;
}
.wysiwygmap,
.wgimage{
	max-width:99.99%;
	xxmargin-bottom:2rem;
}
.wgimage.wgimage-right{width:40% !important;float:right;margin-left: 2rem;}
.wgimage.wgimage-left{width:40% !important;float:left;margin-right: 2rem;}
.wgimage.wgimage-full{width:100% !important;}


.wgimage.wgimage-right + *,
.wgimage.wgimage-left + *{
	margin-top:0;
}

@media (max-width: 767px) {
	.wgimage.wgimage-right,
	.wgimage.wgimage-left,
	.wgimage,
	figure{
		width:100% !important;
		max-width: 100% !important;
		height:auto !important;
		margin-left:0 !important;
		margin-right:0 !important;
		padding:0 !important;
		float:none  !important;
	}

}
/* form ///////////////////////////////////////////////////////////*/

.form-control {
	border-radius: var(--radius-element);
    display: block;
    color: inherit;
    background: rgba(255,255,255,0.9);
    border: 2px solid rgba(210,210,210,0.2);
    border: 2px solid #f9f9f9;
    width: 100%;
    height: auto;
    padding: 0.5rem 1rem 0.45rem 1rem;
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 450;
    min-height: 2.6rem;
    transition: background-color ease-in-out 0.01s, border-color ease-in-out 0.3s, box-shadow ease-in-out 0.3s;
    outline: 0;
    box-shadow: var(--shadow1);

    border: 1px solid rgba(180,180,180,0.8);
    box-shadow: none;
}

.form-control[disabled], 
.form-control[readonly], 
fieldset[disabled] .form-control {
	background-color: var(--panels-bg-dark);
	color: var(--light-color);
	border-color: var(--light-gray-color);
	opacity: 1;
}

label > .form-control{
	margin-top:0.1rem;
}
.darktheme .form-control {
    background: rgba(30,30,30,0.7);
    border-color: #4a4a4a;
    color-scheme: dark;
}


input[type="date"].form-control, 
input[type="time"].form-control, 
input[type="datetime-local"].form-control, 
input[type="month"].form-control {
	line-height: inherit;
}

select.form-control option {
    white-space: nowrap;
    font-size: 0.89rem;
}
textarea.form-control{
	min-height: 8rem;
    max-width: 100%;
    min-width: 100%;
}
.form-control::placeholder {
    color: inherit;
    opacity: 0.4;
    font-size: 0.91rem;
    font-weight: 450;
}

.form-control:focus {
    outline: 0;
    box-shadow: var(--shadow1);
    border-color: var(--maincolor);
    
	border-color: var(--defaultcolor);
	box-shadow: 0 0.1rem 1.0rem rgba(20, 20, 20, 0.08);
    
}

input.form-control:autofill{
	box-shadow: inset 0 0 0 1000px #ffffff;
    -webkit-text-fill-color: #555555;
    transition: background-color 5000s ease-in-out 0s, border-color ease-in-out 0.3s, box-shadow ease-in-out 0.3s;
}
.darktheme input.form-control:autofill{
	box-shadow: inset 0 0 0 1000px #1f1f1f;
    -webkit-text-fill-color: #eeeeee;
}

input.form-control:autofill:focus {
	outline: 0;
	box-shadow: var(--shadow1);
	border-color: var(--maincolor);
}


.form-control:not(:required):invalid{
	box-shadow: var(--shadow1);
    border-color: #eb1526;
}
.form-control.formErrorMark,
.form-control.formErrorMark:required {
	box-shadow: var(--shadow1);
	border-color: #eb1526;
}
.checkbox input.formErrorMark{
	box-shadow: var(--shadow1);
    background: #eb1526;
}




label,.label {
	font-size: 0.75rem;
	line-height: 1.2;
	color: inherit;
	font-weight: 600;
	margin: 0.2rem 0 0.1rem 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
label .small{
	line-height:1.4;
}
.radio, .checkbox {
    position: relative;
    display: block;
    margin: 0;
}
.radio + .radio, .checkbox + .checkbox {
    margin-top: 0.5rem;
}
label + .radio, label + .checkbox {
    margin-top: 0.7rem;
}


.radio label,
.checkbox-inline label,
.checkbox label {
	min-height: 0rem;
    padding-left: 0;
    margin: 0.2rem 0 0.1rem 0;
    font-weight: 450;
    cursor: pointer;
	align-items: flex-start;
	flex-wrap: nowrap;
	line-height: 1.2;
	text-align: left;
	font-size: 0.8125rem;
}


input[type='radio'],
input[type='checkbox'],
.radio input[type='radio'],
.radio-inline input[type='radio'],
.checkbox input[type='checkbox'],
.checkbox-inline input[type='checkbox']{
    -webkit-appearance: none;
    -moz-appearance: none;

	position: relative;
	
    margin: 0.05rem 0.5rem 0 0;
    
    vertical-align: top;
    
    width: 0.8rem;
    min-width:0.8rem;
    height: 0.8rem;
    
    line-height: 1.2;
    border: 2px solid var(--maincolor);
    border: 1px solid var(--defaultcolor);
    background: transparent;
    border-radius: var(--radius-small);
	outline: 1px solid transparent;
    outline-offset: 1px;
    cursor:pointer;
    

    
    transition: color 0.25s ease,
				background-color 0.25s ease,
				border-color 0.25s ease,
				outline-color 0.25s ease;

}

input[type='radio'],
.radio input[type='radio'],
.radio-inline input[type='radio']{
	border-radius: 50%;
    box-shadow: inset 0px 0px 0px 2px var(--panels-bg);	
}

.btn input[type='checkbox']{
	border-color:#ffffff;
}
.btn:hover input[type='checkbox']{
	border-color: inherit;
}

input[type='radio']{
	border-radius:50%;
}
input[type='checkbox']:checked:after {
	font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    line-height: 0;
    font-size: 0.6rem;
    position: absolute;
    color: #ffffff;
    top: 0.01rem;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    transform: scaleX(0.95);
    content: "\f00c";
    align-items: center;
    justify-content: center;
}
input[type='radio']:checked,
input[type='checkbox']:checked{
	background: var(--defaultcolor);
	xxbackground: var(--light-color);
}
input[type='radio']:focus,
input[type='checkbox']:focus,
input[type='radio']:active,
input[type='checkbox']:active {
    outline: 1px solid var(--defaultcolor);
    xxoutline: 1px dotted var(--light-color);
    outline-offset: 1px;
}


.input-big .radio label,
.input-big .checkbox label {
	font-weight: 400;
	line-height: 1.2;
	font-size: 0.875rem;
}
.input-big .radio input[type='radio'],
.input-big .checkbox input[type='checkbox']{
	margin: -0.1rem 0.6rem 0 0.1rem;
	width: 1.1rem;
	min-width: 1.1rem;
	height: 1.1rem;
	line-height: 1.1;
	border-width: 2px;
}
.input-big .checkbox input[type='checkbox']{
	border-radius: 3px;
}
.input-big input[type='checkbox']:checked:after {
	font-size: 0.8rem;
	top: -0.015rem;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	transform: scaleX(1);
}

.input-big .radio + .radio, 
.input-big .checkbox + .checkbox ,
.input-big .radio + .checkbox, 
.input-big .checkbox + .radio {
	margin-top: 1rem;
}






.checkbox.agree label {
	font-size:0.8em;
}
.checkbox.agree  input[type='checkbox'] {
	margin-top: -0.05rem;
}

input[type="radio"][disabled], 
input[type="checkbox"][disabled], 
input[type="radio"].disabled, 
input[type="checkbox"].disabled, 
fieldset[disabled] input[type="radio"], 
fieldset[disabled] input[type="checkbox"] {
	cursor: not-allowed;
	border: 1px solid var(--light-gray-color);
	outline: 1px solid transparent;
}
input[type='radio'][disabled]:checked, 
input[type='checkbox'][disabled]:checked 
input[type="radio"].disabled:checked, 
input[type="checkbox"].disabled:checked, 
fieldset[disabled] input[type="radio"]:checked, 
fieldset[disabled] input[type="checkbox"]:checked{
	background: var(--light-color);
}








label > div,
label > p{
	margin:0 !important;
	display: inline;
}
label h5{
	top: -0.2rem;
}

label p + p {
    margin-top: 0.5rem;
}

fieldset{
	border: solid 1px var(--light-gray-color);
	margin: 0;
	border-radius: var(--radius-box);
	background: var(--panels-bg-2);
	box-shadow: var(--shadow-big);
	
	padding: var(--gap-small);
	padding-top: calc(var(--gap-small) - 0.2rem);	
}

fieldset.input-big{
	padding: var(--gap-medium);
	xxpadding-top: calc(var(--gap-medium) - 0.2rem);
}

* + fieldset{
	margin-top: 1.2rem;
}
fieldset + *{
	margin-top: 2rem;
}

fieldset + fieldset{
	margin-top: 1rem;
}

legend {
	--legend-color: #966fad;
	display: inline;
	width: auto;
	margin-bottom: 0;
	font-size: 0.8rem;
	letter-spacing: 0.01rem;
	line-height: 1.2;
	font-weight: 500;
	background: var(--legend-color);
	color: var(--panels-bg);
	border: none;
	padding: 0.2rem 0.6rem 0.2rem 0.6rem;
	margin-left: -0.1rem;
	position: relative;
	outline: solid 2px var(--legend-color);
	outline-offset: -1px;
	border-radius: 0.2rem;
	box-sizing: content-box;
	xxbackground-color: var(--panels-bg-2);
	xxcolor: var(--text-color);
	
}
.darktheme legend{
	--legend-color: #ba8cd4;
}

legend:before {
	content: "";
	border: solid 0px var(--legend-color);
	border-radius: 0.3rem 0.3rem 0 0;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 50%;
	border-bottom: none;
}
.input-big legend{
	margin-left: -0.2rem;
	padding: 0.5rem var(--gap-small) 0.4rem var(--gap-small);
	font-size: 0.875rem;
	letter-spacing: 0.02rem;
	line-height: 1.3;
	border-radius: 0.4rem;
}
.help-block {
	display: block;
	margin: 0;
	color: var(--gray-color);
	font-weight: 400;
	font-style: normal;
	font-size: 0.9rem;
	line-height: 1.2;
}
* + .help-block{
	margin-top: var(--gap-medium);
}
.help-block + *{
	margin-top: var(--gap-medium);
}

legend + .help-block{
	margin-top: -0.3rem;	
}


.legend{
	font-family: var(--fontfamily);
	font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.1;
    margin-top: 0.5rem !important;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
}
.legend > p {
    margin: 0;
    padding: 0.3rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.legend > p + p{
	border-top: dotted 1px rgba(140,140,140,0.3);
}
.legend > p > span {
	display: block;
    width: 0.9rem;
    height: 0.9rem;
    border: solid 0px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-small);
    margin-right: 0.5rem;
    box-shadow: var(--shadow1);
}

.required{
	color:#da1017;
}

.special-input{
	position:relative;
	flex-grow: 1;
}
.special-input input {
    padding-right: 0.3rem;
}
.special-input span {
    pointer-events: none;
    cursor: pointer;
    z-index: 1;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 1.2rem;
    color: var(--maincolor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: 600;
    margin: 3px;
    border-radius: var(--radius-element);
}

.special-select{
	position:relative;
	flex-grow: 1;
}
.special-select select[style*="none"]{
	position: relative;
	z-index: 2;
	display: block !important;
	box-shadow: none;
	border: none;
	font-size: 0;
	line-height: 0;
	background: #ffffff;
	pointer-events: none;
	appearance: none;
}
.special-select .form-control{
	padding-right: 1rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor:pointer;
}
.special-select:after{
	content: "\f078";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    pointer-events: none;
    cursor: pointer;
    z-index: 1;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    border-radius: 0 var(--radius-element) var(--radius-element) 0;
    color: var(--maincolor);
}
.special-radio + .special-radio{
	margin-top:1.5rem;
}
.special-radio label{
	font-size: 1.1rem;
    line-height: 1.3rem;
    padding-left: 0;
    font-weight: 400;
    cursor: pointer;
    margin: 0;
}
.special-radio label span{
	display: flex;
    align-items: center;
}
.special-radio input[type=radio]{
	position:absolute;
	opacity:0;
}
.special-radio input[type=radio] + span:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 500;
    content: "\f111";
    margin-right: 1.5rem;
    font-size: 1rem;
}
.special-radio input[type=radio]:checked + span:before {
    content: "\f192";
}
@media screen and (max-width:767px){
	.special-radio label{
		font-size: 0.95rem;
		line-height: 1.2;
		font-weight: 400;
	}
}
.form-group {
    margin-bottom: 1.2rem;
}
.invalid-check {
	line-height:24px;
	color:#ec3f41;
}
.valid-check {
	line-height:24px;
	color:#3a7d34;
}


/* button ///////////////////////////////////////////////////////////*/




.btn{
	--btn-color: var(--defaultcolor);
	
	font-family: var(--fontfamily);
	font-size: 0.8125rem;
	line-height: 1.2;
	font-weight: 550 !important;

	position: relative;

	padding: 0.7rem 1.1rem 0.65rem 1.1rem !important;
	height: auto;
	min-height: 2.6rem;
	letter-spacing: 0.015rem;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	 
	border-radius: var(--radius-button);     

	outline: dotted 1px transparent;
	text-decoration:  none !important;
	text-shadow:  none !important; 
	box-shadow:  none !important;  
	white-space: normal; 
	text-align: left;
	
}

.btn:focus,
.btn{
	background: var(--btn-color) !important;
	border: solid 2px var(--btn-color) !important;
	color: var(--panels-bg) !important;
}

.btn.btn-default{
	--btn-color: var(--defaultcolor);
}
.btn.btn-primary{
	--btn-color: var(--primarycolor);
}

.open > .dropdown-toggle.btn,
.open > .dropdown-toggle.btn:hover,
.open > .dropdown-toggle.btn:focus,
.btn:active,
.btn.active,
.btn:focus:active,
.btn:hover{
	outline: dotted 1px transparent;
	background: var(--panels-bg) !important;
    border: solid 2px var(--btn-color)!important; 
    color: var(--btn-color)!important; 
    box-shadow: none;
}
.btn:focus, 
.btn:active:focus, 
.btn.active:focus, 
.btn.focus, 
.btn:active.focus, 
.btn.active.focus {
	outline: dotted 1px var(--btn-color);
	outline-offset: 2px;
}


.btn.btn-light{
	background: transparent !important;
	border: solid 2px #ffffff !important;
	color: #ffffff !important;	
}
.btn.btn-light:hover{

	
	background: #ffffff !important;
	border: solid 2px #ffffff !important;
	color: #444444 !important;	
}
.btn.btn-light:focus, 
.btn.btn-light:active:focus, 
.btn.btn-light.active:focus, 
.btn.btn-light.focus, 
.btn.btn-light:active.focus, 
.btn.btn-light.active.focus {
	outline-color: #ffffff !important;	
}



.btn.btn-disabled,
.btn.btn-disabled:hover,
.btn.btn-disabled:focus,
.btn.btn-disabled:focus:active,
.btn.btn-disabled:hover:active{
	opacity: 1;
	cursor: default;
	background: rgba(180, 180, 190, 0.2) !important;
	color: rgba(140, 140, 150, 0.95) !important;
	border-color: transparent !important;
	pointer-events: none;
}


.btn.btn-sm:focus:active,
.btn.btn-sm:active,
.btn.btn-sm{
	padding: 0.35rem 0.6rem !important;
	font-size: 0.75rem;
	min-height: 1rem;
}


.btn.btn-bigger {
	padding: 0.7rem 1.4rem !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
}


.btn.btn-big {
	padding: 0.9rem 1.4rem !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.02rem;	
}
@media screen and (min-width:768px){
	.btn.btn-big{
		padding: 0.85rem 1.5rem 0.78rem 1.5rem !important;
		font-size: 1.01rem !important;
		font-weight: 600 !important;

	}
}

.btn.btn-large {
	padding: 0.9rem 1.4rem !important;
	font-size: 1.1rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.02rem;	
}
@media screen and (min-width:768px){
	.btn.btn-large{
		padding: 1rem 2rem 0.95rem 2rem !important;
		font-size: 1.4rem !important;
		font-weight: 500 !important;
	}
}






.actions{
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-small);
}
* + .actions{
	margin-top: var(--gap);
}
.actions .btn{
	min-width: 2rem;
}
.actions > * {
	margin: 0 !important;
}
.actions.center{
	justify-content: center;
}
.actions.separate{
	justify-content: space-between;
}
.actions.middle{
	align-items: center;
}


.input-group-btn .btn{
    white-space: nowrap;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
    margin-left: 0px;
}

.btn-group > .btn {
    float: none;
    flex-grow:1;
}
.btn-group, .btn-group-vertical {
    position: relative;
    display: flex;
    vertical-align: middle;
}
.caret{
	border: none;
    display: block;
}
.caret:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 2px;
    bottom: 0px;
    right: 0px;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1.2;
}
.btn .caret {
    margin-left: 1.2rem;
}

.btn-link {
	color: var(--maincolor) !important;
}

.check-age {
	width: 100% !important;
}
.check-age > div{
	padding-left: 1.85rem;
	font-size: 0.8rem;
}

.more,
.back{
	font-weight: 500;
    align-items: baseline;
}
.more:after,
.back:before,
.btn:before,
.btn:after{
	position: relative;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    line-height: 0;
    top: 0.01rem; 
	display: inline-block;	
	font-size: 105%;
}

.btn-more:after{
    content: "\f054";
    top: -0.01rem;    
    font-size: 91%;
}

.btn-back:before{
    content: "\f053";
    font-size: 91%;
}
.btn-calendar:before{
	content: "\f2f9";
}
.btn-add:before{
    content: "\2b";
}
.btn-register:before,
.btn-login:before{
	content: "\f2bd";
}
.btn-register:before{
	content: "\f234";
}
.btn-print:after{
	content: "\f02f";
}
.btn-save:after{
	content: "\f0c7";
}
.btn-submit:after{
	content: "\f0a9";
}
.btn-resubmit:after{
	content: "\f35b";
}
.btn-preview:after{
	content: "\f0ae";
}
.btn-warning:after{
	content: "\f071";
}
.btn-dashboard:after{
	content: "\e4e5";
}

.btn-show.collapsed:after{
    transform: rotate(180deg);
}
.btn-show .text-show-list{display:none;}
.btn-show .text-hide-list{display:block;}
.btn-show.collapsed .text-show-list{display:block;}
.btn-show.collapsed .text-hide-list{display:none;}

.btn.file:before {
	font-size: 140%;
	top: -0.02em;
}





.btn-register.btn-more span,
.btn-login.btn-more span,
.btn-ball.btn-more span{
	flex-grow: 1;
	text-align: left;
	padding-right: 0.9rem;
}

.btn-download:after{
	font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f019";
    display:inline-block;
    margin: 0.12rem 0rem 0 0.9rem;
    position: relative;
}


.btn-ico {
    width: 1.5rem;
    margin: -0.3rem 0.8rem -0.4rem -0.8rem;
}
.btn-min{
	min-width:14.3125rem;
}




.btn.btn-full{
	width:100%;
}

@media screen and (max-width: 767px) {
	.btn-full-xs{
		width:100%;
	}
}

.btn.btn-center{
    justify-content: center !important;
}

.btn.disabled,
[disabled].btn{
	cursor: not-allowed;
	opacity: 0.65;
	box-shadow: none;
}
.btn + .btn{
	xxmargin-left:-2px;
}
.separate-buttons{
	display:flex;
	justify-content: space-between;
	align-items: center;
}

/* collapselink //////////////////////////////////////////////////////////////// */

.collapselink-container{
	display: flex;
    align-items: baseline;
}

a.collapselink{
	display:block;
	color: var(--maincolor) !important;
	margin-left:1rem;
	white-space: nowrap;
}
a.collapselink span:after{
	display:inline-block;
	margin-left:0.3rem;
	font-family: 'Font Awesome 5 Free';
    font-weight: 900;
	content: "\f107";
	position: relative;
	top: 0.1rem;
}
a.collapselink span:last-child:after{content: "\f106";}
a.collapselink span{display:block;}
a.collapselink span:first-child{display:none;}
a.collapselink.collapsed span:first-child{display:block;}
a.collapselink.collapsed span:last-child{display:none;}

/* ball-bullets //////////////////////////////////////////////////////////////// */

.colorized{
	color: var(--defaultcolor) !important;
}
.ball-bullets {
	padding-top: 1rem;
	font-size: 110%;
}
.ball-bullets strong{
	color: var(--maincolor);
	xxwhite-space: nowrap;
}
.ball-bullets ul:not([class]){
	padding: 0 0 0 2rem;
}
.ball-bullets ul:not([class]) > li{
	padding-left: 0.8rem;
}
.ball-bullets ul:not([class]):not([style]) > li::marker {
	letter-spacing: 0;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f45f";
	font-size: 145%;
	position: relative;
}


/* recaptcha ///////////////////////////////////////////////////////////*/

.g-recaptcha {
	position: relative;
    width: 185px;
    height: 45px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: var(--radius-element);
    border: solid 1px #dcdcdc;
}
.g-recaptcha > div {
	position: relative;
    transform: translateZ(0) scale(0.85);
    transform-origin: -6px -66px;
    backface-visibility: hidden;
}
@media screen and (max-width:767px){
	.g-recaptcha {
		width: 200px;
		height: 72px;
	}
	.g-recaptcha > div {
		transform: translateZ(0) scale(1);
		transform-origin: 0px 0px;
	}
}

/* pills ///////////////////////////////////////////////////////////*/

.main-menu a span.fas{
	font-size: 0.79em;
	line-height: 1;
	opacity: 0.6;	
	display:block;
	margin: 0 0.1rem 0.1rem 0.25rem;
}



.nav-pills{
	list-style: none;
	display: flex;
	box-shadow: var(--shadow1);
	margin: 1.3rem 0rem;
	padding: 0;
	border-radius: 0.3rem;
}
.nav-pills > li {
	float: none;
	flex-grow: 1;
	position: relative;
}
.nav-pills > li.active {
	z-index: 2;
}
.nav-pills > li + li {
	margin: 0 0 0 -1px;
}
.nav-pills > li:first-child a{
	border-radius: 0.3rem 0 0 0.3rem;
}
.nav-pills > li:last-child a{
	border-radius: 0 0.3rem 0.3rem 0;
}


.nav-pills > li > a {
	position: relative;
	display: flex;
	align-items: center;	
	justify-content: center;	
	height: 100%;
	min-height: 4rem;
	text-align: center;
	padding: 0.7rem 0.6rem;
	border-radius: 0;
	text-decoration: none;
	font-size: 1.15rem;
	line-height: 1;
	letter-spacing: -0.02rem;
	font-family: var(--fontfamily);
	font-weight: 450;
	color: inherit;
	border: solid 1px rgba(160, 160, 160, 0.1);

}
.nav-pills > li > a:hover, 
.nav-pills > li > a:focus {
	background-color: transparent;
	border-color: var(--maincolor);
	color: var(--maincolor);
}
.nav-pills > li.active > a, 
.nav-pills > li.active > a:hover, 
.nav-pills > li.active > a:focus {
	background-color: var(--maincolor);
	border-color: var(--maincolor);
	color: #ffffff;
}

@media (max-width:767px){
	.nav-pills{
		flex-direction: column;
	}
	.nav-pills > li + li {
		margin: -1px 0 0 0;
	}
	.nav-pills > li > a {
		min-height: 2rem;
	}
	.nav-pills > li:first-child a{
		border-radius: 0.3rem 0.3rem 0 0;
	}
	.nav-pills > li:last-child a{
		border-radius: 0 0 0.3rem 0.3rem;
	}
	
	
}



.tooltip {
	font-family: var(--fontfamily);
    font-size: 0.78rem;
    line-height: 1.1;
    font-weight: 550;
    position: fixed;
}
.tooltip.top {
	padding: 0.4rem 0;
	margin-top: -1px;
}
.tooltip.top .tooltip-arrow {
	bottom: 1px;
	left: 50%;
	margin-left: -0.4rem;
	border-width: 0.4rem 0.4rem 0;
	border-top-color: #3e78c9;
}
.tooltip.right .tooltip-arrow{
	border-right-color: #3e78c9;
}
.tooltip.left .tooltip-arrow {
	border-left-color: #3e78c9;
}
.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #3e78c9;
}
.tooltip-inner {
	max-width: 16rem;
	min-width: 7rem;
	padding: 0.4rem 0.8rem;
	color: #ffffff;
	text-align: center;
	background-color: #3e78c9;
	border-radius: var(--radius-element);
	box-shadow: var(--shadow1);
	display: inline-block;
}
.tooltip.in {
	opacity: 1;
}

.info-tooltip.required{
    color: inherit;
    display: inline-block;
    margin: 0 0 0 -0.5rem;
    line-height: 1.3;
}
.info-tooltip.required:before {
	content: "\f621";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
    background: transparent;
    color: #EB1526;
    width: auto;
    height: auto;
    font-size: 0.44rem;
    line-height: 1;
    display: inline;
    vertical-align: super;
    padding: 0 0 0 0.6rem;
}


/* panel ///////////////////////////////////////////////////////////*/

.panel {
    margin-bottom: 1.5rem;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: var(--radius-box);
    box-shadow: var(--shadow1);
}
.panel-default {
    border-color: rgba(255,255,255,0.2);
}
.panel-heading {
	padding: 0.6rem 1.2rem;
    border-bottom: 2px solid transparent;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.panel-default > .panel-heading {
    color: inherit;
    background-color: rgba(180,180,190,0.2);
    border-color: transparent;
}
.panel-body {
    padding: 1.2rem;
}


/* alert ///////////////////////////////////////////////////////////*/

.alert{
	padding: 0.72rem 0.8rem 0.65rem 3.2rem;
	margin: 0;
	border-radius: var(--radius-box);
	overflow: hidden;
	font-size: 0.89rem;
	font-weight: 400;
	line-height: 1.3;
	position: relative;
	min-height: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	background: transparent;

	--icon-code: "\f059";
	--icon-color: var(--gray-color);
	border: solid 2px var(--icon-color);
	color: var(--icon-color);
	color: var(--text-color);
}

.alert > *{
	padding: 0;
}
.alert + *{
	margin-top: var(--gap);
}
* + .alert{
	margin-top: var(--gap-medium);
}
.alert + .alert{
	margin-top: var(--gap-small);
}

.alert *{
	margin:0;
}
.alert * + *,
.alert > p + p {
	margin-top: 0.4rem;
}
.alert > * + *{
	margin-top: 0.45rem !important;
	padding-top: 0.45rem !important;
	border-top: dotted 2px var(--light-gray-color);
}
.alert > p,
.alert > ul {
	margin-bottom:0;
}
.alert li,
.alert p{
	font-size: 0.9rem;
	font-weight: 320;
	line-height: 1.25;
	color: var(--text-color);
}
.alert span{
	font-style: italic;
}
.alert strong {
	font-weight: 600;
	display: block;
	color: var(--icon-color);
}
.alert ul:not([class]) > li + li, 
.alert ol:not([class]) > li + li {
	margin-top: 0.3rem;
}


.alert:before {
	font-size: 1.4rem;
	line-height: 1;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0.6rem;
	left: 0.8rem;
	border-right: dotted 0px var(--panels-bg);
	border-color: inherit;
	content: var(--icon-code);
	opacity: 1;
	color: var(--icon-color);
}

.alert-negative,
.alert-danger {
	border-color: var(--red);
	--icon-color: var(--red);
	--icon-code: "\f06a";
}
.alert-warning  {
	border-color: var(--orange);
	--icon-color: var(--orange);
	--icon-code: "\f071";
}
.alert-positive,
.alert-success {
	border-color: var(--green);
	--icon-color: var(--green);
	--icon-code: "\f058";
}
.alert-neutral,
.alert-primary {
	border-color: var(--blue);
	--icon-color: var(--blue);
	--icon-code: "\f05a";
}
.alert-secondary, 
.alert-info{
	border-color: var(--aqua);
	--icon-color: var(--aqua);
	--icon-code: "\f05a";
}
.alert-light{
	border-color: var(--gray-color);
	color: var(--gray-color);
	--icon-code: "\f05a";
}







.close {
    font-size: 2rem;
}
.alert-dismissable .close, .alert-dismissible .close {
    top: -0.5rem;
    right: -0.2rem;
}


.form-info{
	display:flex;
    align-items: center;
    font-size:	0.8125rem;
    margin-top: 0.2rem;
}
.form-info:before {
    margin-right: 0.3rem;
    font-size: 0.75rem;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.form-info-error {
    color: #ff4554;
}
.form-info-error:before{
    color: #ff4554;
    content: "\f06a";
}



/*  slick ///////////////////////////////////////////////////////////*/

[class*="slick-carousel"] .item{
	display: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-navigation-bg{
	background: #313237;
	margin-bottom: 0.8rem;
}
.slick-dots{
	position: relative;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	bottom: 0;
	background-color: #ececec;
	box-shadow: var(--shadow2);
}
body.darktheme .slick-dots{
	background-color: #4a4a4a;
}
.slick-dots li{
    position: relative;
	margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    cursor: pointer;
    display: flex;
    flex-grow:1;
    transition: all 0.5s ease;
}
.slick-dots li + li{
	padding: 0 0 0 1px;
}
.slick-dots li.slick-active{
	flex-grow:2;
}
.slick-dots li button{
	display: block;
    width: 100%;
    height: auto;
    position: relative;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.slick-dots li button:before {
	content: "";
	position: static;
	display: block;
	width: 100%;
	height:0;
	transition: border-color 0.5s ease;
	border-bottom: solid 0.8rem #ffffff;
	opacity: 1;
	font-size:0;
	line-height:0;
}

body.darktheme .slick-dots li button:before {
	border-color: #5b5b5b;
}

.slick-dots li.slick-active button:before {
	opacity: 1;
}

body.darktheme .slick-dots li.slick-active button:before,
body.darktheme .slick-dots li button:hover:before,
body.darktheme .slick-dots li button:focus:before,
.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
	border-color: var(--maincolor);
}


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

.slick-prev,
.slick-next {
	font-size: 0px;
	line-height: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	align-items: start;
	z-index: 5;
	width: 4rem;
	height: 100%;
	padding: 0;
	pointer-events: all;
	transform: none;
	color:#ffffff;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.slick-prev:before,
.slick-next:before{
	content: "";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 1.63rem;
	width: 100%;
	height: 4rem;
	display: block;
	position: relative;
	border: solid 0px #000000;
	background: var(--maincolor);
	box-shadow: var(--shadow1);
	opacity: 1;
	transition: all 0.25s ease;
	grid-column: 1;
	grid-row: 1;
}
.slick-prev:after,
.slick-next:after{
	content: "";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 1.63rem;
	transform: scaleX(0.6);
	display: flex;
	height: 4rem;
	grid-column: 1;
	grid-row: 1;
	justify-content: center;
	align-items: center;
}
.slick-prev:after {
	content: "\f053";
}
.slick-next:after {
    content: "\f054";
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background: rgba(0,0,0,0.2);
    color: var(--maincolor);
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    background: #ffffff;
}


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

.blueimp-gallery{
	display:none;
	font-family: inherit;
	background: rgba(0,0,0,0.95);
}
.blueimp-gallery > .prev,
.blueimp-gallery > .next {
    font-size: 0;
    font-weight: normal;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    border-color: transparent;
    border-width: 2px;
    color: #ffffff;
    background: rgba(0,0,0,0.4);
    text-shadow: none;
    border-radius: var(--radius-button);
}
.blueimp-gallery > .prev:after,
.blueimp-gallery > .next:after{
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f053";
    padding: 0 0rem 0 0;
}
.blueimp-gallery > .next:after{
    content: "\f054";
    padding: 0 0 0 0rem;
}
.blueimp-gallery-single>.prev,
.blueimp-gallery-left>.prev,
.blueimp-gallery-single>.next,
.blueimp-gallery-right>.next,
.blueimp-gallery-single>.play-pause {
    display: none;
}
.blueimp-gallery>.prev:hover,
.blueimp-gallery>.next:hover{
	color: #ffffff;
	background: var(--maincolor);
}
.blueimp-gallery-controls > .indicator {
	xxbackground: rgba(0,0,0,0.5);
	margin: 0;
}
.blueimp-gallery > .indicator {
	padding: 0.5rem;
    bottom: 0.2rem;
    left: 1rem;
    right: 1rem;
    line-height: 0.5rem;
}
.blueimp-gallery > .indicator > li {
	display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    margin: 2px;
    border: none;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    background-image: none!important;
    box-shadow: none;
    opacity: 1;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}
.blueimp-gallery > .indicator > li:hover,
.blueimp-gallery > .indicator > .active {
	background-color: var(--maincolor);
    border-color: transparent;
    opacity: 1;
}
.blueimp-gallery > .close, .blueimp-gallery > .title {
    position: absolute;
    top: 1rem;
    left: 2rem;
    margin: 0 3rem 0 0;
    font-size: 1.5rem;
    line-height: 1.3;
    color: #fff;
}
.blueimp-gallery>.close {
	padding: 1rem;
    border: none;
    top: 0;
    right: 0;
    left: auto;
    line-height: 0.5;
    margin: 0;
    font-size: 2.4rem;
    color: rgba(255,255,255,0.5);
}
.blueimp-gallery > .slides > .slide > .slide-content {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
}

@media all and (max-width:767px){
	.blueimp-gallery > .indicator > li {
		width: 0.5rem;
		height: 0.5rem;
	}
	.blueimp-gallery > .slides > .slide > .slide-content {
		padding-top: 0.4rem;
		padding-bottom: 4rem;
	}

}


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

.ui-widget {
    font-family: var(--fontfamily);
    font-size: 0.8rem;
}
.ui-widget.ui-widget-content {
	border: 0px solid #c5c5c5;
}
.elfinder-button-search-menu{
	border: 1px solid #c5c5c5;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 0px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 0px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 0px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 0px;
}
.ui-widget-header {
	border: none;
	border-bottom: solid 0px #c5c5c5;
	font-weight: bold;
	background: #f5f5f5;
	color: #000000;
}
.ui-widget-header.elfinder-statusbar{
	border:none;
	padding: .2em 1.5em .2em .5em;
}
.ui-dialog .ui-widget-header {
	background: #f5f5f5;
	color: #000000;
}
.ui-dialog .ui-widget-header a {
	color: #ffffff;
}
.ui-dialog {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	outline: 0;
}
.ui-widget-content {
	border: 0px solid #dddddd;
	background: #ffffff;
	color: #222222;
}
.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front{
	background-color: #f5f5f5;
	border-radius: 0;
	border: solid 2px #ffffff;
	box-shadow: 0 0rem 0px 1px rgba(0,0,0,0.1), 0 8px 20px 8px rgba(0,0,0,0.15);
}
.elfinder{
	background-color: #f5f5f5;
	border-radius: 0;
}
.mce-window,
.dialogelfinder {
	background-color: #f5f5f5;
	border-radius: 0;
	border: solid 2px #ffffff !important;
	box-shadow: 0 0rem 0px 1px rgba(0,0,0,0.1), 0 8px 20px 8px rgba(0,0,0,0.15);
}
.ui-dialog .fileEditor.ui-dialog-content {
	position: relative;
	border: 0;
	padding: 0;
	overflow: auto;
}
.ui-dialog .ui-dialog-content {
	background: #fff;
}
.ui-tabs {
	position: relative;
	padding: 0 0 .2em 0;
}
.ui-widget-overlay {
	background: #000000;
	opacity: 0.5;
}
body #mce-modal-block.mce-in {
	opacity: 0.5;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: 0;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-state-default,
.ui-dialog .ui-widget-content .ui-state-default,
.ui-dialog .ui-widget-header .ui-state-default {
	background: var(--maincolor);
	font-weight: normal;
	color: #ffffff;
}
.ui-dialog .ui-state-default a,
.ui-dialog .ui-state-default a:link,
.ui-dialog .ui-state-default a:visited {
	color: #ffffff;
	text-decoration: none;
}
.ui-dialog .ui-state-active,
.ui-dialog .ui-widget-content .ui-state-active,
.ui-dialog .ui-widget-header .ui-state-active {
	background: #ffffff;
	font-weight: normal;
	color: #212121;
}
.ui-dialog .ui-state-active a,
.ui-dialog .ui-state-active a:link,
.ui-dialog .ui-state-active a:visited {
	color: #555555;
	text-decoration: none;
	border: 0px !important;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .2;
    background: #f6f6f6;
    background-image: none;
}
.ui-dialog .ui-dialog-titlebar-close:before{content:"\f00d"}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 0px;
	height: 20px;
	font:normal normal normal 14px/1 FontAwesome;
	font-family: 'Font Awesome 5 Free';
    font-weight: 900;
	transform:translate(0, 0);
	font-size:18px;
	background:transparent !important;
	border:0;
	color:#ffffff;
}
.ui-dialog.ui-widget.ui-widget-content.ui-front.ui-dialog-buttons{
	min-width:250px;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #ddd;
}
.ui-tabs .ui-tabs-nav li {
	margin: 0px 1px 0 0;
	border: 1px solid #ddd;
	border-bottom-color: transparent;
	border-radius: var(--radius-element) var(--radius-element) 0 0;
	font-size: 0.9rem;
}
.ui-datepicker .ui-datepicker-buttonpane button {
    margin: 0;
}
.ui-datepicker .ui-datepicker-buttonpane {
    margin: 0;
    padding: 0.4rem 0.2rem;
    display: flex;
    justify-content: space-between;
}
.ui-timepicker-div dl {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0.25rem 0.5rem 0.25rem;
    font-size: 0.9rem;
}
.ui-timepicker-div .ui-slider{
	background: #d6d6d6;
	height:0.4rem;
	margin: 0.3rem;
}
.ui-timepicker-div .ui-slider-handle{
    border: none;
    background: var(--maincolor);
    border-radius: var(--radius-element);
    cursor: pointer;
    top: -0.3rem;
    margin-left: -0.25rem;
    width: 0.5rem;
    height: 1rem;
}
.ui-datepicker{
	box-shadow:0px 3px 13px rgba(0,0,0,0.4);
	z-index: 210 !important;
}
.ui-datepicker.ui-widget-content {
    border: 1px solid #fffffe;
    border-radius: 0;
    background: #ffffff;
    color: #222222;
}
.ui-datepicker .ui-widget-content {
	border: 0px solid #aaaaaa;
}
.ui-datepicker-calendar .ui-state-default{
	border: 2px solid #f6f6f7;
	background: #f6f6f6;
	font-weight: normal;
	color: #000000;
}
.ui-datepicker-calendar .ui-state-hover{
	border: 2px solid #cccccd;
	background: #cccccc;
	font-weight: normal;
	color: #ffffff;
}
.ui-datepicker-calendar .ui-state-active {
	border: 2px solid #006cb5;
	background: var(--maincolor);
	font-weight: normal;
	color: #ffffff;
}
.ui-datepicker-calendar .ui-state-highlight{
	border: 2px solid #006cb5;
	background: #f6f6f6;
	color: #000000;
}
.ui-datepicker-calendar .ui-priority-secondary{
	opacity: .5;
	border: 2px solid #fffffe;
	background: #ffffff;
	color: #666666;
}
.ui-state-disabled,
.ui-state-disabled > * {
	cursor: default !important;
}

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

.elevator-wrapper{
	min-height:0;
}
.elevator {
	position: fixed;
	right: 1rem;
	bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	overflow: hidden;
	text-decoration: none;
	cursor: pointer;
	background: var(--maincolor);
	color: #ffffff;
	opacity: 0;
	transition: all 0.3s ease;
	border-radius: 50%;
	box-shadow: var(--shadow2);
	visibility: visible;
	pointer-events: none;
	font-size: 1.3rem;
	line-height: 1;
}
@media screen and (max-width:767px){
	.elevator {
		bottom: 1.8rem;
	}
}

.elevator.elevator-is-visible {
	visibility: visible;
	pointer-events: all;
	opacity: 1;
	z-index: 899;
}
.elevator:focus,
.elevator:hover {
	background: var(--header-bg);
	color: var(--text-color);
    text-decoration: none;
    box-shadow: var(--shadow2);
}


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

.gallery{
	display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.gallery:after {
    content: '';
    flex-grow: 1000000000;
}
.gallery-thumb {
	flex-grow: 1;
    background: rgba(200,200,210,0.2);
    box-shadow: var(--shadow1);
    position: relative;
    border-radius: var(--radius-element);
    overflow: hidden;
    height: 7.5rem;
}
.gallery-thumb a{
    display: block;
    position: relative;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
}
.gallery-thumb a span{
    line-height: 0;
    padding: 0.2rem 0.5rem;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: skew(0.96turn);
    transform-origin: bottom;
    border-radius: var(--radius-element) 0 0 0;
    border: none;
    background-color: rgba(0,0,0,0);
    color: transparent;
    transition: background 0.25s ease, color 0.25s ease;
}
.gallery-thumb a:hover span,
.gallery-thumb a:focus span{
    background-color: var(--maincolor);
    color:#ffffff;
}
.gallery-thumb a span:before{
	font-size: 0.7rem;
    line-height: 1.2;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f002";
    display: inline-block;
    transform: skew(-0.96turn) scaleX(-1);
}
.gallery-thumb img{
    max-height: 100%;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
	.gallery {
		display: block;
		gap: 1rem;
		column-count: 2;
	}
	.gallery-thumb {
		margin-bottom: 1rem;
		-webkit-column-break-inside: avoid;
		page-break-inside: avoid;
		break-inside: avoid-column;
		height: auto;
	}
	.gallery-thumb a {
		height: auto;
	}
}





.thumbnail {
	display: block;
	padding: 0;
	margin: 0;
	line-height: 1;
	border: none;
	box-shadow: none;
    background:transparent;
    border-radius: 0;
    overflow: hidden;
	position: relative;
	box-shadow: 0px 1px 4px rgba(0,0,0,0.1);
}

.thumbnail-fixed{
	max-width:17rem;
	margin-top:0;
}
.thumbnail > div,
.thumbnail > a{
	position: relative;
	display:block;
	padding:0;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
}
.thumbnail > a{
	border-width:1px;
}
.thumbnail > a:hover{
    border-color: var(--maincolor);
}
.thumbnail > a:focus{
    border-style: solid;
}
.thumbnail > div{
	border: solid 2px transparent;
}
.thumbnail img {
	background-size: cover;
	background-position: 50% 50%;
	transform: scale(1.01);
	transition: all 0.5s ease;
}
.thumbnail:hover img{
	transform: scale(1.03);
}
.thumbnail .person-info,
.thumbnail[data-description]:after{
	display: block;
    width: auto;
    position: absolute;
    right: 1px;
    bottom: 1px;
    z-index: 2;
    color: #ffffff;
    background: var(--maincolor);
    font-family: var(--fontfamily);
    font-weight: 400;
    font-size: 0.7rem;
    line-height: 1.1;
    padding: 0.61rem 1rem;
    transition: background 0.5s ease;
    pointer-events: none;
}
.thumbnail .person-info span{
	display:block;
}
.thumbnail .person-info span + span{
	margin-top: 0.5rem;
}
.thumbnail .person-info span:first-child{
	font-size:1.1rem;
	font-weight: 600;
}
.thumbnail:not([data-description=""]):after{
	content: attr(data-description);
}
.thumbnail[data-description=""]:after{
	font-size: 0.71rem;
	line-height: 1;
    width: 2.3rem;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f002";
    padding: 0.6rem 0.8rem 0.6rem 0.8rem;
}


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

div.attachmentslist {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, calc(25% - 0.76rem));
}
.col-sm-9 div.attachmentslist {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, calc(33.333% - 0.76rem));
}

div.attachmentslist > div {
	min-height:3.7rem;
}


div.attachmentslist a.file{
	xxbox-shadow: var(--shadow1);
	xxposition: relative;
	xxtext-decoration: none;
	xxborder-radius: var(--radius-element);
	xxoverflow: hidden;
	xxbackground-color: rgba(200,200,210,0.2);
	xxcolor: inherit;
	xxborder: none;
	xxfont-family: var(--fontfamily);
	xxfont-size: 0.96rem;
	xxfont-stretch: 92%;
	xxline-height: 1.15;
	xxfont-weight: 500;
	xxwidth: 100%;
	xxheight: 100%;
	display: flex;
	align-items: flex-start;
	gap:0.5rem;
	--icon: "\f15b";
}

div.attachmentslist a.file,
div.attachmentslist a.file:focus{
	box-shadow: var(--shadow1);
	position: relative;
	text-decoration: none;
	border-radius: var(--radius-element);
	overflow: hidden;
	background-color: rgba(200,200,210,0.2);
	color: inherit;
	border: none;
	font-family: var(--fontfamily);
	font-size: 0.96rem;
	font-stretch: 92%;
	line-height: 1.15;
	font-weight: 500;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
div.attachmentslist a.file{
	--icon: "\f15b";
	--bgcolor: #9e9e9e;
	transition: background 0.35s ease,color 0.35s ease;
}


div.attachmentslist a.file span {
	overflow: hidden;
    word-wrap: break-word;
    padding: 0.5rem 0.75rem;
    flex-grow:1;
    position: relative;
	z-index: 3;
}
div.attachmentslist a.file span.date {
	flex-grow: 0;
    word-break: normal;
    white-space: nowrap;
    font-weight: 600;
    overflow: visible;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    height: 100%;
    border-left: 0px solid rgba(128,128,128,0.2);
}

div.attachmentslist-full{
	grid-template-columns: 100% !important;
}

@media screen and (max-width:767px){
	div.attachmentslist {
		grid-template-columns: 100% !important;
    }
}





a.file[href$=".PDF"],a.file[href$=".pdf"]{--icon:"\f1c1";--bgcolor:#dc3941;}
a.file[href$=".odt"],a.file[href$=".ODT"],
a.file[href$=".txt"],a.file[href$=".TXT"],
a.file[href$=".doc"],a.file[href$=".DOC"],
a.file[href$=".docx"],a.file[href$=".DOCX"],
a.file[href$=".RTF"],a.file[href$=".rtf"]{--icon:"\f1c2";--bgcolor:#3f76cc;}
a.file[href$=".ods"],a.file[href$=".ODS"],
a.file[href$=".xls"],a.file[href$=".XLS"],
a.file[href$=".XLSX"],a.file[href$=".xlsx"]{--icon:"\f1c3";--bgcolor:#6d9d4f;}
a.file[href$=".odp"],a.file[href$=".ODP"],
a.file[href$=".ppt"],a.file[href$=".PPT"],
a.file[href$=".PPTX"],a.file[href$=".pptx"]{--icon:"\f1c4";--bgcolor:#d87a41;}
a.file[href$=".ai"],a.file[href$=".AI"],
a.file[href$=".bmp"],a.file[href$=".BMP"],
a.file[href$=".dwg"],a.file[href$=".DWG"],
a.file[href$=".emf"],a.file[href$=".EMF"],
a.file[href$=".gif"],a.file[href$=".GIF"],
a.file[href$=".jfif"],a.file[href$=".JFIF"],
a.file[href$=".jpeg"],a.file[href$=".JPEG"],
a.file[href$=".jpg"],a.file[href$=".JPG"],
a.file[href$=".png"],a.file[href$=".PNG"],
a.file[href$=".psd"],a.file[href$=".PSD"],
a.file[href$=".svg"],a.file[href$=".SVG"],
a.file[href$=".tif"],a.file[href$=".TIF"],
a.file[href$=".tiff"],a.file[href$=".TIFF"]{--icon:"\f1c5";--bgcolor:#2c9ea7;}
a.file[href$=".cab"],a.file[href$=".CAB"],
a.file[href$=".rar"],a.file[href$=".RAR"],
a.file[href$=".zip"],a.file[href$=".ZIP"],
a.file[href$=".7z"],a.file[href$=".7Z"]{--icon:"\f1c6";--bgcolor:#b49b73;}
a.file[href$=".ac3"],a.file[href$=".AC3"],
a.file[href$=".aiff"],a.file[href$=".AIFF"],
a.file[href$=".au"],a.file[href$=".AU"],
a.file[href$=".mid"],a.file[href$=".MID"],
a.file[href$=".mp2"],a.file[href$=".MP2"],
a.file[href$=".mp3"],a.file[href$=".MP3"],
a.file[href$=".wav"],a.file[href$=".WAV"],
a.file[href$=".wma"],a.file[href$=".WMA"]{--icon:"\f1c7";--bgcolor:#b4ad55;}
a.file[href$=".avi"],a.file[href$=".AVI"],
a.file[href$=".divx"],a.file[href$=".DIVX"],
a.file[href$=".mov"],a.file[href$=".MOV"],
a.file[href$=".movie"],a.file[href$=".MOVIE"],
a.file[href$=".mp4"],a.file[href$=".MP4"],
a.file[href$=".mpe"],a.file[href$=".MPE"],
a.file[href$=".mpeg"],a.file[href$=".MPEG"],
a.file[href$=".mpg"],a.file[href$=".MPG"],
a.file[href$=".wmv"],a.file[href$=".WMV"]{--icon:"\f1c8";--bgcolor:#8665a2;}
a.file[href$=".css"],a.file[href$=".CSS"],
a.file[href$=".csv"],a.file[href$=".CSV"],
a.file[href$=".htm"],a.file[href$=".HTM"],
a.file[href$=".inf"],a.file[href$=".INF"],
a.file[href$=".ini"],a.file[href$=".INI"],
a.file[href$=".log"],a.file[href$=".LOG"],
a.file[href$=".nfo"],a.file[href$=".NFO"],
a.file[href$=".php"],a.file[href$=".PHP"],
a.file[href$=".xml"],a.file[href$=".XML"],
a.file[href$=".html"],a.file[href$=".HTML"]{--icon:"\f1c9";--bgcolor:#7487a7;}



a.file:before {
    xxfont-size: 1.95rem;
    xxline-height: 1;
    font-family: 'Font Awesome 5 Free';
    xxfont-weight: 600;
    content: var(--icon);
    xxcolor: #ffffff;
    xxmin-width: 3.5rem;
    xxwidth: 3.5rem;
    xxdisplay: flex;
    xxjustify-content: center;
    xxheight: 100%;
    xxposition: relative;
    xxz-index: 2;
    xxalign-items: center;
}

div.attachmentslist a.file:before {
    font-size: 1.95rem;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    content: var(--icon);
    color: #ffffff;
    min-width: 3.5rem;
    width: 3.5rem;
    display: flex;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
    align-items: center;
}
div.attachmentslist a.file:after {
    position: absolute;
    top: 0;
    left: 0;
    transform: skew(0.975turn);
    transform-origin: top;
    content: "";
    background-color: var(--bgcolor);
    width: 3.78rem;
    height: 101%;
}
div.attachmentslist a:hover,
div.attachmentslist a:focus{
	background-color: var(--bgcolor);
    color: #ffffff;
}





/*  page main ///////////////////////////////////////////////////////////*/

main{
	padding:0;
	position:relative;
	min-height: 5rem;
}
@media screen and (max-width:767px){
	main{
		padding:0;
	}
	main.home-body{
		padding:0;
	}
}

/*  tables ///////////////////////////////////////////////////////////*/

table,
.table {
	width: auto;
    max-width: calc(100% - 4px);
    margin: 2px 2px 2rem 2px;
    border-radius: var(--radius-box);
    box-shadow: var(--shadow1);
    border-collapse: separate;
    border: solid 2px rgba(255,255,255,0.2);
    font-size: 0.94rem;
    overflow:hidden;
	background: var(--panels-bg);
}
body.darktheme table,
body.darktheme .table{
	background: var(--panels-bg-dark);
}
.table{
	width: 100%;
    max-width: calc(100% - 4px);
}

table > thead > tr > th, 
table > tbody > tr > th, 
table > tfoot > tr > th, 
table > thead > tr > td, 
table > tbody > tr > td, 
table > tfoot > tr > td,
.table > thead > tr > th, 
.table > tbody > tr > th, 
.table > tfoot > tr > th, 
.table > thead > tr > td, 
.table > tbody > tr > td, 
.table > tfoot > tr > td {
    padding: 0.5rem 0.6rem;
    line-height: 1.1;
    vertical-align: top;
    border-top: 1px solid rgba(140,140,140,0.3);
    word-break: normal;
}

table > thead > tr > th,
.table > thead > tr > th{
    line-height: 1;
}

table > tbody > tr:first-child > th,
table > tbody > tr:first-child > td,
.table > tbody > tr:first-child > th,
.table > tbody > tr:first-child > td{
	border-top-color: transparent;
}
table > thead,
.table > thead {
	font-family: var(--fontfamily);
    box-shadow: 0 1px 0 0px var(--maincolor);
    position:relative;
    z-index:2;
}

table td,
.table td{
	font-weight: 300;
	font-size: 0.856rem;
}
table th,
.table th{
	font-weight: 500;
	font-size: 0.856rem;      
}
table > thead > tr > th,
.table > thead > tr > th{
	font-weight: 600;
	font-size: 0.6875rem;
}

table > thead > tr > td,
table > thead > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    vertical-align: bottom;
    border-width: 0 0 1px 0;
    border-color: rgba(140,140,140,0.3);
    padding: 0.5rem 0.6rem 0.35rem 0.6rem;
}
table > tbody + thead,
.table > tbody + thead{
	box-shadow: 0 1px 0 1px var(--maincolor),inset 0 2px 0px var(--maincolor);
}
.table tr > *.short-10{
	width:10rem;
}
table > tfoot > tr > *,
.table > tfoot > tr > * {
	border-top: solid 1px var(--light-color) !important;
	border-top-style: outset !important;
}






.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: transparent;
}
.table-striped > tbody > tr:nth-of-type(even) {
	background-color: rgba(180,180,180,0.15);
	background-color: rgba(170,170,170,0.12);
}

.table > thead > tr > td.active, 
.table > tbody > tr > td.active, 
.table > tfoot > tr > td.active, 
.table > thead > tr > th.active, 
.table > tbody > tr > th.active, 
.table > tfoot > tr > th.active, 
.table > thead > tr.active > td, 
.table > tbody > tr.active > td, 
.table > tfoot > tr.active > td, 
.table > thead > tr.active > th, 
.table > tbody > tr.active > th, 
.table > tfoot > tr.active > th {
	background-color: rgba(203, 53, 107, 0.07);
}




.table-responsive > .table-full, .table-full {
    width: calc(100% - 4px);
    overflow: hidden;
}

.table-responsive > .table-bordered,
.table-bordered{
	width: calc(100% - 4px);
    overflow:hidden;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td{
    border-color: rgba(140,140,140,0.3);
    border-width: 0 1px 1px 0;
}
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
    border-color: rgba(140,140,140,0.3);
    border-width: 1px 1px 0px 0;
}
.table-bordered tr > *:last-child{
    border-right-width: 0;
}


.table.table-condensed {
    font-size: 0.87rem;
    font-weight: 480;
    font-family: var(--fontfamily);
}
.table.table-condensed > thead > tr > th,
.table.table-condensed > thead > tr > td {
    padding: 0.4rem 0.2rem 0.3rem 0.2rem;
    font-size:0.85rem;
}
.table.table-condensed th,
.table.table-condensed td {
    padding: 0.32rem 0.3rem 0.3rem 0.3rem;
}
@media screen and (max-width:767px){
	.table.table-condensed th,
	.table.table-condensed td {
		padding: 0.3rem 0.2rem 0.28rem 0.2rem;
	}
}

.table.table-colored thead {
    background: var(--maincolor);
    color: #ffffff;
}
.table.table-colored thead a {
    color: #ffffff;
}
.table.table-colored thead a:hover {
    text-decoration-color: #ffffff;
}
.table.table-colored > thead > tr > th,
.table.table-colored > thead > tr > td{
    border-color: rgba(250,250,250,0.35);
}
.table.table-colored thead tr + tr > *{
    background-color: rgba(0, 0, 0, 0.1);
}
.table.table-colored > thead{
    box-shadow: none;
}

.table.table-hover{
    overflow: hidden;
    position: relative;
    z-index: 3;
}
.table.table-hover thead{
	position: relative;
    z-index: 1;
}
.table.table-hover tbody{
    position: relative;
    z-index: 2;
}
.table.table-hover tr > *{
    position: relative;
}
.table.table-hover > tbody > tr:hover {
    background-color: rgba(160, 160, 160, 0.1) !important;
}
.table.table-hover th:not(:first-child):hover:after,
.table.table-hover td:not([class]):not(:first-child):hover:after {
    content: "";
    position: absolute;
    left: 0;
    top: -5000px;
    height: 10000px;
    width: 100%;
    z-index: -1;
    background-color: rgba(160, 160, 160, 0.1) !important;
    user-select: none;
    pointer-events: none;
}

.table.table-centered tr > *{
    text-align: center;
}
.table.table-centered tr > *.text-left{
    text-align: left;
}
.table.table-centered tr > *.text-right{
    text-align: right;
}


.table.table-middle tr > td{
    vertical-align:middle;
}
.table.table-middle tbody tr > th{
    vertical-align:middle;
}
.table.table-middle tfoot tr > th{
    vertical-align:middle;
}

.table-flex tbody{
	position: relative;
	z-index: 2;
	display: grid;
	width: 100%;
	grid-template-columns: 1fr;
	gap: 0 2rem;
}
.table-flex-2 tbody{
	grid-template-columns: 1fr 1fr;	
}
.table-flex-3 tbody{
	grid-template-columns: 1fr 1fr 1fr;	
}
.table-flex-4 tbody{
	grid-template-columns: 1fr 1fr 1fr 1fr;	
}

.table-flex tr{
	display: flex;
	width: 100%;
}

.table-flexcols-1-2-1 tr td:nth-child(2){
	flex-grow: 1;
}

.table-flex.table-middle td{
	display: flex;
	align-items: center;
}
.table-flex.table-centered td{
	display: flex;
	justify-content: center;
}






.table.table-small {
    font-size: 0.6875rem;
    font-weight: 450;
    font-family: var(--fontfamily);
    box-shadow: none;
    
    border-color: rgba(140, 140, 140, 0.3);
	border-width: 0 1px 1px 1px;
	border-radius: var(--radius-small);
	
	border-width: 0 0px 1px 0px;
	border-radius: 0;	
	
	margin: 2px 2px 1rem 2px;
	margin: 0;
	
	font-family: var(--fontfamily);
	font-stretch: 80%;
	
}
.table.table-small.table-bordered{
	border-width: 0 1px 1px 1px;
	border-radius: 2px;	

}


.table.table-small  > thead > tr > th,
.table.table-small  > thead > tr > td {
	padding: 0.4rem 0.5rem 0.25rem 0.5rem;
	font-size: 1.0rem;
	line-height: 1;
	font-weight: 700;
	
	
	font-family: var(--fontfamily);
	font-stretch: 85%;
	font-size: 0.8125rem;
	font-weight: 650;	
	
}

.table.table-small th{
	font-weight: 650;
}

.table.table-small th,
.table.table-small td {
    padding: 0.25rem 0.5rem 0.35rem 0.5rem;
    line-height: 1;
}
.table.table-small > thead {
	font-family: var(--fontfamily);
	font-weight: 600;
	box-shadow: 0 0px 0 0px var(--maincolor),inset 0 -1px 0px var(--maincolor);
	box-shadow: inset 0 2px 0px var(--maincolor);
	
	font-size: 1.1rem;
	position: relative;
	z-index: 2;
}
.table.table-small h3{
	font-size: 1.1rem;
}


table col.darkbg,
.table col.darkbg{
	background-color: rgba(170, 170, 170, 0.1);
}

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


caption {
	color: var(--light-color);
	text-align: left;
	border: 1px solid #ddd;
	border-bottom: none;
	padding: 0.5rem 0 0.2rem 0;
	font-size: 90%;
	font-weight: 400;
}
.table-responsive{
	position:relative;
	top: -4px;
	margin-bottom: -4px;
}
.table-responsive + *:not(:empty){
	margin-top: 1.7rem;
}
.section-title + .table-responsive{
	margin-top: 1rem;
}

.table-responsive .table{
	margin-bottom: 4px;
}

a.table-teamname:not(:focus):not(:hover) {
    color: inherit;
}

.big > .number{
	font-size:1.2rem;
	font-weight: 350;
}




.bigger > .number{
	font-size:2.3rem;
}

.feature{
	font-weight: 400;
	font-size: 1.15rem;	
	xxcolor: var(--maincolor);
	xxcolor: var(--text-color);	
	background-color: rgba(150, 150, 150, 0.04);
}


@media screen and (min-width: 768px){
	.big2{
		font-size: 1rem;
		font-weight: 400;
	}
	.big2 > .number{
		font-size:1.35rem;
		font-weight: 350;
	}
}

@media screen and (max-width:767px){
	.big > .numbe,
	.big2,
	.big2 > .number,
	.feature{
			font-size:1rem;
			font-weight: 400;
	}

}


.record-gold > .number{
	color: var(--goldcolor);
	font-weight: 500 !important;
}
.record-silver > .number{
	color: var(--silvercolor);
	font-weight: 500 !important;
}
.record-bronze > .number{
	color: var(--bronzecolor);
	font-weight: 500 !important;
}


@media screen and (max-width:767px){
	.table-responsive {
		width: 100%;
		overflow-y: hidden;
		border: none;
		position:relative;
	}
	.table-responsive.table-responsive-scroll{
		border-right: 2px dotted var(--maincolor);
	}
	.table-responsive > .table{
		width:100%;
		margin-bottom: 10px;
	}
	.table-responsive>.table>thead>tr>th,
	.table-responsive>.table>tbody>tr>th,
	.table-responsive>.table>tfoot>tr>th,
	.table-responsive>.table>thead>tr>td,
	.table-responsive>.table>tbody>tr>td,
	.table-responsive>.table>tfoot>tr>td {
		white-space: normal;

		font-size: 0.7rem;
		line-height: 1;
	}
	
	
	.table>tbody>tr>td.big > .number{
		font-size:1rem;
		font-weight: 500;
	}
	.table>tbody>tr>td.bigger > .number{
		font-size:1rem;
		font-weight: 500;
	}
	.table>tbody>tr>td.feature{
		xxfont-size: 1rem;
		xxfont-weight: 500;	
	}	
	
}

.table p{
	word-break: normal;
}

@media screen and (min-width: 768px){
	.table-records > thead > tr > th, 
	.table-records > thead > tr > td, 
	.table-records > tbody > tr > th, 
	.table-records > tbody > tr > td, 
	.table-records > tfoot > tr > th, 
	.table-records > tfoot > tr > td {
		padding: 0.7rem 0.9rem;
		line-height: 1;
	}
	.table-records > thead > tr > th, 
	.table-records > thead > tr > td{
		padding: 0.5rem 0.9rem 0.4rem 0.9rem;	
		font-size: 1rem;
	}
	
	
	
}


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

.paging{
    display: flex;
    gap: 0.3rem;
	margin-top: 5rem;
	margin-bottom: 1rem;
	justify-content: space-between;
}
.paging .btn{
	border-radius:2rem;
    white-space: nowrap;
    min-height: 2.2rem;
    padding: 0.5rem 0.8rem;
}
.paging-section{
	font-family: var(--fontfamily);
    background-color: rgba(180,180,180,0.15);
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1;
    overflow: hidden;
    display: flex;
    letter-spacing: -0.08rem;
    justify-content: space-between;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.paging-section a{
    border: none;
    text-decoration: none;
    padding: 0.4rem 0.3rem;
    display: flex;
    min-width: 2rem;
    align-items: center;
    justify-content: center;
}
.paging-section > *:last-child{
	padding-right:0.45rem;
}
.paging-section a:not(:focus):not(:hover):not(.active) {
    color: inherit;
}
.paging-section a.page.active{
    background-color: var(--maincolor);
    color:#ffffff;
    box-shadow: var(--shadow1);
}
@media screen and (min-width: 768px){
	.paging{
		justify-content: center;
		gap: 1rem;
	}
	.paging .btn{
		min-width: 3rem;
		min-height: 3rem;
		display: flex;
	    font-size: 1rem !important;
		align-items: center !important;
		justify-content: center !important;
	}
	.paging-section{
		font-size: 1.1rem;
	    letter-spacing: -0.05rem;
	}
	.paging-section a{
		padding: 0.4rem 0.6rem;
		min-width: 3rem;
	}
	.paging-section > *:last-child{
		padding-right:0.8rem;
	}
}

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

.pop-up{
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pop-up-content{
	position: relative;
    background: #ffffff;
    border-radius: var(--radius-box);
    padding: 2rem 1.5rem 2rem 2rem;
    box-shadow: var(--shadow3);
    min-width: 3rem;
    min-height: 3rem;
}
.pop-up-inner{
	max-width: 90vw;
    max-height: 75vh;
    overflow: auto;
    padding-right: 1rem;
}
.close.pop-up-close{
	float: none;
    position: absolute;
    top: 0;
    right: 0.5rem;
}

/* /// accordion ////////////////////////////////////////////////////////////*/

.panel-accordion{
	padding: 0;
    margin: 0;
    position: relative;
    border-radius: 0;
    box-shadow: var(--shadow1);
    background: #ffffff;
    border: none;
}
.panel-accordion + .panel-accordion{
	border-top: none;
    margin-top: 0rem;
}
.panel-accordion-header{
	padding: 0;
	background:#f5f5f5;
	cursor: pointer;
	display:flex;
}
.panel-accordion-content{
	display: none;
    margin: 0;
    padding: 2rem;
}

.panel-accordion-header h3 {
	padding: 1.5rem 2rem;
	margin: 0;
    font-size: 1.4rem;
    line-height: 1.2;
    transition: all 0.3s ease;
 	flex-grow:1;
	color:inherit;
}
.panel-accordion-header span{
	padding: 1.5rem 2rem;
	margin:0;
	display:flex;
	align-items: center;
	transition: all 0.3s ease;
}
.panel-accordion-header:hover h3 {
	color:var(--maincolor);
}
.panel-accordion-header:hover span {
	background:var(--maincolor);
	color:#ffffff;
}
.panel-accordion.toggled .panel-accordion-header h3{
	color:var(--maincolor);
}
.panel-accordion.toggled .panel-accordion-header span{
	background:var(--maincolor);
	color:#ffffff;
}
.panel-accordion-header span:after{
	transition: transform 0.3s ease;
    font-size: 1.1rem;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f078";
    transform: rotate(0deg);
}

.panel-accordion.toggled .panel-accordion-header span:after{
	transform: rotate(-180deg);
}

.panel-accordion a.anchor{
	position:absolute;
	top:-7rem;
	left:0;
	height:1px;
	width:1px;
}





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

.marquee{
    margin: 0;
    border-radius: var(--radius-element);
    box-shadow: var(--shadow1);
	position:relative;
    line-height: 1;
    font-family: var(--fontfamily);
    font-weight: 500;
    overflow: hidden;
	background-image: linear-gradient(0deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 80%);
	background-color: #e2007a;
    color: #ffffff;
}
body.darktheme .marquee{
    color: #ffffff;
}
.marquee + .marquee{
	margin-top:1.5rem;
}
.marquee-title{
	position: relative;
	right:-0.5rem;
	white-space: nowrap;
    z-index: 2;
    display: flex;
    align-items: center;
    background-color: var(--maincolor);
    box-shadow: var(--shadow1);
    color: #ffffff;
    padding: 0 1.2rem 0 0.8rem;
    transform: skew(0.96turn);
	font-family: var(--fontfamily);
	line-height:1;
    font-size: 0.94rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}
.marquee-title:before{
	content:"";
	position:absolute;
	top:0;
	bottom:0;
	left:-2rem;
	width:2.1rem;
	background-color:inherit;
}
.marquee-title > *{
    transform: skew(-0.96turn);
}
.marquee-container{
    width: 100%;
    position: relative;
    flex-grow: 1;
    overflow: hidden;
    font-size: 0.84em;
    font-weight: 600;
    height: 2.5rem;
}
.marquee-dock{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    display: flex;
    width:100%;
    justify-content: flex-start;
}
.marquee-elements{
    display: flex;
    width:100%;
}
.marquee3k__wrapper{
	display: flex;
}
.marquee-elements .marquee-item > *{
    white-space: nowrap;
    list-style: none;
    padding: 0 0rem;
    position: relative;
    display: inline-flex !important;
    align-items: center;
    height: 100%;
    cursor: default;
}
.marquee-elements .marquee-item > *:after{
    content: "❯";
    transform: scaleX(0.5);
    display: flex;
    font-size: 1rem;
    width: 2rem;
    top: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
}
.marquee-elements .marquee-item a{
    color: inherit;
    display: flex;
    align-items: center;
    height: 100%;
    border: none;
    padding:0 0.1rem;
    margin:0 -0.1rem;
    border: solid 2px transparent;
    border-width:2px 0 2px 0;
}
.marquee-elements .marquee-item a:hover,
.marquee-elements .marquee-item a:focus{
	transition: border 0.2s ease, color 0.2s ease, text-decoration 0.2s ease;
    transition-delay: 0.1s;
    color: inherit;
    text-decoration-color: #ffffff;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.marquee-news3{
    font-size: 1.2rem;
    height: 5rem;
    font-weight:600;
    font-style:italic;
    font-family:var(--fontfamily);
}



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

.overflow-hidden {
    overflow: hidden !important;
}

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

.popup-container {
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1201;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(0rem);
	opacity:0;
}
.popup-container:last-child{
	opacity:1;
}
.popup-window{
	position: relative;
	background: #ffffff;
	color: #000000;
	border-radius: 0.5rem;
	overflow: hidden;
	padding: 0;
	box-shadow: 0px 0px 1.5rem rgba(0,0,0,0.35);
	min-width: 0px;
	min-height: 0px;
	max-width: 98vw;
	max-height: 98vh;
}
.popup-close{
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	padding: 0.5rem 0.5rem 4rem 4rem;

	line-height: 1;
	cursor: pointer;
	color: #dfdfdf;
}
.popup-close .fa{
	padding: 0.1rem 0 0 0;
	background: rgba(0, 0, 0, 0.2);
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 2rem;
	font-size: 1.3rem;
	line-height: 1.4;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: color 0.25s ease, background-color 0.25s ease;
}
.popup-close:hover .fa{
	background: rgba(0, 0, 0, 0.6);
}
.popup-content a{
	display:block;
}
.popup-content img{
	max-width: 91vw;
	max-height: 95vh;
}


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


.section-navigation  > .container {
	background: var(--panels-bg);
}
.games-slider > .container:before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 76vh;
	content: "";
	background: var(--panels-bg);
	display:block;
	z-index: -1;
}
body.theme .section-marquee{
	padding-left: var(--space);
	padding-right: var(--space);
}
.section-marquee > .container {
	background: var(--panels-bg);
	padding-top: 0;	
	padding-bottom: var(--space);
}

@media (max-width: 767px) {
	.section-navigation  > .container {
		padding-left: var(--halfgap);
		padding-right: var(--halfgap);
	}
}



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



body.theme > section.section-baner{
	padding-left: var(--space);
	padding-right: var(--space);
}

body.theme > section{
	margin-bottom: -1px;
}
body.theme main > section {
	padding-left: var(--space);
	padding-right: var(--space);
	margin-bottom: -1px;
}

body.theme main > section > .section-background {
	xpadding-left: var(--space);
	xpadding-right: var(--space);	
}


body main section.vote-teams-container .section-background{
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;	
}

body.theme section.gray-box,
body.theme section.darker-bg,
body.theme section.section-event,
body.theme section.section-typo,
body.theme section.section-pool,
body.theme section.section-blog,
body.theme section.section-warto,
body.theme section.section-reading,
body.theme section.section-lifestyle{
	padding-left: var(--space);
	padding-right: var(--space);
	margin: 0 auto;
}

body.theme section.vote-teams-container{
	padding-left: var(--space);
	padding-right: var(--space);
}

body.theme section > .section-background{
	max-width: var(--maxpagewidth);
	margin: auto;
	position: relative;
	padding-left: 0;
	padding-right: 0;	
}
body.theme .section-navigation > .ob-top-navigation{
	max-width: var(--maxpagewidth);
	margin: auto;
	position: relative;
	padding-left: 0;
	padding-right: 0;	
}
body.theme .home-header-container {
	padding-left: var(--space);
	padding-right: var(--space);
}

body.theme main section > .tilecontainer{
	max-width: var(--maxpagewidth);
	margin: auto;	
}

body.theme:before{
	content: "";
	position: fixed;
	top:0;
	bottom:0;
	left:var(--space);
	right:var(--space);	
	max-width: var(--maxpagewidth);
	margin: 0 auto;
	background: transparent;
	box-shadow:0px 0px 2rem rgba(0,0,0,0.3);
}


body.theme{
	background-repeat: repeat;
	background-position: top center;
	background-size: auto auto;
}

body.theme header .logo,
body.theme .navigation-bar .logo{
	padding-right: 3.8rem !important;
}
body.theme header .logo:after,
body.theme .navigation-bar .logo:after {
    position: absolute;
    z-index: 20;
    content: "";
	background-position: 50% 50%;
    background-size: 100% 100%;
    background-repeat: no-repeat;

    transform: rotate(0deg);
    right: 0.2rem;
    top: calc(50% - 1.4rem);    
	width: 2.8rem;
    height: 2.8rem;    
}
@media screen and (max-width:767px){
	body.theme header .logo,
	body.theme .navigation-bar .logo{
		padding-right: 3rem !important;
	}
	body.theme header .logo:after,
	body.theme .navigation-bar .logo:after {
		top: calc(50% - 1.15rem);
		width: 2.2rem;
		height: 2.2rem;
		background-size: 100% 100%;
	}
}



body.theme-xmas{
    background-image: url('/_images/common/theme_xmas.jpg');
	background-size: 41rem;
	background-position: calc(50% - 5rem) top;
}
body.theme-xmas header .logo:after,
body.theme-xmas .navigation-bar .logo:after {
    background-image: url("/_images/common/theme_xmas_icon.png");
}


body.theme-xmas .bgcontainer.background-bg:before,
body.theme-xmas footer .footer-box > .container:before,
body.theme-xmas main section > .section-background > .container:before, 
body.theme-xmas main section > .container:before {
	content: "";
	display: block;
	position: absolute;
	pointer-events: none;
	top: -0.4rem;
	left: 0px;
	right: 0px;
	height: 2.0625rem;
	background: url('/_images//common/snow1.png') 0px 0px / auto 2.0625rem no-repeat, 
				url('/_images//common/snow3.png') calc(100% - 0px) 0px / auto 2.0625rem no-repeat,
				url('/_images//common/snow2.png') 50% 0px / auto 2.0625rem repeat-x;
	filter: drop-shadow(0px 3px 5px rgba(0, 50, 100, 0.3));
}
body.theme-xmas main section.no-top > .container:before,
body.theme-xmas main section.no-top > .section-background > .container:before{
	top: -1.4rem;	
}
body.theme-xmas main section.no-bottom > .container:before,
body.theme-xmas main section.no-bottom > .section-background > .container:before{
	display: none;	
}
body.theme-xmas .section-gallery > .container:before,
body.theme-xmas .section-attachments > .container:before,
body.theme-xmas main section.no-bottom + section > .container:before,
body.theme-xmas main > .anchor + section > .container:before,
body.theme-xmas main section:first-child > .section-background > .container:before, 
body.theme-xmas main section:first-child > .container:before{
	display: none;
}





body.theme-newyear{
    background-image: url('/_images/common/theme_newyear.jpg');
	background-size: 41rem;
	background-position: calc(50% - 2.5rem) top;
}
body.theme-newyear header .logo:after,
body.theme-newyear .navigation-bar .logo:after {
    background-image: url("/_images/common/theme_newyear_icon.png");
}

body.theme-newyear .navigation-bar .logo:after {
	transform: rotate(22deg);
	right: -0.5rem;
	top: calc(50% - 2rem);
	width: 4rem;
	height: 4rem;
}
body.theme-newyear header .logo:after{
	transform: rotate(22deg);
	right: -0.5rem;
	top: calc(50% - 1.5rem);
	width: 3rem;
	height: 3rem;
}




body.theme-easter{
    background-image: url('/_images/common/theme_easter.jpg');
	background-size: 48rem;
	background-position: calc(50% + 6.3rem) top;
}
body.theme-easter header .logo:after,
body.theme-easter .navigation-bar .logo:after {
    background-image: url("/_images/common/theme_easter_icon.png");
}
body.darktheme.theme-easter{
	xxbackground-blend-mode: overlay;
}




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

.sitemap {
	column-count: 3;
	column-rule: solid 1px var(--footer-bg);
	column-gap: 3rem;
	padding: 1rem;
	font-family: var(--fontfamily);
	font-weight: 420;
	font-size: 1.3rem;
	line-height: 1.1;
}
@media screen and (max-width:767px){
	.sitemap {
		column-count: 1;
	}
}
.sitemap > ul {
	/* break-before: avoid; */
	list-style: none;
}
.sitemap ul li{

}
.sitemap ul li > a,
.sitemap ul li > span{
	display: inline-block;
	padding: 0.3rem 0;
	margin: 0.2rem 0;
}
.sitemap ul li > a:not(:focus):not(:hover){
    color: inherit;
}
.sitemap > ul > li {
	break-inside: avoid-column;
}
.sitemap > ul > li ul {
	/* break-before: avoid; */
	/* break-after: avoid; */
	/* break-inside: avoid-column; */
	list-style: square;
	margin-left: 1.5rem;
}
.sitemap > ul > li ul > li::marker {
    letter-spacing: -0.01rem;
    font-weight: 600;
    color: var(--maincolor);
}


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

.modal-backdrop{
	display:none !important;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    margin: 0;
}

.modal-content {
	background-color: var(--panels-bg-dark);
	color: var(--text-color);
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: var(--radius-menu);
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.modal-header {
	padding: 1rem var(--gap);
	border-bottom: 1px solid rgba(150, 150, 150, 0.3);
	min-height: 1rem;
}
.modal-header h5{
	margin: 0;
	font-size: 1.4rem;
}
.modal-header .close {
	margin-top: -2px;
	color: var(--maincolor);
	text-shadow: none;
	text-decoration: none;
	opacity: 0.5;
	transition: opacity 0.25s ease;
	position: relative;
	z-index: 1;
}
.modal-header .close:hover, 
.modal-header .close:focus {
	opacity: 1;
}
.modal-body {
	padding: 1rem var(--gap);
}
.modal-footer {
	padding: 0.8rem var(--gap);
	border-top: 1px solid rgba(150, 150, 150, 0.3);
}


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


.top-menu a.button-shop:not(:focus):not(:hover):not(.active),
.top-menu a.button-shop:hover, 
.top-menu a.button-shop:focus,
.footer-menu a.button-shop:not(:focus):not(:hover):not(.active),
.footer-menu a.button-shop:hover, 
.footer-menu a.button-shop:focus,
.main-menu a.button-shop:not(:focus):not(:hover):not(.active),
.main-menu a.button-shop:hover, 
.main-menu a.button-shop:focus{
	background-color: #f9070a;
	color: #ffffff;
	border: solid 2px #f9070a;
	
	border-radius: var(--radius-button);
	box-shadow: none;
	padding: 0.3rem 0.4rem 0.22rem 0.4rem;
	line-height: 1;
	display: flex;
	width: auto;
	text-decoration: none;
	align-items: center;
}
.top-menu a.button-shop:hover, 
.footer-menu a.button-shop:hover, 
.main-menu a.button-shop:hover,
.top-menu a.button-shop:active,
.footer-menu a.button-shop:active,
.main-menu a.button-shop:active{
	background-color: transparent;
	color: #f9070a;
	border: solid 2px #f9070a;
}
.main-menu a.button-shop{
	margin: 0 0 0 0.5rem;
	font-size: 76%;	
}
.footer-box .footer-menu a.button-shop{
	margin: -0.1rem 0.5rem 0 0.5rem !important;
	padding: 0.45rem 0.6rem 0.3rem 0.6rem !important;
	font-size: 80% !important;
}
@media screen and (max-width:767px){
	.footer-box .footer-menu a.button-shop{
		margin: 0.5rem 0.5rem 0 0.5rem !important;
	}
}

.button-shop:before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f07a";
	font-size: 66%;
	margin-right: 0.4rem;
	line-height: 1.4;
}


/* headline //////////////////////////////////////////////////////////////// */


.headline{
	font-family: var(--fontfamily);
	margin-bottom: 0rem;
	color: var(--light-color);
	color: var(--maincolor);
	font-size: 0.875rem;
	font-weight: 250;
	line-height: 1.2;
	letter-spacing: 0.03rem;
	
	
	line-height: 1;
	letter-spacing: 0.01rem;
	color: var(--defaultcolor);
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 600;
	
}
.darktheme .headline{
	font-weight: 400;
}

.headline + *{
	margin-top: 0.2rem;
}
.headline + h1{
	margin-top: 0.2rem;
}
.headline + h2{

}


.headline + *:not(h1,h2,h3,h4,h5,h6){
	margin-top: var(--gap-small);
}

/* home-v2 //////////////////////////////////////////////////////////////// */


.academy-process-grid {

}
@media screen and (max-width: 767px) {
	.academy-process-grid.simple-grid {
		--grid-columns: 2;
	}
}
.academy-process-grid > *,
.academy-process-grid > .well {
	display: flex;
	gap: 0.65rem;
	min-width: 0;
	padding: 0.85rem !important;
	border: 2px dotted var(--light-gray-color);
	border-radius: var(--radius-box);
	box-shadow: 0 1px 10px rgba(20, 20, 20, 0.08);
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
}
.academy-process-grid .number{
	display: flex;
	align-items: center;
	gap: 0.4rem;
	line-height: 1;
}
.academy-process-grid .number > span{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.8rem;
	width: 1.8rem;
	height: 1.8rem;
	border-radius: 50%;
	background: rgba(90, 174, 205, 0.11);
	color: var(--defaultcolor);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5;
}
.academy-process-grid .number strong,
.academy-process-grid strong{
	font-size: 0.81rem;
	line-height: 1;
	font-weight: 500;
	margin-top: 0.15rem;
}

.academy-process-grid .done .number span, 
.academy-process-grid .current .number span {
	background: var(--primarycolor);
	color: #ffffff;	
}
.academy-process-grid .current {
	background: rgba(231, 181, 255, 0.05);
	border-color: var(--primarycolor);
	border-style: solid;
}
.academy-process-grid .locked {
	background: var(--footer-bg);
	border-color: var(--panels-bg-dark);
	border-style: solid;	
	box-shadow: none;
}

.academy-process-grid .locked strong,
.academy-process-grid .locked small{
	opacity: 0.7;
}

.academy-process-grid strong, 
.academy-process-grid small {
	overflow-wrap: anywhere;
	line-height: 1.15;
}
.academy-process-grid small {
	line-height: 1.1;
	margin-top: 0.15rem;
	flex-grow: 1;	
}

.academy-process-grid > a{
	text-decoration: none;
	
}






.score {
	display: flex;
	gap: 0.5rem;
	justify-content: space-evenly;
	line-height: 1;
	background: var(--panels-bg-dark);
	padding: 1.4rem 1rem 1.2rem 1rem;
	border-radius: var(--radius-menu);
	align-items: center;
	position: relative;
	--score-color: var(--primarycolor);
	overflow: hidden;
}
.score.score-braz{
	--score-color: var(--bronzecolor);
}
.score.score-srebro{
	--score-color: var(--silvercolor);
}
.score.score-zloto{
	--score-color: var(--goldcolor);
}
.score.score-braz,
.score.score-srebro,
.score.score-zloto{
	background: linear-gradient(18deg, var(--score-color) -10%, rgba(200, 200, 200, 0.2) 160%);
}



.score:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	
	background-color: #c2c2c2;
	background-image: url('/_images/common/bg4.jpg');	
		
	opacity: 0.2;
	z-index: 1;	

	mask-image: linear-gradient(45deg, rgb(0, 0, 0) 60%, transparent 100%);
	mask-origin: view-box;

	background-repeat: no-repeat;
	background-size: 210%;
	background-position: 90% 10%;
	
	mix-blend-mode: hard-light;
	background-blend-mode: luminosity;
	
	opacity: 0.05;		
	background-blend-mode: luminosity;
	
}
.score > *{
	position:relative;
	z-index: 2;
}

.score .points{
	display: flex;
	gap: 0.5rem;
	align-items: flex-end;
	padding: 1rem 1rem 0.8rem 1rem;
	background: var(--panels-bg);
	border-radius: var(--radius-box);
	border-bottom: solid 2px var(--score-color);
}
.score .points strong {
	color: var(--score-color);
	font-size: 3.4rem;
	font-weight: 440;
	font-stretch: 110%;
	line-height: 0.7;
	font-variant-numeric: proportional-nums;
}
.score .points span {
	color: var(--gray-color);
	font-weight: 250;
	font-size: 1.1rem;
	line-height: 0.9;	
}
.score-rank{
	display: flex;
	color: var(--score-color);
	font-size: 1rem;
	align-items: flex-end;
	gap: 0.2rem;
	padding: 0.7rem 1rem 0.7rem 0.6rem;
	background: var(--panels-bg);
	border-radius: var(--radius-box);
	border-bottom: solid 2px var(--score-color);
}








.score-rank .headline {
	font-size: 0.8125rem;
	font-size: 0.75rem;
	text-transform: none;
	color: var(--text-color);
	font-weight: 260;
	line-height: 1;
}
.score-rank h5 {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 0.8;
}
.score-rank i {
	font-size: 2.5rem;
	line-height: 1.1;
	margin: 0;
}
.score-rank-brak i:before{
	content: "\21";
}






.academy-note {
	padding: var(--gap-small);
	border-radius: var(--radius-box);
	background: var(--panels-bg-dark);
}



/* home-v2 //////////////////////////////////////////////////////////////// */



.home-v2-section h1,
.home-v2-section h2,
.home-v2-section h3,
.home-v2-section h4,
.home-v2-section h5,
.home-v2-section h6{
	color: var(--gray-color);
	font-weight: 230;
}
.home-v2-section h5,
.home-v2-section h6{
	font-weight: 300;
}
.home-v2-program-status h3.title,
.home-v2-section h1,
.home-v2-section h2,
.home-v2-hero h1,
.home-v2-hero h5{
	color: var(--darkblue);

}
.home-v2-hero h5{
	font-size: 1.1rem;
	max-width: 45rem;
	line-height: 1.3;
}

@media screen and (min-width:768px){
	.home-v2-section h1 {
		font-size: 3.4rem;
	}
}


.home-v2-section {
	padding: 3rem 0;
	position: relative;
	--maxpagewidth: 1220px;
	border-bottom: 1px dotted var(--light-gray-color);	
	border-bottom: 1px solid var(--panels-bg-dark);
}
.home-v2-hero-grid{
	display: grid;
	grid-template-columns: 1fr;
	gap: 0 var(--gap);
	align-items: center;
}
@media screen and (min-width:768px){
	.home-v2-hero-grid{
		display: grid;
		grid-template-columns: minmax(0, 1fr) 20rem;
		gap: var(--gap-big);
		align-items: center;
	}
}


.home-v2-section:nth-child(odd) {
	background: rgba(42, 107, 149, 0.03);
	background: rgba(190, 67, 200, 0.03);
	background: rgba(148, 168, 255, 0.03);
	box-shadow: 0 0px 2rem rgba(20, 20, 20, 0.03);
}
.home-v2-section:last-child{
	padding-bottom: 4.5rem;
}
.home-v2-hero,
.home-v2-section.home-v2-hero {
	overflow: hidden;
	padding: 4.5rem 0;
	background: linear-gradient(204deg, rgba(211, 67, 255, 0.06) 10%, rgba(104, 156, 255, 0.03) 50%, rgba(43, 149, 255, 0.08) 90%);
	border-bottom: 1px solid var(--panels-bg-dark);
	position: relative;
	
	
	background-color: rgba(43, 149, 255, 0.08);
	background-image: radial-gradient(50% 50%, rgba(211, 67, 255, 0.06) 10%, rgba(104, 156, 255, 0.03) 50%, transparent 100%);
	background-image: radial-gradient(circle at 65% 10%, rgba(255, 255, 255, 0.4) 10%, rgba(211, 67, 255, 0.04) 40%, rgba(211, 67, 255, 0.05) 60%, transparent 100%);
	
}
@-moz-keyframes MOVE-BG {
	from {
		-moz-transform: translateX(-50%);
	}
	to { 
		-moz-transform: translateX(0%);
	}
}


@-webkit-keyframes MOVE-BG {
	from {
		-webkit-transform: translateX(-50%);
	}
	to { 
		-webkit-transform: translateX(0%);
	}
}

@keyframes MOVE-BG {
	from {
		transform: translateX(-50%);
	}
	to { 
		transform: translateX(0%);
	}
}
.home-v2-hero:before{
	background-image: url('/_images/common/homebg_clouds.png');

	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 200%;
	bottom: 0;
	opacity: 0.8;
	content: "";
	background-position: 0% 50%;
	background-repeat: repeat-x;
	background-size: 50% auto;
	
	xxmix-blend-mode: color-dodge;
	xxmask-image: linear-gradient(116deg, transparent 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.6) 90%, transparent 100%);
	
    -moz-animation-name: MOVE-BG;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
    
    -moz-animation-duration: 40s;
	-webkit-animation-duration: 40s;
    animation-duration: 40s;
    
    -moz-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    
    -moz-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	
}





.darktheme .home-v2-hero:before{
	opacity: 0.03;
}

.home-v2-hero:after{
	background-image: url('/_images/common/home_bg_persons.png');

	position: absolute;
	display: block;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	content: "";

	background-repeat: no-repeat;
	
	background-size: auto 28rem;
	background-position: 65% 140%;	
	
	margin: 0 auto;
	width: 100%;
	max-width: var(--maxpagewidth);
	
	mask-image: linear-gradient(143deg, transparent 50%, rgba(0, 0, 0, 1) 67%, rgba(0, 0, 0, 0.6) 73%);
	mask-image: linear-gradient(84deg, transparent 30%, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 0.6) 79%);
}
.darktheme .home-v2-hero,
.darktheme .home-v2-section.home-v2-hero{
	background-image: radial-gradient(circle at 65% 10%, rgba(255, 150, 3, 0.06) 10%, rgba(211, 67, 255, 0.04) 40%, rgba(211, 67, 255, 0.05) 60%, transparent 100%);

}

.home-v2-hero .home-v2-copy{
	max-width: 45rem;
}


@media screen and (max-width:767px) {
	.home-v2-hero:after {
		width: 21rem;
		height: 23rem;
		top: 10rem;
		left: 9rem;
		bottom: auto;
		background-position: 50% 50%;
		background-size: auto 100%;
		rotate: 5deg;
		transform-origin: top left;
		mask-image: none;
		margin: 0;
	}
	.home-v2-hero-grid > div:first-child{
		height: 26rem;
	}
	.home-v2-hero .home-v2-copy {
		max-width: 19rem;
	}
	.home-v2-hero .well {
		margin-top: 3.5rem;
	}
	
}

.home-v2-hero > .container{
	position: relative;	
	z-index: 5;
}



.home-v2-card--accent {
	border-top: 3px solid #b6a7ff;
}


.home-v2-section.home-v2-program-status {
	z-index: 4;
	padding: 0 var(--gap-medium) 2rem var(--gap-medium);
}
.home-v2-section.home-v2-program-status .container {
	position: relative;
	margin-top: -1rem;
	background: var(--panels-bg-2);
	border-radius: 1rem;
	box-shadow: var(--shadow-big);
}



@media screen and (max-width:767px) {
	.home-v2-section{
		padding: 1rem 0;
		--maxpagewidth: 100%;
	}
	.home-v2-hero,
	.home-v2-section.home-v2-hero {
		padding: 2.5rem 0;
	}
}





.highlight {
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 1rem;
	align-items: center;
	padding-bottom: 1rem;
	border-bottom: 1px dotted var(--light-gray-color);
}
.highlight + .highlight{
	padding-top: 1rem;
}
.highlight:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.highlight span,
.circle-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 50%;
	background: rgba(87, 148, 170, 0.1);
	color: var(--defaultcolor);
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 1.5;
	
	background: var(--defaultcolor);
	color: var(--panels-bg);	
	
}

.well.steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	list-style: none;
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 1rem;
}
.well.steps * + p {
	margin-top: 0.7rem;
}
.faq h5{
	font-weight: 300;
}





/* well //////////////////////////////////////////////////////////////// */


.well {
	min-height: 0;
	border-radius: var(--radius-box);
	background: var(--panels-bg-2);
	border: 1px solid var(--panels-bg-dark);
	padding: var(--space-medium);
	margin: unset;
    box-shadow: var(--shadow-big);
}


.well + *{
	margin-top: var(--gap);
}
.well + .well{
	margin-top: var(--gap-small);
}
.well + *:not(h1,h2,h3,h4,h5,h6){
	margin-top: var(--gap-small);
}

* + .well {
	margin-top: var(--gap-small);
}

.well-main {
	border-top: 3px solid var(--primarycolor);
}
.well p{
	text-align: left;
}




.well-bordered{
	border: 1px solid var(--light-color);
	padding: var(--space-medium);
}
.well-background{
	padding: var(--space) var(--gap);
}
.well-background.primary{
	background: var(--primarycolor);
	color: #ffffff;
}
.well-background.secondary{
	background: var(--secondarycolor);
	color: #ffffff;
}

@media screen and (min-width:768px){
	.well-background{
		padding: var(--space) var(--gap);

	}
}

.well-background .headline{
	color: inherit;
}

.well-background h2{
	color: inherit;
}
.well-background h3{
	color: inherit;
	
}
.well-background p{
	font-weight: 400;
}


.well.faq{
	display: flex;
	gap: var(--gap-small);
}
.well.faq:before{
	font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    
	content: "?";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: rgba(90, 174, 205, 0.11);
	color: var(--defaultcolor);
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.5;
	margin: -0.5rem 0 0 -0.5rem;
}
.faq-box{
	display: grid;
	grid-template-columns: 1fr 23%;
	grid-template-areas: 		
		"faqcontent faqimage";
	gap: var(--gap);
}
.faq-list{
	grid-area: faqcontent;
}
.faq-image{
	grid-area: faqimage;
}
.faq-image img{
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
@media screen and (max-width:767px){
	.faq-box{
		grid-template-columns: 1fr;
		grid-template-areas: 
		"faqimage"		
		"faqcontent";
	}
	.faq-image img{
		max-width: 10rem;
	}	
	
	
}









.documents-list {
	display: grid;
	gap: 0.9rem;
}
.documents-list .well {
	display: grid;
	grid-template-columns: 2.3rem 1fr 25%;
	gap: var(--gap);
	align-items: center;
	justify-content: space-between;
}
.documents-list .well:before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 300;
	content: "\f15c";
	display: inline-flex;
	color: var(--light-color);
	font-size: 2.7rem;
	line-height: 1;
	margin: 0rem 0 0 0.2rem;
	align-self: start;
}



@media screen and (max-width:767px){
	.documents-list .well {
		grid-template-columns: 1fr 41%;
	}
	.documents-list .well:before{
		content: "";
		display: none;
	}
}

.documents-list .well span {
	background: rgba(87, 148, 170, 0.1);
	color: var(--defaultcolor);
	
	flex: 0 0 auto;
	padding: 0.35rem 0.55rem;
	border-radius: 0.5rem;	
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.2;
}
.document-meta {
	display: flex;
	flex-direction: column;
	gap: var(--gap-small);
	align-items: flex-end;
}







.home-v2-section.home-v2-program-status {
	z-index: 4;
	padding: 0 var(--gap-medium) 2rem var(--gap-medium);
}
.home-v2-section.home-v2-program-status .container {
	position: relative;
	margin-top: -1rem;
	background: var(--panels-bg-2);
	border-radius: 1rem;
	box-shadow: var(--shadow-big);
	padding: var(--gap-small);
	border: 1px solid var(--panels-bg-dark);
}
.home-v2-program-status .container-inside {
	padding: var(--space);
	border-radius: 1rem 1rem 0 0;
	background: #7f4e9c;
	color: #ffffff;	
	position: relative;

}
.home-v2-program-status .container-inside hr{
	border-top-color: #ffffff;
}

.home-v2-program-status .status-panel-extra{
	border-radius: 0 0 1rem 1rem;
	background: rgba(148, 168, 255, 0.09);
	padding: 1.3rem 1rem;
	text-align: center;
	color: var(--darkblue);
	font-size: 1rem;
	font-weight: 400;
}
.home-v2-program-status .status-panel-extra strong,
.home-v2-program-status .status-panel-extra i{
	color: var(--defaultcolor);
}


.home-v2-program-status .container-inside  > *{
	position: relative;
	z-index: 3;	
}

.home-v2-program-status .container-inside:before{
	position: absolute;
	display: block;
	z-index: 1;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	opacity: 1;
	content: "";
	border-radius: 1rem;
	background-image: linear-gradient(212deg, rgba(90, 10, 60, 0.2) 0%, rgba(0, 0, 0, 0) 90%);
}
.home-v2-program-status .container-inside:after{
	background-image: url('/_images/common/homebg_ball.png');

	position: absolute;
	display: block;
	z-index: 2;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	opacity: 0.8;
	content: "";
	border-radius: 0.92rem;
	background-repeat: no-repeat;
	background-size: auto 18rem;
	background-position: 100.1% 0rem;
	mix-blend-mode: lighten;
}
@media screen and (max-width:767px){
	.home-v2-program-status .container-inside:after{
		background-size: auto 13rem;
	}
}


.home-v2-program-status-open .container-inside{
	background: #017d93;
	color: #ffffff;
}
.home-v2-program-status-closed .container-inside{
	background: #9b1f48;
	color: #ffffff;
	--primarycolor: var(--defaultcolor);	
}

@media screen and (min-width:768px){
	.home-v2-program-status-comingSoon .simple-grid-13{
		--grid-columns: 6;
	}
}


.home-v2-program-status h3{
	color: inherit;
}
.home-v2-program-status h3.title{
	font-size: 4rem;
	line-height: 1;
	color: inherit;
	font-weight: 550;	
}
@media screen and (max-width:767px){
	.home-v2-program-status:not(.home-v2-program-status-open) h3.title{
		font-size: 4rem;
		xxmax-width: 16rem;	
	}
}


.home-v2-program-message{
	font-size: 1.3rem;
	font-weight: 350;	
}

.status-time-box{
	position: relative;
	padding: 0.9rem 1.2rem 0.85rem 1rem;
	height: auto;
	letter-spacing: 0.015rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	border-radius: var(--radius-button);
	text-align: left;
	background: var(--primarycolor);
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.1;
}
.status-time-box i{
	font-size: 1.9em;
	line-height: 1;
}


.home-v2-program-status .well{
	margin-top: var(--gap-small);
	padding: var(--gap-small) 0;
}

.status-dates {
	display: flex;
	gap: 0;
	justify-content: center;
}
.status-dates > div{
	padding: 0 2rem;
}
.status-dates > div + div{
	border-left: solid 2px rgba(255,255,255,0.3);
}
.status-dates .big-date{
	font-size: 2rem;
	margin-top: 1.2rem;
	font-weight: 300;
}
.status-dates .big-date i{
	font-size: 0.83em;
	opacity: 0.7;
	position: relative;
	top: -0.06em;
}


@media screen and (max-width:767px){
	.status-dates > div{
		padding: 0 1rem;
	}
	.status-dates .big-date{
		font-size: 1.2rem;
	}
}




.home-v2-program-status h3.title strong{
	font-weight: 300;
}



.home-v2-program-status .well-background{
	background: rgba(14, 43, 48, 0.57);
	border: none;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}


.status-label{
	font-size: 2.4rem;
}
@media screen and (max-width:767px){
	.status-label{
		font-size: 2.2rem;
	}
}













dl{
	margin: 0 0 0;
	line-height: inherit;
	font-size: 0.78rem;
	line-height: 1.1;
	display: grid;
	gap: 0 0.1rem;
	grid-template-columns: auto auto;
	align-items: end;
}
dt {
    font-weight: 400;
}
dt, dd {
    line-height: inherit;
}
* + dl{
	margin-top: var(--gap);
}
dl + *{
	margin-top: var(--gap);
}
dl dt {
	float: none;
	clear: none;
	color: var(--text-color);
	font-weight: 300;
	line-height: 1.1;
	padding: 0.45rem 1rem 0.3rem 0;
	border-bottom: 2px dotted var(--light-gray-color);
}
dl dd {
	text-align: right;
	color: var(--text-color);
	font-weight: 400;
	line-height: 1.1;
	padding: 0.45rem 0 0.3rem 0;
	overflow-wrap: anywhere;
	border-bottom: 2px dotted var(--light-gray-color);
	grid-column: 2;
}
dl dd.colorized{
	font-weight: 500;
}
dl dt:last-of-type,
dl dd:last-of-type{
	border-bottom: none;
	padding-bottom: 0;
}


@media screen and (min-width:768px){

	dl{
		font-size: 0.85rem;
	}
	dl.dl-big{
		font-size: 1rem;
		line-height: 1.1;
	}
	dl.dl-big dt {
		font-size: 0.9rem;
		padding: 0.5rem 1rem 0.4rem 0;
	}
	dl.dl-big dd {
		padding: 0.5rem 0 0.4rem 0;
	}

}





/* simple-grid //////////////////////////////////////////////////////////////// */

.simple-grid{
	--grid-columns: 1;
	display: grid;
	grid-template-columns: repeat(var(--grid-columns), 1fr);
	gap: var(--gap-medium);
}
.simple-grid-gap-big{
	gap: var(--gap-medium) var(--gap-big);
}



.simple-grid-2 {--grid-columns: 2;}
.simple-grid-3 {--grid-columns: 3;}
.simple-grid-4 {--grid-columns: 4;}
.simple-grid-5 {--grid-columns: 5;}
.simple-grid-6 {--grid-columns: 6;}
.simple-grid-7 {--grid-columns: 7;}
.simple-grid-8 {--grid-columns: 8;}
.simple-grid-9 {--grid-columns: 9;}
.simple-grid-10{--grid-columns: 10;}
.simple-grid-11{--grid-columns: 11;}
.simple-grid-12{--grid-columns: 12;}
.simple-grid-13{--grid-columns: 13;}
.simple-grid-14{--grid-columns: 14;}
.simple-grid-15{--grid-columns: 15;}
.simple-grid-16{--grid-columns: 16;}
.simple-grid-17{--grid-columns: 17;}
.simple-grid-18{--grid-columns: 18;}
.simple-grid-19{--grid-columns: 19;}
.simple-grid-20{--grid-columns: 20;}
.simple-grid-21{--grid-columns: 21}
.simple-grid-22{--grid-columns: 22;}
.simple-grid-23{--grid-columns: 23;}
.simple-grid-24{--grid-columns: 24;}

.simple-grid > *.coll-wide {grid-column: 1 / span var(--grid-columns);}
.simple-grid > *.coll-full {grid-column: 1 / -1;}
.simple-grid > *.coll-2 {grid-column: span 2;}
.simple-grid > *.coll-3 {grid-column: span 3;}
.simple-grid > *.coll-4 {grid-column: span 4;}
.simple-grid > *.coll-5 {grid-column: span 5;}
.simple-grid > *.coll-6 {grid-column: span 6;}
.simple-grid > *.coll-7 {grid-column: span 7;}
.simple-grid > *.coll-8 {grid-column: span 8;}
.simple-grid > *.coll-9 {grid-column: span 9;}
.simple-grid > *.coll-10{grid-column: span 10;}
.simple-grid > *.coll-11{grid-column: span 11;}
.simple-grid > *.coll-12{grid-column: span 12;}
.simple-grid > *.coll-13{grid-column: span 13;}
.simple-grid > *.coll-14{grid-column: span 14;}
.simple-grid > *.coll-15{grid-column: span 15;}
.simple-grid > *.coll-16{grid-column: span 16;}
.simple-grid > *.coll-17{grid-column: span 17;}
.simple-grid > *.coll-18{grid-column: span 18;}
.simple-grid > *.coll-19{grid-column: span 19;}
.simple-grid > *.coll-20{grid-column: span 20;}
.simple-grid > *.coll-21{grid-column: span 21;}
.simple-grid > *.coll-22{grid-column: span 22;}
.simple-grid > *.coll-23{grid-column: span 23;}
.simple-grid > *.coll-24{grid-column: span 24;}




@media screen and (max-width:767px){
	.simple-grid{
		--grid-columns: 1;
	}
	.simple-grid > *{
		grid-column: auto !important;
	}
	
}



* + .simple-grid,
.simple-grid + *{
	margin-top: var(--gap);
}
.simple-grid + .simple-grid{
	margin-top: var(--gap-medium);
}

.simple-grid > *:not(.well) {
	padding: 0;
	margin: 0;
	border: none;
	min-width: 0;
	min-height: 0;
}
.simple-grid .well + .well{
	margin-top: 0;
}



@media print {
	html {
		font-size: 15px !important;
	}
	*,
	.btn,
	*:before,
	*:after {
		xxbackground: #ffffff !important;
		color: #000000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
		border-color: #888888 !important;
	}
	.container {
		width: 100% !important;
		max-width: var(--maxpagewidth) !important;
	}
	body, 
	body.darktheme,
	body.scrolled{
		padding: 0;
		
		background-color: #ffffff;
		color: #000000;
		--maxpagewidth: 100%;
		
		xx--menu-width: 0;
		
		--header-height: 5rem;
		--header-height-max: 5rem;
		--maincolor: #000000;
		--text-color: #000000;
		--gray-color: #888888;
		--light-color: #d5d5d5;
		--light-gray-color: #d5d5d5;
		--defaultcolor: #ffffff;
		--primarycolor: #f1f1f1;
		--secondarycolor: #f1f1f1;
		--wincolor: #888888;
		--lostcolor: #888888;
		--drawcolor: #888888;
		--goldcolor: #888888;
		--silvercolor: #888888;
		--bronzecolor: #888888;
		--green: #d5d5d5;
		--blue: #d5d5d5;
		--red: #d5d5d5;
		--orange: #d5d5d5;
		--aqua: #d5d5d5;
		--panels-bg: #ffffff;
		--panels-bg-2: #ffffff;
		--header-bg: #ffffff;
		--panels-bg-dark: #eeeeee;
		--footer-bg: #f1f1f1;
	}
	.page-header {
		position: relative;
	}
	.elevator-wrapper,
	.maindebug{
		display: none !important;
	}
	body.darktheme .page-header-logo img,
	* .page-header-logo img {
		display: block;
		height: 3.375rem;
		filter: invert(0) grayscale(1) contrast(1) brightness(1);
	}
	body.darktheme .footer-sponsors a img,
	body .footer-sponsors a img {
		filter: saturate(0) contrast(0.6) brightness(0.9);
		opacity: 1;
	}
	.darktheme .headline {
		font-weight: 600;
	}	
	.user-logged .footer-container,
	.footer-container {
		max-width: var(--maxpagewidth) !important;
		margin: 0 auto !important;
	}
	.print-content{
		padding-top:2rem;
	}
	
	
	input[type='radio'], 
	input[type='checkbox'], 
	.radio input[type='radio'], 
	.radio-inline input[type='radio'], 
	.checkbox input[type='checkbox'], 
	.checkbox-inline input[type='checkbox'] {
		-webkit-appearance: auto;
	}	
	input[type='radio']:checked, 
	input[type='checkbox']:checked {
		-webkit-appearance: auto;
	}
	
	
}
@media print and (orientation: landscape) {
	html {
		font-size: 14px !important;
	}
	body {
		min-width: 1500px;
	}
	.page-nav{
		background: #ffffff;
		display: block !important;
		position: relative !important;
		top: 2rem;
	}
	.page-nav:before{
		display:none;
	}
	.page-nav .nav-menu,
	.page-nav .nav-menu.collapse,
	.page-nav .nav-menu.collapse:not(.in),
	.page-nav .nav-menu {
		display: block !important;
		position: relative !important;
		padding: 0rem 0 !important;
		visibility: visible !important;
		opacity: 1 !important;
		background: #ffffff;
		color: #000000;
		user-select: all;
		top: 0;
		overflow: visible;
		height: 100% !important;
		max-height: 100%;
	}
	
	
	
	
}
@media print and (orientation: portrait) {
	html {
		font-size: 15px !important;
		--menu-width: 0 !important;
	}
	body {
		min-width: 1000px;
		
	}
	.user-logged .page-structure,
	.page-structure {
		grid-template-columns: 1fr;
		grid-template-areas: 		
		"accounts"		
		"header"		
		"content"		
		"footer";
		grid-template-rows: auto auto 1fr auto;
	}
	.page-nav{
		display: none !important;
	}
	
}





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

@media screen and (min-width:768px){
}
@media screen and (min-width:992px){
}
@media screen and (min-width:1290px){
}
@media screen and (min-width:1400px){
}
@media screen and (max-width:1399px){
}
@media screen and (max-width:1289px){
}
@media screen and (max-width:991px){
}
@media screen and (max-width:767px){
}






