.BrowserDetectModal {
  position: fixed;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  display: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.BrowserDetectModal--active {
  opacity: 1;
  display: flex;
}
.BrowserDetectModal--leaving {
  opacity: 0;
}
.BrowserDetectModal__inner {
  width: 600px;
  padding: 40px;
  background-color: #FFF;
  border-radius: 10px;
  position: relative;
  max-height: 95vh;
  overflow-y: auto;
}
@media (max-width: 660px) {
  .BrowserDetectModal__inner {
    width: 90vw;
    padding: 20px;
  }
}
.BrowserDetectModal__title {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 660px) {
  .BrowserDetectModal__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.BrowserDetectModal__title strong {
  color: #D22;
}
.BrowserDetectModal__paragraph {
  line-height: 150%;
  font-weight: 300;
  margin-bottom: 10px;
}
@media (max-width: 660px) {
  .BrowserDetectModal__paragraph {
    font-size: 14px;
  }
}
.BrowserDetectModal__paragraph:last-child {
  margin-bottom: 0;
}
.BrowserDetectModal__links {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 660px) {
  .BrowserDetectModal__links {
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
  }
}
.BrowserDetectModal__link {
  width: 100%;
  box-shadow: 0 4px 22px 0 rgba(0, 0, 0, 0.18);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s linear all;
  text-transform: uppercase;
  font-weight: 500;
  margin-right: 20px;
}
@media (max-width: 660px) {
  .BrowserDetectModal__link {
    margin-right: 0;
  }
}
.BrowserDetectModal__link:last-child {
  margin-right: 0;
}
.BrowserDetectModal__link:hover {
  background-color: #9DC420;
  color: #FFF;
}
.BrowserDetectModal__link-icon {
  width: 40px;
  height: 40px;
}
@media (max-width: 660px) {
  .BrowserDetectModal__link-icon {
    width: 20px;
    height: 20px;
  }
}
.BrowserDetectModal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media (max-width: 660px) {
  .BrowserDetectModal__close {
    top: 5px;
    right: 5px;
    font-size: 14px;
  }
}

/*# sourceMappingURL=main.css.map */
