@import url('http://fonts.googleapis.com/css?family=Lato');

.layer-switcher.shown.ol-control {
    background-color: transparent;
}

.layer-switcher.shown.ol-control:hover {
    background-color: transparent;
}

.layer-switcher {
    position: absolute;
    top: 2.8em;
    left: 0.5em;
    text-align: left;
}

.layer-switcher.shown {
    bottom: 1em;
}

.layer-switcher .panel {
    padding: 0 1em 0 0;	
    margin: 0;   
    display: none;
    max-height: 100%;
	width: 180px;
    overflow-y: auto;
	background-color:rgba(255,255,255,0.5);

}

.layer-switcher.shown .panel {
    display: block;
}

.layer-switcher button {
    float: right;
    width: 38px;
    height: 38px;
    background-image: url('/img/layers.png') /*l.png*/;
    background-repeat: no-repeat;
    background-position: 2px;
    background-color: transparent;
    border: none;
}

.layer-switcher.shown button {  
    float: left;
     background-position: 2px;
    background-color:rgba(255,255,255,0.5);
}

.layer-switcher button:focus, .layer-switcher button:hover {
	background-color:rgba(255,255,255,0.5);
     background-position: 2px;
}

ul{
  list-style: none;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

ul li{
  color: #676464;
  display: block;
  position: relative;
  float: left;
  width: 100%;
  height: 40px;
	border-bottom: 1px solid #111111;
}

ul li input[type=radio]{
  position: absolute;
  visibility: hidden;
}

ul li label{
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 1em;
  padding: 2px 2px 2px 40px;
  margin: 10px auto;
  height: 20px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

ul li:hover label{
	color: #000;
}

ul li .check{
  display: block;
  position: absolute;
  border: 1px solid #AAAAAA;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  top: 10px;
  left: 10px;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}

ul li:hover .check {
  border: 5px solid #919191;
}

ul li .check::before {
  display: block;
  position: absolute;
	content: '';
  border-radius: 100%;
  height: 10px;
  width: 10px;
  top: 2px;
  left: 2px;
  margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}

input[type=radio]:checked ~ .check {
  border: 3px solid #6d91a9;
}

input[type=radio]:checked ~ .check::before{
  background: #6d91a9;
}

input[type=radio]:checked ~ label{
  color: #000;
    font-weight: bold;
}
