.tekmetric-overlay {
  width: 100%;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  z-index: 99999999999999;
}

.tekmetric-booking-modal {
  position: fixed;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-items: center;
  border-radius: 16px;
  left: 50%;
  top: 5vh;
  width: 400px;
  height: 90vh;
  max-height: 900px;
  transform: translateX(-50%);
  background-color: #f0f0f0;
}

.tekmetric-booking-iframe {
  max-width: 100%;
  position: absolute;
  top: 0;
  z-index: 99;
  border: 0;
  width: 100%;
  height: 100%;
}

.tekmetric-booking-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

@media screen and (max-width: 640px) {
  .tekmetric-overlay .tekmetric-booking-modal {
    left: 0;
    top: 0;
    border-radius: 0;
    max-height: none;
    width: 100%;
    height: 100vh;
    transform: translateX(0);
    background-color: #f0f4ff;
  }

  .tekmetric-booking-iframe {
    height: 100svh;
    max-width: 100%;
  }
}
