@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
html {
    overflow-x: hidden;
}
body {
    font-family: 'Poppins', sans-serif;
    background-image: url("../images/new_form/bg-image.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.container-fluid {
    padding-right: 30px;
}
.title {
    color: #06D2FF;
    font-size: 50px;
    font-weight: bold;
    margin-right: -150px;
}
.logo-section {
    text-align: right;
}
i {
    color: #D6D7D9;
}
label {
    color: #333333;
    font-size: 15px;
}
::placeholder,
input[type=date], input[type=datetime-local], input[type=month], input[type=time],
select {
    color: #D6D7D9 !important;
    font-size: 15px;
}
*:focus{
    outline: none !important;
    box-shadow: none !important;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
}
select::-ms-expand {
    display: none;
}
a#home-tab,
a#profile-tab {
    padding: 20px 25px;
}
.nav-tabs .nav-link, .icon {
    color: #333333;
}
.active-icon {
    color: #fff !important;
  }
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #000000;
}
.nav-item {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.roundtrip-tab {
    border-top-left-radius: 12px;
    overflow: hidden;
}
.oneway-tab {
    border-top-right-radius: 12px;
    overflow: hidden;
}
.nav-tabs {
    border-bottom: none;
}
.parent-group {
    position: relative;
}
.form-label {
    position: absolute;
    top: 9px;
    left: 15px;
}
.form-group i {
    position: absolute;
    top: 25px;
    right: 15px;
}
.form-control {
    height: 65px !important;
    padding-top: 25px;
    padding-left: 15px;
    border-color: #D6D7D9;
    border-radius: 12px;
}

::-webkit-calendar-picker-indicator {
    filter: invert(60%);
    padding-bottom: 23px;
    z-index: 1;
}
.card {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 25px;
    border-top-left-radius: 0px;
}
.main {
    position: relative;
}
.btn-submit{
    position: absolute;
    right: 15px;
    margin-top: -25px;
}
.btn-submit button {
    font-size: 15px;
    background-color: #D4252F;
    border-radius: 10px;
    padding: 12px 28px;
    color: #fff; 
}

/* select 2 */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 85px;
    padding-left: 15px;
    color: #D6D7D9;
}
 span.select2.select2-container.select2-container--default {
    width: 100% !important;
} 
.select2-container--default .select2-selection--single {
    border-radius: 12px;
    border: 1px solid #D6D7D9;
    height: 65px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
.select-label {
    z-index: 1;
}
span.select2-selection.select2-selection--single {
    border-radius: 7px !important;
}

/* Responsive */

@media only screen and (max-width: 912px) {
    .title {
        margin-right: 0px;
        margin-top: 25px !important;
        margin-bottom: 25px !important;
    }
}

@media only screen and (max-width: 600px) {
    body {
        background-image: none;
        background-position: none;
        background-repeat: none;
        background-size: none;
        height: unset;
    }
    .parent-row {
        margin-right: 0;
        margin-left: 0;
    }
    .title {
        font-size: 42px;
        margin-right: 0px;
    }
    .logo-section {
        text-align: center;
    }
    .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }

    .main {
        position: unset;
    }
    .btn-submit{
        position: unset;
        right: 0px;
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
}


