﻿.col-states {
    display: flex;
    /*flex-direction: column;*/
    flex-wrap: wrap;
    width: 100%;
}

.cities {
    list-style: none;
    padding: 0;
}

.state {
    margin-bottom: 20px;
}

.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: 4000px;
    }

    .state {
        width: calc(100% / 2);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .col-states {
        max-height: 3000px;
    }

    .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;
            }
        }*/
