/**
 * Notification
 *
 * @module ls/notification
 *
 * @license   GNU General Public License, version 2
 * @copyright 2013 OOO "ЛС-СОФТ" {@link http://livestreetcms.com}
 * @author    Denis Shakhov <denis.shakhov@gmail.com>
 */

#ls-notifier {
    width: 300px;
    position: fixed;
    right: 10px;
    top: 60px;
    width: 300px;
    z-index: 9999;
}

@media screen and (max-width: 768px) {
  #ls-notifier {
    width: 280px;
    /* right: 10px;
    top: 20px; */
  }
}

/* Notification */
.ls-notification {
    position: relative;
    padding: 12px;
    /* box-shadow: 2px 3px 5px rgba(43,49,51,.1); */
    background: #fff;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: var(--boxShadow);
}
.ls-notification h3 {
    display: none;
}
.ls-notification h3:last-child {
    margin-bottom: 0;
}
.ls-notification p {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.56;
    margin: 0;
}

/* Error */
.ls-notification.ls-notification--error {
  /* border-left: 4px solid #fe4d4a; */
  background: var(--red);
  color: var(--white);
}

/* Info */
.ls-notification.ls-notification--success {
  /* border: 2px solid var(--green); */
  background: var(--green);
  color: var(--white);
}

.ls-notification a {
    color: var(--white) !important;
    text-decoration: underline;
}