.wcp-aweber-subscribers {
	--heading-color:#fff;
	--heading-font-size: 28px;
	--heading-font-weight: 700;

	--subhead-color: #fff;

	--form-font: "Lato";
	--form-background: #111;
	--form-border: 0;

	--input-color: #E0E0E0;
	--input-placeholder-color: #969799;
	--input-height: 50px;
	--input-border: 1px solid #FCE4A6;;
	--input-border-radius: 4px;
	--input-background: #FCE4A60D;
	--input-font-size: 14px;

	--button-width: 226px;
	--button-height: 35px;
	--button-background: #FFC361;
	--button-color:#111;
	--button-font-size: 14px;
	--button-font-weight: 700;
	--button-border: 0;
	--button-border-radius: 4px;

	--agreement-font-size: 12px;
	--agreement-font-weight: 400;
	--agreement-line-height: 16px;
	--agreement-color: #fff;

	--agreement-checkbox-size: 18px;
	--agreement-checkbox-background: #FCE4A60D;
	--agreement-checkbox-border: 1px solid #fff;
	--agreement-checkbox-border-radius: 4px;

	--agreement-checkbox-active-background: #FFC361;
	--agreement-checkbox-active-border-color: #FFC361;

	margin: 0;
	margin-bottom: 15px;
}


.wcp-aws__section{
	padding: 0;
	margin-bottom: 15px;
}
.hidden{
	display: none !important;
}

.wcp-aweber-subscribers .wcp-aws__content {
	padding: 16px;
	padding-left: 45px;
	position: relative;
	border-radius: 4px;
	background: var(--form-background);
	display: flex;
	justify-content: space-between;
	align-items: center;

}
@media (max-width: 992px){
	.wcp-aweber-subscribers .wcp-aws__content{
		flex-direction: column-reverse;
		padding-left: 16px;

	}
}


.sidebar-form .wcp-aweber-subscribers .wcp-aws__content{
	flex-direction: column-reverse;
	padding-left: 16px;
}




.wcp-aweber-subscribers .wcp-aws__heading {
	font-family: var(--form-font), sans-serif ;
	font-size: var(--heading-font-size);
	font-weight: var(--heading-font-weight);
	line-height: 25px;
	color: var(--heading-color);
	margin-bottom: 16px;
}
@media (max-width: 992px){
	.wcp-aweber-subscribers .wcp-aws__heading, .wcp-aweber-subscribers .wcp-aws__subheading{
		text-align: center;
	}
}
.sidebar-form .wcp-aweber-subscribers .wcp-aws__heading, .sidebar-form .wcp-aweber-subscribers .wcp-aws__subheading{
	text-align: center;
}
.sidebar-form .wcp-aweber-subscribers .wcp-aws__heading{
	font-size: 20px;
}


.wcp-aweber-subscribers .wcp-aws__heading + .wcp-aws__subheading {
	margin-top: -8px
}

.wcp-aweber-subscribers .wcp-aws__subheading {
	font-family: var(--form-font), sans-serif;
	font-size: 14px;
	line-height: 135%;
	color: var(--subhead-color);
	margin-bottom: 16px;
}

.wcp-aws__form{
	max-width: 362px;
}

.wcp-aweber-subscribers .wcp-aws__form-container {
	display: grid;
	grid-row-gap: 8px;
	grid-template-areas:"email"
	"agreement"
	"submit";
}


.wcp-aweber-subscribers .wcp-aws__form-container .wcp-aws__input--agreement {
	grid-area: agreement;
	align-self: start
}

.wcp-aweber-subscribers .wcp-aws__input {
	margin-bottom: 0 !important
}

.wcp-aweber-subscribers .wcp-aws__input input {
	display: block;
	width: 100%;
	background: var(--input-background);
	border-radius: var(--input-border-radius);
	padding: 13px 16px;
	color: var(--input-color);
	height: var(--input-height);
	border: var(--input-border);
	margin-top: 0;
	font-size: var(--input-font-size);
}
.wcp-aweber-subscribers .wcp-aws__input.wcp-aws__error--inline:not(.wcp-aws__input--agreement) input{
	border: 2px solid #FF4A4A;
}

.wcp-aweber-subscribers .wcp-aws__input.wcp-aws__error--inline.wcp-aws__input--agreement .wcp-aws__error{
	border-radius: 8px;
	height: 26px;
	display: flex;
	align-items: center;
	position: relative;
	line-height: 1;
}

.wcp-aweber-subscribers .wcp-aws__input input::placeholder{
	color: #5D677A;
}

