@font-face {
  font-family: 'Regular';
  src: url('./fonts/sbsans-text-regular.otf') format('truetype');
  font-style: normal;
  font-weight: 400;
}

/* ====================== DUMMY WRAPPER ============================== */
.dummy-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  display: none;
  overflow: hidden;
}
/* ==================== END DUMMY WRAPPER ============================ */

/* ======================= IE SECTION ================================ */
.dummy-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  height: 100vh;
  top: 0;
  right: 0;
  width: 100vw;

  color: white;
  background: linear-gradient(180deg, #000 9.06%, #333F48 100%);
}
.dummy-imgError {
  position: relative;
  width: 56px;
  height: 56px;
}

.dummy-headingError {
  position: relative;
  font-family: "Regular", sans-serif;
  line-height: 130%;
  font-size: 20px;
  font-weight: 400;

  max-width: 280px;
  margin-top: 32px;
  text-align: center;
}
.dummy-pError {
  position: relative;
  font-family: "Regular", sans-serif;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;

  max-width: 270px;
  margin-top: 24px;
  text-align: center;
}

.dummy-span {
  display: block;

  font-family: "Regular", sans-serif;
  font-weight: 400;
  font-size: 16px;
  opacity: 0.6;

  margin-bottom: 8px;
}

.dummy-circle1 {
  position: absolute;
  top: -996px;
  left: -539px;
  width: 1854px; /*1854*/
  height: 1672px; /*1672*/
  background-image: url("./greenellipse.svg");
  background-size: cover;
}

.dummy-circle2 {
  position: absolute;
  bottom: -980px;
  right: -464px;
  width: 1583px;
  height: 1688px;
  background-image: url("./blueellipse.svg");
  background-size: cover;
}

@media (min-width: 375px) {
  .dummy-headingError {
    max-width: 327px;
  }
  .dummy-pError {
    max-width: 327px;
  }
}

@media (min-width: 768px) {
  .dummy-headingError {
    font-size: 32px;
    max-width: 672px;
  }
  .dummy-span {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .dummy-pError {
    margin-top: 40px;
    max-width: 672px;
    font-size: 20px;
  }
}
/* ======================= END IE SECTION ================================ */

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .dummy-wrapper { display: flex; flex-direction: column }
  #root { display: none !important; }
}

