body {
    background-color: #ECEFF1;
}

.form3 {
    border-radius: 15px;
    background-color: #994f00;
    color: white;
}

.sidebar-block {
    border-radius: 15px;
    background-color: #cd9b46;
}

.sidebar-block label {
    color: white !important;
}

.form-bottom-label {
    font-size: 1.4em;
    font-weight: bold;
}


.flight-card__route {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    justify-content: center;
    align-items: center;
}

.flight-card__duration,
.flight-card__type {
    font-size: 1.4rem;
}

.route-line {
    position: relative;
    margin: 1rem 0 0;
    width: 100%;
    height: 1px;
    border: 0.1rem dashed #994f00;
}

.flight-card__type {
    margin-top: 1rem;
    font-size: 1.4rem;
}

.route-line__start {
    left: 0;
    border: 0.6rem solid #994f00;
    background-color: #fff !important;
}

.route-line__stop {
    transform: translate3d(-50%, -50%, 0);
}

.route-line__end {
    right: 0;
    border: 0.6rem solid rgb(255, 232, 208);
    transform: translate3d(50%, -50%, 0);
}

.route-line__stop {
    border-radius: 100%;
    box-sizing: content-box;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    background-color: #994f00;
}

.route-line__stop-name {
    margin-top: 13px;
    margin-left: -4px;
}

.flight-card__time {
    margin-bottom: 0.8rem;
    font-size: 2rem;
    font-weight: 600;
}

.flight-card__city {
    margin-bottom: 0.4rem;
    font-size: 1.8rem;
}

.flight-card__day {
    font-size: 1.4rem;
}

.flight-card__departure time,
.flight-card__departure h2 {
    text-align: left;
    color: #994f00;
    margin: 0;
    padding: 5px;
}

.flight-card__departure {
    text-align: left;
}

.flight-card__arrival {
    text-align: right;
}

.flight-card__arrival time,
.flight-card__arrival h2 {
    text-align: right;
    color: #994f00;
    margin: 0;
    padding: 5px;
}

.flight-card__departure h2,
.flight-card__arrival h2 {
    padding-top: 10px;
}

.btn-blue {
    background-color: #994f00 !important;
}

.flight-card {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.returning-wrap {
    margin-top: 30px;
}

.flight-card__price {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #994f00;
    font-weight: bold;
}

.flight-card__button {
    margin: 0 auto !important;
}

@media only screen and (max-width: 767px) {
    .flight-card__airplane {
        margin-bottom: 20px;
    }

    .flight-card__route {
        margin-top: 15px;
    }

    .flight-card__arrival {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .flight-card__arrival,
    .flight-card__arrival time,
    .flight-card__arrival h2 {
        text-align: left;
    }
}

.loader-wrap {
    margin-top: 80px;
    margin-bottom: 80px;
}

.loader {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    
}

.loader span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: rotate(calc(18deg * var(--i)));
}

.loader span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #cd9b46;
    border-radius: 50%;
    transform: scale(0);
    animation: animate 2s linear infinite;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes animate {
    0% {
        transform: scale(0);
    }

    10% {
        transform: scale(1.2);
    }

    80%,
    100% {
        transform: scale(0);
    }
}

.rocket {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    animation: rotating 2s linear infinite;
    animation-delay: -1s;
}

@keyframes rotating {
    0% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(370deg);
    }
}

.rocket::before {
    content: "\f0fb";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 50px;
    left: 60px;
    color: #cd9b46;
    font-size: 40px;
    transform: rotate(90deg);
}

.bg-warning {
    background-color: #F9A825 !important;
}

.bg-danger {
    background-color: #EF5350 !important;
}

.bg-success {
    background-color: #388E3C !important;
}

.order-status {
    font-size: 1.2em;
    float: right;
}