/* ===========================================
 * Firelight Notification Bar
 * =========================================== */

.fcd-notification-bar {
	position: relative;
	width: 100%;
	z-index: 99999;
	box-sizing: border-box;
}

.fcd-notification-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 50px 12px 20px;
	max-width: 100%;
	position: relative;
}

/* ── Icon ── */

.fcd-notification-bar__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	margin-right: 10px;
}

/* ── Text ── */

.fcd-notification-bar__text {
	line-height: 1.5;
	text-align: center;
}

/* ── Close Button ── */

.fcd-notification-bar__close {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: none !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: inherit;
	cursor: pointer;
	padding: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity 0.2s ease;
	line-height: 1;
	-webkit-appearance: none;
	appearance: none;
	height: 24px;
	padding: 0px!important;
}

.fcd-notification-bar__close:hover,
.fcd-notification-bar__close:focus {
	opacity: 1;
	outline: none;
}
button.fcd-notification-bar__close svg {
    fill: #fff !important;
    stroke: #fff;
    height: 24px;
    width: 24px;
}


/* ── Mobile ── */

@media (max-width: 768px) {
	.fcd-notification-bar__inner {
		padding: 10px 42px 10px 14px;
	}

	.fcd-notification-bar__text {
		font-size: 15px;
		text-align: left;
	}

	.fcd-notification-bar__close {
		right: 10px;
		top: 18px;
		transform: none;
	}

	.fcd-notification-bar__icon svg {
		width: 18px;
		height: 16px;
	}
}

@media (max-width: 480px) {
	.fcd-notification-bar__inner {
		padding: 8px 38px 8px 12px;
	}

	.fcd-notification-bar__text {
		font-size: 15px;
	}

	.fcd-notification-bar__icon {
		margin-right: 8px;
	}

	.fcd-notification-bar__icon svg {
		width: 16px;
		height: 14px;
	}
}
