*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.50%;
}

body {
    box-sizing: border-box;
    font-family: 'Lato', sans-serif, Arial, Helvetica;
    height: 100%;
}

#map {
    height: 100vh;
    background-color: blue;
}

.title {
    position: absolute;
    z-index: 2;
    top: 10rem;
    left: 10rem;
    font-size: 8.8rem;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    opacity: 0.8;
}

.search-container {
    width: 40rem;
    height: 6rem;
    background-color: #454E53;
    position: absolute;
    z-index: 2;
    top: 23rem;
    left: 10rem;
    border-radius: 1.8rem;
}

.search {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.search input {
    width: 100%;
    font-size: 2.5rem;
    border: none;
    background-color: transparent;
    color: #FFF;
}

.search input:focus {
    outline: none;
}

.search i {
    color: #FFF;
    font-size: 2.5rem;
}


.stores-list-container {
    width: 40rem;
    background-color:#FFF;
    position: absolute;
    z-index: 2;
    top: 32rem;
    left: 10rem;
    border-radius: 30px;
    bottom: 2rem;
}

.stores-list {
    padding: 0 2rem;
    overflow-y: scroll;
    height: 100%;
}

.store-container-background {
    width: 100%;
    display: flex;
    padding: 0 .8rem;
    margin: 1.2rem;
    border-radius: 1.8rem;
    transition: background .3s ease-in-out;
}

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

.store-container {
    display: flex;
    border-bottom: 1px solid #979797;
    cursor: pointer;
}

.store-info-container {
    flex-grow: 1;
}

.store-address {
    font-size: 2.1rem;
    color: #514C4C;
    margin-top: 3rem;

}

.store-address span {
    display: block;
}

.store-phone-number {
    color: #85ADAD;
    margin: 1.5rem 0;
}

.store-number-container {
    display: flex;
    align-items: center;
}

.store-number {
    width: 3rem;
    height: 3rem;
    background-color: #454E53;
    color: #FFF;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.store-info-window {
    min-width: 30rem;
    font-size: 1.8rem;
    padding: 1rem;
}

.store-info-name {
    font-size: 2.4rem;
    font-weight: bold;
    color: rgba(0,0,0, 0.87);
}

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

.store-info-address, .store-info-phone {
    margin-top: .8rem;
    display: flex;
    align-items: center;
}

.circle {
    width: 3rem;
    height: 3rem;
    background-color: #1985A1;
    border-radius: 50%;
    color: #FFF;
    margin-right: .8rem;

    display: flex;
    justify-content: center;
    align-items: center;
}

#floating-panel {
    z-index: 2;
    position: absolute;
}
