body {
	background-color:rgba(204,204,204,0.3);
	font-family: 'Raleway', sans-serif;
}

select {
	font-size: 14px;
}
.clearfix {
	clear: both;
}
.lowercase {
	text-transform: none;
}
main#map-page {
	background-color: #FFFFFF;
	padding-bottom:20px;
}
/*overwrights rules for the other fixed one column*/
.container-fixed-column-maps {
    margin-bottom:0px!important;
    padding-right:8%!important;
    padding-left:15%!important; 
    padding-top:20px!important;
}
.fixed-column-maps {
    max-width: 1500px!important;
    width: 1500px;
    /*max-width: 700px!important;
    width: 700px;*/
    /*flex: 0 0 940px!important;*/
    margin-bottom:0px;
    /*padding-right:20%;
    padding-left:20%;*/
}
@media only screen and (min-width: 1500px){
  .fixed-column-maps {
    max-width: 1000px!important;
    width: 1000px;
  }
}

.full-size-container-custom {
	width: 90%; /*change this width to set view screen*/
	height:100%;
	position: relative;
	padding:0 0;
	background-color: #E5E5E5;

}
@media only screen and (min-width: 1500px){
  .full-size-container-custom {
    width: 100%; /*change this width to set view screen*/
  }
}
@media only screen and (max-width: 960px){
  .container-fixed-column-maps {
    margin-bottom:0px!important;
    padding-right:2%!important;
    padding-left:2%!important; 
    padding-top:20px!important;
  }
  .full-size-container-custom {
    width: 100%; /*change this width to set view screen*/
  }
}
@media only screen and (max-width: 767px){
 #top .container-fixed-column-maps {
    margin-bottom:0px!important;
    padding-right:1%!important;
    padding-left:1%!important; 
    padding-top:10px!important;
  }
}
/*settings for fullsize screen view*/
.full-size-container-custom:-moz-full-screen {
	height: 100%;
	background-color: #fff;
}
.full-size-container-custom:-webkit-full-screen {
	height: 100%;
	background-color: #fff;
}
.full-size-container-custom:-ms-fullscreen {
	height: 100%;
	background-color: #fff;
}
.full-size-container-custom:fullscreen {
	height: 100%;
	background-color: #fff;
}

.map-container {
	/*height: calc(80vh - 50px); /* 80% of the viewport height - navbar height */
  /*height:900px;*/
  height:500px;
	width: 100%;
	margin-top:30px;
	position:relative;
	margin-bottom:100px;
	

}
@media only screen and (min-width: 1500px){
  .map-container {
    height:800px;
  }
}

.map{
    width: 100%;
	/*max-height:100%;*/
	/*height: calc(100vh - 0px);  100% of the viewport height - navbar height */
	height:100%;
	position: absolute;
	margin:auto;
	left:0;
	top:0;
	display: flex;
    flex-flow: column nowrap;

}
.map-overlay {

	width: 100%;
	height:100%;
	position: absolute;
	margin:auto;
	left:0;
	top:0;
	display: flex;
  z-index:10;
}
.map:hover {
  cursor: pointer;
}
.map:-webkit-fullscreen {
	height: 100%;
  }
  .map:-moz-fullscreen {
	height: 100%;
  }
  .map:-ms-fullscreen {
	height: 100%;
  }
  .map:fullscreen {
	height: 100%;
  }

 
  /*Togge burger button to open sidebar menu*/
  .container-burger {
	position:absolute;
	top:0.5em;
	left: 0.5em;
	z-index:450;
  }
  .bar1, .bar2, .bar3 {
	width:  1.5em;
	height: 5px;
	background-color: #333;
	margin: 6px 0;
	transition: 0.4s;
  }
  .burger-white .bar{
    background-color: #fff;

  }
  .change .bar1 {
	transform: translate(0, 11px) rotate(-45deg);
  }
  
  .change .bar2 {opacity: 0;}
  
  .change .bar3 {
	transform: translate(0, -11px) rotate(45deg);
  }
