﻿.flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.map-master {
    padding: 6rem 5rem;
}

    .map-master h2 {
        font-size: 3.0rem;
        background-color: #7dc357;
        color: #FFF;
        margin-bottom: 2rem;
        line-height: 3.2rem;
        padding: 1rem;
        border-radius: 8px;
    }

    .map-master h3 {
        font-size: 2.4rem;
        color: #133a64;
        margin-bottom: 1rem;
        text-transform: uppercase;
        line-height: 2.8rem;
    }

    .map-master h4 {
        font-size: 2.0rem;
        color: #199bd7;
        margin-bottom: 2rem;
        margin-top: 2rem;
        line-height: 1.8rem;
    }

.map-content {
    width: 40%;
}

.map-wrap {
    width: 60%;
    position: relative;
}

.spinner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .6);
    z-index: 100;
}

    .spinner img {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -20px;
        margin-left: -20px;
    }

label {
    font-weight: bold;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #CCC;
    height: 60px;
    margin-top: 10px;
    margin-bottom: 30px;
}


@media (max-width: 1100px) {
    .map-content {
        width: 100%;
    }

    .map-wrap {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .map-master {
        padding: 3rem 2rem;
    }

        .map-master h2 {
            font-size: 2.4rem;
            line-height: 2.8rem;
        }
}

@media only print {
    .map-content {
        width: 100%;
    }

    .map-wrap {
        width: 100%;
    }
}
