﻿
body {
    font-family: 'Poppins';
}

#locations li {
    position: relative;
    z-index: 20;
}


.location-item.hover .location-title {
    transition: .2s;
    color: #EA2027;
}

.location-item.hover {
    background-color: #f7f8f9;
}

#more-info * {
    position: relative;
    z-index: 40;
}

.longdesc {
    display: none;
}

#locations {
    height: 50vh;
    overflow-y: scroll;
    list-style: none;
    padding: 0px;
}

    #locations li {
        border-bottom: 1px solid #e1e5e7;
        cursor: pointer;
        font-size: 15px;
        transition: .5s;
    }

        #locations li:hover {
            background-color: #f7f8f9;
        }

.mobile-show-map {
    color: #EA2027;
}

div#map_canvas {
    height: 50vh;
    border: 1px solid #dfdfdf;
    width: 100%;
}

.mobile-show-map img {
    width: 16px;
    height: 16px;
}


@media only screen and (max-width: 768px) {
    .mobile-map {
        height: 20vh;
        border: 1px solid #dfdfdf;
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .mobile-show-map {
        display: none;
    }

    #locations li:hover .location-title {
        transition: .2s;
        color: #EA2027;
    }
}
