#userToaster {
    position: fixed;

    right: 10px;
    z-index: 3000;
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #FFF;
    font-weight: bold;
    list-style: none;
    font-size: 14px;
    border-radius: 3px;
    opacity: 0;
}

#userToaster.error {
    background-color: #F10;
}

#userToaster.success,
#userToaster.notify {
    background-color: #3B0;
}

#userToaster a {
    border-bottom: 1px solid #FFF;
    color: #FFF;
    text-decoration: none;
}

#userToaster a:hover {
    border-bottom: 1px dotted #FFF;
}

#userToaster {
    xtop: -200em;
    left: 50%;
    right: -50px;
    bottom: auto;
    xright: auto;
    width: 400px;
    margin-left: -200px;
    padding: 10px 15px;
    -moz-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

@media only screen and (min-width: 960px) {

  #userToaster {
      top: -200em;
      left: 50%;
      bottom: auto;
      right: auto;
      width: 400px;
      margin-left: -200px;
      padding: 10px 15px;

  }
}

#userToaster li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#userToaster li:first-child {
    border-top: 0;
}

.strikeThrough {
    text-decoration: line-through;
    color: grey;
}


@media only screen and (max-device-width: 480px) {
    /* styles for mobile browsers smaller than 480px; (iPhone) */
    #userToaster {
        bottom: 50px;
        top: auto;
        left: auto;
        width: auto;
    }

}
