.fixed-element {
  position: fixed;
  bottom: -100px;
  /* Start position for animation */
  opacity: 0;
  background-color: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 80vw;
  right: 10vw;
  height: 40px;
  border-radius: 5px 5px 0 0;
  z-index: 999;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
}
.fixed-element.visible {
  bottom: 0;
  /* End position for animation */
  opacity: 1;
}
.fixed-element .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.fixed-element.expanded {
  width: 100vw;
  right: 0;
  height: 55vh;
  max-height: 450px;
  padding: 2rem 1.5rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #707070;
  cursor: default;
}
.fixed-element.expanded .form-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  row-gap: 1rem;
  max-width: 90%;
}
.fixed-element.expanded .small-text {
  display: none;
}
.fixed-element.expanded .close-button {
  display: block;
}
.fixed-element .form-content {
  display: none;
  flex-direction: column;
  align-items: center;
}
.fixed-element input[type=email] {
  padding: 5px;
  border-radius: 3px;
  border: 1px solid #d4d4d4;
  width: 100%;
}
.fixed-element .btn.btn-primary {
  width: auto;
  min-width: 150px;
}
.fixed-element .error-message {
  color: red;
  margin-top: 10px;
  display: none;
}
.fixed-element .close-button {
  display: none;
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 40px;
  cursor: pointer;
  color: #000;
  opacity: 1;
  transition: 0.1s all ease;
}
.fixed-element .close-button:hover {
  opacity: 0.6;
}
@media screen and (min-width: 1024px) {
  .fixed-element {
    right: 15px;
    width: 300px;
  }
  .fixed-element.expanded {
    right: 15px;
    width: 450px;
    height: 420px;
    padding: 2rem 3rem;
  }
  .fixed-element.expanded .form-content {
    max-width: 350px;
  }
}
@media screen and (min-width: 1920px) {
  .fixed-element.expanded {
    width: 25vw;
    height: 45vh;
  }
}

/*# sourceMappingURL=/popin_newsletter_v2.f5b8d839.css.map */