/*new opening menu*/
  .bar {
	display:block;
	width: 1.5em;
	height: 5px;
	background-color: #333;
	margin: 6px 0;
	transition: 0.4s;	
  }
  .change .b1 {
    transform: translate(0, 11px) rotate(-45deg);
  }

  .change .b2 {
    opacity: 0;
  }

  .change .b3 {
    transform: translate(0, -11px) rotate(45deg);
  } /*end new opening menu*/
/***/
:root {
    --shadow_out: 0px 2px 4px rgba(0, 0, 0, 0.15), 0px 4px 8px rgba(0, 0, 0, 0.15),
      0px 8px 16px rgba(0, 0, 0, 0.15), 0px 16px 32px rgba(0, 0, 0, 0.15);
    --shadow_btn: 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 4px 8px rgba(0, 0, 0, 0.15),
      0px 8px 16px rgba(0, 0, 0, 0.15), 0px 16px 32px rgba(0, 0, 0, 0.15);
  }
.slide-map-menu {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    position: absolute;
    top: 10%;
    left: -30vw;
    z-index: 46;
    width: 0;
    opacity: 0;
    transition: 0.3s;
  }
  .tab-map-menu {
    width: 4vw;
    height: 100%;
  }
  .icon-sidenav {
	width:100%;
  }

  .tab-map-menu button {
    display: block;
    padding: 1.25rem 1rem;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    font: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow_out);
  }

  .tab-map-menu button:hover {
    background-color: #ddd;
  }

  .tab-map-menu button:active,
  .tab-map-menu button.active {
    font-weight: 700;
    background-color: #ccc;
    transform: scale(1.1);
  }

  .content-map-menu {
    position: absolute;
    left: -25vw;
    width: 0;
    min-height: 40vh;/*100% settings make the div high as the icon container div*/
    max-height:60vh;
    top:0; /*the top paramenter is set if the height is given in vh*/
    padding: 0px 0px;
    border: 1px solid #ccc;
    border-right: none;
    background: rgb(255, 255, 255);
    opacity: 0;
    transition: 0s;
    box-shadow: var(--shadow_btn);
	  overflow-y:scroll;
    z-index: 46;
  }
  .slide-map-menu.visible {
    width: 30vw;
    opacity: 1;
    transform: translateX(30vw);
  }

  .content-map-menu.visible {
    width: 20vw;
    opacity: 1;
    transform: translateX(30vw);
    transition: 0.8s;
  }
  @media only screen and (max-width: 1440px){
    .tab-map-menu {
      width: 4vw;
      }
    .content-map-menu {
      left: -23vw;
    }  
    .content-map-menu.visible {
      width: 30vw;
    }
  } 
  @media only screen and (max-width: 1200px){
	.tab-map-menu {
		width: 7vw;
	  }
	.content-map-menu {
		left: -23vw;
	}  
	.content-map-menu.visible {
		width: 30vw;
	}
}
@media only screen and (max-width: 786px){
	.map-container {
		height: calc(100vh - 50px); /* 100% of the viewport height - navbar height */
		width: 100%;
		margin-bottom:100px;

	}	
	.tab-map-menu {
		width: 30%;
	  }
	.content-map-menu {
		left:-62%;
	} 
	.content-map-menu.visible {
		width: 40vw;
	} 

}
@media only screen and (max-width: 480px){
	.tab-map-menu {
		width: 14vw;
	  }
	.content-map-menu {
		left:-10vw;
	} 
	.content-map-menu.visible {
		width: 60vw;
	} 

}
/****/

 

  /*overwrite Semantic UI style for search multiple selects*/

  .ui.container {
	padding:0;
  }
  .ui.dropdown .menu {
	background-color: rgb(255, 255, 255)!important;
  }
  .ui.label {
	font-weight: 400;
  }
  .button-drop {
	background-color: #f16364!important;
	color:#000000;
  }
  .button-drop:hover, .button-drop:focus {
	background-color: #d44444!important;
  }
  .button-filter {
	padding: 0.2em 0.8em .2em!important;
	font-family: 'neutratext-book', Helvetica, Arial, sans-serif!important;
	font-weight: 400 !important;
	line-height: 1.5em!important;
  }
  .btn-clear-sel {
    padding: 0.2em 0.8em .2em!important;
    font-family: 'neutratext-book', Helvetica, Arial, sans-serif!important;
    font-weight: 400 !important;
    line-height: 1.5em!important;
  }
  .ui.search.dropdown > .text {
    font-size: 16px;
  }
  .ui.multiple.dropdown > .label {
    font-size: 0.8em!important;
    font-weight:400!important;
  }
  .btn-clear-sel {
    margin:10px 0!important;
    background-color: #999!important;
  }
  .ui.dropdown.active .dropdown.icon {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg);
  }
  [type=button] {
    appearance:unset;
  -webkit-appearance:unset;

}

