/* Lines and Border Css */

.is-style-border-bottom {
	position: relative;
	padding: 0 0 30px;
}

.is-style-border-bottom::after {
	content: '';
	width: 70px;
	height: 4px;
	background: var(--wp--preset--color--three);
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
}

.is-style-border-bottom:empty:after {
	content: none;
}

.is-style-border-bottom:-moz-only-whitespace:after {
	content: none;
}

.is-style-border-bottom.has-text-align-center:after {
	margin: 0 auto;
	right: 0;
}

.is-style-border-bottom.has-text-align-right:after {
	margin-left: auto;
	right: 0;
}

.is-style-dots-blue {
	position: relative;
}

.is-style-dots-blue:before {
	content: '';
	display: block;
	background: url(../images/dot-icon-blue.svg) left top;
	width: 112px;
	height: 63px;
	margin-left: 210px;
	margin-bottom: 10px;
	z-index: 1;
}

.is-style-dots-blue-border-bottom {
	position: relative;
}

.is-style-dots-blue-border-bottom:before {
	content: '';
	display: block;
	background: url(../images/dot-icon-blue.svg) left top;
	width: 112px;
	height: 63px;
	margin-left: 140px;
	z-index: 1;
}

.is-style-dots-blue-border-bottom:after {
	content: '';
	display: block;
	border-bottom: 5px solid #47AB82;;
	border-radius: 12px;
	width: 84px;
	margin-top: 40px;
	z-index: 1;
}


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

	.is-style-dots-blue:before,
	.is-style-dots-blue-border-bottom:before {
		background-size: 6px;
		width: 60px;
		height: 34px;
		margin-left: 0;
	}

	.is-style-dots-blue-border-bottom:after {	
		border-width: 3px;
		margin-top: 12px;
	}

}