.cj-newsletter {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1rem;
	padding: 1rem 3rem;
	margin-top: -130px;
	grid-template-areas: 'image' 'header' 'form';
}
@media (min-width: 992px) {
	.cj-newsletter {
		grid-template-columns: 1fr 2fr;
		grid-template-rows: auto 1fr;
		grid-gap: 2rem;
		margin-top: 0;
		grid-template-areas: 'image header' 'image form';
	}
	.cj-newsletter--form-success {
		grid-template-areas: 'image header' 'image header';
	}
}
.cj-newsletter__header {
	grid-area: header;
	justify-self: center;
	text-align: center;
	margin-top: -30px;
}
@media screen and (min-width: 992px) {
	.cj-newsletter__header {
		justify-self: initial;
		text-align: left;
		margin-top: 0;
	}
}
.cj-newsletter--form-success .cj-newsletter__header {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cj-newsletter__form {
	grid-area: form;
}
.cj-newsletter__image {
	grid-area: image;
	justify-self: center;
	width: 100%;
	height: 262px;
	max-width: 312px;
}
@media screen and (min-width: 992px) {
	.cj-newsletter__image {
		justify-self: self-start;
		width: 100%;
		max-width: 300px;
		height: 312px;
	}
}
.cj-newsletter__title {
	font: normal normal normal 20px/26px 'Arial Black', Arial, sans-serif;
	color: #333;
	text-transform: uppercase;
	margin-bottom: 20px;
	display: inline-block;
}
@media screen and (min-width: 992px) {
	.cj-newsletter__title {
		font: normal normal normal 28px/42px 'Arial Black', Arial, sans-serif;
	}
}
.ios .cj-newsletter__title {
	font-weight: bold;
}
.cj-newsletter__description {
	font: normal normal normal 16px/24px Arial;
	color: #333;
	margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
	.cj-newsletter__description {
		margin-bottom: 0;
		font: normal normal normal 18px/25px Arial, sans-serif;
	}
}
.cj-newsletter__form {
	display: grid;
	grid-gap: 0.5rem;
	width: 100%;
	margin: 0 auto;
	grid-row-gap: 1.7rem;
	grid-template-areas: 'name' 'email' 'submit' 'confirmation';
}
@media (min-width: 992px) {
	.cj-newsletter__form {
		grid-template-rows: auto;
		grid-column-gap: 1rem;
		grid-row-gap: 1.7rem;
		align-items: center;
		grid-template-areas: 'name email' 'submit submit' 'confirmation confirmation';
	}
	.cj-newsletter__form .cj-newsletter__input,
	.cj-newsletter__form .cj-newsletter__submit {
		margin-bottom: 0;
	}
	.cj-newsletter__form .cj-newsletter__confirmation {
		justify-self: self-start;
		margin-top: 10px;
		grid-column: 1/-1;
	}
}
.cj-newsletter__label {
	display: none;
}
.cj-newsletter__input {
	display: block;
	width: 100%;
	padding: 12px 20px;
	background: #fff;
	border-radius: 27px;
	outline: initial;
	font: normal normal normal 18px/25px Arial;
	margin-bottom: 0;
	border: 2px solid rgba(0, 0, 0, 0);
}
.cj-newsletter__input--name {
	grid-area: name;
}
.cj-newsletter__input--email {
	grid-area: email;
}
.cj-newsletter__input:hover {
	border: 2px solid #d6a400;
}
.cj-newsletter__input:active,
.cj-newsletter__input:focus {
	outline: initial;
}
.cj-newsletter__input::-moz-placeholder {
	font: normal normal normal 18px/25px Arial;
	color: #9b9b9b;
}
.cj-newsletter__input::placeholder {
	font: normal normal normal 18px/25px Arial;
	color: #9b9b9b;
}
.cj-newsletter__submit {
	border: none;
	border-radius: 27px;
	text-align: center;
	width: 100%;
	font: normal normal bold 18px/25px Arial, sans-serif;
	color: #333;
	display: block;
	background: rgba(0, 0, 0, 0)
		linear-gradient(180deg, #f8d368 0%, #f8d368 50%, #f8d368 100%);
	transition: 400ms ease-in-out all;
	position: relative;
	overflow: hidden;
	grid-area: submit;
	justify-self: start;
	white-space: nowrap;
	padding: 11px 1rem;
}
@media screen and (min-width: 992px) {
	.cj-newsletter__submit {
		padding: 14px 1rem;
	}
}
.cj-newsletter__submit:hover {
	background: rgba(0, 0, 0, 0)
		linear-gradient(180deg, #fad961 0%, #f7cb4e 50%, #f7cb4e 100%);
	border-radius: 24px;
}
.cj-newsletter__checkbox {
	background: #fff;
	border: 1px solid #b1b1b1;
	border-radius: 5px;
	width: 24px;
	height: 24px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	position: relative;
	vertical-align: middle;
	transition: background-color 0.3s;
}
.cj-newsletter__checkbox:before,
.cj-newsletter__checkbox:after {
	content: '';
	position: absolute;
	background-color: #fff;
	border-radius: 2px;
	opacity: 0;
	transition: opacity 0.3s, transform 0.3s ease;
	transform-origin: left bottom;
}
.cj-newsletter__checkbox:before {
	top: 9px;
	left: 3px;
	width: 7px;
	height: 2px;
	transform: rotate(0deg);
}
.cj-newsletter__checkbox:after {
	top: 0;
	left: 7px;
	width: 2px;
	height: 15px;
	transform: rotate(0deg);
}
.cj-newsletter__checkbox:checked {
	border-color: #d6a400;
	background-color: #d6a400;
}
.cj-newsletter__checkbox:checked:before,
.cj-newsletter__checkbox:checked:after {
	opacity: 1;
	transform: rotate(45deg);
	transition: opacity 0.3s, transform 0.3s;
}
.cj-newsletter__checkbox:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(81, 166, 125, 0.5);
}
.cj-newsletter__checkbox + span {
	margin-left: 0.5rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	flex: 1;
}
@media screen and (min-width: 992px) {
	.cj-newsletter__checkbox + span {
		flex: initial;
	}
}
.cj-newsletter__confirmation {
	display: flex;
	grid-area: confirmation;
	gap: 0.5rem;
	font: normal normal normal 16px/25px Arial;
	color: #333;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	align-items: start;
}
@media screen and (min-width: 992px) {
	.cj-newsletter__confirmation {
		align-items: center;
	}
}
.cj-newsletter__additional-text {
	font: normal normal bold 18px/25px Arial, sans-serif;
	color: #333;
}
.pt-section-newsletter {
	position: relative;
	padding: 30px 0;
	background-color: #91d6db;
	margin-top: 40px;
}
@media screen and (min-width: 992px) {
	.pt-section-newsletter {
		background-color: rgba(0, 0, 0, 0);
		overflow: hidden;
		margin-top: 0;
	}
}
.pt-section-newsletter:before,
.pt-section-newsletter:after {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	transform: skewX(-10deg);
	z-index: -10;
}
@media screen and (min-width: 992px) {
	.pt-section-newsletter:before,
	.pt-section-newsletter:after {
		content: '';
	}
}
.pt-section-newsletter:before {
	background: #a7db91;
	left: -80%;
}
.pt-section-newsletter:after {
	background: #a7db91;
	left: 20%;
}
.pt-section-newsletter .sib_loader,
.pt-section-newsletter .sib_msg_disp {
	display: none !important;
}
.pt-section-newsletter .required-asterisk {
	color: #ab0c01;
}