.wcp-aws__spin, .wcp-aweber-subscribers .wcp-aws__submit {
	display: flex;
	justify-content: center;
	align-items: center;
	width: var(--button-width);
	height: var(--button-height);
	border: var(--button-border);
	border-radius: var(--button-border-radius);
	color: var(--button-color);
	font-size: var(--button-font-size);
	font-weight: var(--button-font-weight);
	background: var(--button-background);
	transition: all linear .4s;
	position: relative;
	z-index: 3;

	cursor: pointer;
	margin-top: 10px;
	text-transform: uppercase;
}

.wcp-aws__spin, .wcp-aweber-subscribers .wcp-aws__submit:hover{
	background-color: #F1A13A;
}

@media (max-width: 992px){
	.wcp-aws__spin, .wcp-aweber-subscribers .wcp-aws__submit{
		width: 100%;
	}
}
.sidebar-form .wcp-aweber-subscribers .wcp-aws__submit{
	width: 100%;
}




.wcp-aweber-subscribers .wcp-aws-checkbox {
	display: flex;
	align-items: center;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	vertical-align: middle;
	position: relative;
	margin-bottom: 0
}

.wcp-aweber-subscribers .wcp-aws-checkbox input {
	width: 1px;
	height: 1px;
	position: absolute;
	top: 0;
	left: 10px;
	visibility: hidden
}

.wcp-aweber-subscribers .wcp-aws-checkbox input:checked ~ .wcp-aws-checkbox__mark {
	background-color: var(--agreement-checkbox-active-background);
	border-color: var(--agreement-checkbox-active-border-color);
}

.wcp-aweber-subscribers .wcp-aws-checkbox input:checked ~ .wcp-aws-checkbox__mark:after {
	display: block
}

.wcp-aweber-subscribers .wcp-aws-checkbox__mark {
	width: var(--agreement-checkbox-size);
	height: var(--agreement-checkbox-size);
	flex: 0 0 var(--agreement-checkbox-size);
	background-color: var(--agreement-checkbox-background);
	border: var(--agreement-checkbox-border);
	border-radius: var(--agreement-checkbox-border-radius);

	align-self: flex-start;
	position: relative;
	top: 0;
}


.wcp-aweber-subscribers .wcp-aws-checkbox__mark:after {
	display: none;
	content: '';
	position: absolute;
	left: 4px;
	top: 1px;
	width: 5px;
	height: 9px;
	border: solid #111;
	border-width: 0 2px 2px 0;
	transform: rotate(40deg)
}

.wcp-aweber-subscribers .wcp-aws-checkbox__label {
	font-size: var(--agreement-font-size);
	line-height: var(--agreement-line-height);
	color: var(--agreement-color);
	font-weight: var(--agreement-font-weight);

	margin-left: 9px;

}

.wcp-aweber-subscribers .wcp-aws-checkbox__label a {
	color: var(--agreement-color);
	text-decoration: underline
}

.wcp-aweber-subscribers .wcp-aws__error {
	display: block;
	width: 100%;
	font-family: var(--form-font), sans-serif;
	font-size: 12px;
	line-height: 135%;
	color:#FF2D45;

}

@media (min-width: 768px) {
	.wcp-aweber-subscribers .wcp-aws__error {

	}
}

.wcp-aweber-subscribers input[name="subject"] {
	display: none
}

.wcp-aweber-subscribers .wcp-aws__success, .wcp-aweber-subscribers .wcp-aws__success p {
	color: var(--heading-color);
	text-align: center;
	margin-bottom: 0
}

.wcp-aws__content-success .wcp-aws__heading{
	display: none;
}
.wcp-aweber-subscribers .wcp-aws__success{
	position: relative;
	font-family: var(--form-font), sans-serif;
}

.wcp-aweber-subscribers .wcp-aws__success strong {
	font-size: 20px;
	font-weight: 700;
}

@media (min-width: 768px) {
	.wcp-aweber-subscribers .wcp-aws__input {
		justify-content: space-between;
		align-items: center;
		gap: 0 10px;
		margin-bottom: 16px
	}

	.wcp-aweber-subscribers .wcp-aws__input p {
		color: #ffffff
	}
}

.wcp-aws__wof {
	min-height: 300px;
	position: relative
}

@media (min-width: 768px) {
	.wcp-aws__wof {
		min-height: 230px
	}
}

.wcp-aws__wof.wcp-aws__content {
	display: flex;
	padding: 16px 16px 155px;
	overflow: hidden;
	min-height: 296px;
	position: relative;
	border: var(--form-border);
	border-radius: 4px;
}
@media (max-width: 767px){
	.spin-complete .wcp-aws__wof.wcp-aws__content {
		padding-bottom: 16px;
	}
}

