@CHARSET "ISO-8859-1";

.layer-group{
	margin: 5px;
	padding: 2px;
	background-color: #f3f3f3;
    padding-right: 3px;
    border-radius: 2px;
    color: #333333;
    display: inline-block;
    font-weight: bold;
   
    vertical-align: top;
    width: 185px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.layer-group.minimized {
	width: 60px;
}

.toggle-btn {
    cursor: pointer;
    height: 18px;
    position: absolute;
    right: -4px;
    top: -4px;
    width: 18px;
    background-color: black;
    border-radius: 100%;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
    text-align: center;
    line-height: 19px;
}

.minimized .toggle-btn {
	background-color: white;
}


.toggle-btn:after {
    content: "-";
    font-size: 24px;
    color: white;
    font-weight: 100;
}


.minimized>.toggle-btn:after {
    content: "+";
    color: black;
    font-size:17px;
    font-weight: 500;
}



.LegendTitle img {
	border-radius: 3px 3px 18px 18px;
	box-shadow: 0 0 5px black;
	float: left;
	height: 32px;
	margin-right: 5px;
	width: auto;
}

.LegendTitle {
	font-size: 1.1em;
	height: 32px;
	padding: 10px;
}

.layer-group.minimized .LegendTitle {
	display: none;
}

.LegendMapStats {
	color: white;
	float: right;
	padding: 5px;
	text-shadow: 0 0 2px black;
}

.layers {
	margin: 5px;
	padding: 5px;
}


.layer {
	border-radius: 6px 6px 6px 6px;
	display: inline-block;
	margin: 2px;
	text-align: left;
	width: 100%;
	position: relative;
	z-index: 1;
	
}
.layer:hover:before {
	background-color: rgba(0, 0, 0, 0.025);
	border-radius: 10px;
	content: "";
	height: calc(100% +       6px);
	left: -5px;
	position: absolute;
	top: -3px;
	width: calc(100% +       10px);
	z-index: -1;
}

.layer-group .label {
	float: left;
	padding-right: 10px;
	max-width: calc( 100% - 60px );
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.layer-group.minimized .label {
	display: none;
}

.layers img {
	float: left;
	margin-right: 5px;
	margin-top: 1px;
}

.indicator-switch {
	background-color: rgba(0,0,0,0.1);
    border: 1px solid #999999;
    border-radius: 3px 3px 3px 3px;
    float: right;
    height: 5px;
    margin-bottom: 10px;
    margin-right: 1px;
    margin-top: 5px;
    width: 12px;
    position: relative;
}

.layer-group.minimized>ul>.indicator-switch {
	width: 5px;
}

.active>.indicator-switch {
	background-color: aqua;
}

.layer-group.minimized .active>.indicator-switch {
	
}
.edit-layer-btn {
	width: 17px;
	display: inline-block;
	height: 14px;
	background-size: 100%;
	margin: 0 3px;
}

.layer-group.minimized .edit-layer-btn {
	display: none;
}

.layers .draggable.handle {
	z-index: 1;
	position: relative;
}

.layers .draggableIndicator {
	position: absolute;
	top: -5px;
	left: 18px;
	z-index: 0;
	opacity: 0.5;
	width: 20px;
	height: auto;
}
.layer:hover .draggableIndicator {
	-webkit-transform: rotate(-15deg);
	opacity: 1;
}


@media screen and (max-height: 300px), screen and (max-width: 300px)  {
	.map-legend{
		display:none;
	}
}


.indicator-switch:after {
    content: "";
    position: absolute;
    height: 5px;
    width: 5px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 100%;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
    top: -1px;
    left: -1px;
    border: 1px solid rgba(0,0,0,0.5);
    transition: left 0.25s;
}

.active>.indicator-switch:after {
    left: 6px;
     background-color: white;
}

.layer-group.minimized>ul>.indicator-switch:after{
    display:none;
}

.layer-group{
	position: relative;
}


