﻿////////////////////////////////////
// LocationSearch
////////////////////////////////////

.pac-container {
    margin-top: 0px;
    margin-left: 0px;
}

.col-states {
    display: flex;
    /*flex-direction: column;*/
    flex-wrap: wrap;
    width: 100%;
}

.cities {
    list-style: none;
    padding: 0;
}

ul.cities > li {
    margin-bottom: 1rem;
}

.state-name {
    font-weight: bold;
    margin: 0;
}

@media only screen and (max-width: 480px) {
    .col-states {
        max-height: none;
    }

    .state {
        width: 100%;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .col-states {
        max-height: 5000px;
    }

    .state {
        width: calc(100% / 2);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .col-states {
        max-height: 4000px;
    }

    .state {
        width: calc(100% / 3);
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
    .col-states {
        max-height: 2400px;
    }

    .state {
        width: calc(100% / 4);
    }
}

@media only screen and (min-width: 1201px) {
    .col-states {
        max-height: 1800px;
    }

    .state {
        width: calc(100% / 6);
    }
}

@media (max-width:767px) {
    ul.cities > li {
        margin: 22px 0;
    }
}

/*    @media (min-width: 480px){
        .container {
            width: 90% !important;
        }
    }*/

////////////////////////////////////
// LocationSearchResults
////////////////////////////////////
.search-form {
    margin-bottom: 0px;
    width: 100%;
    flex: 1;
    flex-direction: row;
    display: flex;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .search-form {
        flex-direction: row;
        margin-bottom: 8px;
    }
}

@media screen and (min-width: 768px) {
    .search-form {
        display: flex;
        margin-bottom: 32px;
    }
}

.search-input {
    padding: 16px 32px;
}

.search-input {
    outline: none;
    width: auto;
    border-radius: 5px;
    padding: 8px 16px !important;
    -moz-box-flex: 1;
    flex-grow: 1;
    margin-right: 8px;
    border: 1px solid rgb(206, 212, 218);
}