html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    height: 100%;
}

.map_container {
    float: left;
    width: 100%;
    height: calc(100vh - 70px);
}

.map {
    width: 100%;
    height: 100%;
    text-align: center;
}

.map_edit {
    width: 500px;
    height: 500px;
    text-align: center;
}


.sidebar-brand-icon i {
    font-size: 2rem;
}


.panelFilter .fa-caret-up {
    transform: rotateX(0deg);
    transition: transform 0.5s linear;
}

.panelFilter.collapsed .fa-caret-up {
    transform: rotateX(180deg);
    transition: transform 0.5s linear;
}

.easy-button-button {
    display: block !important;
}
.tag-filter-tags-container {
    left: 30px;
}

#panelMapDetails {
    height: 500px;
    width: 0px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    z-index: 500;
    border-radius: 15px 0px 0px 15px;
    border: 1px solid #ccc;
    transition: width 0.5s;
}
#panelMapDetails > div {
    width: 250px;
}

#panelMapDetails.show {
    width: 250px;
}

.leaflet-top {
    z-index:450 !important;
}