/* Code for adding country dropdown near to city/state search field - Start-Teja-08/28/2024*/
.dropdown {
    position: relative;
    display: inline-block;
    /*width: 250px;*/
}

.dropdown-Country {
    display: none;
    position: absolute;
    background-color: white;
    min-width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-Country li {
    color: black;
    /*padding: 12px 16px; #3131*/
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-Country li:hover {
    background-color: #f1f1f1
}

.dropdown-toggle {
    width: fit-content;
    padding: 3px 4px 3px 3px;
    font-size: 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: white;
    border: 1px solid #ccc;
}