@font-face {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: normal;
}

*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  box-sizing:border-box;
  font-size: 14px;
  line-height: 20px;
}

*:before,
*:after 
{ 
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body 
{
  -webkit-font-smoothing: antialiased;
  letter-spacing: .1px;
  line-height: 1.23em;
  color: #757575;

}

a,
a:hover 
{
  text-decoration:none;
}


#wrapper
{
  width: 100%;
  text-align:center;
  margin: 0 auto;
}


/*------------------Formulario-----------------------*/

/*----------------------------------------------------*/

.NewsletterContainer
{
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  margin: 0px;
  width: 220px;
}

.n-formulario 
{
  text-align: center;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 25px;
}

.n-formulario  .rf_notice 
{
	text-align: center;
  margin-right: 20px;
  line-height: 26px;
  font-weight: 300;
  color: white;
}

.n-formulario  .fl_label 
{
	cursor: text;
	display: none;
}
.n-botones
{
  width: 50%;
  margin: 10px 0px 0px 0px;
  display: inline-block;
}

.n-send 
{
	background: #ffffff;
	border-radius: 4px;
	border: 1px solid #22a8b5;
	color: #32a8c9;
	padding: 5px 25px;
	display: inline-block;
	margin: 0px;
	float: left;
	text-transform: uppercase;
	font-weight: 600;
}
.n-send:hover 
{
  cursor:pointer;
  background: #209eab;
  color: rgb(255, 255, 255);
  border: 1px solid #ffffff;
}
.n-send:focus 
{
  outline:none;
  border: 1px solid #FF4E70;
}

.n-formulario .fl_wrap 
{
  /* Can change */
  width: 100%;
  height: 46px;
  margin:0px auto; /* change 0 to auto for center alignment *//* Don't change */
  display:block;
  position:relative;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}

/* initial label state */
.n-formulario  label 
{
  /* Can change */
  top: 15px;
  left: 5px;
  
  /* Don't change */
  position:absolute;
  z-index:3; /* This can be removed but then the labels must be placed after the inputs in the HTML */
  -webkit-transition: all .05s linear;
  -moz-transition: all .05s linear;
  -transition: all .05s linear;
}

.n-formulario  input 
{
  /* Can change */
  background: grey;
  border:none;
  border: 1px solid #ffffff;
  border-radius: 0;
  font-weight: 300;
  height: 40px;
  padding: 0px 0px 0px 5px;
 
  /* Don't change */
  position:absolute;
  top:0px;
  left:0;
  right:0;
  bottom:0;
  width: 100%;
  z-index:2; /* This can be removed but then the labels must be placed after the inputs in the HTML */
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}

.n-formulario  input:focus
{
  padding: 5px 0px 0px 5px;
  line-height: 40px;
}

.n-formulario  input::-webkit-input-placeholder
{
  color: white;
}
.n-formulario  input:-moz-placeholder
{
  color: white;
}
.n-formulario  input::-moz-placeholder
{
  color: white;
}
.n-formulario  input:-ms-input-placeholder
{
  color: white;
}
.n-formulario  input:focus::-webkit-input-placeholder
{
  color: #efefef;
  font-size: 10px;
  line-height: 10px;
}
.n-formulario  input:focus:-moz-placeholder
{
  color: #efefef;
  font-size: 10px;
  line-height: 10px;
}
.n-formulario  input:focus::-moz-placeholder
{
  color: #efefef;
  font-size: 10px;
  line-height: 10px;
}
.n-formulario  input:focus:-ms-input-placeholder
{
  color: #efefef;
  font-size: 10px;
  line-height: 10px;
}
