.alertBanner {
	display: none;
	color:#fff;
	background:#f34140;
}
.alertBannerInterior {
	display:flex;
}


.alertBox {
	display: block;
	position: relative;
	width:40px;
	border-right:1px solid #fff;
}
.alertBox h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:  translateX(-50%) translateY(-50%) rotate(-270deg);
	font: bold 13px Sans-Serif;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff !important;
	padding: 5px 17px;
}

.alertInterior {
	width:90%;
	padding:20px 40px 24px;
}
.alertInterior .title {
	margin:0 0 4px;
	padding:0;
	color: #fff !important;
	font-size:1.1em;
	font-weight:700;
}
.alertInterior .text {
	font-size:.9em;
	padding:0 40px 0 0;
}
.alertInterior p {
	color:#fff !important;
	margin:0 0 10px;
}
.alertInterior .button {
	padding:.35em .9em;
	font-size:.85em;
	font-weight:700;
	color:#f34140 !important;
	background-color:#fff !important;
	border-color:#fff !important;
	transition: .5s all ease;
}
.alertInterior .button:hover {
	color:#f34140 !important;
	background-color:#fff !important;
	border-color:#fff !important;
	opacity:.8;
	transition: .5s all ease;
}


.closeAlert {
    box-sizing: content-box;
	float: right;
    width: 20px;
    height: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .8);
}

.closeAlert:before, .closeAlert:after{
    content:'';
    position:absolute;
    width:16px;
    height:2px;
    background-color:white;
    border-radius:2px;
    top:9px;
}

.closeAlert:before{
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    transform:rotate(45deg);
    left:2px;
}
.closeAlert:after{
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    transform:rotate(-45deg);
    right:2px;
}
