.tfx-section-overflow-x-hidden {
  overflow-x: hidden;
}
.tfx-newsletter-form-block {
  margin: auto;
  max-width: 624px;
}
.tfx-newslwtter-img {
  position: relative;
  left: calc(50% + -245px);
  width: 492px;
  height: 300px;
  background-size: 492px 300px;
  background-image: url('../images/newsletter/newsletter_img1.jpg');
}
.tfx-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin: auto;
  padding: 28px 0;
  width: 224px;
  -webkit-box-shadow: 0 4px 10px rgb(0 0 0 / 16%);
  box-shadow: 0 4px 10px rgb(0 0 0 / 16%);
  z-index: 999;
  opacity: 0;
}
.tfx-popup.animated {
  display: block;
  -webkit-animation: fade-out 4s ease 0s 1 forwards;
  animation: fade-out 4s ease 0s 1 forwards;
}
.tfx-popup-message {
  font-size: 1.8rem;
  font-weight: bold;
}
.tfx-popup-icon {
  display: block;
}
.tfx-popup-complete .tfx-popup-icon {
  font-size: 4rem;
  color: #00AA6B;
}
.tfx-popup-block .tfx-popup-icon {
  font-size: 4rem;
  color: #D83A3A;
}
@media screen and (min-width: 768px) {
  .tfx-section-overflow-x-hidden {
    overflow-x: hidden;
  }
  .tfx-popup {
    padding: 32px 0;
    width: 320px;
  }
  .tfx-popup-message {
    font-size: 2rem;
  }
}
@media screen and (min-width: 520px) {
  .tfx-newslwtter-img {
    left: 0;
  }
}
@-webkit-keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  50% {
    display: block;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  50% {
    display: block;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}