html,
body {
  overflow: hidden;
}

/* Redirect Modal style */

.redirect-modal {
  position: fixed; /* Stay in place */
  z-index: 10000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100vw; /* Full width */
  height: 100vh; /* Full height */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.redirect-modal-index {
  margin-top: 150px;
}

.redirect-modal-content {
  font-size: 16px;
  background-color: #ffffff88;
  text-align: center;
  border: 5px solid #366;
  z-index: 10000;
  font-family: "Gill Sans", tahoma !important;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem 1.5rem;
  max-width: 700px;
}

.sm-break {
  display: none;
}


.redirect-modal-header {
  font-size: 25px;
  margin-bottom: 3rem;
}

.redirect-modal-body {
  margin: auto;
}

.redirect-warning {
  margin-top: 40px;
  font-size: 14px;
  color: #515151;
  font-weight: 400;
}

@media (max-width: 800px) {
  .redirect-modal-content {
    max-width: 80%;
    padding: 1rem 1rem;
    font-size: 14px;
  }
  .sm-break{
    display: block;
  }
  .redirect-modal-index {
    margin-top: 0px;
  }
}
