@keyframes zoomin {
  0%{
    transform: scale(0.5);
    opacity: 0;
  }
  100%{
    transform:scale(1);
    opacity: 1
  }
}

.bknewAlert{
  background:rgba(0,0,0,0.8);
  width:100%;
  height: 100vh;
  position: fixed;
  top:0;left:0;
  z-index:999999;
  display: flex;
  align-content: center;
  justify-content: center;
}

.newAlert{
  animation: zoomin 0.2s;
  position: relative;
  /* margin:0 auto; */
  text-align:center;
  margin-top:4%;
  margin-bottom:4%;
  background: #fff;
  box-shadow: 1px 1px 3px #000000;
  width:80%;
  /* min-height:100px; */
  overflow: auto;
  /* vertical-align: middle; */
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  max-height: calc(100vh - 70px);
}

.p_newalert{
  font-size:18pt;
  font-weight: bold;
  display: table-cell;
  text-align:center;
  vertical-align: middle;
  width: 90%;
  height: 83vh;
  justify-content: center;
  align-items: center;
}

.newalert_btnClose{
  width: 25px;
  height: 25px;
  display:block;
  border-radius:25px;
  margin:0;padding:0;
  color:#cf0101;
  text-shadow:1px -0.5px #CCC;
  position:absolute;
  top:2px;
  right:5px;
  fill:gray;
  font-size:20pt;
  background: #f70000;
  /* padding: 10px; */
}

.newalert_btnClose:hover{
  fill:darkred;
  transform: scale(1.2);
  /* background: red; */
}
