.sp-popup-wrapper {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: #ada8b581;
}

.sp-popup {
	position: absolute;
  font-family: 'Public Sans', sans-serif;
  font-weight: 200;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 972px;
	background-color: #404F63;
  color: white;
	/* box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.35); */
	z-index: 10001;
	max-height: 92vh;
	min-height: 280px;
	overflow: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
}

.sp-popup-content {
	overflow: auto;
	width: 100%;
}

.sp-popup-content h5, .sp-popup-content h6, .sp-popup-content h4 {
  font-weight: 200!important;
}

.sp-popup-title {
	margin-top: 0;
	margin-bottom: 20px;
  color: white;
  font-family: TiemposRegular, sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

.sp-popup-text {
	line-height: 1.5;
}

.sp-popup-text > * {
	color: white;
}


/*** CTA button ***/

.sp-popup-btn {
	display: inline-block;
	margin-top: 20px;
	padding: 0;
	/* background-color: #000; */
	color: #fff;
	text-decoration: none;
  font-size: 20px;
	/* font-size: 14px;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: opacity 0.2s; */

  padding-left: 60px;
  position: relative;
}

.sp-popup-btn:before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 8px;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 51 12" fill="none"><path d="M50.53 6.53a.75.75 0 0 0 0-1.06L45.757.697a.75.75 0 0 0-1.06 1.06L48.939 6l-4.242 4.243a.75.75 0 0 0 1.06 1.06L50.53 6.53zM0 6.75h50v-1.5H0v1.5z" fill="%23FFFFFF"/></svg>');
  background-repeat: no-repeat;
  transition-duration: .4s
}

.sp-popup-btn:hover {
  padding-left: 70px;
  text-decoration: none;
  color: white;
}

.sp-popup-btn:hover:before {
  width: 60px;
}


/*** Close button ***/

.sp-close-btn {
	position: absolute;
	right: 20px;
	top: 18px;
	width: 24px;
	height: 24px;
	opacity: 0.5;
	cursor: pointer;
	flex-shrink: 0;
}



.sp-close-btn:hover {
	opacity: 1;
}

.sp-close-btn::before,
.sp-close-btn::after {
	position: absolute;
	left: 11px;
	content: '';
	height: 24px;
	width: 2px;
	background-color: white;
   transition-duration: .34s
}

.sp-close-btn::before {
	transform: rotate(45deg);
}

.sp-close-btn::after {
	transform: rotate(-45deg);
}

/*** Responsive ***/

@media screen and (max-width: 767px) {
	.sp-popup {
		width: 92%;
	}

	.sp-popup-content {
		padding: 42px 22px 32px;
	}
}

@media screen and (min-width: 768px) {
	.sp-popup {
		padding: 40px 30px 40px;
	}
}

@media screen and (min-width: 992px) {
	.sp-popup {
		padding: 45px 80px 50px;
	}
}
