<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Coronavirus Alert Bar
------------------------------------------- 

Table of contents
	- Coronavirus Alert Bar
	- Media Queries

------------------------------------------- */

/* Coronavirus Alert Bar
-------------------------------------------- */

.cv-alert-bar {
	padding: 16px 0;
	position: relative;
}

.cv-alert-bar .wrap {
    max-width: 95%;
    margin: 0 auto;
    width: 100%;
}

.cv-alert-bar .wrap.cv-alert-icon {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.cv-alert-bar .wrap.cv-alert-icon img {
	margin-right: 24px;
}

.cv-alert-title {
    font-weight: bold;
    margin-bottom: 0;
}

.cv-alert-message {
    margin-bottom: 0;
}

.cv-alert-closer {
	cursor: pointer;
	position: absolute;
    right: 2%;
	top: 8px;
}

/* Media Queries
------------------------------------------- */

@media only screen and (max-width: 415px) {

	.cv-alert-bar .wrap {
		max-width: 90%;
	}

	.cv-alert-bar .wrap.cv-alert-icon {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.cv-alert-bar .wrap.cv-alert-icon img {
		margin-bottom: 16px;
		margin-right: 0
	}

	.cv-alert-closer {
		right: 5%;
	}

}</pre></body></html>