#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 10px solid #f3f3f3;
  border-radius: 50%;
  border-top: 10px solid #1976d2;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0px;
    opacity: 1;
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
#errUnsupportedBrowserIE {
  position: relative;
  width: 100%;
  min-height: 60px;
  background-color: #1976d2;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1976d2;
}
.errUnsupportedBrowserIE-box {
  font-size: 14px;
  color: white;
  width: 100%;
  padding: 10px 15px;
}
.errUnsupportedBrowserIE-title {
  font-size: 1.3em;
  font-weight: bold;
}
.errUnsupportedBrowserIE-close-icon {
  position: absolute;
  font-size: 18px;
  float: right;
  cursor: pointer;
  top: 5px;
  right: 5px;
}
.errUnsupportedBrowserIE-button {
  display: block;
  margin-top: 10px;
  cursor: pointer;
  background-color: #1976d2;
  color: #ffffff;
  border: #ffffff 1px solid;
  border-radius: 4px;
  font-size: 0.8rem;
  padding: 10px 5px 10px 5px;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  width: 130px;
}
