#map {
    width: 100%;
    height: 800px;
}

.info-window .title {
    overflow: hidden;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-window div {
    color: #333;
    font-family: Arial;
    font-size: 13px;
    background-color: white;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
    margin-top: 3px;
}

.day {
    margin-top: 15px;
}

.location-row .md-primary {
    margin-right: 0;
}

.loading-wrapper {
    height: 100vh;
}

.fade {
    animation: fade 0.5s ease-in-out;
    -webkit-animation: fade 0.5s ease-in-out;
}

@media screen and (min-width: 1280px) {
    .margin {
        margin-left: 15px;
    }
}

@media screen and (max-width: 600px) {
    .location-row {
        width: 95%;
        margin: 0 auto;
    }

    .location-row md-autocomplete {
        width: 100%;
    }

    #map {
        height: 400px;
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}