/* @import url(https://fonts.googleapis.com/css?family=Noto+Sans);
body {
  background: #011e17;
  font-family: "Noto Sans", "Helvetica";
} */
.customAlert {
  display: none;
  /* position: fixed; */
  position: absolute;
  max-width: 25%;
  min-width: 250px !important;
  min-height: 12%;
  height: 100px;
  left: 28%;
  /* top: 86%; */
  padding: 10px;
  box-sizing: border-box;
  margin-left: -12.5%;
  margin-top: -5.2%;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}
@media only screen and (min-width: 992px) {
.customAlert {
  display: none;
  /* position: fixed; */
  position: absolute;
  max-width: 25%;
  min-width: 250px !important;
  min-height: 20%;
  /* height: 100px;
  left: 77%;
  top: 86%; */
  padding: 10px;
  box-sizing: border-box;
  margin-left: -12.5%;
  margin-top: -5.2%;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}
}

@media all and (max-width: 1300px) {
  .customAlert .message {
    font-size: 14px !important;
  }
  .customAlert input[type=button] {
    height: 15% !important;
  }
}
.customAlert .message {
  padding: 5px;
  color: #000;
  font-size: 12px;
  line-height: 20px;
  text-align: justify;
}
.customAlert input[type=button] {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 50%;
  height: 36px!important;
  margin-top: -45px;
  margin-left: -25%;
  outline: 0;
  border: 0;
  padding:0!important;
  background: #1E89D6;
  color: #fff;
}
.customAlert input[type=button]:hover {
  transition: 0.3s;
  cursor: pointer;
  background: #1E89D6;
}

/* .rab {
  width: 200px;
  height: 30px;
  outline: 0;
  border: 0;
  color: white;
  background: #039b73;
} */

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}