.select-city {
    width: 70%;
    max-width: none;
    min-width: 0;
}

.city-list {
    font-family: var(--font-base);
    font-weight: 200;
    font-size: 14px;
    color: var(--grey-dark);

    width: 100%;
    height: 100%;

    border: none;
    background: transparent;
    padding-right: 12px;

    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;

    /* šipka */
    background-image:
        linear-gradient(45deg, transparent 50%, #000 50%),
        linear-gradient(135deg, #000 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 15px,
        calc(100% - 12px) 15px;
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

.city-list option:checked {
    background-color: var(--orange);
    color: #fff;
}