/*change color in checkboxes*/

.radio-option input[type="radio"] {
  accent-color: #e74c3c;
}
/*
  .side-hidden li:hover, .side-hidden li:active, .side-hidden li:focus {
	background-color: #ffffff;
  }*/
  /*ends sidebar nav*/


/*=============================*/
/***STYLE FOR ALTERNATE COLOR LINES IN SIDEBAR***/
/*=============================*/
.sidebar-section {
	background-color: #000000;
	color:#FFFFFF;
	font-size:16px;
	font-weight: bold;	
	padding:15px;
	text-transform: uppercase;
	margin-bottom:5px;
}
.sidebar-subsection {
	background-color: #f4f4f4;
	color:#000000;
	font-size:14px;
	padding:15px;
	text-transform: none;
}
.sidebar-title {
	background-color: #00000000;
	color:#000000;
	font-size:14px;
	padding:15px;
	margin:5px 0;
	text-transform: uppercase;
}
.sidebar-text {
	background-color: #ffffff00;
	color:#000000;
	font-size:13px;
	padding:15px;
	text-transform: none;
	line-height:1.2em;	
  display: none;
}
.sidebar-text.active {
  display:block;
}
.sidebar-section.active .dropdown.icon {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.flex-sidebar-container {
	display:flex;
	justify-content: space-between;
}
.float-left {
	flex:1;
}
.float-left:first-child {
	flex-grow:2;
}
.label-switcher {
	line-height: 38px;
	margin-right:20px;
  flex-basis: 80%;
}
.button-switcher {
	margin-right:0;
}
.form-group {
	margin-bottom:15px;
}
/*=============================*/
/***SWITCH BUTTONS FOR LAYERS CHECKBOX***/
/*=============================*/
.sidebar-switch-light {
	background-color: transparent;
	color:#000000;
	padding:15px;
}
.sidebar-switch-dark {
	background-color: #000000;
	color:#FFFFFF;
	padding:15px;
}
.switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 25px;
  }
.sidebar-switch-light > label.switch {
	border-color: #000000!important;
 } 
 .sidebar-switch-light > span.slider {
	border-color: #000000!important;
 } 
 .sidebar-switch-dark > label.switch {
	border-color: #ffffff!important;
 } 
 .sidebar-switch-dark > span.slider {
	border-color: #ffffff!important;
 } 
  .switch input { 
	opacity: 0;
	width: 0;
	height: 0;
  }
  
  .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: transparent;
	border: 2px solid #000000;
	-webkit-transition: .4s;
	transition: .4s;
  }
  
  .slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 0px;
	bottom: 0px;
	background-color: transparent;
	-webkit-transition: .4s;
	transition: .4s;
  }
  .sidebar-switch-light .slider:before {
	border: 2px solid #000000;
  }
  .sidebar-switch-light input:checked + .slider:before {
	background-color: #f16364;
  }
	.sidebar-switch-light input:focus + .slider:before {
	box-shadow: 0 0 1px #f16364;
  }
  .sidebar-switch-dark .slider:before {
	border: 2px solid #ffffff;
  }
  .sidebar-switch-dark  input:checked + .slider:before {
	background-color: #f16364;
  }
    .sidebar-switch-dark  input:focus + .slider:before {
	box-shadow: 0 0 1px #ffffff;
  }

  input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
	border-radius: 34px;
  }
  
  .slider.round:before {
	border-radius: 50%;
  }


