.hidden {
    display: none;
}

.leaflet-control-basemapsSwitcher{
    height: auto;
    width: auto;
    display:flex;
}

.leaflet-control-basemapsSwitcher:hover{
    cursor: pointer;
}

.basemapImg{
    box-shadow: 2px 2px 5px rgb(0 0 0 / 65%);
    background-color: #fff;
    margin:5px;
    padding:5px;
    border-radius: 10px 10px;
}

.basemapImg div{
    background-size: 90px 90px;
    width: 90px;
    height: 90px;
    border-radius: 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.basemapImg div .name{
    width:98%;
    height:auto;
    background-color: var(--basemap-bg);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    color: var(--basemap-color);
    display: flex;
    align-items: center;
    font-weight: 500;
    padding:1px;
}

.basemapImg div .check{
    width:auto;
    height:auto;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    font-weight: 500;
    padding:1px;
    content:''
}

.activeMap::before{
    color: var(--basemap-check-color);
    content: '✔';
    width: 18px;
    height: 18px;
    background-color: var(--basemap-check-bg);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
