.quickDisplay_iframe {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100%;
}

.iframeOpen {
  opacity: 1;
  visibility: visible;
  background-color: transparent;
}

#quickDisplay_modal {
  display: flex;
  position: fixed;
  background-color: #485c66ab;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0px;
  left: 0px;
  justify-content: center;
  align-items: center;
}

.qD_none {
  display: none !important;
}

.fakeModalQuick {
  position: absolute;
  z-index: -1;
  opacity: 1;
  visibility: visible;
  width: 1218px;
  height: 80vh;
  background-color: #fff;
  border-radius: 24px;
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fakeModalQuick.fakeModalClose {
  opacity: 0;
  visibility: hidden;
}

.loading_fakeModal {
  display: grid;
  height: 50px;
  width: 100%;
  background: #fff;
  place-items: center;
  margin-bottom: 16px;
}

.loading_fakeModal div {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: rotation 1s linear infinite;
  background: linear-gradient(white, white), conic-gradient(#878c9b, #ffffff);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

@media (max-width: 1440px) {
  .fakeModalQuick {
    height: 91vh;
  }
}

@media (max-width: 1279px) {
  .fakeModalQuick {
    width: 950px;
  }
}
