.os-notifications {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  z-index: 1000001;
  display: flex;
  flex-direction: column-reverse;

  .os-notification-close {
    position: absolute;
    top: 50%;
    right: 5px;
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    transform: translateY(-50%);
    display: block;
    line-height: 1;
  }

  .item {
    padding: 14px 30px;
    background-color: rgba(29, 210, 101, 0.95);
    color: #fff;
    font-weight: $body-font-weight-bold;
    font-size: $font-size-base * 1.2;
    min-width: 500px;
    text-align: center;
    padding-right: 40px;
    position: relative;
  }

  .item + .item {
    margin-bottom: 10px;
  }
}