

#modal {
	border: solid white;
  background: #4791d6;
  font-family: 'Lato', sans-serif;
  color: white;
  text-align: center;
  position: relative;
  display: flex;
}
#modal a{
	color: #ffe600;
}


#signup {
  width: 450px;
  margin: 17% auto;
  background: #4791d6;
}



.nl_header {
  font-size: 35px;
  text-transform: uppercase;
  letter-spacing: 5px;
}


.nl_description {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.3em;

}


.input {
  display: flex;
  align-items: center;
margin: 0 10px;
}


.button {
  height: 44px;
  border: none;
}

  
#email {
  width: 75%;
  background: #FDFCFB;
  font-family: inherit;
  color: #737373;
  letter-spacing: 1px;
  text-indent: 5%;
  border-radius: 5px 0 0 5px;
  position: relative;
}


#submit {
  width: 25%;
  height: 46px;
	padding: 0;
	font-size: 16px;
  background: #e52e40;
  font-family: inherit;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background .3s ease-in-out;
}
  

#submit:hover {
  background: #e52e40;
}
  

input:focus {
  outline: none;
  outline: 2px solid #E86C8D;
  box-shadow: 0 0 2px #E86C8D;
}

.err{
  color:red;
  font:caption; 
}

.subscribe {
  background-color: #397ccd;
  color: white;
  
}

.close {
  position:absolute;
  top: 0;
  right: 14px;
  font-size: 42px;
  transform: rotate(45deg);
  cursor: pointer;
}

#btn-subscribe{
    display: block;
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    right: 0;
    bottom: 0;
    background-color: #4791d6;
    color: #ffffff;
    padding: 10px 40px;
}


@media (max-width: 480px){
	#signup{width: 100%;}
	
	.nl_header{font-size: 25px;}
}