/* For Website Notice Banner */

div.websiteNoticeShow {
  position: fixed;
  bottom: 0;
  width: 80%;
  padding: 0 10%;
  height: auto;
  background-color: #ffc33b;
  z-index: 999;
  border-top: 3px solid #000000;
}

div.websiteNoticeShow h1 {
  margin-top: 20px;
  text-decoration: underline;
}

div.websiteNoticeShow p {
  margin-top: 10px;
}

div.websiteNoticeShow Button {
  display: block;
  float: right;
  cursor: pointer;
  background-image: url(/images/cross.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff0;
  background-size: 30px;
  border: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  margin-bottom: 10px;
}

div.websiteNoticeHide {
  display: none;
}
  
/* For AGM Notice */
div.agmShow {
  /*
  position: fixed;
  top: 20%;
  left: 10%;
  width: 70%;
  padding: 0 5%;
  background-color: #fff;
  z-index: 999;
  border: 3px solid #ff0000;
  */
  position: fixed;
  bottom: 0;
  width: 80%;
  padding: 0 10% 20px;
  height: auto;
  background-color: #fff;
  z-index: 999;
  border-top: 6px solid #ff0000;
}

div.agmShow p {
  text-align: center;
}
  
div.agmShow Button {
  display: block;
  float: right;
  cursor: pointer;
  background-image: url(/images/cross.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff0;
  background-size: 30px;
  border: none;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
  
div.agmHide {
  display: none;
}
