/* ALERT */
.alert {
	display: none;
	background-color: #de7b1b;
}
.alert.active {
	display: block;
}
.contentRender_name_plugins_collections_template_custom_alerts {
	position: fixed;
    width: 100%;
    z-index: 123456;
}
.alert .slide {
	margin: 0 auto;
	padding: 30px 0 0;
	width: 60%;
	display: flex;
	align-items: start;
}
.alert .slide .text {
	padding-right: 50px;
}
.alert h2 {
	font: 900 23px/1 "Source Sans Pro", sans-serif;
	color: white;
	padding-bottom: 15px;
	margin: 0 auto;
	position: relative;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.alert h3 {
	font: 900 18px/1 "Source Sans Pro", sans-serif;
	color: white;
	padding-bottom: 25px;
	margin: 0 auto;
	position: relative;
	letter-spacing: 1px;
}
.alert .fa-arrow-right {
	margin-left: 8px;
}
.alert p {
	font: 400 18px/1.2 "Source Sans Pro", sans-serif;
	color: white;
	padding-bottom: 5px;
	margin: auto;
	position: relative;
}
.alert button {
	transition: right 0.35s ease-in-out;
	background-color:transparent;
	margin-top: -10px;
}
.alert button:hover, .alert button:visited, .alert button:focus, .alert button:active{
	background-color:transparent;
	outline: none;
}
.alert button svg {
	width: 20px;
	height: 20px;
}
.alert button svg .sh-cancel-btn {
	fill: white;
}

@media screen and (max-width: 640px) {
	.alert .slide {
		width: 80%;
	}
	.alert .slide .text {
		padding-right: 0;
	}
	.alert button {
		position: absolute;
		right: 0;
		top: 25px;
	}
}