/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #777; 
}

body {
	background-color: gray; margin: 0;
	background: url("img/background/desk3.jpg") no-repeat center center fixed;
	height: 100%;
	background-size: cover;
}

button {
	font-size: 10px;
}

p {
	text-align: left;
}

a:link, a:visited {
	color: white;
	transition: 0.5s;
}
a:link:hover, a:visited:hover {
	color: #00a3cc;
	transition: 0.5s;
}

.fl-right { float: right; }
.fl-left { float: left; }

/* Home */
.home-menu {
	position: fixed;
	top: 0;
	height: 40px;
	width: 100%;
	border: solid 1px;
	z-index: 1;
	background: rgba(10, 10, 10, 0.7);
}
.home-menu > div {
	font-size: 20px;
	margin-top: 8px;
	margin-right: 10px;
	margin-left: 10px;
	color: white;
	cursor: pointer;
	transition: 0.5s;
}
.home-menu > div:hover {
	color: #00a3cc;
	transition: 0.5s;
}

.home-area {
	margin-top: 100px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	color: whitesmoke;
}
.home-area > div > div {
	max-width: 70%;
	margin-bottom: 30px;
	border-radius: 5px;
	display: inline-block;
	padding: 30px 100px 30px 30px;
	transition: 0.5s;
	border-color: #87a556;
	background: rgba(10, 10, 10, 0.5);
	box-shadow: 0px 0px 20px black;
}
.home-area > div > div:hover {
	background: rgba(10, 10, 10, 0.9);
	color: #00a3cc;
	box-shadow: 0px 0px 20px 10px black;
}
.home-area > div > div:hover h1,
.home-area > div > div:hover h3 {
	color: #e67300;
}
.home-area > div > div > img {
	max-width: 100%;
	transition: 0.5s;
	opacity: 0.5;
}
.home-area > div > div:hover img {
	transition: 0.5s;
	opacity: 1;
}

#log_scr {
	position: fixed;
	width: 100%;
	padding-top: 100px;
	display: none;
	top: 0;
}
#log_scr > div {
	border-radius: 5px;
	width: 400px;
	margin: auto;
}
.loagin-area {
	padding: 20px;
	background: rgba(230, 236, 255, 0.9);
	border: solid 1px whitesmoke;
	border-radius: 5px;
	box-shadow: 5px 10px 20px;
}
.loagin-area > input {
	margin-bottom: 10px;
}
.loagin-zone {
	font-size: 20px;
}
/*///////////////////*/

.icon {
	height: 80px;
	width: 70px;
	text-align: center;
	position: absolute;
	overflow: hidden;
	border-radius: 5px;
	background: rgba(175, 175, 175, 0.5);
}
.icon > img {
	height: 50px;
}
.icon > div {
	font-size: 12px;
	border-radius: 3px;
}
.icon-zIndex-up {
	z-index: 10 !important;
	overflow: visible;
}
.icon-zIndex-up > div {
	min-height: 26px;
	background-color: darkblue;
	color: white;
}
.icon-zIndex-down {
	z-index: 5;
}
.icon > fav {
	position: absolute;
	top: 33px;
	left: 5px;
}
.icon > fav > img {
	height: 20px;
	border-radius: 3px;
}

.icon-menu {
	display: inline-block;
	position: absolute;
	padding-top: 5px;
	padding-bottom: 5px;
	
	border: solid 1px;
	z-index: 20;
	background-color: white;
	border-radius: 3px;
	border-color: whitesmoke;
}
.icon-menu > div {
	padding-left: 10px;
	padding-right: 10px;
	font-size: 12px;
	color: gray;
}
.icon-menu > div:hover {
	background-color: lightgray;
	cursor: pointer; 
}
.icon-edit {
	padding: 6px !important;
	font-size: 12px;
	color: #87a556;
}
.icon-edit > input {
	height: 10px;
	font-size: 10px;
	color: #486c1e;
}

.iframe {
	border-style: none;
	width: 100%;
	height: 100%;
	zoom: 1;
	-moz-transform: scale(1);
	-moz-transform-origin: 0 0;
	-o-transform: scale(1);
	-o-transform-origin: 0 0;
	transform-origin: 0 0;
}

/* Kendo */
.k-window-title {
	font-size: 1em;
	line-height: 1.1em;
}
.k-window-titlebar {
	padding: 2px 12px;
}
.k-window-actions {
	top: 0 !important;
}
.k-window-content {
	padding: 0;
	overflow: hidden;
}

/* cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 1000;
    display: none;
}

.cookie-consent button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}