.notice-text {
  color: #2c3e50;
  font-size: 16px;
}
.notice-warning {
  color: #e74c3c;
  font-weight: bold;
 font-size: 15px;
}
.notice-footer {
  color: #16a085;
}

    .BiaTableNormal {
        font-size: 18px; /* applies to the whole table */
    }
    .style14 {
        font-size: 18px; /* applies to headers */
        /*font-weight: bold;*/
    }
 .BiaTableNormal td {
        font-size: 14px;
    }
    .BiaTableNormal th {
        font-size: 18px;
    }
.snow {
  animation: fall ease-in infinite, sway ease-in-out infinite;
  color: skyblue;
  position: absolute;
}


@keyframes fall {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100vh;
    opacity: 1;
  }
}

@keyframes sway {
  0% {
    margin-left: 0;
  }
  25% {
    margin-left: 50px;
  }
  50% {
    margin-left: -50px;
  }
  75% {
    margin-left: 50px;
  }
  100% {
    margin-left: 0;
  }
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {

    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 10px #fff;
}

.close {
    position: absolute;
    top: 50px;
   right: 580px;  
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;

}

.modal-text {
margin-top: 50px;
  white-space: pre-wrap;
  font-size: 16px;
  color: #fff;
 //margin-left: 10px;	
}