
/*===BAST FORM===*/

.bast_form_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 46, 45, .75);
  z-index: 99999;
}

.bast_form_wrapper .bast_form {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 5px 25px 6px rgb(0 0 0 / 50%);
  background: #fff;
  padding: 0 0 10px 0;
}

.bast_form_wrapper .bast_form .bast_form_header {
  background: #009DE0;
  padding: 0 15px;
}

.bast_form_wrapper .bast_form .bast_form_header .bast_form_title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 40px;
}

.bast_form_wrapper .bast_form .bast_form_body {
  display: flex;
  flex-direction: column;
  padding: 12px 25px 0;
}

.bast_form_wrapper .bast_form .bast_form_body input {
  outline: none;
  padding: 2px 10px;
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 25px 0;
  border-radius: 0;
}

.bast_form_wrapper .bast_form .bast_name_error,
.bast_form_wrapper .bast_form .bast_phone_error {
  position: absolute;
  background: #fff;
  border-left: 5px #c32328 solid;
  border-radius: 0;
  box-shadow: 0 4px 10px 3px rgb(0 0 0 / 40%);
  line-height: 26px;
  padding: 0 10px 0 6px;
  display: none;
}

.bast_form_wrapper .bast_form .bast_name_error {
  top: 85px;
}

.bast_form_wrapper .bast_form .bast_phone_error {
  top: 144px;
}

.bast_form_wrapper .bast_form .bast_form_submit,
.bast_form_wrapper .bast_form .bast_form_destroy {
  background: #009DE0;
  border: none;
  margin: auto;
  text-align: center;
  outline: none;
  border-radius: 20px;
  color: #ffffff;
  height: 42px;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 45px;
  cursor: pointer;
}

.bast_form_wrapper .bast_form .bast_form_submit:hover,
.bast_form_wrapper .bast_form .bast_form_destroy:hover {
  background-color: #3A3A3A;
}

.bast_form_wrapper .bast_form .bast_form_close {
  position: absolute;
  top: 0;
  left: calc(100% - 50px);
  border: none;
  background: transparent;
  color: #fff;
  width: 50px;
  height: 40px;
  font-size: 25px;
  line-height: 25px;
  padding-bottom: 3px;
}

.bast_form_wrapper .bast_form .bast_form_close:hover {
  color: #ff4242;
}

.active {
  display: block !important;
}

@media print {

}