/*==============================================*/
/*** MAP CONTROLS POSITION  ****/
/*==============================================*/
.cesium-icon-change-3d {
	position:inherit;
	padding: 4px;
	right:0.9em;
	top: 4em;	
	margin: 0;
	z-index:45;
	width:2em;
	
}
.cesium-icon-change-3d[type=button] {
	appearance: none;
	-webkit-appearance:none;
}

.cesium-icon-change-3d:hover {
	cursor:pointer;
}
/*hide Cesium logos*/
.cesium-credit-logoContainer, .cesium-credit-textContainer {
  display:none!important;
}
/*Manages fullscreen button when in Cesium projection*/
#cesiumFs {
  display:none;
  position: absolute;
  z-index:500;
  border-radius: 50%;
  background-color: #ffffff;
  right: 0.8em;
  top: 0.8em;
  width: 35px;
  height: 35px;
}
#cesiumFs.FsActive {
  display:block;
}
.cesium-button.cesium-fullscreenButton {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 50%;
}

.cesium-button {
position: relative;
background: #ffffff;
border: none;
color: #000000;
fill: #000000;
padding: 5px 0px;
cursor: pointer;
overflow: hidden;
user-select: none;
}
.cesium-svgPath-svg {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/*
.ol-zoom {
    left: 96%;
    top: 79%;
}*/
.ol-zoom {
	bottom: 5em;
	right: 1em;
	left: auto;
	top:auto;
}

.ol-zoom-in:hover [role=tooltip]{
	left: -6.2em;
	top:12.2em;
}

.ol-zoom-out:hover [role=tooltip]{
	 left: -6.2em;
	 top:-12.2em;
}
/*
.ol-zoomslider{

  height: 200px;
  left: unset;
  right: 1em;
  top:unset;
  bottom: 7em;

display:none;
}*/
.ol-attribution {
  bottom: 1em;
  right: 0.5em;

}
.ol-control {
  background-color: rgb(0, 0, 0);
  border-radius: 0px;
}
.ol-control.ol-full-screen {
	border-radius: 50%;

}
.ol-touch .ol-control button {
	font-size: 1em;
  }
.ol-control button, .ol-control button:focus {
	width:2em;
	height:2em;
	background-color: #000000;
	border-radius: 0px;
}

.ol-control button.ol-full-screen-false, .ol-control button.ol-full-screen-true{
	border-radius: 50%;
  cursor:pointer;
}
.ol-control button:hover {
	background-color: #00000078;
}

.ol-dragbox {
  background-color: transparent;
  border-color: rgba(100,150,0,1);
}
.map .ol-rotate {
	  top: 3em;
	}

.ol-scale-line {
  left:8px;
  background-color: rgba(0,0,0,0.3);
  border-radius:0px;
  display:none;
}
.ol-scale-line-inner {
	border:0px;
}
.ol-overviewmap {
  z-index:2;

}
.ol-scale-bar {
  position:absolute;
  bottom:8px;
  right: 8px!important;
  left: auto;
}


/*Cesium navigation help window*/
#navMouse, #navTouch {
  font-family: 'neutratext-book', Helvetica, Arial, sans-serif;
}
.btn-cesium-legend {
  position:inherit;
	padding: 4px;
	right:0.9em;
	top: 8em;	
	margin: 0;
	z-index:900;
	width:2em;
  visibility:hidden;
}
.btn-cesium-legend-visible {
  visibility: visible;
}
.cesium-navigation-help {
  visibility:hidden;
  position: absolute;
  top: 38px;
  right: 2px;
  width: 250px;
  max-height: 250px;
  border-radius: 10px;
  transform: scale(0.01);
  transform-origin: 234px -10px;
  transition: visibility 0s 0.25s, transform 0.25s ease-in;
  z-index:900;
}

