.__mob__{display: none;}
body{
	padding:0;
	margin:0;
	background-color: rgb(206,206,206)!important;
}









.core-card{
	position: relative;
	overflow: hidden;
	margin-right: 15px;
	background-color: var(--card-bg-color);
	color: var(--card-color);
	margin-top: 10px;
	box-shadow: rgb(50,50,50) 0 0 5px;
	padding: 10px;
	border-radius: 10px;
	-webkit-transition:all 0.5s;
}
:hover.core-card, .core_popin_data .core-card{
	box-shadow: var(--main-color) 0 0 15px;
	background-color: var(--card-bg-color-hover);
}

.core-card .title{
	border-left:var(--main-color) solid 2px;
	padding-left: 10px;
    margin-top: 5px;
	margin-bottom: 10px;
	font-size: 24px;
	color:var(--main-color);
	-webkit-transition:all 0.5s;
	display: block;
}
:hover.core-card .title, .core_popin_data .core-card .title{
	border-left:var(--main-color) solid 2px;
	padding-left: 5px;
    margin-top: 5px;
	color:var(--main-color-hover);
	-webkit-transition:all 0.5s;
}











#core_uw{
	position: fixed;
	bottom: 10px;
	left: 10px;
	z-index: 2000;
}
#core_uw .element{
	box-shadow: rgb(0,0,0) 0 0 2px 2px;
	background-color: rgb(0,0,0);
	color: rgb(255,255,255);
	margin-top: 20px;
	border-radius: 5px;
}
#core_uw he-col{
	padding: 10px;
}
#core_uw .element .txt_container{
	max-width: calc(100vw - 75px);
}










#navigation{
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	background-color: rgb(255,255,255);
	box-shadow: #000 0 0 10px;
	height: calc(100vh - 5px);
}










#main{
	margin: 0px;
	padding: 5px;
	margin-left: 10px; 
	margin-right: 10px;
	transition: all 0.5s;
}

#main.ca{
	margin-top: 50px;
}

#main{
	overflow-x: scroll;
	position: fixed;
	left: 50px;
	top: 0;
	right: 0;
	bottom: 0;
	background-position: center top;
	background-size: cover;
	margin:0px;
	padding: 15px;
	transition: all 0.5s;
}
#main.pin{
	left: 250px;
}









#core_context_menu{
	position: fixed;
	background-color: rgb(255,255,255);
	box-shadow: rgb(50,50,50) 0 0 10px;
	max-height: 500px;
	overflow-y: auto;
	padding-top: 5px;
	padding-bottom: 5px;
	border-radius: 3px;
	display: none;
	z-index: 110;
}
core-cm-data{
	display: none;
}
.core_cm{
	cursor: pointer;
}
#core_context_menu .cm_title{
	display: block;
	background-color: rgb(1, 141, 196);
	font-weight: bold;
	padding: 10px;
}
#core_context_menu .cm_link{
	display: block;
	padding: 10px;
	cursor: pointer;
}
#core_context_menu .cm_link:hover{
	background-color: rgb(1, 141, 196);
}







he-table.core_list he-row:nth-child(even) {background-color: rgb(220,220,220);}
he-table.core_list he-row:nth-child(even):hover {background-color: rgb(150,150,150);}
he-table.core_list he-row:nth-child(odd) {background: rgb(255,255,255)}
he-table.core_list he-row:nth-child(odd):hover {background-color: rgb(150,150,150);}

he-table.core_list he-col{
	vertical-align: middle;
	padding: 5px;
}












.core_popin{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	height: 100vh;
	overflow-y: scroll;
}
.core_popin_data{
	margin-top: 50px;
	margin-left: 50px;
	margin-right: 50px;
}
.core_popin_close{
	position: fixed;
	top:10px;
	right: 20px;
	cursor: pointer;
}












#core_context_action{
	position: fixed;
	top: -55px;
	left: 50px;
	right: 0;
	height: 50px;
	background-color: var(--contextaction-bg);
	box-shadow: #0a0a0a 10px 0 10px 0;
	transition: all 0.5s;
	text-align: left;
	z-index: 105;
}
#core_context_action.pin{
	left: 250px;
}
#core_context_action:hover{
	box-shadow: #0a0a0a 10px 0 15px 0;
}
#core_context_action .core_ca{
	display: inline-block;
	/*border-right: #000000 solid 1px;*/
	padding-top: 13px;
	padding-left: 15px;
	padding-right: 15px;
	height: 50px;
	cursor: pointer;
	transition: all 0.5s;
	position: relative;
	color: var(--contextaction-color);
}
#core_context_action .core_ca::after{
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	background-color: var(--main-color);
	width: 100%;
	height: 0;
	transition: all 0.5s;
	z-index: -1;
}
#core_context_action .core_ca:hover:after{
	height: 50px;
}
#core_context_action .core_ca{
	border-right: #000000 solid 1px;
}
#core_context_action.open{
	top: 0;
}
#core_context_action .hide{
	display: none;
}









#core-nav{
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50px;
	background-color: rgb(255,255,255);
	padding: 5px;
	transition: all 0.5s;
	z-index: 100;
	overflow: hidden;
	box-shadow: #000 0 0 20px 0;
}
#core-nav.hover{
	width: 250px;
	z-index: 110;
}
#core-nav .core-nav-hide{
	display: none;
}
#core-nav.hover .core-nav-hide{
	display: block;
}








.core_spin{
	animation: spin 2s infinite;
}
@keyframes spin {
	0% {
		-webkit-transform:rotate(0deg);
	}
	50% {
		-webkit-transform:rotate(180deg);
	}
	100% {
		-webkit-transform:rotate(360deg);
	}
}