.call_modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}
.call_modal.active {
 display: flex;
  z-index: 999999;
  opacity: 1;
  justify-content: center;
  align-items: center;
}
#call_modal_overlay{
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    background-color: #000;
    opacity: 0.6;
}
.call_modal_con {
  display: flex;
  position: relative;
  z-index: 99;
  max-width: 740px;
}
.call_modal_con_box {
  padding: 18px;
  border-radius: 3px;
  border: 8px solid #000;
  box-shadow: 0px 0px 30px 0px rgb(2, 2, 2);
  background-color: rgb(255, 255, 255);
}
#form_call_modal {
  position: relative;
}
.call_modal_close{
    position: absolute;
  height: 26px;
  width: 26px;
  left: auto;
  right: -13px;
  bottom: auto;
  top: -13px;
  padding: 0px;
  color: #ffffff;
  font-family: Arial;
  font-weight: 100;
  font-size: 24px;
  line-height: 24px;
  border: 2px solid #ffffff;
  border-radius: 26px;
  box-shadow: 0px 0px 15px 1px rgba( 2, 2, 2, 0.75 );
  text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 );
  background-color: rgba( 0, 0, 0, 1.00 );
}
.form_call_modal_row input {
 min-width: 100%;
}
.form_call_modal_row.btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form_call_modal_btn {
  display: inline-flex;
  width: max-content;
  cursor: pointer;
}
.form_call_modal_row_btns {
  display: flex;
  align-items: center;
  gap: 20px;
}