.dob-container {
    display: flex;
    align-items: center;
    border: 1px solid #68D2C0;
    border-radius: 5px;
    padding: 5px;
    width: 180px !important;
    font-family: Arial, sans-serif;
}

.dob-container input {
    border: none;
    outline: none;
    font-size: 16px;
    color: #707070;
    width: 100%;
    padding-left: 5px;
}

.dob-container input::placeholder {
    color: #606B7D;
    font-weight: 100;
}

.dob-container i {
    color: #707070;
    font-size: 20px;
}

.traveller-container {
    margin-left: -8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.traveller-container-box {
    display: flex;
    gap: 10px;
} 

.heading {
    font-size: 24px;
    color: #5a6570;
    font-weight: bold;
}

.age-box {
    width: 80px;
    height: 38px;
    background-color: #e0e0e0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #68D2C0;
}

.age-box p {
    font-size: 18px;
    color: #707070;
    margin-right: 40px;
    margin: 0;
}

.add-traveller {
    height: 40px;
    width: 40px;
    border-radius: 40%;
    background-color: #68D2C0;
    margin-top: 30px;
}

.cancel-traveller {
    height: 40px;
    width: 40px;
    border-radius: 40%;
    background-color: #E5F7F3;
    margin-top: 30px;
    border: 1px solid #68D2C0;
}

.add-btn-box {
    font-weight: bold;
    color: white;
    margin-top: 3px;
}

.cancel-btn-box {
    font-weight: bold;
    color: #5a6570;;
    margin-top: 3px;
}

.enter-otp {
    height: 42px;
    color: #213438;
    border: 1px solid #68D2C0;
    background-color: #E5F7F3;
    font-size: 14px;
    padding: 5px 12px;
    width: 100%;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border-radius: 5px;
    text-align: center;
    margin-top: 8px;
}

.otp-container {
    display: flex;
    gap: 50px;
}

.enter-otp-btn {
    width: 123px;
}

.get-otp-btn {
    margin-top: 10px;
    color: #213438;
    height: 40px;
    width: 80px;
    margin-left: -25px;
    border: 1px solid #68D2C0;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    background-color: #68D2C0;
}

.resend-container {
    margin-top: 18px;
    font-size: 13px;
}

/* Responsiveness */

@media (max-width: 640px) {
    .dob-container {
        width: 150px !important;
    }

    .stepper-container.nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
        flex-wrap: nowrap;
    }

    .stepper-container.nav.nav-tab {
        border-bottom: none;
    }

    .stepper-container.nav.nav-fill {
        width: 106%;
        text-align: center;
        margin-left: 4px;
    }
}

@media (max-width: 667px) {
    .dob-container {
        width: 160px !important;
    }
}

@media (max-width:720px) {
    .stepper-container.nav.nav-fill {
        margin-left: 10px !important;
    }
}

@media (max-width: 740px) {
    .dob-container {
        width: 145px !important;
    }
}

@media (max-width:882px) {
    .dob-container {
        width: 135px !important;
    }

    .stepper-container.nav.nav-fill { 
    width: 111% !important;
    margin-left: 4px;
    }
}

@media (max-width:1024px) {
    .stepper-container.nav.nav-fill {
        width: 108%;
        margin-left: -26px;
    }
}

@media (max-width:1366px) {
    .stepper-container.nav.nav-fill {
        width: 145%;
        margin-left: -3px;
    }
}

@media (max-width:1368px) {
    .stepper-container.nav.nav-fill {
        width: 88%;
        margin-left: -3px;
    }
}

