body,
html {
  height: 100%;
  margin: 0;
  font-family: Poppins, sans-serif;
}

.bg-image {
  position: fixed;
  height: 100%;
  width: 100%;

  background-image: url("/static/browser-not-supported/assets/NotSupportedBackground.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;

  filter: blur(8px);
  -webkit-filter: blur(8px);
}

.relative {
  position: relative;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.h-screen {
  height: 100vh /* fallback for Opera, IE and etc. */;
  height: 100dvh;
}

.w-full {
  width: 100%;
}

.browser-link {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px 4px;
  margin: 8px;
  width: 110px;
  color: #fe0088;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
}

.browser-icon {
  margin-bottom: 16px;
  height: 40px;
  width: 40px;
}

.browser-icon a:hover {
  box-shadow: 1px 1px 8px rgba(254, 0, 136, 0.6);
}

.modal-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}

.modal {
  width: 100%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background-color: white;
  text-align: center;
}

.modal .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal .title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  margin-bottom: 8px;
  margin-top: 16px;
}

.modal .description {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  margin-bottom: 16px;
}

.modal .link-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  margin-bottom: 24px;
}

.logo {
  margin-bottom: 6px;
  width: 150px;
}

@media screen and (min-width: 640px) {
  .browser-icon {
    height: 64px;
    width: 64px;
  }

  .modal-container {
    align-items: center;
  }

  .modal {
    width: 633px;
    border-radius: 8px;
  }

  .modal .title {
    margin-top: 0;
  }

  .modal .container {
    padding: 24px 48px;
  }

  .divider {
    margin: 24px 0;
    height: 1px;
    width: 50px;
    background: #fe0088;
  }
}

@media screen and (max-height: 380px) {
  .modal-header-image {
    display: none;
  }

  .modal {
    height: 100%;
    overflow-y: scroll;
  }
}
