#newsletter-popup {
	padding:0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 900px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display:none;
}
#newsletter-popup .image {
	max-width: 400px;
}
#newsletter-popup .letter {
	max-width: 500px;
  padding: 60px 40px;
}
.letter__subtext {
	line-height: var(--lineHeightBig);
  margin-bottom: 20px;
}
.letter__input {
	height: var(--mainbarInner);
  padding: 0 20px;
  width: 100%;
}  
.letter__button {
	margin-top: 15px;
}
.letter__message {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  display:none;
}
.letter__message.letter--success {
	color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  display:block;
}
.letter__message.letter--danger {
	color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  display:block;
}
.letter__message.letter--warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  display:block;
}
@media(max-width: 768px){
  #newsletter-popup .image {
  	display:none;
  }
}