.contactForm__send {
  height: 72px;
  margin-top: 50px;
}
.contactForm__send-btn {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  background: #ec5e00;
  color: #fff;
  display: block;
  width: 250px;
  height: 72px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 5px 30px 0 rgba(0, 0, 0, 0.1),
    0 1px 5px 0 rgba(0, 0, 0, 0.07);
  position: relative;
  cursor: pointer;
  transition: 0.2s;
  z-index: 0;
  margin: auto;
}
.contactForm__send-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactForm__send-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1); /* Or use a CSS var for this color */
  border-radius: 50%;
  border-top-color: #be8119;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contactForm__agree-btn {
  padding: 0 15px;
  background: #f8f8f8;
  display: block;
  margin: 0 auto;
  width: 130px;
  height: 50px;
  border: 1px solid #dddddd;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  &:hover {
    cursor: pointer;
    opacity: 0.9;
  }
}
.contactForm__agree-btn.active {
  border-color: #ec5e00;
}
.contactForm__agree-check {
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.contactForm__agree-check.active {
  background-color: #ec5e00;
  border-color: #790100;
}
.contactForm__error {
  position: relative;
  opacity: 0.9;
}
.contactForm__error-box {
  background: #ee0101;
  position: absolute;
  color: #fff;
  min-width: 150px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0;
  padding: 10px 20px;
  display: inline-block;
  left: 0;
  bottom: 10px;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 5px 0 rgba(0, 0, 0, 0.08);
}
.contactForm__error-box::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  margin-left: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: #ee0101 transparent transparent transparent;
  z-index: -1;
}

.contactForm__sending {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
}

#contactForm__bot {
  display: none;
}
