.easy-notification-bar {
	display: table;
	width: 100%;
	background: #0073aa;
	color: #fff;
	padding: 0.5em 1em;
	font-size: 16px;
	line-height: 1.8;
	position: relative;
	z-index: 99;
	box-sizing: border-box;
}

.easy-notification-bar--hidden {
	display: none !important;
}

.easy-notification-bar--sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}

.easy-notification-bar--collapsible.easy-notification-bar--align_center {
	padding-left: 50px;
	padding-right: 50px;
}

.easy-notification-bar--collapsible.easy-notification-bar--align_left {
	padding-right: 50px;
}

.easy-notification-bar--collapsible.easy-notification-bar--align_right {
	padding-left: 50px;
}

.easy-notification-bar strong {
	color: inherit; /* some themes change strong tag to make it darker */
}

.easy-notification-bar a,
.easy-notification-bar a:hover,
.easy-notification-bar a:visited,
.easy-notification-bar a:focus {
	color: inherit;
	text-decoration: underline;
}

.enb-system-font {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.easy-notification-bar-container {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

.easy-notification-bar-message,
.easy-notification-bar-button {
	display: inline-block;
}

.easy-notification-bar-button {
    margin-left: 0.67em;
    padding: 0.2em 0;
}

.easy-notification-bar-button a {
	padding: 0.35em 1.25em;
}

.easy-notification-bar-button a,
.easy-notification-bar-button a:hover,
.easy-notification-bar-button a:visited,
.easy-notification-bar-button a:focus {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	background: rgba(0,0,0,0.5);
}

.easy-notification-bar-button a:hover {
	opacity: 0.9;
}

/* Alignments */
.easy-notification-bar .enb-textcenter {
	text-align: center;
}

.easy-notification-bar .enb-textleft {
	text-align: left;
}

.easy-notification-bar .enb-textright {
	text-align: right;
}

/* Close Icon */
a.easy-notification-bar__close {
	display: block;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: inherit;
	text-decoration: none;
	line-height: 1;
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	border: 0;
}

a.easy-notification-bar__close:hover,
a.easy-notification-bar__close:focus {
	background: none;
	color: inherit;
	border: 0;
	text-decoration: none;
}

.rtl a.easy-notification-bar__close,
.easy-notification-bar--align_right a.easy-notification-bar__close {
	left: 20px;
	right: auto;
}
