  /* The toast - position it at the bottom and in the middle of the screen */
  .toast,
  .loadingToast {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 340px; /* Set a default minimum width */
    min-height: 70px;
    margin-left: -170px; /* Divide value of min-width by 2 */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 20px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the toast */
    top: 180px; /* 30px from the bottom */
    opacity: 0.9;
  }

  .toast {
    background-color: green; /* Black background color */
  }

  .loadingToast {
    background-color: #606060; /* Black background color */
  }

  .toast .logo{
    font-size: 20px;
    padding-right: 20px;
  }

  .toast .title-label,
  .loadingToast .title-label {
    font-size: 16px;
  }


  /* Show the toast when clicking on a button (class added with JavaScript) */
  .toast.show,
  .loadingToast.show {
    visibility: visible; /*Show the toast */
    /* Add animation: Take 0.5 seconds to fade in and out the toast.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }

/* Animations to fade the toast in and out */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to { opacity: 0.9; }
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 0.9; }
}

@-webkit-keyframes fadeout {
    from { opacity: 0.9; }
    to { opacity: 0; }
}

@keyframes fadeout {
    from { opacity: 0.9; }
    to { opacity: 0; }
} 
/* Animations to fade the toast in and out 
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
} */