.toxic {
  display: flex;
  align-items: center;
  padding: 4em 0;
}

.toxic__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
}

.toxic__text {
  width: calc(55% - 3em / 2);
}

.toxic__img {
  width: calc(45% - 3em / 2);
  position: relative;
}

.toxic__img-text {
  position: absolute;
  left: 1.6em;
  top: 1.6em;
  background-color: var(--color-red);
  border-radius: 1.0315em;
  padding: 1.3em;
  display: flex;
  align-items: center;
  gap: 1em;
  max-width: 19.7em;
}

.toxic__img-text h6 {
  font-size: 0.8em;
  color: var(--color-warm-white);
  line-height: 1.5;
}

.toxic__img-icon {
  max-width: 2em;
  width: 100%;
}

.toxic__img img {
  border-radius: 1.0315em;
}

.toxic__img-icon img {
  width: 100%;
  border-radius: 0;
}

.toxic__text :where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 26px;
}

.toxic__text p {
  font-size: 1.3em;
  font-weight: 600;
  max-width: 26em;
}

.toxic__text-content {
  max-width: 35em;
}

.container-fluid {
  width: 100%;
}

.toxic__form {
  margin-top: 4em;
  max-width: 29em;
}

.toxic__form .form-text {
  font-size: 1.1em;
  margin-bottom: 12px;
}

.input-wrap input {
  width: 100%;
  padding: 0.1875293014533521em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-dark);
  border: 0;
  background-color: var(--color-warm-dark);
  font-size: 0.9376465072667605em;
  line-height: 1.1251758087201127em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.46883em;
  height: 3.1879981247069855em;
  position: relative;
  -webkit-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  outline: none;
  color: var(--color-dark);
  font-family: "Ranchers", sans-serif;
}

.input-wrap input {
  width: 100%;
}

.wpcf7-response-output,
.wpcf7-not-valid-tip {
  color: var(--color-dark) !important;
}

.input-wrap input::-webkit-input-placeholder,
.input-wrap textarea::-webkit-input-placeholder {
  color: rgba(18, 18, 15, 0.5);
}

.input-wrap input::-moz-placeholder,
.input-wrap textarea::-moz-placeholder {
  color: rgba(18, 18, 15, 0.5);
}

.input-wrap input:-ms-input-placeholder,
.input-wrap textarea:-ms-input-placeholder {
  color: rgba(18, 18, 15, 0.5);
}

.input-wrap input::-ms-input-placeholder,
.input-wrap textarea::-ms-input-placeholder {
  color: rgba(18, 18, 15, 0.5);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: rgba(18, 18, 15, 0.5);
}

.input-wrap textarea {
  height: auto;
  resize: vertical;
  padding: 0.8em 1em;
}

.input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5em;
}

label {
  font-size: 1.2em;
  line-height: 1;
  color: var(--color-black);
  font-weight: 600;
}

.input-box {
  margin-bottom: 1.5em;
}

.input-btn {
  position: relative;
}

.input-btn button {
  width: 100%;
  outline: none;
  border: 0;
}

.input-btn button .m-btn-text {
  padding: 0;
}

.wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-btn .s-btn {
  width: 100%;
  outline: none;
  border: 0;
}

.wpcf7-response-output {
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0.46883em;
  padding: 1.2em 1em !important;
  text-align: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--color-warm-dark) inset;
}

.wpcf7-acceptance label {
  font-weight: 300;
  font-size: 0.7em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 1em;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}

.toxic input[type="checkbox"] {
  width: 1.2em;
  height: 1.2em;
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--color-warm-white);
  border: 2px solid var(--color-red-dark);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

/* When checked – show checkmark using a pseudo-element */
.toxic input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  left: 0.33em;
  top: 0.13em;
  width: 0.3em;
  height: 0.6em;
  border: solid var(--color-red-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.waitlist-form br {
  display: none;
}

@media only screen and (max-width: 991px) {
  .toxic__wrap {
    flex-direction: column;
  }

  .toxic__text,
  .toxic__img {
    width: 100%;
  }

  .toxic__form,
  .toxic__text p,
  .toxic__text-content {
    max-width: 100%;
  }

  .toxic__img-text h6 {
    font-size: 1.2em;
  }

  .toxic__img-text {
    max-width: 28em;
  }
}

@media only screen and (max-width: 479px) {
  .toxic__img-text h6 {
    font-size: 1em;
  }

  .toxic__img-text {
    right: 1em;
    left: 1em;
    top: 1em;
  }
}
