.notify{
    position: absolute;
    top: 84px;
    right: 16px;
    z-index: 1001;
    width: 20%;
}
.notify .note {
    position: relative;
    padding: 15px;
    margin-bottom: 8px;
    background-color: #95a5a6;
    color: #fff;
    font-family: Arial, sans-serif !important;
    font-size: 14px !important;
    border-radius: 5px;
    user-select: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.notify .note.note-success {
  background-color: #2ecc71;
}
.notify .note.note-info {
  background-color: #3498db;
}
.notify .note.note-warning {
  background-color: #e67e22;
}
.notify .note.note-danger {
  background-color: #e74c3c;
}
.notify .note.note-event {
  background-color: #4f5a63;
}
.notify .note .image,
.notify .note .remove {
    width: 24px;
    font-size: 15px;
    color: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notify .note .remove {
    font-size: 18px;
    background: none;
    border: 0;
    color: #fff;
    opacity: .7;
    transition: opacity .2s;
    cursor: pointer;
    outline: none;
}
.notify .note .remove:active {
    outline: none;
}
.notify .note .remove:hover {
  opacity: .8;
}
.notify .note .image {
  text-align: center;
}
.notify .note .content {
    width: calc(100% - 70px);
    margin-top: -2px;
}
.notify .note .content .notify-thumb{
  width: calc(100% + 31px);
  margin-top: 10px;
}
.notify .note .image + .remove + .content {
  margin-left: 36px;
}
.notify .note .title {
  float: left;
  width: 100%;
  margin-right: 6px;
  margin-bottom: 6px;
}
.notify.notify-notes {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1001;
  width: 25%;
}
.notify.notify-notes .note:not(:last-child) {
  margin-bottom: 10px;
}
.notify.notify-notes .image {
  top: auto;
}
.notify.notify-notes .title {
  display: block;
  margin-right: 0;
  margin-bottom: 10px;
  font-size: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .notify.notify-notes {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .notify.notify-notes {
    width: 30%;
  }
}
