.city-location-table {
    background-color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.city-location-header {
    flex-shrink: 0;
    border-bottom: 1px solid #E4E4E4;
    display: flex;
}

.city-location-content {
    overflow-y: scroll;
    min-height: 60vh;
    max-height: 60vh;
    display: flex;
    flex-direction: column;
}

.city-location-row-block {
    text-align: center;
}

.city-location-row {
    /* flex: 1; */
    height: 50px;
    display: flex;
    align-items: center;
}

.city-location-th {
    height: 50px;
    width: unset;
    font-weight: bold;
    font-size: 16px;
    color: white;
    background-color: #0066ff;
    border-right: 1px solid #E4E4E4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.city-location-th:nth-last-child(1) {
    padding-left: 5px;
    padding-right: 10px;
}

.city-location-td {
    font-size: 16px;
    background-color: white;
    /* border-right: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.clt-1c {
    flex: 2;
    padding: 0 5px;
}

.clt-4c {
    flex: 4;
    padding: 0 5px;
}

@media only screen and (max-width:1023px) {
    .hide-on-mobile {
        display: none;
    }
}

@media only screen and (max-width:767px) {
    .city-location-content {
        min-height: unset;
    }
}
