:root {
	--primary-color: #003399;
}
body {
	margin: 0;
	background-image: url('img/desktop-1920x1080.jpg');
	background-size: cover;
}

body,
select,
input {
	font-size: 1em;
	font-family: arial;
	color: var(--primary-color);
}

.background {
	height: 100vh;
	/*background-color: rgba(255, 255, 255, 0.2);*/
	backdrop-filter: blur(5px);
}



select,
input {
	width:100%;
}

.logo {
	background-image: url('img/logo-nesnet-white.png');
	height: 50px;
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom:20px;
}

.label {
	color: var(--primary-color);
	background-color: rgba(255, 255, 255, 0.2);
	padding: 2px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;

	border-width: 1px;
	border-style: solid;
	border-color: var(--primary-color);
	border-bottom-width: 0;
}

.grp-input {
	margin-top:10px;
}

select,
input[type=text],
input[type=password] {
	/*margin-top: 5px;*/
	padding:5px;
	border-width: 1px;
	border-style: solid;
	border-color: var(--primary-color);
	background-color: white;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

input[type=text]:focus-visible,
input[type=password]:focus-visible {
	border-color: red;
}

input[type=submit] {
	color: var(--primary-color);
	padding:10px;
	margin-top:30px;
	background-color: #01CEFD;
	border-radius: 10px;
	border-width: 1px;
	border-style: solid;
	border-color: var(--primary-color);
	
}

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

#logger {
	position: absolute;
	border-width:2px;
	border-style:solid;
	border-color: var(--primary-color);
	border-radius: 20px;
	width:300px;
	text-align:center;
	padding:15px 30px 30px 30px;
	top: 35%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-color: rgba(255,255,255,0.4);
	box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
}



#sitesSelector {
	position: relative;
}

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

#sitesSelectorDisplay {
	position: relative;
	text-align: left;
	border-width: 1px;
	border-style: solid;
	border-color: #003399;
	background-color: white;
	background-repeat: no-repeat;
	background-position: 5px 4px;
	background-size: 20px auto;
	padding: 5px 5px 5px 30px;
	cursor: pointer;
}
#sitesSelectorDisplay.selector-hiden {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

#sitesSelectorDisplay div {
	position: absolute;
	top: -3px;
	right: 0px;
}
#sitesSelectorDisplay div:before {
    /* font-family: 'FontAwesome'; */
	font-size: 1.5em;
	font-weight: bold;
    content: "▾";
}


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


#sitesSelectorSelect {
	position: absolute;
	margin-top: -1px;
	display: block;
	z-index: 99;
	width: -moz-available; /* 100%; */
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
	overflow: hidden;
	border-width: 1px;
	border-style: solid;
	border-color: #039; /* #ddd; */
	/* box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.4); */
	text-align: left;
	padding: 0px;	
	
	max-height: 500px;
    transition: max-height 2s ease-out;
    overflow: hidden;
}

#sitesSelectorSelect.hiden {
	/* display: none; */
	max-height: 0;
    transition: max-height 0s ease-in;
	border-width: 0px;
}

#sitesSelectorSelect li {
	border-width: 0px;
	border-bottom-width: 1px;
	border-style: solid;
	border-color: #ddd;
	background-color: white;
	background-image: url('img/_unknown.png');
	background-repeat: no-repeat;
	background-position: 5px 4px;
	background-size: 20px auto;
	padding: 5px 5px 5px 30px;
}

#sitesSelectorSelect li:hover, 
#sitesSelectorSelect li.selected {
	background-color: #ddd;
}

#sitesSelectorSelect li:last-child {
	border-bottom-width: 0px;
}




#siteSelectedValue {
	display: none;
}