.gttb-success {
    padding: 15px;
    background: #d4edda;
    margin-bottom: 20px;
}

.taxi-map {
    border-radius: 20px;
    box-shadow: 0 3px 45px #e7e7e7;
}

/* container must be above map */
.gttb-location-wrapper {
    position: relative;
    z-index: 9999;
}

/* dropdown */
.gttb-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* dropdown items */
.gttb-dropdown-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gttb-dropdown-item:hover {
    background: #f5f5f5;
}



/* icons */
.gttb-icon {
    width: 20px;
    text-align: center;
    font-size: 16px;
}



/* input wrapper */
.gttb-input-wrapper {
    position: relative;
}


/* search icon */
.gttb-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}


/* input */
.gttb-input {
    padding-left: 35px !important;
}

.gttb-location-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.gttb-option {
    flex: 1;
    border: 2px solid #ffffff;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 3px 45px #e7e7e7;
    transition-duration: 0.3s;
    border-radius: 20px;
}

.gttb-option.active {
    border-color: #edbd27;
    background: #edbd27;
}

.gttb-option:hover {
    box-shadow: 0px 20px 30px 0px rgba(9, 80, 30, 0.15);
}

.gttb-option .icon {
    font-size: 22px;
    display: block;
    margin-bottom: 5px;
}




.tours .card {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0px 20px 50px 0px rgba(9, 80, 30, 0.07);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.tours .card:hover {
    box-shadow: 0px 20px 30px 0px rgba(9, 80, 30, 0.15);
}

.tours .card-img-top {
    height: 251px;
    object-fit: cover;
}

.tours h3 {
    text-align: center;
}




.booking-confirmation {
    padding: 0 50px 100px 50px;
    text-align: center;
}




.step-circle {
    width: 45px;
    height: 45px;
    background-color: #edbd27;
    color: #003333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}