.flights{
    position: absolute;
    top: 100%;
    left: 15px;
    display: flex;
    flex-direction: column;
    width: 350px;
    max-height: 310px;
    color: #676b70;
    background-color: #fff;
    box-shadow: 1px 1px 6px #00000042;
    z-index: 100;
    overflow: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

#favorite-airports.flights{
    max-height: 400px;
}

.flights.flights__d{
    left: 268px;
}

.flights::-webkit-scrollbar {
    display: none; /* Chrome, Safari y Opera */
}

.flights__ttl{
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #3A3C40;
}

.flights__el{
    display: flex;
    justify-content: space-between;
    padding: 12px 10px 12px 20px;
    border-bottom: 1px solid #e4e5e6;
    cursor: pointer;
}

.flights__el:last-child{
    border-bottom: none;
}

.flights__el--favorite{
    padding: 12px 10px;
}

.flights__el-img{
    display: flex;
    gap: 12px;
}

.flights__img{
    width: 64px;
    border-radius: 4px;
}

.flights__city{

}

.flights__city b{
    font-weight: 600;
}

.flights__city p{
    font-size: 12px;
}

.flights__el p{

}