html{
    font-family:sans-serif;
    font-weight: 100;
    color: #555;
    letter-spacing: 0.15rem;
    margin: 0;
    padding: 0;
}
#citySelect{
    display: flex;
    border-bottom: solid thin gray;
    padding: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.city{
    padding: 0.4rem 0.8rem;
    margin: 0.5rem;
    border: dashed thin #ccc;
    border-radius: 5rem;
    letter-spacing: 0.1rem;
    animation-name: city;
    animation-iteration-count: infinite;
    animation-duration: 3s;
}
.city:hover{
    cursor: pointer;
}
.citySelected{
    box-shadow: 0.4em 0.4em 0 #ddd;
    background-color: #aaa;
    color: white;
    border: solid thin #aaa;
    animation-name: sel;
    animation-iteration-count: infinite;
    animation-duration: 3s;
}
@keyframes sel{
    0%{}
    50%{box-shadow: 0.5em 0.5em 0 0.05em #eee;}
}
@keyframes city{
    0%{}
    50%{box-shadow: 0.3em 0.3em 0 #eee;}
}
.ctiyBox {
    padding: 1rem 1rem 3rem 1rem;
    margin: 2rem 1rem 2rem 1rem;
    border-bottom: solid 3px #999;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.cityName {
    font-size: 1rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    color: white;
    background-color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0.4em 0.4em 0 #ddd;
    animation-name: sel;
    animation-iteration-count: infinite;
    animation-duration: 2.5s;
    
}

.shopName {

    font-weight: 400;
    color: #4b4b4b;
}

span.SPS {
    font-size: 0.6em;
    letter-spacing: 0;
    background-color: #44bb88;
    color: white;
    padding: 0.3em 0.7em;
    border-radius: 1em;
    margin-left: 1em;
    box-shadow: 0.3em 0.3em 0 0 #ddd;
    flex-grow: 0;
    flex-shrink: 0;
}

.shopAddress {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.shop {
    border-bottom: solid 1px #999;
    margin-top: 2rem;
}
