/** Infobar **/
@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(165, 73, 21, 0.4);
	}
	50% {
		-webkit-box-shadow: 0 0 0 1em rgba(165, 73, 21, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(165, 73, 21, 0);
	}
}

@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(165, 73, 21, 0.4);
		box-shadow: 0 0 0 0 rgba(165, 73, 21, 0.4);
	}
	50% {
		-moz-box-shadow: 0 0 0 1em rgba(165, 73, 21, 0);
		box-shadow: 0 0 0 1em rgba(165, 73, 21, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(165, 73, 21, 0);
		box-shadow: 0 0 0 0 rgba(165, 73, 21, 0);
	}
}

.widget.infobar {
	font-size: 14px;
	position: fixed;
	z-index: 11;
	left: 0;
	overflow-x: hidden;
	overflow-y: auto;
	top: 10%;
	width: 500px;
	height: auto;
	max-width: 80%;
	max-height: 80%;
	background: #c72313;
	padding: 0;
	border: 0 solid transparent;
	border-left: 0 solid transparent;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	text-align: left;
	box-sizing: border-box;
}

.widget.infobar p, .widget.infobar p * {
	font-size:1em;
}

.widget.infobar a,
.widget.infobar a:visited {
	color: #f49800;
}

.widget.infobar a:active,
.widget.infobar a:hover {
	/*text-decoration: underline;*/
}

.widget.infobar h3 {
	font-size: 1.7em;
	color: #fff;
	font-weight: bold;
	margin-bottom: 1%;
}

.widget.infobar .wrapper {
	padding: 4em 1em 2em 1em;
	max-height:100%;

	box-sizing: border-box;
}

.widget.infobar .textwidget {

	font-size: 1em;
	width: 100%;
	color: #fff;
	/*overflow-x: visible;*/

	/*overflow-x: hidden;*/

}

.widget.infobar .infobar-toggle {
	background-color: #fff;
	display: block;
	padding: .1em;
	height: calc(5em / 4 + 0.8em);
	width: calc(5em / 4 + 0.8em);
	text-align: center;
	font-size: 1.5em;
	position: absolute;
	top: 0;
	cursor: pointer;
	right: 0;
	background-position: 0.5em center;
	border: 1px solid #c72313;
}

.widget.infobar .infobar-toggle .fa {
	font-size: 1.5em;
	color: #c72313;
	line-height: 1.2em;
}

.widget.infobar .infobar-toggle:hover .fa {
	color: #fff;
}

.widget.infobar .infobar-toggle:hover {
	background-color: #c72313;

}

.widget.infobar.close .infobar-toggle .fa-close {
	/*transform: scaleX(-1);*/
}

.widget.infobar.close {
	left: -19.3em;
}

@media only screen and (max-width: 768px) {
	.widget.infobar {
		width: 90%;
		left:5%;
		max-width:90%;
		/*font-size: 1em;*/
	}
}

@media only screen and (max-width: 480px) {
	.widget.infobar {
		/*font-size: 1.2em;*/
	}
}

@media only screen and (min-width: 1280px) {
	.widget.infobar {
		/*background: rgb(255, 255, 255);*/
	}
}
