/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .alert-bar {
 	height: 2.5rem;
 	display: flex;
    align-items: center;
 }

 .alert-wrapper {
 	display: flex;
 	align-items: center;
 	flex-wrap: wrap;
 	max-width: 1100px;
 	margin: 0 auto;
 	width: 100%;
 }


 .alert-bar h1 {
 	font-size: 24px;
 	font-weight: 700;
 	display: inline-block;
 	text-transform: uppercase;
 	font-family: "proxima-nova", sans-serif;
 	margin-bottom: 0;
 	line-height: 1.5;
 	letter-spacing: 0.5px;
 	color: #fff;
 }

 .alert-bar h1 a {
 	font-size: 18px;
 	text-decoration: underline;
	color: #fff;
	font-family: "proxima-nova", sans-serif;
 }

 .alert-bar h1 a::hover {
 	border: 0;
 }

 .alert-bar .icon-wrapper {
 	padding-left: 1rem;
    padding-right: 1rem;
    display: block;
    width: auto;
 }

 .alert-bar .icon {
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1.5rem;
	width: 1.5rem;
	background-color: #fff;
	color: #121F6B;
 }

 .alert-bar .button-wrapper {
 	justify-content: flex-start;
 	padding-left: 1rem;
    padding-right: 1rem;
    flex: none;
    display: flex;
    align-items: center;
    margin-left: auto;
 }

 .alert-bar .alert-button {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	font-size: 16px;
	color: #121F6B;
	font-weight: 600;
	border-radius: .25rem;
	background-color: #fff;
	border: 2px solid #fff;
	transition: 300ms;
	font-family: "proxima-nova", sans-serif;
 }

 .alert-bar .mobile {
 	display: none;
 }

 .alert-bar .alert-button:hover {
 	border: 2px solid #121F6B;
 }

 @media only screen and (max-width: 767px) {
	.alert-bar {
	 	height: auto;
	 	padding: 5px;
 	}



	 .alert-bar .desktop {
 		display: none;
 	}

	 .alert-bar .mobile {
 		display: block;
 	}
 }