.subscribe-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	padding: 8px 12px;
	background: var(--spun-pearl-950);
}

.subscribe-footer-desc {
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
}

.subscribe-footer .csp-btn {
	padding: 0 32px;
	border-radius: 50px;
}

.subscribe-footer-close {
	min-width: 18px;
	max-width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m18.5 6-12 12m0-12 12 12'/%3E%3C/svg%3E") center no-repeat;
    opacity: .75;
    transition: opacity ease .1s;
}

.subscribe-footer-close:hover {
	opacity: 1;
}

.popup__body.popup-subscribe {
	max-width: 416px;
	padding: 24px;
	background: var(--blue-ribbon-400);
	border-radius: 12px;
}

.popup-subscribe .popup__heading {
	margin: 0 0 32px 0;
	color: var(--white);
	font-size: 24px;
	line-height: 24px;
	border: none;
	padding: 0 30px 0 0;
	text-align: left;
}

.popup-subscribe .popup__close {
	top: 24px;
	right: 24px;
	width: 24px;
	height: 24px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m18.5 6-12 12m0-12 12 12'/%3E%3C/svg%3E") center no-repeat;
	opacity: .75;
	transition: opacity ease .1s;
}

.popup-subscribe .popup__close:before, 
.popup-subscribe .popup__close:after {
	content: none;
}

.popup-subscribe .popup__close:hover {
	background-color: transparent;
	opacity: 1;
}

.popup-subscribe .subscribe-response {
	color: var(--white);
	margin-bottom: 12px;
}

.subscribe-popup .subscribe-input {
	width: 100%;
    height: 48px;
    padding: 0 24px;
    background: var(--spun-pearl-100);
    border: 1px solid transparent;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 12px;
}

.subscribe-popup .csp-btn {
	height: 48px;
	font-size: 16px;
	border-radius: 50px;
}

@media (max-width: 576px) {
	.subscribe-footer {
		gap: 12px;
	}

	.subscribe-footer-desc span {
		display: none;
	}

	.subscribe-footer .csp-btn {
		padding: 0 12px;
	}


	.popup-subscribe .popup__heading {
		font-size: 20px;
	}
}

@media (min-width: 577px) {
	.subscribe-footer-close {
		margin-left: 18px;
	}

	.popup__body.popup-subscribe {
		min-width: 416px;
	}
}