body {
    font-family: Poppins;
    background-color: #EFEFF1;
}

/*LOADER*/

.loader {
    position: fixed;
    background-color: rgba(246, 246, 246, 0.9);
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 1;
}

@-webkit-keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.loader_txt{
    margin-top: 50px;
    position: absolute;
    top: calc(50% + 60px);
    left: calc(50% - 95px);
    color: #7c246f;
    font-family: 'Poppins', sans-serif;
}


.loader_img {
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    height: 200px;
    width: 200px;
    /*-webkit-animation: 4s spin infinite linear;
    animation: 4s spin infinite linear;*/

}

/*END OF LOADER*/

.my_main_container {
    background-color: #EFEFF1;
    overflow: auto;
}

.flightstatus_header {
    background-color: #804097;
    color: white;
    height: 80px;
}

.flightstatus_header_text {
    position: relative;
    text-align: center;
    font-size: 18px;
    top: 30px;
    font-weight: 500;
}

.content_header {
    color: black;
    font-size: 14px;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 600;
}

.content_form_container {
    background-color: white;
    border: solid #D6D6D6 1px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.search_by {
    font-size: 12px;
    font-weight: 600;
}

.searchby_button_container {
    padding-left: 10px;
}

.searchby_button {
    background-color: white;
    color: #707070;
    font-size: 11px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
    padding-left: 10px;
    font-weight: 500;
    border: 1px solid #707070;
    outline: none;
}

.searchby_button_highlight {
    background-color: #804097;
    color: white;
}

#search_route {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-right: -13px;
    padding-left: 20px;
}

#search_flight {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.fs_row {
    padding-top: 20px;
}

.fs_label {
    font-size: 10px;
    font-weight: 400;
}

.fs_input {
    border: none;
    border-bottom: 1px solid #707070;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0px;
    padding-right: 30px;
}

.fa_input {
    position: absolute;
    z-index: 2;
    right: 5px;
}

.fa_select {
    top: 6px;
    position: absolute;
    z-index: 2;
    right: 5px;
}

.search_status_button_container {
    text-align: center;
    padding-top: 45px;
    padding-bottom: 20px;
}

.search_status_button {
    padding: 10px;
    background-color: #CC168F;
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
}

#select_depart {
    height: 40px;
    line-height: 40px;
    border: 1px solid #D6D6D6;
}

.main_select_depart {
    outline-color: #804097;
}

.select_depart_text {
    font-weight: 500;
    padding-left: 10px;
}

.drop_down_list_depart {
    position: relative;
    z-index: 1;
    background-color: white;
}

.ddl_dates {
    height: 70px;
    line-height: 40px;
    border: 1px solid #D6D6D6;
    padding-left: 15px;
    font-weight: 500;
    outline-color: #804097;;
}

.ddl_dates:hover {
    color: white;
    background-color: #804097;
}

.ddl_subdates {
    height: 15px;
    text-align: center;
}

.ddl_month {
    font-weight: 600;
    font-size: 14px;
}

.ddl_year {
    font-size: 10px;
}

/*RESULTS*/

.results_container {
    border: 1px solid #84329B;
    padding: 20px;
    border-radius: 13px;
    background-color: white;
}

.results_x_button {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #CC168F;
    cursor: pointer;
    z-index: 10;
}

.results_summary_main {
    font-size: 14px;
    font-weight: 600;
}

.result_summary_sub {
    font-size: 14px;
    font-weight: 600;
    text-align: justify;
}

.results_statuses {
    background-color: white;
    margin-bottom: 40px;
    margin-top: 40px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 32px -8px #858585;
    -moz-box-shadow: 0px 0px 32px -8px #858585;
    box-shadow: 0 1px 10px 1px rgba(0, 0, 0, .16);
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;
}

.item_flight_number {
    font-size: 14px;
    color: #84329B;
    text-align: center;
    margin-top: 5px;
}

.item_flight_status {
    margin-top: 5px;
}

.item_status_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.item_status {
    font-size: 14px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.item_arrive_depart {
    padding-top: 20px;
    text-align: center;
}

.item_time_header {
    font-size: 13px;
    font-weight: 600;
}

.item_destination {
    font-size: 15px;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 0px !important;
}

.item_destination_city {
    font-size: 10px;
    font-weight: 400;
    padding-top: 0px;
}

.item_time {
    font-size: 16px;
    font-weight: bold;
    color: #84329B;
}

.item_time_other {
    font-size: 10px;
    font-weight: 400;
    color: #84329B;
    /*padding-bottom: 5px;*/
}

.item_scheduled {
    font-size: 12px;
    font-weight: 200;
    padding-top: 0px;
}

.item_sch_time {
    font-size: 12px;
    font-weight: 200;
}

.item_plane {
    top: 50px;
}

.item_icon {
    font-size: 30px;
    color: #1D2135;
}

.item_line {
    border-top: 1px solid #84329B !important;
}

.layover_overnight {
    color: red;
}

.overlay_section {
    margin-bottom: 20px;
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #804097;
    border-bottom: 1px solid #804097;
    font-weight: 500;
    font-size: 12px;
    font-style: italic;
}

.results_nostatus {
    text-align: center;
}

/*END OF RESULTS*/

/*OVERWRITES*/

.form-control {
    background-color: white !important;
    float: none !important;
    font-size: 16px !important;     /*prevent zoom on safari when selecting input - min font size 16px*/
}

.form-control:focus {
    border-color: #84329B;
    outline: 0;
    box-shadow: none !important;
}

.fs_input-group-addon {
    background-color: transparent;
    border-radius: 0px;
    border-bottom: 1px solid #707070;
    border-top: none;
    border-left: none;
}

.fs_input-group-addon_mod {
    border-color: #84329B;
}

/*END OF OVERWRITES*/

/*NG-CLASSES*/

.status_scheduled {
    background-color: #804097;
    font-weight: bold;
    color: white;
}

.status_rescheduled {
    background-color: #c25700;
    font-weight: bold;
    color: white;
}

.status_airborne {
    background-color: #c25700;
    font-weight: bold;
    color: white;
}

.status_completed {
    background-color: #008500;
    font-weight: bold;
    color: white;
}

.status_delayed {
    background-color: #c25700;
    font-weight: bold;
    color: white;
}

.status_cancelled {
    background-color: #d60000;
    font-weight: bold;
    color: white;
}

.status_taxing {
    background-color: #008500;
    font-weight: bold;
    color: white;
}

.status_rtr {
    background-color: #c25700;
    font-weight: bold;
    color: white;
}

.status_default {
    background-color: #717171;
    font-weight: bold;
    color: white;
}

.rate_limit_err {
    margin-top: 20px;
    margin-bottom: -45px;
    font-family: Poppins;
    font-size: 14px;
    color: #ef0000;
    font-weight: 500;
}

/*END OF NG-CLASSES*/