.popup-screen{
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(3px);
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* display: none; */
}

.popup-screen .container {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    width: 600px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 10px;
}

/* pickup, drop location popups */
.input-grp {
    height: 50px;
    position: relative;
    display: flex;
    border-radius: 3px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.185);
    align-items: center;
}

.input-grp input {
    height: 100%;
    padding: 8px;
    border: none;
    flex-grow: 1;
}

.input-grp i {
    height: 45px;
    aspect-ratio: 1;
    background-color: #ff6900;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: white;
    margin-inline: 4px;
}

.cancel-btn, .success-btn {
    width: 150px;
    height: 50px;
    font-size: 20px;
    font-weight: 700;
    background-color: rgba(252, 234, 221, 1);
    border-radius: 4px;
}
.success-btn {
    background-color: rgba(255, 105, 0, 1);
}

/* ride const pupup */
.ride-cost-popup{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ride-cost {
    border: 3px solid #ff6900;
    border-radius: 5px;
    width: fit-content;
    padding: 40px 40px;
    color: black;
    align-self: center;
}

.ride-cost span:nth-child(1) {
    font-weight: 700;
    font-size: 24px;
}

.ride-cost span:nth-child(2) {
    font-weight: 700;
    font-size: 48px;
}

.ride-cost span:nth-child(3) {
    font-weight: 700;
    font-size: 13px;
}


.success-popup {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.success-popup h3{
    line-height: 30px;
}

.success-popup p{
    color: black;
}