.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;
} */


/* Navigate Housing Custom Styles */
.alertBanner {
    padding: 11px 0;
}
.alertBannerInterior {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.message {
    display: flex;
    align-items: center;
    flex-direction: column;
    /* gap: 10px; */
    padding: 0 40px;
    @media( min-width: 1024px ) {
        flex-direction: row;
        gap: 30px;
        padding: unset;
    }
}
.message .title {
    font-weight: 800;
    text-transform: uppercase;
}
.message .content {
    font-weight: 600;
}
.message .button {
    color: #fff !important;
    &:after {
        color: #fff !important;
    }
    &:hover,
    &:focus {
        color: #001c2d !important;
    }
}
.closeAlert {
    position: absolute;
    right: 25px;
}