#ontop_spots {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 305px;
	padding: 5px 10px 10px;
	background: rgba(0,0,0,0.5);
	border-radius: 10px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#ontop_spots h3 {
	color: #fff;
	margin: 0 0 5px 0;
	padding: 0;
	font-size: 12px;
	line-height: 20px;
}
#ontop_spots .spots:after {
	content: '';
	display: block;
	clear: both;
}
	#ontop_spots .spots .spot {
		float: left;
		margin-right: 5px;
	}
		#ontop_spots .spots .spot:nth-child(2) {
			margin-right: 0;
			display: none;
		}

#ontop_spots .close {
	background: #000;
	border-radius: 10px;
	color: #fff;
	font-size: 13px;
	line-height: 20px;
	background: url(/img/close.png) no-repeat 10px center, url(/img/close.png) no-repeat 265px center;
	background-size: 30px 30px;
	background-color: #0000005c;
	text-align: center;
	cursor: pointer;
	margin-top: 5px;
	padding: 5px 50px;
}
#ontop_spots .close:hover {
    background-color: rgb(222,38,0);
    color: rgb(255,255,255);
}

.spots_mobile {display: block;}
.spots {display: none;}

@media (min-width: 660px) {
	#ontop_spots {
		width: 605px;
	}
	#ontop_spots .spots .spot:nth-child(2) {
		display: block;
	}
	#ontop_spots .close {
		background: url(/img/close.png) no-repeat 10px center, url(/img/close.png) no-repeat 560px center;
		background-size: 30px 30px;
		background-color: #000;
		padding: 0;
    	line-height: 50px;
	}
	.spots_mobile {
		display: none;
	}
	.spots {
		display: block;
	}
}

.close span {font-weight: bold; color: red; }
.close:hover span {color: #fff;}