@import url('https://fonts.googleapis.com/css?family=Oswald|Roboto|Ubuntu');

.view-color-green {
    background-color: rgba(77, 250, 144, 0.3);
}
.view-color-yellow {
    background-color: rgba(250, 190, 77, 0.3);
}
.view-color-red {
    background-color: rgba(255, 84, 104, 0.3);
}
.view-item-disabled {
    opacity: 0.5;
}
body.x-border-layout-ct, div.x-border-layout-ct {
    background-color: #bbbbbb !important;
}
.x-fieldset {
    overflow: visible !important; /* workaround for Safari issue */
}
#attribution {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: x-small;
}

/* =-=-=-== */

.street-view {
    position: absolute;    
    right:0;
	bottom:0;
    width: 325px;
	height: 260px;
    background: rgba(255, 255, 255, .0);   
    border-radius: 8px 0 0 8px;
    text-align: center;
    color: #fff;
	z-index: 999999;
	display: none;
}
@media (max-width:420px){
	.street-view {
		position: absolute;    
		left:20;
		bottom:120;
		width: 290px;
		height: 200px;
		background: rgba(255, 255, 255, .0);   
		border-radius: 8px 0 0 8px;
		text-align: center;
		color: #fff;
		z-index: 999999;
		display:none;
	}		
}

/* =-=-=-== */

.ol-popup {
    position: absolute;
    background-color: white;
    -webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
    padding: 15px;
    border: 1px solid #cccccc;
    bottom: 12px;
    left: -50px;
    min-width: 280px;
    display:none;
}
.ol-popup:after, .ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
} 
.ol-popup:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
}
.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 2px;
    right: 8px;
}
.ol-popup-closer:after {
    content: "✖";
}
.nome {
    color: rgb(37, 37, 37);
    font-size: 25px;
    padding-top: 10px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}
.title {
    font-size: 15px;
    font-family: 'Oswald', sans-serif;
}
.title span {
    padding-left: 15px;
}
.hr {
    border:none;
    height: 20px;
    width: 90%;
    height: 50px;
    margin-top: 0;
    border-bottom: 1px solid #1f1209;
    box-shadow: 0 20px 20px -20px #333;
    margin: -50px auto 10px; 
}
.btn-secondary {
    background-color: #9fc6e8!important;
    border-color: #9fc6e8!important;
}

/* =-=-=-== */

#spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 50%;
    border-top: 6px solid #5fa2dd;
    border-right: 6px solid transparent;
    animation: spinner .6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

