.map_cont {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 400px
}

.marker-list-cont{
    display: flex;
    flex-direction: column;
    width: 420px;
    background-color: #24292E;
    padding: 0 5px 0 0;
}

.marker-list{
    /*padding: 0 20px 0 20px;*/
    overflow: hidden;
    overflow-y: auto;
    scrollbar-color: #525252 #3C3C3C;
    scrollbar-width: thin;
}

.map-m{
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #3C3C3C;
    cursor: pointer;
    transition: .3s;
}

.map-m:hover{
    background-color: #3C3C3C;
}

.map-m-logo {
    width: 40px;
    padding: 0 20px 0 20px;
    align-self: center;
}

.map-m-logo img{
    max-width: 40px;
    max-height: 40px;
}

.map-m-txt{
    display: flex;
    flex-direction: column;
}

.map-m-org{
    color: white;
    font-size: 20px;
    padding: 0 0 5px 0;
}

.map-m-addr{
    opacity: 0.4;
    font-size: 16px;
    line-height: 22px;
}

.pm-map {
    flex: 1;
    /*width: 100%;*/
    height: 400px;
    position: relative;
}

.city_list{
    -webkit-appearance: none;
    width: 100%;
    background-color: #24292E;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: 0;
    border-bottom: 1px solid #3C3C3C;
}

.city_list:focus {
    outline:none;
}

#pm-info {
    position: absolute;
    display: inline-block;
    height: auto;
    width: auto;
    z-index: 100;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    left: 50%;
    transform: translateX(3%);
    visibility: hidden;
    pointer-events: none;
}

.map-i-cont{
    display: flex;
    flex-direction: row;
}
.map-i-logo-cont{
    display: flex;
    flex-direction: row;
    align-self: center;
    /*width:  100%;*/
}
.map-logo{
    padding: 5px;
}
.map-i-txt{
    align-self: center;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 5px;
}
.i-org{
    align-self: center;
    text-align: left;
    font-size: 18px;
    width: 100%;
    padding: 0 0 10px 0;
}
.i-address{
    font-size: 14px;
    text-align: left;
}

.ol-filter{
    filter: grayscale(90%) invert(90%);
    -webkit-filter: grayscale(90%) invert(90%);
}

.ol-attribution a{
    font-size: 12px !important;
}
.ol-attribution li{
    margin-left: 10px !important;
}
.ol-attribution.ol-uncollapsible{
    opacity: .6;
    transition: .3s;
}
.ol-attribution.ol-uncollapsible:hover{
    opacity: 1;
}
@media (max-width: 768px) {
    .map_cont{
        flex-direction:  column;
        height: 600px;
    }
    .marker-list-cont{
        max-height: 250px;
        width: 100%;
    }
    .pm-map{
        height: 350px;
        width: 100%;
        position: inherit;
    }
    .ol-attribution li{
        font-size: 12px !important;
    }

}