
.ember-notify-default.ember-notify-cn {
  position: fixed;
  z-index: 5000;
  bottom: 0;
  right: 0;
}

.ember-notify-default .ember-notify {
  display: block;
  margin: 10px;
  position: relative;
  width: 300px;

  /* the following is purely so that it doesn't look broken without Foundation installed */
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 10px;
}

.ember-notify-default .ember-notify-show {
  animation-duration: 500ms;
  animation-name: ember-notify-show;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ember-notify-default .ember-notify-hide {
  animation-duration: 250ms;
  animation-name: ember-notify-hide;
  animation-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.ember-notify-hide:hover {
  animation-play-state: paused;
}

@keyframes ember-notify-show {
  from {
    right: -310px;
  }

  to {
    right: 0;
  }
}

@keyframes ember-notify-show {
  from {
    right: -310px;
  }

  to {
    right: 0;
  }
}

@keyframes ember-notify-hide {
  from {
    right: 0;
  }

  to {
    right: -310px;
  }
}

@keyframes ember-notify-hide {
  from {
    right: 0;
  }

  to {
    right: -310px;
  }
}

.ember-notify-default .ember-notify .close {
  float: right;
  cursor: pointer;
}

@media only screen and (width <= 680px) {
  .ember-notify-default.ember-notify-cn {
    width: 100%;
    padding-left: 20px;
    box-sizing: border-box;
  }

  .ember-notify-default .ember-notify {
    width: 100%;
    float: right;
  }
}

.ember-notify-cn .clearfix {
  *zoom: 1;
}

.ember-notify-cn .clearfix::before,
.ember-notify-cn .clearfix::after {
  content: " ";
  display: table;
}

.ember-notify-cn .clearfix::after {
  clear: both;
}
