<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
    Created on : 17/04/2015, 21:27:40
    Author     : d1eg0
*/

@import url('https://fonts.googleapis.com/css?family=Quicksand');

#mascara {
    display: none;
    background: #efefef;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 999;
}

.cidade-popup {
    display: none;
    background: #fff;
    padding: 10px;
/*    border: 1px solid #312F34;*/
    float: left;
    font-size: 1.2em;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 99999;
    width: 25%;
    
    box-shadow: 0px 0px 20px #999;
    /* CSS3 */
    -moz-box-shadow: 0px 0px 20px #999;
    /* Firefox */
    -webkit-box-shadow: 0px 0px 20px #999;
    /* Safari, Chrome */
    border-radius: 5px;
    -moz-border-radius: 5px;
    /* Firefox */
    -webkit-border-radius: 5px;
    /* Safari, Chrome */;

    text-align: center;
    font-size: 18px;
    font-family: "Quicksand", sans-serif;
    line-height: 35px;
}



.cidade-popup &gt; ul &gt; li &gt; a{
    color: #04A29C;
    padding-top: 3px;
    display: block;
    width:100%;
    border-bottom: 1px solid #ccc;
}

.cidade-popup &gt; ul &gt; li:hover &gt; a{
    color: #117F7B;
}
</pre></body></html>