@import url(https://fonts.googleapis.com/css?family=Noto+Sans);

/*body{
  background: darken(#04B486, 30%);
  font-family: 'Noto Sans', 'Helvetica';
}*/

.customAlert, .customAlertDanger { 
  display: none;
  position: fixed;
  max-width: 15%;
  min-width: 250px !important;
  min-height: 10%;
  height: 70px;
  left: 90%;
  top: 20%;
  padding: 10px;
  box-sizing: border-box;
  margin-left: -12.5%;
  margin-top: -5.2%;
}

.customAlert .message,
.customAlertDanger .message {
  padding: 1px;
  color: white;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
}

.customAlert input[type='button']{
  position: absolute;
  top: 100%;
  left: 50%;
  width: 50%;
  height: 36px;
  margin-top: -45px;
  margin-left: -25%;
  outline: 0;
  border: 0;
  background: #04B486;
  color: white;
}
.customAlertDanger input[type='button'] {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 50%;
  height: 36px;
  margin-top: -45px;
  margin-left: -25%;
  outline: 0;
  border: 0;
  background: crimson;
  color: white;
}

.customAlert input[type='button']:hover{
  transition: 0.3s;
  cursor: pointer;
  background: #05c496; /* manually lighten color */
}
.customAlertDanger input[type='button']:hover {
  transition: 0.3s;
  cursor: pointer;
  background: crimson; /* manually lighten color */
}

/* Responsive design */
@media all and (max-width: 1300px) {
  .customAlert .message,
  .customAlertDanger .message {
    font-size: 14px !important;
  }

  .customAlert input[type='button'],
  .customAlertDanger input[type='button'] {
    height: 15% !important;
  }
}

      
.rab{
  width: 200px;
  height: 30px;
  outline: 0;
  border: 0;
  color: white;
  background: darken(#04B486, 5%);
}
      
@keyframes fadeOut{
  from{
    opacity: 1;
  } 
  to{
    opacity: 0;
  }
}
    
@keyframes fadeIn{
  from{
    opacity: 0;
  } 
  to{
    opacity: 1;
  }
}
.customAlert{
    background-color: #04B486;
}
.customAlertDanger{
    background-color: crimson;
}
  