
/* notifications */
body {
  overflow-y: hidden;
  overflow-x: hidden;
}
.page-main {
  overflow-x: auto;
}
.notify {
  position: absolute;
  top: 8rem;
  right: -21rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 250px;
  height: 50px;
  margin-bottom: 30px;
  padding: 0;
  padding-right: 20px;
  background-color: white;
  border-radius: 3px;
  box-sizing: border-box;
  box-shadow: 0 6px 30px 0 rgba(80, 74, 35, 0.3), 0 1px 3px 0 rgba(84, 70, 35, 0.13), 0 0 1px 0 rgba(0, 0, 0, 0.07);
  z-index: 100;
  font-family: HelveticaNeue, Arial;
  font-size: 15px;
  line-height: 18px;
  transition: right 1s cubic-bezier(.5, -1, .5, 2), top 1s ease-in-out;
  z-index: 1000;
}
.notify p {
  margin: 10px 0;
  text-overflow: ellipsis;
  overflow: hidden;
}
.notify .icon {
  flex-shrink: 0;
  width: 30px;
  height: 100%;
  margin-right: 10px;
  background-color: #466e92;
}
.notify .icon.success {
  background-color: #466e92;
}
.notify .icon.error {
  background-color: #b70000;
}