.info-banner{
	position: fixed;
	bottom: 30px;
    left: 100px;
   	background: #F38E3A;
   	color: #FFFFFF;
   	z-index: 30;
   	max-width: 300px;
    text-align: center;
}

@media (max-width: 768px){
	.info-banner{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 75%;
		bottom: auto;
	}
}

.info-banner.hidden{
	display: none;
}

.info-banner hr{
	border-top: 1px solid #FFFFFF;
	width: 75%;
}

.info-banner .close{
	position: absolute;
	top: -3px;
	right: 3px;
	color: #FFFFFF;
	cursor: pointer;
}


.content{
	padding: 15px 15px;
}

