.hm-ie-unsupported-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: white;
  display: none;
}

.hm-ie-unsupported-banner.active {
  display: block;
}

.hm-ie-unsupported-banner .container {
  padding-top: 10%;
}

.hm-ie-unsupported-banner h1,
.hm-ie-unsupported-banner h2,
.hm-ie-unsupported-banner h3 {
  text-transform: none;
  text-align: center;
  font-family: "Gotham-Medium", "Arial", "sans-serif";
}

.hm-ie-unsupported-banner h1 {
  font-size: 24px;
}

.hm-ie-unsupported-banner h2 {
  font-size: 16px;
}

@media (min-width: 768px) {
  .hm-ie-unsupported-banner h1 {
    font-size: 36px;
  }

  .hm-ie-unsupported-banner h2 {
    font-size: 24px;
  }
}

.hm-ie-unsupported-banner .btn {
  background-color: white;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 25px;
  transition: 0.25s;
  width: 200px;
}

.hm-ie-unsupported-banner .btn.firefox {
  border-color: #20123a;
  color: #20123a;;
}

.hm-ie-unsupported-banner .btn.firefox:hover {
  background-color: #20123a;
  color: white;
}

.hm-ie-unsupported-banner .btn.chrome {
  border-color: #de5145;
  color: #de5145;
}

.hm-ie-unsupported-banner .btn.chrome:hover {
  background-color: #de5145;
  color: white;
}

.hm-ie-unsupported-banner .btn.edge {
  border-color: #05a6f0;
  color: #05a6f0;
}

.hm-ie-unsupported-banner .btn.edge:hover {
  background-color: #05a6f0;
  color: white;
}