
.modal_form {
  position: fixed;
  z-index: 1;
  top: -500px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border: 1px solid black;
  min-height: 150px;
  max-width: 500px;
  transition: top ease .4s;
  opacity: 0;
  pointer-events: none;
}
.modal_form_active {
  top: 0;
}
.modal_form_opacity {
  opacity: 1;
  pointer-events: initial;
}
.modal_close {
  position: absolute;
  top: 0;
  right: 12px;
  user-select: none;
  font-size: 1.5rem;
}
.modal_close:hover {
  cursor: pointer;
}
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}
.form .form__title {
  margin-bottom: 30px;
}
.form input {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 20px;
}
.form input:focus-visible {
  outline: none;
}
.form .wrap_checkBox {
  display: flex;
  margin-bottom: 20px;
}
.form .wrap_checkBox .opd {
  align-self: center;
  margin-right: 10px;
  margin-bottom: 0;
}
.wrap_checkBox p {
  margin-bottom: 0;
}
.wrap_checkBox a {
  text-decoration: none;
  color: black;
}
.wrap_checkBox a:hover {
  border-bottom: 1px dotted rgb(92, 89, 89);
  opacity: .6;
}

.btn_send_form {
  align-self: end;
}

.body_hidden {
  position: relative;
  overflow: hidden;
  padding-right: 18px;
}
.body_hidden::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: black;
  opacity: .5;
}
@media (max-width: 813px) {
  .body_hidden {
    padding-right: 0;
  }
}
.myAnimate {
  opacity: 0;
  position: absolute;
  bottom: 10px;
  left: calc(50% - 50px/2);
  font-size: 50px !important;
}
.myAnimate_active {
  opacity: 1;
  -webkit-animation: 2s infinite linear loading;
  -moz-animation: 2s infinite linear loading;
  -o-animation: 2s infinite linear loading;
  animation: 2s infinite linear loading;
}
@-webkit-keyframes loading {
  0% {  transform: rotate(0deg);  }
  100% {  transform: rotate(360deg);  }
}
@-moz-keyframes loading {
  0% {  transform: rotate(0deg);  }
  100% {  transform: rotate(360deg);  }
}
@-o-keyframes loading {
  0% {  transform: rotate(0deg);  }
  100% {  transform: rotate(360deg);  }
}
@keyframes loading {
  0% {  transform: rotate(0deg);  }
  100% {  transform: rotate(360deg);  }
}