@media (min-width: 768px) {
	.wcp-aws__wof.wcp-aws__content {
		padding: 21px 175px 21px 12px;

		min-height: 196px;
	}
}
@media (min-width: 992px){
	.wcp-aws__wof.wcp-aws__content {
		padding: 21px 175px 21px 12px;
		/*padding: 52px 175px 52px 12px;*/
	}
}

.wcp-aws__wof .wcp-aws__content-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}
@media (min-width: 768px){
	.wcp-aws__wof .wcp-aws__content-inner {
		margin-bottom: 0;
	}
}



.wcp-aweber-subscribers.loading {
	position: relative
}

.wcp-aws__form.loading > * {
	filter: blur(4px)
}

.wcp-aws__form.loading:after {
	content: '';
	width: 100%;
	height: 100%;
	background: center no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='margin:auto;background:0 0' width='80' height='80' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid' display='block'%3E%3Ccircle cx='84' cy='50' r='10' fill='%23e15b64'%3E%3Canimate attributeName='r' repeatCount='indefinite' dur='0.8333333333333334s' calcMode='spline' keyTimes='0;1' values='10;0' keySplines='0 0.5 0.5 1' begin='0s'/%3E%3Canimate attributeName='fill' repeatCount='indefinite' dur='3.3333333333333335s' calcMode='discrete' keyTimes='0;0.25;0.5;0.75;1' values='%23e15b64;%23ffef00;%23f8b26a;%23f47e60;%23e15b64' begin='0s'/%3E%3C/circle%3E%3Ccircle cx='16' cy='50' r='10' fill='%23e15b64'%3E%3Canimate attributeName='r' repeatCount='indefinite' dur='3.3333333333333335s' calcMode='spline' keyTimes='0;0.25;0.5;0.75;1' values='0;0;10;10;10' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' begin='0s'/%3E%3Canimate attributeName='cx' repeatCount='indefinite' dur='3.3333333333333335s' calcMode='spline' keyTimes='0;0.25;0.5;0.75;1' values='16;16;16;50;84' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' begin='0s'/%3E%3C/circle%3E%3Ccircle cx='50' cy='50' r='10' fill='%23f47e60'%3E%3Canimate attributeName='r' repeatCount='indefinite' dur='3.3333333333333335s' calcMode='spline' keyTimes='0;0.25;0.5;0.75;1' values='0;0;10;10;10' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' begin='-0.8333333333333334s'/%3E%3Canimate attributeName='cx' repeatCount='indefinite' dur='3.3333333333333335s' calcMode='spline' keyTimes='0;0.25;0.5;0.75;1' values='16;16;16;50;84' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' begin='-0.8333333333333334s'/%3E%3C/circle%3E%3Ccircle cx='84' cy='50' r='10' fill='%23f8b26a'%3E%3Canimate attributeName='r' repeatCount='indefinite' dur='3.3333333333333335s' calcMode='spline' keyTimes='0;0.25;0.5;0.75;1' values='0;0;10;10;10' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' begin='-1.6666666666666667s'/%3E%3Canimate attributeName='cx' repeatCount='indefinite' dur='3.3333333333333335s' calcMode='spline' keyTimes='0;0.25;0.5;0.75;1' values='16;16;16;50;84' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' begin='-1.6666666666666667s'/%3E%3C/circle%3E%3Ccircle cx='16' cy='50' r='10' fill='%23ffef00'%3E%3Canimate attributeName='r' repeatCount='indefinite' dur='3.3333333333333335s' calcMode='spline' keyTimes='0;0.25;0.5;0.75;1' values='0;0;10;10;10' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' begin='-2.5s'/%3E%3Canimate attributeName='cx' repeatCount='indefinite' dur='3.3333333333333335s' calcMode='spline' keyTimes='0;0.25;0.5;0.75;1' values='16;16;16;50;84' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' begin='-2.5s'/%3E%3C/circle%3E%3C/svg%3E");
	position: absolute;
	top: 0;
	left: 0
}


.wcp-aws__image img{
	margin-bottom: -15px;
	max-width: 293px;
}
@media (max-width: 992px){
	.wcp-aws__image img{
		margin-bottom: 5px;
		max-width: 89px;
		max-height: 89px;
	}
}
.sidebar-form .wcp-aws__image img{
	margin-bottom: 5px;
	max-width: 89px;
	max-height: 89px;
}