.cesium-navigation-help-visible {
  visibility: visible;
  transform: scale(1);
  transition: transform 0.25s ease-out;
}
.cesium-navigation-help-instructions {
  border: 1px solid #444;
  background-color: rgba(38, 38, 38, 0.75);
  padding-bottom: 5px;
  border-radius: 0 0 10px 10px;
}
.cesium-click-navigation-help {
  display: none;
}
.cesium-touch-navigation-help {
  display: none;
  padding-top: 5px;
}
.cesium-click-navigation-help-visible {
  display: block;
}
.cesium-touch-navigation-help-visible {
  display: block;
}
table.navigation-cesium-table {
  background-color:transparent!important;
}
table.navigation-cesium-table tr:nth-child(2n+1), table.navigation-cesium-table tr:nth-child(2n) {
  background-color:transparent!important;
}
table.navigation-cesium-table td {
  vertical-align: top!important;
  padding: 3px 12px;
}
#infoTouch img {
  max-height:58px;
}
.cesium-navigation-help-pan {
  color: #66ccff;
  font-weight: bold;
}
.cesium-navigation-help-zoom {
  color: #65fd00;
  font-weight: bold;
}
.cesium-navigation-help-rotate {
  color: #ffd800;
  font-weight: bold;
}
.cesium-navigation-help-tilt {
  color: #d800d8;
  font-weight: bold;
}
.cesium-navigation-help-details {
  color: #ffffff;
}
.cesium-navigation-button {
  color: #fff;
  background-color: transparent;
  border-bottom: none;
  border-top: 1px solid #444;
  border-right: 1px solid #444;
  margin: 0;
  width: 50%;
  cursor: pointer;
  float: left;
}
.cesium-navigation-button-icon {
  vertical-align: middle;
  padding: 5px 1px;
}
.cesium-navigation-button:focus {
  outline: none;
}
.cesium-navigation-button-left {
  border-radius: 10px 0 0 0;
  border-left: 1px solid #444;
}
.cesium-navigation-button-right {
  border-radius: 0 10px 0 0;
  border-left: none;
}
.cesium-navigation-button-selected {
  background-color: rgba(38, 38, 38, 0.75);
}
.cesium-navigation-button-unselected {
  background-color: rgba(0, 0, 0, 0.75);
}
.cesium-navigation-button-unselected:hover {
  background-color: rgba(76, 76, 76, 0.75);
}
/*=======================================*/
/****TOOLTIPS VISIBLE ON LEFT MENU ****/
/*=======================================*/

[data-tooltip]:after {
  z-index:500!important;
  overflow:visible!important;
}
[data-tooltip][data-position="right center"]:hover:after {
  z-index:500!important;
  overflow:visible!important;
}

/*=======================================*/
/*** POPUP WINDOW FOR ALERT WHEN LAYERS ARE NOT FOUND  ****/
/*=======================================*/
#alert-not-found{
  position: absolute;
  z-index: 213000000;
  background-color: #fff;
  border: 1px solid #ccc;
	border-radius: 8px;
  color: #000000;
  font-size: 13px;
  font-weight:500;
  top: 100px;
  left: 40%;
  margin:10px;
  width:20vw;
	height:10vh;
	display:none;
	box-shadow: var(--shadow_btn);
  padding:5px;
}
.alert-content {
  border:solid 1px #000000; 
  border-radius: 5px;
  width:100%;
  height:100%;
  padding:5px;
}
.close-button-alert {
  float:right;
  border: 0;
  color: black;
  padding: 5px 10px;
  font-size: 1.3rem;
}
/*=======================================*/
/*** POPUP WINDOW FOR REGIONS INFO  ****/
/*=======================================*/


