/**
 * ------------------------------
 * Bring Back WP & ACF Styles
 * ------------------------------
 */
.editor-styles-wrapper .acf-block-fields .button,
.editor-styles-wrapper .acf-block-fields a.button {
	color: #1e73be;
	font-size: 13px;
	background-color: rgb(243, 245, 246);
}

.editor-styles-wrapper .acf-block-fields .button:hover,
.editor-styles-wrapper .acf-block-fields a.button:hover {
	color: #016087;
	background-color: #f1f1f1;
	border-color: #016087;
}

.editor-styles-wrapper .wp-block .acf-block-fields .button-primary,
.editor-styles-wrapper .wp-block .acf-block-fields a.button-primary {
	color: #ffffff;
	font-size: 13px;
	background-color: #007cba;
	border-color: #007cba;
}

.editor-styles-wrapper .wp-block .acf-block-fields .button-primary:hover,
.editor-styles-wrapper .wp-block .acf-block-fields a.button-primary:hover {
	color: #ffffff;
	background-color: #016087;
	border-color: #016087;
}

/**
 * ------------------------------
 * Informational Block
 * ------------------------------
 */
.informational-block--image-wrapper {
	margin-top: 30px;
	margin-bottom: 10px;
}

.informational-block--image-source {
	font-size: 15px;
	font-style:italic;
	color:#a4a4a4;
}

/**
 * ------------------------------
 * Simple Product Block
 * ------------------------------
 */
.simple-product-block .simple-product--display-row {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	border: 1px solid #dbdbdb;
	border-radius: 0;
}

.simple-product-block .simple-product--image-col {
	width: 45%;
}

.simple-product-block .simple-product--list-col {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	width: 55%;
}

.simple-product-block .simple-product--nice-list {
	position: relative;
	margin: 0 0 25px;
	padding-left: 0;
	list-style: none;
}

.simple-product-block .simple-product--nice-list li {
	position: relative;
	padding-left: 25px;
	line-height: 1.2;
}

.simple-product-block .simple-product--nice-list li::before {
	content: "";
	border-color: transparent #101010;
	border-style: solid;
	border-width: 0.35em 0 0.35em 0.45em;
	display: block;
	height: 0;
	width: 0;
	left: -1em;
	top: 0.9em;
	position: relative;
}

.simple-product-block a.simple-product--button {
	color: #ffffff;
}

.simple-product-block .simple-product--button {
	display: flex;
	position: relative;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 45px;
	padding-left: 20px;
	padding-right: 20px;
	color: #ffffff;
	border-radius: 4px;
	overflow: hidden;

	background-color: #b11559;
	background-size: 150% auto;
	background-image: linear-gradient(
		to right,
		#e80019,
		#b11559,
		#523ec0,
		#593bbc
	);
}

.simple-product-block .simple-product--button:visited {
	color: #ffffff;
}

.simple-product-block .simple-product--button:hover {
	/* background-size: 200% auto; */
}

.simple-product-block .simple-product--button::before {
	content: "";
	background-color: rgba(255, 255, 255, 0.5);
	height: 100%;
	width: 3em;
	display: block;
	position: absolute;
	top: 0;
	left: -4.5em;
	transform: skewX(-45deg) translateX(0);
	transition: none;
}

.simple-product-block .simple-product--button:hover::before {
	transform: skewX(-45deg) translateX(13.5em);
	transition: all 0.5s ease-in-out;
}

@-webkit-keyframes sheen {
	0% {
		transform: skewY(-45deg) translateX(0);
	}
	100% {
		transform: skewY(-45deg) translateX(12.5em);
	}
}

@keyframes sheen {
	0% {
		transform: skewY(-45deg) translateX(0);
	}
	100% {
		transform: skewY(-45deg) translateX(12.5em);
	}
}

/**
 * ------------------------------
 * Mobile
 * ------------------------------
 */
@media screen and (max-width: 560px) {
	.simple-product-block .simple-product--display-col {
		padding-left: 0;
		width: 100%;
	}

	.simple-product-block .simple-product--image-col img {
		width: 100%;
	}

	.simple-product-block .simple-product--list-col {
		padding: 15px;
	}

	/* The button style */
	.simple-product-block .simple-product--button {
		padding-left: 30px;
		padding-right: 30px;
		height: 50px;
	}
}

.simple-product-item p.product-item-title, .informational-item p.informational-item-title {
  padding-top:0px;
  font-size: 30px !important;
    font-weight: 600 !important;
    font-family: Lato,sans-serif;
	margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
	line-height: 1.2em;
}
.informational-item p.informational-item-title{
	padding-top:20px;
}