:root {
  --main-background-color: #c8cbde;
  --font-color: #7d8191;
}

/* ONE NEWSLETTER DIV */

.newsletter-container {
  /* padding-top: 20px; */
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
}

.newsletter {
  min-width: 280px;
  max-width: 300px;
  border-style: lightgray solid;
  border-width: 1px;
  background-color: var(--main-background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  /* box-shadow: 0 3px 10px rgb(0 0 0 / 0.2); */
  border-radius: 5px;
  width: 100%;
}

.newsletter-top {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  width: 100%;
  margin-bottom: 10px;
}

.newsletterTop-title {
  margin-bottom: 0px;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  color: var(--font-color);
}

.newsletterTopLeft-container {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.newsletterTopRight-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletterTopLeft-logo {
  width: 100%;
}

/* BOTTOM PART */

.newsletter-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.newsletter-sign-up-form {
  display: flex;
  width: 100%;
}

.newsletterBottom-input {
  border: none;
  text-indent: 4px;
  border-radius: 5px;
  padding: 5px;
  margin-right: 8px;
  /* padding-right: 10%; */
  width: 184px;
}

.newsletterBottom-input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(207, 212, 213);
}

.newsletterBottom-button {
  width: 74px;
  word-spacing: 0px;
  font-weight: 900;
  color: white;
  background-color: var(--font-color);
  border-radius: 5px;
  border: var(--font-color);
  padding: 7px;
  /* font-size: 12px; */
}

.recaptcha-policy {
  /* word-break: break-all; */
  white-space: normal;
  /* padding: 2px; */
  margin-top: 5px;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
}

.btn-danger {
  padding-top: 4px;
  width: 71px;
  border: none;
  border-radius: 5px;
}

.input-error-validation {
  border: 1px solid #a94442;
}

.input-error-validation:focus {
  border: 1px solid #a94442;
}

.recaptcha-policy > p {
  margin-bottom: 0px;
}

.validation-submit {
  color: var(--font-color);
  font-weight: 600;
  transition: 0.8 ease-in-out;
  display: table;
  margin: 0 auto;
  padding: 4px;
  font-style: italic;
}

.validation-submit-red {
  color: #a94442;
  font-weight: 600;
  transition: 0.8 ease-in-out;
  display: table;
  margin: 0 auto;
  padding: 4px;
  font-style: italic;
}

#validation-submit a {
  color: #a94442;
}

.spinner {
  animation: rotate 2s linear infinite;
  width: 15px;
  height: 15px;
}
.spinner .path {
  stroke: #93bfec;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* Tablet */
@media screen and (max-width: 992px) {
  .newsletter {
    width: 100%;
    max-width: unset;
  }

  .newsletter-top {
    justify-content: center;
  }

  .newsletter-bottom {
    justify-content: center;
  }

  .newsletter-sign-up-form {
    justify-content: center;
  }

  .newsletterBottom-input {
    width: 240px;
  }
}

/* PHONE */

@media only screen and (max-width: 600px) {
  .newsletter {
    max-width: 100%;
    padding: 20px;
  }
}
