.flights{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 310px;
    margin-top: 20px;
    color: #1b1b1b;
    background-color: #fff;
    overflow: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    z-index: 100;
}


.flights.flights__d{
    left: 268px;
}

.flights::-webkit-scrollbar {
    display: none; /* Chrome, Safari y Opera */
}

.flights__el{
    display: flex;
    justify-content: space-between;
    padding: 19px 10px 19px 20px;
    border-bottom: 1px solid #e4e5e6;
}

.flights__el:last-child{
    border-bottom: none;
}

.flights__name{
    font-size: 16px;
}

.flights__city p{
    font-size: 14px;
}

.flights__city span{
    margin-left: 12px;
}