/* Generic Classes
-------------------------------------*/
.group:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* Colors Classes
-------------------------------------*/
.w3-colorFS,.w3-hover-colorFS:hover{color:#000!important;background-color:#c0482f!important}
.w3-colorFS-light{color:#000!important;background-color:#e5a294!important},.w3-hover-colorFS-light:hover{color:#000!important;background-color:#c0482f!important}
.w3-text-colorFS,.w3-hover-text-colorFS:hover{color:#c0482f!important}
.w3-text-colorFS-light,.w3-hover-text-colorFS-light:hover{color:#e5a294!important}
.w3-colorItem,.w3-hover-colorItem:hover{color:#FFF!important;background-color:#004777!important}
.w3-colorItem-light{color:#000!important;background-color:#85CEFF!important},.w3-hover-colorFS-light:hover{color:#FFF!important;background-color:#004777!important}
.w3-text-colorItem,.w3-hover-text-colorItem:hover{color:#004777!important}
.w3-text-colorItem-light,.w3-hover-text-colorItem-light:hover{color:#85CEFF!important}

/* Header
-------------------------------------*/
#lnms-header-wrapper {
	position: relative;
	float: left;
	width: 100%;
	height: 256px;
}

#lnms-header {
	position: relative;
	float: left;
	width: 100%;
	height: 256px;
}

#lnms-header p{
	position: absolute;
	display: block;
	width: 220px;
	height: 100px;
	top: 11px;
	left: 0px;
	z-index: 20;
}

#lnms-header p a:link, #header p a:visited, #header p a:hover, #header p a:active{
	display: block;
	width: 100%;
	height: 100%;
	font-size: 4.5em;
	text-decoration: none;
	font-style: normal;
	text-indent: -9999px;
	overflow: hidden;
	background: url('/cmn/img/ul-fs_logo.png') left top no-repeat;
	position: relative;
}

#lnms-header p a.uni:link, #header p a.uni:visited, #header p a.uni:hover, #header p a.uni:active{
	position: absolute;
	top: 0;
	background: none;
	height: 15px;
}

div.lnms-sticky-top {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1020;
}

div.lnms-table-row {
	display: table;
	width: 100%; /*Optional*/
	table-layout: fixed; /*Optional*/
	border-spacing: 0px; /*Optional*/
}
		
div.lnms-table-column {
	display: table-cell;
}

/* Inuput file box
-------------------------------------*/
.inputfile-box {
	position: relative;
}

.ifbox-file {
	display: none;
}

/*
.ifbox-name:hover {
	opacity: 1.0;
}*/

.ifbox-name {
	display: inline-block;
	width: calc(100% - 50px);
	border: 1px solid #666;
	padding: 5px 0px 5px 5px;
	box-sizing: border-box;
}

.ifbox-btn-upload:hover {
	opacity: 1.0;
}

.ifbox-btn-upload {
	background: white;
	padding: 5px;
	position: absolute;
	border: 1px solid #666;
	top: 0px;
	right: calc(24px);
	opacity: 0.8;
}

.ifbox-btn-delete:hover {
	opacity: 1.0;
}

.ifbox-btn-delete {
	background: white;
	padding: 5px;
	position: absolute;
	border: 1px solid #666;
	top: 0px;
	right: 0px;
	opacity: 0.8;
}

/* Navigation
-------------------------------------*/
.lnms-nav-float-back {
	position: fixed;
	bottom: 30px;
	right: 10px;
	transition: all 0.3s ease;
	padding: 10px;
	text-align: center;
	font-size: 20px;
	background-color: black;    
	color: white;
	z-index: 1020;
}

.lnms-nav-float-back:hover {
	background-color: #ccc;
	color: black;
	width: 200px;
}

.lnms-nav-float-back .lnms-nav-float-back-text {
  display: none;
	width: 0px;
}

.lnms-nav-float-back:hover .lnms-nav-float-back-text {
	display: inline;
	width: 100%;
}

.lnms-nav-float-back-top {
	position: absolute;
	top: 1px;
	bottom: 1px;
	right: 2px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
	padding: 0 10px;
	text-align: center;
	font-size: 20px;
	background-color: transparent;
	color: white;
	z-index: 1020;
}

.lnms-nav-float-back-top:hover {
	background-color: #ccc;
	color: black;
	width: 200px;
}

.lnms-nav-float-back-top .lnms-nav-float-back-top-text {
  display: none;
	width: 0px;
}

.lnms-nav-float-back-top:hover .lnms-nav-float-back-top-text {
	display: inline;
	width: 100%;
}

/* Button float update
-------------------------------------*/
.lnms-btn-float-update {
	position: fixed;
	bottom: 30px;
	right: 10px;
	transition: all 0.3s ease;
	padding: 10px;
	text-align: center;
	font-size: 20px;
	background-color: black;    
	color: white;
	z-index: 1020;
}

.lnms-btn-float-update:hover {
	background-color: #ccc;
	color: black;
	width: 200px;
}

.lnms-btn-float-update .lnms-btn-float-update-text {
  display: none;
	width: 0px;
}

.lnms-btn-float-update:hover .lnms-btn-float-update-text {
	display: inline;
	width: 100%;
}

/* Tooltip
-------------------------------------*/
.lnms-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.lnms-tooltip .lnms-tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.lnms-tooltip .lnms-tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.lnms-tooltip:hover .lnms-tooltiptext {
  visibility: visible;
  opacity: 1;
}

	