.custom-alert-box {
    position: fixed;
    top: 0%;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    background-color: rgb(10 78 145 / 70%);
    animation: alert-box 1s ease;
    /* opacity: 75%; */
    z-index: 99999;
  }
  @keyframes alert-box {
    0% {
      top: -10%;
    }
    100% {
      top: 0%;
    }
  }