.has-white-smoke-background-color {
	background-color: #f7f7f7;
}

.has-dodger-blue-background-color {
	background-color: #178ffd;
}

.wp-block-heading u {
	text-decoration: none;
	position: relative;
}

.wp-block-heading u::after {
	content: '';
	position: absolute;
	width: 0;
	height: 3px;
	opacity: 0;
	display: inline-block;
	background: #00ED91;
	border-radius: 6px;
	bottom: 0;
	left: 0;
	animation: u .3s ease .5s forwards;
	transition: all .2s ease;
}

@keyframes u {
	from {
		opacity: 0;
		width: 0;
	}

	to {
		opacity: 1;
		width: 100%;
	}
}

.header {
	z-index: 99;
}
