body {
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
}

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

.title{
    position: absolute;
    z-index: 100;
    font-size: 70px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    top: 80px;
    left: 100px;
}
.search-container{
    border-radius:30px;
    position: absolute;
    z-index: 100;
    top: 190px;
    left: 100px;
    width: 370px;
    height: 57px;
    background-color: #454E53;
    display: flex;
}
.search-container .search{
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    
}

.search-container input{
    width: 100%;
    font-size: 25px;
    background-color: TRANSPARENT;
    border: none;
    color: white;
}
.search-container input:focus{
    outline:none;
}
.search i{
    font-size: 25px;
    color: white;
}

.stores-list-container{
    width: 300px;
    position: absolute;
    z-index: 100;
    background-color: white;
    left: 100px;
    top: 260px;
    border-radius: 30px;
    bottom: 10px;
    display: flex;
    overflow-y: hidden;
    padding-bottom: 30px;
}

.store-container {
    border-bottom: 1px solid #979797;
    display: flex;
    cursor: pointer;
}
.store-info-container{
    flex-grow: 1;
}
.store-number-container{
    display: flex;
    justify-content: center;
    align-items: CENTER;
}
.store-address {
    font-size: 16px;
    color: #514c4c;
    margin-top: 30px;

}
.store-address span{
    display:block;
}
.store-phone-number{
    color: #b5adad;
    margin-top: 15px;
    margin-bottom: 15px;
}
.store-number{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color: #454e53;
    color:#b5adad;
    border-radius:50%;
    font-size:12px;
}

.stores-list {
    flex-grow: 1;
    overflow-y: scroll;
    padding-left: 20px;
    padding-right: 20px
}

.store-info-window{
    min-width: 300px;
    font-size: 18px;
    padding: 8px;

}
.store-info-name{
    font-size: 24px;
    font-weight: bold;
    color: rgba(0,0,0,.87);
}

.store-info-status
{
    margin-top: 6px;
    border-bottom: 1px solid #00000029;
    padding-bottom: 6px;
}

.store-info-address, .store-info-phone{

    margin-top: 8px;
    display: flex;
    align-items: center;
}

.store-info-address .circle, .store-info-phone .circle {
    width: 30px;
    height: 30px;
    background-color: #1985A1;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-right: 8px;
}
.search i{
    cursor: pointer;
}

.store-container-background{
    display: flex;
    flex-grow: 1;
    border-radius: 18px;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 12px;
    margin-top: 12px;
    transition: all 0.2s ease-in-out;
}

.store-container-background:hover{
    background-color: #ccc;
    
}

