#notifier-container::before {
  content: '▲';
  position: absolute;
  margin-top: -54px;
  right: 2%;
  color: black;
  opacity: 0.8;
  font-size: 40px;
}
#notifier-container {
  position: fixed;
  top: 0;
  right: 2%;
  margin-top: 90px;
  margin-left: 2%;
  background-color: rgba(1, 1, 1, 0.8);
  border-radius: 10px;
  color: white;
  padding: 10px 32px 10px 15px;
  transition: all 0.5s ease-in-out;
}

#notifier-closer {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background-repeat: no-repeat;
  background-position: 6px 10px;
  width: 32px;
  height: 32px;
}

#notifier-container.dismissed {
  opacity: 0;
}

@media (min-width: 768px) {
  #notifier-container {
    margin-top: 125px;
    right: 20px;
  }
}