.booking-start {
    position: relative;
}
.list-flights {
    width: 100%;
}
.flight-item {
    height: 200px;
    text-align: center;
}
.flight-box {
    position: relative;
    height: 200px;
}
.flight-item .flight-image {
    background: #f1f1f1;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.flight-info {
    display: flex;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: 1;
    background: rgb(28 62 114 / 49%);
    color: #fff;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-flow: column;
}
.flight-info:hover {
    color: #fff;
    background: rgb(0 0 0 / 51%);
}
.flight-info .flight-name {
    font-size: 20px;
    text-transform: uppercase;
}
.flight-info:hover .flight-name {
    text-decoration: underline;
    color: #fff;
}
.flight-price {
    color: #fff;
}
.flight-price:hover {
    color: #fff;
}


.reservation-box {
    top: 0px;
    height: 100%;
    width: 100%;
    background: #fff;
    display: none;
}
.reservation-box.reservation-box-view {
    display: block;
}
.reservation-header {
    line-height: 30px;
    background: #f1f1f1;
    padding: 10px;
}
.reservation-back {
    cursor: pointer;
}
.reservation-back:hover {
    text-decoration: underline;

}
.d-none {
    display: none;

}
    