#map {
	height: 100%;
}
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}
.map-control {
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 2px 2px rgba(33, 33, 33, 0.4);
	font-family: 'Roboto','sans-serif';
	margin: 10px;
	/* Hide the control initially, to prevent it from appearing
	   before the map loads. */
	display: none;
}
/* Display the control once it is inside the map. */
#map .map-control { display: block; }

.selector-control {
	font-size: 14px;
	line-height: 30px;
	padding-left: 5px;
	padding-right: 5px;
}
.cancelled{
	text-decoration: line-through;
}
table .warning-color{
	background-color:rgb(255, 187, 51, 0.5)!important;
}
table .danger-color{
	background-color:rgb(255, 53, 71, 0.5)!important;
}
input[type=checkbox], input[type=radio] {
    width: 20px;
    height: 20px;
}
 @keyframes fa-blink {
     0% { opacity: 1; }
     25% { opacity: 0.25; }
     50% { opacity: 0.5; }
     75% { opacity: 0.75; }
     100% { opacity: 0; }
 }
.fa-blink {
   -webkit-animation: fa-blink .75s linear infinite;
   -moz-animation: fa-blink .75s linear infinite;
   -ms-animation: fa-blink .75s linear infinite;
   -o-animation: fa-blink .75s linear infinite;
   animation: fa-blink .75s linear infinite;
}
#loginVideo{
	position: fixed;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
	z-index: 1;
	transform: rotateY(180deg);
    -webkit-transform:rotateY(180deg);
    -moz-transform:rotateY(180deg);
}
#loginFormDiv{
	background-color: rgba(255,255,255,0.8);
    z-index: 2;
}