.legend {



    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;

    color: #404040;
}

.filter-box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #FFFFFF;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.16);
    border-radius: 16px;
    padding: 20px 32px 7px;
    /*display: none;*/
    width: 360px;
}

.legend .item {
    position: relative;
    display: flex;
    flex-direction: row;
    widtH: 100%;

    z-index: 9;
    padding: 10px 40px 10px 8px;
    margin: 8px 0px;
    color: #404040;
    font-size: 16px;
    border-radius: 2px;
}

.legend .item::before {
    content: "";

    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    opacity: 0.5;
    background-color: var(--data-color);
}

.legend .item::after {
    content: "";

    position: absolute;
    z-index: 1;
    width: 24px;
    height: 24px;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);

    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    background-image: var(--data-icon);
}
.legend .item label{
    padding-left:5px;
    cursor:pointer;
}

body .btn.open_fltrs_btn{
    font-style: normal;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    -webkit-border-radius: 24px;
    width: 195px;
    height: 40px;
    line-height: 40px;
    margin: 24px 0 0px auto;
    cursor: pointer;
    display:none;
}


.region-name{
    position: absolute;
    left: -450px;
    top:10px;
}
.region-name span{
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    background: #FFFFFF;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.04);
    border-radius: 2px;
    padding:16px 16px 16px 16px;
}

.objects{
    position: absolute;
    top:0;
    left:0;
    z-index: 9999;
}
.objects > div{
    background:#fff;
    color: #404040;
    padding:24px;
    display:none;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 32px;
    max-width:600px;
}
.objects h3{
    font-weight: bold;
    font-size: 20px;
    line-height: 32px;
}
.objects h3 .square{
    color:#6BAB90;
    white-space: nowrap;
}
.objects   p{
    padding-bottom:0;
}
.objects .btn{
    width:200px;
    line-height: 66px!important;
}

@media (max-width: 767px) {
    .leaflet-right{
        right: 50%;
        transform: translateX(50%);
    }
    body .btn.open_fltrs_btn{
        margin: 24px auto 0;
        display:block;
    }
    .filter-box{
        display: none;
    }
}