#floating_widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0px 6px 20px 0px rgba(19, 16, 50, 0.08);
  border-radius: 20px;
  max-width: 375px;
  transition: all 0.3s ease;
  z-index: 9999;
}
#floating_widget.hidden {
  right: -300px;
  opacity: 0;
  visibility: hidden;
}
#floating_widget .success_message {
  display: none;
  padding: 8px;
  background-color: rgba(37, 218, 191, 0.5);
  text-align: center;
  border-radius: 8px;
}
#floating_widget .success_message.show {
  display: block;
}
#floating_widget #form_close {
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  filter: drop-shadow(0px 6px 20px rgba(19, 16, 50, 0.24));
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#floating_widget a {
  text-decoration: underline;
}
#floating_widget h3 {
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 40px;
}
#floating_widget .subscribe_btn {
  background-color: #614efa;
  border-radius: 10px;
  margin-bottom: 8;
}
#floating_widget .subscribe_btn.disabled {
  background-color: #aeacb7;
}
#floating_widget .subscribe_btn a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 9px 32px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  line-height: 26px;
}
#floating_widget .input_wrapper {
  padding: 12px 24px 12px 56px;
  background-color: #fff;
  background-image: url("../svg/icon_email.svg");
  background-repeat: no-repeat;
  background-position: left 24px center;
  border-radius: 12px;
  border: 1px solid #c8c7d0;
  margin-bottom: 12px;
  position: relative;
}
#floating_widget .input_wrapper.error {
  border-color: #eb3a41;
}
#floating_widget .input_wrapper input {
  all: unset;
  display: inline-block;
  height: 100%;
  transform: translateY(-1px);
  width: 100%;
}
#floating_widget .input_wrapper input::-moz-placeholder {
  font-size: 15px;
  line-height: 28px;
  color: #c8c7d0;
}
#floating_widget .input_wrapper input::placeholder {
  font-size: 15px;
  line-height: 28px;
  color: #c8c7d0;
}

@media screen and (max-width: 769px) {
  #floating_widget {
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    max-width: 335px;
  }
}