#footer > .content-wrapper > .newsletter {
	max-width: 730px;
	margin: 0 auto 65px;
}
#footer > .content-wrapper > .newsletter > .complex-title {
	margin-bottom: 80px;
	text-align: center;
}

/*------------------------------------------------------------------------------------------------------------*/

#newsletter {
	position: relative;
}
@media (min-width: 600px) { #newsletter { padding-right: 190px; } }
@media (max-width: 599.99px) {}
#newsletter > :not(.response) { opacity: 1; transition: opacity .2s ease-out; }
#newsletter.sending > :not(.response) {
    animation: blink 1s infinite linear;
    pointer-events: none;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: .3; }
}

/*------------------------------------------------------------------------------------------------------------*/

#newsletter > .fields > .field:not(:last-child) { margin-bottom: 30px; }
#newsletter > .fields > .field > input {
	height: 50px; width: 100%;
	
	background-color: #FFF;
	border: none;
	border-bottom: solid 1px #000;
	
	text-overflow: ellipsis;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 300;
	color: #207175;
}
@media (min-width: 600px) { #newsletter > .fields > .field > input { padding: 0; } }
@media (max-width: 599.99px) { #newsletter > .fields > .field > input { padding: 0 150px 0 0; } }
#newsletter > .fields > .field > .checkbox { position: relative; }
#newsletter > .fields > .field > .checkbox > input {
	position: absolute; top: 0; left: 0;
	pointer-events: none;
	visibility: hidden;
}
#newsletter > .fields > .field > .checkbox > label {
	position: relative;
	display: block;
	padding-left: 30px;
	
	line-height: 20px;
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 300;
	
	cursor: pointer;
}
#newsletter > .fields > .field > .checkbox > label:before {
	content: '';
	position: absolute; top: 1px; left: 1px;
	display: block; height: 18px; width: 18px; box-sizing: border-box;
	
	background-color: #FFF;
	outline: solid 1px #2D5B5D;
	border: solid 2px #FFF;
	border-radius: 3px;
}
#newsletter > .fields > .field > .checkbox > input:checked + label:before { background-color: #2D5B5D; }
@media (min-width: 450px) { #newsletter > .fields > .field > .checkbox > label { padding-right: 65px; } }
@media (max-width: 449.99px) { #newsletter > .fields > .field > .checkbox > label { padding-right: 0; } }

/*------------------------------------------------------------------------------------------------------------*/

#newsletter > .fields > .field > .error {
    display: none;
    padding: 0 5px;
    margin-top: 10px;
    
    font-size: 10px;
    color: #C14141;
}
#newsletter > .fields > .field.empty > .empty,
#newsletter > .fields > .field.wrong > .wrong { display: block; }

/*------------------------------------------------------------------------------------------------------------*/

#newsletter > .submit-btn {
	position: absolute; right: 0;
	display: block; height: 50px;
	
    background-color: transparent;
	background-image: linear-gradient(to right, #E45C4A, #E45C4A);
	background-size: 0% 100%;
	background-repeat: no-repeat;
	
	text-transform: uppercase;
	text-align: center;
	line-height: 50px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 5px;
	color: #E45C4A;
	
	transition:
		background-size .2s ease-out,
		color 			.2s ease-out;
	
	cursor: pointer;
}
@media (min-width: 600px) {
	#newsletter > .submit-btn {
		top: 25px;
		width: 190px;
	}
}
@media (max-width: 599.99px) {
	#newsletter > .submit-btn {
		top: 0;
		width: 150px;
	}
}
#newsletter > .submit-btn > span { position: relative; }
#newsletter > .submit-btn:hover {
	background-size: 100% 100%;
	color: #FFF;
}

/*------------------------------------------------------------------------------------------------------------*/

#newsletter > .response {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 150;
    
    background-color: rgba(0,0,0,.3);
    
    opacity: 0; transition: opacity .2s ease-out;
    pointer-events: none;
	
	color: #000;
}
#newsletter > .response > .content-wrapper {
    display: flex; height: 100vh; width: 100vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#newsletter > .response > .content-wrapper > span {
	position: relative;
    display: block; max-width: 330px;
	padding: 20px 30px 20px 46px;
    
    background-color: #FFF;
	box-shadow: 5px 5px 30px rgba(0,0,0,.1);
	border-radius: 10px;

	font-size: 14px;
	font-weight: 500;
}
#newsletter > .response > .content-wrapper > span:before {
	content: "";
	position: absolute; top: 50%; left: 20px; transform: translateY(-50%);
	height: calc(100% - 40px);
	
	border-left: solid 6px;
	border-radius: 3px;
}
#newsletter > .response.success > .content-wrapper > span { color: var(--main-color); }
#newsletter > .response.success > .content-wrapper > span:before { border-left-color: green; }
#newsletter > .response.failure > .content-wrapper > span { color: var(--off-color); }
#newsletter > .response.failure > .content-wrapper > span:before { border-left-color: red; }
#newsletter > .response > .content-wrapper > span > strong {
	display: inline-block;
	margin-bottom: 10px;
	
	line-height: 140%;
	font-size: 18px;
	font-weight: 700;
}
#newsletter.success > .success,
#newsletter.failure > .failure {
    opacity: 1;
    pointer-events: auto;
}