body {
    margin: 0;
    padding: 0;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.map-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* margin-top: 2%; */
}

.map-relative {
    position: relative;
}

.map-list-address {
    width: 30%;
    float: left;
    height: 70vh;
    box-shadow: inset 0 0 5px 0 #ccc;

}

.map-block {
    width: 70%;
    position: relative;
    float: left;
    height: 70vh;
    box-shadow: inset 0 0 5px 0 #FFF;
}

.map-list-address .map-search-address {
    padding: 5%;
}

.map-list-address .map-search-address input {
    width: 100%;
    border-color: #ccc;
    padding: 2%;
}

.map-list-address .map-search-address input:focus {
    outline: none;
}

.map-list-address #mapbox-list-marker {
    list-style: none;
    padding-left: 5%;
    padding-right: 5%;
    margin: 0;
    height: 60vh;
    overflow: auto;
}

.map-list-address #mapbox-list-marker .list-marker {
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.map-list-address #mapbox-list-marker .list-marker:first-child {
    border-top: 1px solid #ccc;
}

.map-list-address #mapbox-list-marker .list-marker:hover {
    background: rgba(215, 215, 215, 0.34);
}

.map-list-address #mapbox-list-marker .list-marker h5 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    margin: 0;
    display: flex;
}

.map-list-address #mapbox-list-marker .list-marker h5::before{
    content: "";
    background: url('/files/system/img/general/favicon-apple.png');
    background-size: 36px 36px;
    background-repeat: no-repeat;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    align-self: center;
}

.map-list-address #mapbox-list-marker .list-marker h5 span{
    align-self: center;
}

.map-list-address #mapbox-list-marker .list-marker p {
    font-size: 0.8em;
    color: #666;
    display: block;
    padding: 4px 0px;
    font-style: italic;
    margin: 0px;
    font-weight: normal;
}

.show {
    opacity: 1;
    transition: opacity 1000ms;
}

.hide {
    opacity: 0;
    transition: opacity 1000ms;
}

.mapboxgl-canvas{
    width: 100% !important;
}

@media only screen and (max-width: 786.99px) {
    .map-list-address {
        display: none;
    }

    .map-block {
        width: 100%;
    }
}