:root {
    --theme-primary-color : #daa35b;
    --theme-secondary-color : #000000;
}
body{
    font-family: 'Poppins', sans-serif;
    color: #000000;
}
.btn-theme-primary{
    background-color: var(--theme-primary-color);
    color: var(--theme-secondary-color);
    box-shadow: 0 4px 14px 0 rgba(218, 163, 91, .5);
}
.btn-theme-primary:hover{
    background-color: var(--theme-primary-color);
    color: #FFF;
}
.form-control,
.form-select {
    background-color: #d9d9d9;
}
.form-body .icon {
    position: absolute;
    right: 0;
    top: 24px;
    font-size: 22px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 42px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #daa35b;
}
.app-screen {
    height: 100vh;
    background-color: #ffd9a7;
    position: relative;
}
.app-screen .leftColumn {
    position: relative;
}
.app-screen .leftColumn::before{
    content: '';
    height: 50%;
    width: 25%;
    background-color: #eac38f;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: ellipse(140px 140px at 10% 15%);
    -webkit-clip-path: ellipse(140px 140px at 10% 15%);
}
.app-screen .leftColumn::after{
    content: '';
    width: 35%;
    height: 100%;
    clip-path: polygon(80% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(80% 0, 100% 0, 100% 100%, 0% 100%);
    right: 0;
    top: 0;
    position: absolute;
    background-color: #eac38f;
}
.fav-driver {
    background-color: #EEE;
    padding: 15px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.book-ride-btn {
    padding: 15px 30px;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
}
.app-screen .rightColumn form{
    min-width: 380px;
}
ul.drivers-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
}
.drivers-list .driver-item {
    display: flex;
    align-items: center;
}
.drivers-list .driver-item .driver-dp {
    margin-right: 20px;
}
.drivers-list .driver-content {
    background-color: #E7E7E7;
    padding: 15px 35px;
    min-width: 300px;
}
.logo .hdr-logo {
  max-width: 280px;
}
.available-drivers .form-check .form-check-input {
    height: 2em;
    width: 2em;
    border-radius: 50%;
    margin-left: -50px;
    margin-top: 0;
}
.user-dropdown-menu .user-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
    margin-top: 10px;
    background-color: #FFD9A7;
}
.user-dropdown-menu .user-menu a {
    text-decoration: none;
    color: #000000;
}
.user-dropdown-menu .user-logo {
    width: 30px;
}
.user-dropdown-menu {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1;
}
.user-dropdown-menu .user-avatar {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}
.user-dropdown-menu .user-avatar .name {
    margin: 0;
    font-size: 14px;
}
.select2.select2-container {
    width: 100% !important;
}
span.select2.select2-container .select2-selection--single {
    height: 41px;
    background-color: #D9D9D9;
    border: none;
    outline: none;
}
span.select2.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}
span.select2.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
}
span.select2.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 41px;
}
.isreturntrip {
    cursor: pointer;
}
@media only screen and (max-width: 767px) {
    .app-screen .inner-wrap {
        margin: 10px;
        flex-direction: column !important;
    }
    .app-screen .rightColumn form{
        min-width: inherit;
    }
    .app-screen .leftColumn {
        display: none !important;
    }
    .drivers-list .driver-content{
        min-width: inherit;
    }
    .drivers-list .driver-item{
        padding: 15px 0;
    }
}
