/**
 * Frontend styles for Subscribe Section Block
 */

.wp-block-sa-themes-subscribe-section.subscribe-block {
	background-color: #FAE283;
	padding: 92px 40px 83px 40px;
	text-align: center;
}

.wp-block-sa-themes-subscribe-section .subscribe-title {
	color: #341D1A;
	font-size: 32px;
	line-height: 150%;
	font-weight: 600;
	margin: 0;
}

.wp-block-sa-themes-subscribe-section .subscribe-description {
	color: #341D1A;
	font-size: 20px;
	line-height: 150%;
	font-weight: 400;
	margin-top: 28px;
	margin-bottom: 30px;
}

.wp-block-sa-themes-subscribe-section .subscribe-input-group {
	background-color: #fff;
	max-width: 622px;
	margin: 0 auto;
	box-shadow: 0 8.19px 0 #EFEFEF;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px 0 50px;
	border-radius: 15px;
}

.wp-block-sa-themes-subscribe-section .subscribe-input-group .subscribe-mail-icon {
	width: 24px;
	min-width: 24px;
	margin-right: 10px;
	height: 85px;
}

.wp-block-sa-themes-subscribe-section .subscribe-input-group .subscribe-mail-input {
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	margin-right: 20px;
	border: none;
}

.wp-block-sa-themes-subscribe-section .subscribe-input-group input:active,
.wp-block-sa-themes-subscribe-section .subscribe-mail input:hover,
.wp-block-sa-themes-subscribe-section .subscribe-mail input:focus {
	outline: 2px solid #0073aa;
	outline-offset: 1px;
}

.wp-block-sa-themes-subscribe-section .subscribe-input-group .subscribe-mail-button {
	background-color: #E7370A;
	border: 2px solid #AD2907;
	padding: 14px 23px;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 3.64px 0 rgb(0 0 0 / 25%);
	box-shadow: 0 6px 0 #AD2907;
	margin-top: 15px;
	border-radius: 10px;
	background-image: linear-gradient(120deg,rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0.1) 80%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0.1) 90%, rgba(255, 255, 255, 0.1) 100%);
	cursor: pointer;
	margin: 0;
	transition: .25s;
}

.wp-block-sa-themes-subscribe-section .subscribe-input-group .subscribe-mail-button:hover {
	transform: translate(0, 6px);
	-webkit-transform: translate(0, 6px);
	-o-transform: translate(0, 6px);
	-moz-transform: translate(0, 6px);
	box-shadow: 0 0px 0 #AD2907;
}

.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:checked,
.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:not(:checked) {
	position: absolute;
	left: -9999px;
}

.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:checked + label,
.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:not(:checked) + label {
	display: inline-block;
	position: relative;
	padding-left: 40px;
	cursor: pointer;
	height: 30px;
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #341D1A;
	font-weight: 400;
	line-height: 150%;
	width: fit-content;
}

.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:checked + label:before,
.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:not(:checked) + label:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 30px;
	height: 30px;
	border: 1px solid #341D1A;
	background-color: transparent;
	border-radius: 5px;
}

.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:checked + label:after,
.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:not(:checked) + label:after {
	content: "";
	position: absolute;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	left: 13px;
	top: 13px;
	width: 7px;
	height: 3px;
	border-radius: 0px;
	border-left: 2px solid #341D1A;
	border-bottom: 2px solid #341D1A;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-40deg);
}

.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:not(:checked) + label:after {
	opacity: 0;
}

.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:checked + label:after {
	opacity: 1;
}

.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox-block {
	margin-top: 35px;
	display: flex;
	align-items: center;
	gap: 38px;
	justify-content: center;
}

/* Mobile styles */
@media screen and (max-width: 1024px) {
	.wp-block-sa-themes-subscribe-section.subscribe-block {
		padding: 48px 10px 48px 10px;
		text-align: left;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-title {
		font-size: 20px;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-description {
		margin: 20px 0;
		font-size: 16px;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-description:last-child {
		font-size: 14px;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-input-group .subscribe-mail-input {
		font-size: 14px;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-input-group {
		padding: 15px 20px 15px 20px;
		flex-wrap: wrap;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-input-group .subscribe-mail-button {
		width: 100%;
		margin-top: 10px;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-input-group .subscribe-mail-icon {
		width: 16px;
		min-width: 16px;
		height: 16px;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-input-group .subscribe-mail-input {
		width: calc(100% - 40px);
		font-size: 14px;
		margin-right: 0;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox-block {
		margin-top: 20px;
		display: block;
		margin-bottom: -10px;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:checked + label:before,
	.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:not(:checked) + label:before {
		width: 20px;
		height: 20px;
		top: auto;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:checked + label:after,
	.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:not(:checked) + label:after {
		left: 8px;
		top: auto;
		width: 5px;
		height: 1.5px;
	}
	
	.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:checked + label,
	.wp-block-sa-themes-subscribe-section .subscribe-mail-checkbox input[type="checkbox"]:not(:checked) + label {
		padding-left: 30px;
		font-size: 12px;
	}
}
