*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
}

.float{
    display: grid;
    grid-template-rows: 50% 50%;
    position: fixed;
	top: 40px;
	right: 40px;
    background-color: rgb(255, 255, 255);
    z-index: 2
}

.float .float-title{
    background-color: rgb(0, 176, 240);
    display: flex;
    align-items: center;
}

.float .float-title h1{
    margin: auto;
    font-size: 18pt;
    font-family: Arial;
    color: rgb(255, 255, 255);
}

.float .float-layers{
    margin: 2em;
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%;
    align-items: center;
    align-content: center;
}

.float .float-layers .layer{
    display: flex;
    align-items: center;
    border-style: solid;
    border-color: rgb(192, 192, 192);
    border-width: 0.3mm;
}

.float .float-layers .layer:hover{
    cursor: pointer;
    background-color: rgb(223, 223, 223);
}

.float .float-layers .layer h2{
    margin: 0.5em;
    text-align: center;
    font-size: 12pt;
    font-family: Arial;
    font-weight: normal;
}

.Tamplate{
    display: flex;
    margin: auto;
}

.Tamplate .Map{
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
}

#abrir-cerrar{
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 0px;
    height: 0px;
}

label[for="abrir-cerrar"]{
    position: absolute;
    display: flex;
    top: 50%;
    left: 50px;
    z-index: 20;
    width: 30px;
    height: 70px;
    background-color: aliceblue;
    opacity: 0.9;
}

label[for="abrir-cerrar"]:hover{
    cursor: pointer;
}

.abrir{
    margin: auto;
	max-width: 100%;
	display: flex;
}

.abrir img{
	max-height: 30px;
	margin: auto;
}

.cerrar{
    margin: auto;
	max-width: 100%;
	display: none;
}

.cerrar img{
	max-height: 30px;
	margin: auto;
}

#abrir-cerrar:checked ~ label[for="abrir-cerrar"] .cerrar{
	display: flex;
	margin: auto;
}

#abrir-cerrar:checked ~ label[for="abrir-cerrar"] .abrir{
	display: none;
}

#abrir-cerrar:checked ~ label[for="abrir-cerrar"]{
	left: calc(100% - 80% + 50px);
}

#abrir-cerrar:checked ~ #layersbar{
	display: flex;
}

#menubar{
    display: flex;
    z-index: 1;
    width: 50px;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    opacity: 1;
}

#menubar #menucontent{
	width: 90%;
    margin: auto;
}

#menubar #menucontent .icon{
	width: 35px;
    height: 35px;
    display: flex;
    border-radius: 50%;
}

#menubar #menucontent .icon:hover{
	cursor: pointer;
    background-color: rgb(211, 211, 211);
}

#menubar #menucontent .icon img{
	width: 25px;
    height: 25px;
    margin: auto;
}

#layersbar{
	display: none;
    position: absolute;
    flex-direction: column;
    z-index: 1;
    left: 50px;
	width: 20%;
    height: 100vh;
	background-color: aliceblue;
    opacity: 0.9;
}

#layerscontent{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 90%;
}

#layerscontent .layer{
    height: 30px;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 20% 80%;
}

#layerscontent .layer:hover{
    background-color: rgb(143, 143, 143);
}

#layerscontent .layer input{
    margin: auto;
}

#layerscontent .layer h3{
    display: flex;
    align-items: center;
    text-align: left;
    font-family: Arial;
    font-size: 12pt;
}

#usercontent{
    display: none;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 90%;
}

#usercontent .icon{
    width: 60px;
    height: 60px;
    margin: auto;
}

#usercontent .icon img{
    width: 50px;
    height: 50px;
    margin: auto;
}

#usercontent .layer{
    height: 30px;
    width: 100%;
    margin: auto;
    display: flex;
}

#usercontent .layer h2{
    margin: auto;
    font-family: Arial;
    font-size: 15pt;
}

#usercontent .layer h3{
    margin: auto;
    font-family: Arial;
    font-size: 10pt;
}

#devicescontent{
    display: none;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 90%;
}