/* ---- Newsletter ---- */

.newsletter__popup-container {
  width: 400px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.2)
}
@media screen and (max-width: 800px) {
  .newsletter__popup-container {
    width: 96%;
    right: 50%;
    transform: translateX(50%);
  }
}
.newsletter__popup-container-close {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 35px;
  text-align: center;
  height: 35px;
  line-height: 35px;
  cursor: pointer;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter__popup-text,
.newsletter__popup-form {
    padding: 0 25px;
    margin-top: 20px;
    text-align: center;
}
.newsletter__popup-form {
  padding-bottom: 25px;
}
.newsletter__popup-form input[type="email"] {
  text-align: center;
  margin-bottom: 10px;
}
.newsletter__popup-form input[type="submit"] {
  margin-bottom: 0px;
}
.newsletter__popup-form .gdpr_disclaimer.rte.small {
    font-size: 90%;
    margin: 10px 0 0;
    line-height: 1.6em;
}
