@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.grey-color {
    color: #979797
}
.location-details{
    align-items: flex-start;
}

.details-pickup-and-drop{
    display: flex;
    gap: 10px;
}
.after-class-border{
    position: relative;
}
.after-class-border::after{
    content: '';
    border-left: 1px dashed #7E8594;
    position: absolute;
    height: 77%;
    left: 23.8%;
    top: 37px;
}

.lightgrey-color {
    color: #AAAAAA;
    width: 50%;
    display: flex;
    align-items: center;
    gap: 5px;
}
.lightgrey-color-new-pickup{
    color: #AAAAAA;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lightgrey-color-new-drop{
    color: #AAAAAA;
    width: 25%;
    display: flex;
    align-items: center;
}
.Drop-Details{
    justify-content: space-between;
    display: flex;
    justify-content: end;
    width: 100%;
    margin-right: 4px;
}
.animate-gif{
    width: 24px;
}

.pickup-and-drop-div{
    width: 50%;
}
.pickup-and-drop-details{
    width: 75%;
}

#autopilot-trip-sharing-div {
    max-width: 599px;
    margin: 0 auto;
    height: 100vh;
    color: #465166;
}

#autopilot-trip-sharing-div header {
    padding: 20px;
    background-color: #113167;
    display: flex;
    justify-content: space-between;
}

.download-app-button {
    background-color: #113167;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    font-weight: bold;
}

.trip-details,
.passenger-details,
.location-details {
    padding: 20px;
}

.trip-driver-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.driver-name-booking-id {
    margin-left: 5px;
    padding: 5px;
}

.d-flex {
    display: flex;
}

#map {
    width: 100%;
    height: 400px;
}

#refresh-button{
    position: absolute;
    top: 100px;
    right: 5%;
    z-index: 10;
    background-color: #113167;
    border: none;
    color: white;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    border-radius: 12px;
}

/* #loader {
    width: 48px;
    height: 48px;
    border: 5px solid #113167;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin: 10% 50%;
} */

/* Loader */
#loader{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 20px;
}

#loader span {
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 5px solid #113167;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

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

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

/* Error */
#error-message{
    width: 80%;
   color: #465166;
   margin: 10px auto;
   text-align: center;
}