.flex-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.col {
    flex: 1;
    flex-basis: 30%;
    margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
    .col {
        flex: 1;
        flex-basis: 100%;
        margin-bottom: 15px;
    }

    .col div {
        width: fit-content;
        margin: auto;
    }
}

.by-city .post-list-item a {
    font-size: 14px;
    color: #c50017 !important;
    text-decoration: none;
    text-underline: none !important;
}

.by-city .post-list-item a.is-special {
    color: green !important;
}

.by-city .city-detail {
    font-size: 14px;
    color: black !important;
}

.marker-container {
    width: 100%;
    text-align: center;
}

.marker-container i.fa {
    font-size: 25px;
    margin-bottom: 0;
    color: #c50017;
}

.marker-container.is-special i.fa {
    color: green !important;
}