.notice-bubble-from-top {
  position: fixed;
  max-width: 300px;
  font-size: 18px;
  font-family: Dosis, sans-serif;
  font-weight: 500;
  background-color: #FAF3C7;
  padding: 5px 30px 5px 30px;
  border-radius: 1rem;
  filter: drop-shadow(0px 0px 3px #008eff);
  z-index: 1;
  display: none;
}

.notice-bubble-from-top:before {
  content: "";
  position: absolute;
  top: 0%;
  height: 20px;
  width: 20px;
  background: #FAF3C7;
  box-sizing:border-box;
  transform: rotate(45deg) translate(-50%);
  border-bottom: inherit;
  border-right: inherit;
  z-index: -1;
}


.notice-bubble-from-bottom {
  position: fixed;
  margin-top: -100px;
  max-width: 300px;
  font-size: 18px;
  font-family: Dosis, sans-serif;
  font-weight: 500;
  background-color: #FAF3C7;
  padding: 10px 30px 15px 30px;
  border-radius: 1rem;
  filter: drop-shadow(0px 0px 3px #008eff);
}

.notice-bubble-from-bottom:before {
  content: "";
  position: absolute;
  top: 92%;
  height: 20px;
  width: 20px;
  background: #FAF3C7;
  box-sizing:border-box;
  transform: rotate(45deg) translate(-50%);
  border-bottom: inherit;
  border-right: inherit;
  z-index: -1;
}

