.TOAST{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.175);
  padding: 20px 40px 20px 20px;
  width: 80%;
  max-width: 400px;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s ease;

  display: none;
}

.TOAST:hover{
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.269);
}

/* ------------------------- Close button ------------------------- */
.TOAST i{
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.TOAST i:hover{
  transform: scale(1.2);
}

/* ------------------------- Progress bar ------------------------- */
.progress{
  position: absolute;
  width: 100%;
  transition: width 5s linear;

  bottom: 0px;
  left: -5px;
  width: 110%;
  height: 5px;
}