#info, #wmsInfo {
    position: absolute;
    z-index: 213000000;
    background-color: #fff;
    border: 1px solid #ccc;
	border-radius: 8px;
    color: #000000;
    padding: 10px;
    font-size: 14px;
    font-weight:500;
    top: 100px;
    left: 0;
    margin:10px;
    width:50vw;
	height:50vh;
	overflow: hidden;
	overflow-y: scroll;
	display:none;
	box-shadow: var(--shadow_btn);
}
#info.popup-small {
  width:20vw;
  height:20vh;
}
/*Resizeable*/
.ol-info-resize-handle {
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: 0;
  right: 0;
  cursor: nwse-resize; /* Set cursor to indicate resizing */
}
@media only screen and (max-width: 786px){
	#info, #wmsInfo {
		width:80vw;
	}

}
.info-table {
    width:100%;
    border-collapse: collapse;
}

.info-table th .close-button {
  float:right;
  border: 0;
  color: black;
  padding: 5px 10px;
  font-size: 1.3rem;
}
.info-table th .drag-button {
  float:left;
  border: 0;
  color: black;
  padding: 5px 10px;
  font-size: 1.3rem;
  width:80%;
}
.info-table .info-cell {
    vertical-align: middle;
    padding-bottom: 8px;
    padding-top: 8px;
}
.info-table .cell-title {
    background-color: #000;
    padding:6px 5px; 
}
.info-table .cell-title h2 {
    margin:0;
	color:#fff;
  font-size:20px!important;
}

.info-table .section-cell {
    border-bottom: 1px solid #000;
}
.info-table .subTitle {
    font-weight:bold;
}
.info-table .info-cell a {
  text-decoration: underline!important;
}

.map:-webkit-full-screen #info, .map:-moz-full-screen #info, .map:-ms-fullscreen #info,
.map:fullscreen #info, .map:-webkit-full-screen #wmsInfo, .map:-moz-full-screen #wmsInfo, .map:-ms-fullscreen #wmsInfo,
.map:fullscreen #wmsInfo{
 background-color: #222222;
    width:30vw;
    /*pointer-events: none;*/

}

.ol-zoom-in:-webkit-full-screen, .ol-zoom-in:-moz-full-screen, .ol-zoom-in:-ms-fullscreen,
.ol-zoom-in:fullscreen {
	background-color: #222222;
}

/*==============================================*/
/*** NOTIFICATION BAR AT THE BOTTOM OF MAP  ****/
/*==============================================*/
.notification-bar {
    width: 100%;
    height: 1.5em;
    display: table;
	position: relative;
	bottom:0;
}
.notification-bar > div {
    height: 100%;
    display: table-cell;
    border: 1px solid #e7e7e7;
    width: 34%;
    box-sizing: border-box;
    vertical-align: middle;
	background-color: #FFFFFF;
}
.notification-bar .message-bar {
    width: 66%;
	font-family: 'Raleway', sans-serif;
	font-size:14px;
	font-weight: bold;
	color: rgba(70, 119, 175, 1);
	padding-left: 20px;
	text-transform: uppercase;
}
.notification-bar .ol-mouse-position {
    font-family: 'Raleway', sans-serif;
	font-size:14px;
    text-align: center;
    position: static;
}

/*==============================================*/
/*** LEGEND AT THE BOTTOM OF MAP  ****/
/*==============================================*/
.legend {
	width:100%;
	position:absolute;
	bottom:-80px;
	left:0px;
	background-color: #F4F4F4;
	padding:5px;
}
.legend .legend-title {
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 90%;
    }
  .legend .legend-scale ul {
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
    float: left;
    list-style: none;
    }
  .legend .legend-scale ul li {
    font-size: 80%;
    list-style: none;
    margin-left: 10px;
    line-height: 30px;
    margin-bottom: 2px;
    float:left;
    }
  .legend ul.legend-labels li span {
    display: block;
    float: left;
    height: 30px;
    width: 30px;
    margin-right: 5px;
    margin-left: 0;
    border: 1px solid #999;
    }
  .legend .legend-source {
    font-size: 70%;
    color: #999;
    clear: both;
    }
  .legend a {
    color: #777;
    }

/*==============================================*/
/*** SCREENSHOT  ****/
/*==============================================*/
.html2canvas-container { width: 3000px !important; height: 3000px !important; }