#loadingContainer {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 1000000;
}

#loadingSpinner {
	width: 100px;
	color: var(--teal);
	margin-top: 45vh;
	margin-left: calc(50vw - 50px);
	margin-right: auto;
	text-align: center;
}


.link-container {
	background-color: transparent;
	padding: 2px 20px;
	transition: ease-in-out background-color .15s;
}

.link-container:hover {
	background-color: var(--primary);
}

.lms-sidebar {
	position: absolute;
	left: 0;
	top: 48px;
	bottom: 0;
	width: 50px;
	background-color: #262626;
	z-index: 10000;
	
	border-top: 1px dotted #999;
}

.lms-sidebar-option {
	color: #999;
	padding: 14px;
	transition: ease-in-out color .15s;
	transition: ease-in-out background-color .15s;
	border-bottom: 1px dotted #999;
	cursor: pointer;
	text-align: center;
}

.lms-option-selected {
	background-color: var(--primary) !important;
}

.lms-sidebar-option:hover {
	color: white;
	background-color: var(--primary);
}

.lms_option_active {
	color: white;
	background-color: var(--primary);
}

.lms-logo-title {
	position: absolute;
    left: 0px;
    color: #262626;
    font-weight: bold;
    font-size: 1.6em;
    text-shadow: 1px 1px 0px #999, -1px 1px 0px #999, 1px -1px 0px #999, -1px -1px 0px #999;
	transition: ease-in-out color .5s;
}

.lms-logo-title:hover {
    color: #FFF;
    text-shadow: 1px 1px 0px #000, -1px 1px 0px #000, 1px -1px 0px #000, -1px -1px 0px #000;
}

.full-height-panel {
	height:calc(100vh - 50px);
	overflow:auto;
}



.lms-sidepanels{
    position: absolute;
    bottom: 0;
  	left: 50px;
	top: 48px;
    width: 0;
    border: 1px solid red;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 0, 0, 0.3);
    /*-webkit-transition: width 2s; /* Safari prior 6.1 */
    /*transition: width 2s;*/
	background-color: rgba(0,0,0, 0.7);
	z-index: 10000;
}

#layersMapTypes{
    position: absolute;
    font-size:12px;
    border: 1px solid #ffc107;
    top: 80px;
    width:180px;
    right: -190px;
    background-color: rgba(255, 255, 255, 0.9);
    padding:10px;

}
#layersMapTypes > span {
    margin-left:20px;
}
#custom_map_type {
    position: absolute;


    border: 1px solid rgba(220, 220, 220, 0.7);
    top: 80px;
    right: -48px;
    background-color: rgba(120, 120, 120, 0.5);
}

/*.lms-sidepanels {
	position: absolute;
	left: 50px;
	top: 48px;
	bottom: 0;
	width: 400px;
	background-color: rgba(0,0,0, 0.7);
	z-index: 10000;
}*/

.lms-sidepanel {
	opacity: 0.0;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 400px;
}

.panelTitle {
	color: white;
	background-color: var(--primary);
	padding: 15px;
	font-weight: bold;
}

.panelContainer{
    position: absolute;
	background-color: white;
	bottom: 0;
}
.panelContent {
	color: black;
	background-color: white;
	padding: 15px;
	/*position: absolute;
	top: 54px;
	bottom: 0;*/
	width: 100%;
	overflow:auto;

}

.panelCloseBtn {
	position: absolute;
	right: 0;
	top: 0;
	padding: 15px 20px;
	cursor: pointer;
	z-index: 10000;
}

.panelCloseBtn:hover {
	background-color: #262626;
}

.lms-search {
	position: relative;
	display: flex;
	border: 1px solid #999;
	border-radius: 6px;
	padding: 4px 6px;
}

.search-input {
	border: none;
	width: 90%;
	z-index: 10000;
}

.search-btn {
	position: absolute;
	right: 0;
	top: 0;
	padding: 4px 8px;
	color: #999;
	cursor: pointer;
	z-index: 10000;
}

.search-btn:hover {
	color: black;
}

.search-clear-btn {
	position: absolute;
	right: 20px;
	top: 0;
	padding: 4px 8px;
	color: #999;
	cursor: pointer;
}

.search-clear-btn:hover {
	color: black;
}

#searchResultList {
	min-height: 200px;
	max-height: 400px;
	overflow: auto;
	direction: ltr;
	border: 1px solid lightgrey;
	border-radius: 8px;
}

.searchResult {
	border: 1px solid lightgrey;
	border-radius: 8px;
	position: relative;
	max-height: 60px;
}

.searchResultLabel {
	display: inline-block;
	max-width: 80%;
	overflow: auto;
	height: 60px;
	padding: 8px 12px;
}

.searchResultBtn {
	position: absolute;
	right: 4px;
	top: 8px;
}

.mapBtnContainer {
	position: absolute; 
	right: 10px; 
	top: 150px;
	z-index: 0;
}

.mapBtn:first-child {
	border-top: 1px solid transparent;
	border-radius: 4px 4px 0px 0px;	
}

.mapBtn:last-child {
	border-top: 1px solid lightgrey;
	border-radius: 0px 0px 4px 4px;
}

.mapBtn {
	min-width: 10px; 
	min-height: 10px; 
	background-color: white; 
	color: darkgrey; 
	padding: 12px 14px; 
	font-weight: bold; 
	border-radius: 0px; 
	border: 1px solid transparent;
	border-top: 1px solid lightgrey;
	cursor: pointer;
	margin-top: 0px;
	text-align: center;
}

.mapBtn:hover {
	color: black;
}

.lms-layer-visibility {
	border-top: none;
	border-left: 1px solid lightgrey;
	border-right: 1px solid lightgrey;
	border-bottom: 1px solid lightgrey;
}

.lms-layer-visibility:first-child {
	border-radius: 8px 8px 0px 0px;
	border-top: 1px solid lightgrey;
}

.lms-layer-visibility:last-child {
	border-radius: 0px 0px 8px 8px;
}

.lms-layer-visibility.unique {
	border-radius: 8px;
}

.lms-layer-visibility-checkbox {
	text-align: center;
	vertical-align: middle;
	padding: .375rem .75rem;
	line-height: 1.5rem;
	border-right: 1px solid lightgrey;
	margin: 1px;
	cursor: pointer;
	color: lightgrey;
}

.lms-layer-visibility-checkbox:hover {
	color: black;
}

.sliderSmall{
  width: 30px;


}
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 8px;
  border: 1px solid lightgrey;
  background: white;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 50%;
  border: 1px solid transparent;
  width: 12px;
  height: 12px;
  background: var(--primary);
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: var(--primary);
  cursor: pointer;
}

input[type=range]::-moz-focus-outer {
    border: 0;
}

.lms-input-custom {
	padding: .375rem .75rem;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	height: calc(1.5em + .75rem + 2px);
}

.lms-input-custom:focus {
	border: 1px solid var(--primary);
}

#mapSnapshotImage {
	height: 40vh;
	border: 1px solid lightgrey; 
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: contain;
}

.snapshot p{
    font-size:12px;
}

.nav-company-logo {
    width: 80px;
    height: 40px;
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}