
/* ================================= */
/* ENQUIRY BUTTON (RIGHT SIDE)       */
/* ================================= */

.enquiry-btn {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  z-index: 3;
}

/* ================================= */
/* MODAL SETTINGS                    */
/* ================================= */

/* Remove bootstrap default animation */
.enquiry-modal.fade .modal-dialog {
  transition: none !important;
  transform: none !important;
}

/* Backdrop */
.modal {
  z-index: 9999 !important;
}

.modal-backdrop {
  z-index: 9998 !important;
}

/* ===== LEFT HALF CONTAINER ===== */
.enquiry-modal .modal-dialog {

  position: fixed;

  left: 15%;
  width: 50vw;

  /* Move slightly up */
  top: 15%;

  /* Start hidden */
  transform: translate(-105%, -40%);

  margin: 0;
  max-width: 600px;
  transition: transform 0.5s ease;
}

/* When modal opens */
.enquiry-modal.show .modal-dialog {
  transform: translate(-5%, -40%);
}


/* Modal Box Styling */
.enquiry-modal .modal-content {
  border-radius: 12px;
  padding: 20px;
}

/* ================================= */
/* RESPONSIVE                        */
/* ================================= */

@media (max-width: 992px) {

  .enquiry-modal .modal-dialog {
    width: 90%;
    left: 5%;
  }

}
