#browser-support {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ccc;
  color: #009b77;
  width: 100%;
  max-width: 380px;
  text-align: center;
  border-radius: 6px;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.8);
}

#browser-support .top {
  background: #009b77;
  height: 20px;
  border-radius: 6px 6px 0 0;
}

#browser-support .body {
  background-image: url('images/logo-symbol-white.png');
  background-position: -65% 65%;
  background-size: 50%;
  background-repeat: no-repeat;
  padding: 20px;
  font-weight: bold;
}

.fade-in {
  animation: fadeIn ease 500ms;
  -webkit-animation: fadeIn ease 500ms;
  -moz-animation: fadeIn ease 500ms;
  -o-animation: fadeIn ease 500ms;
  -ms-animation: fadeIn ease 500ms;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
