.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;
}
/**!
  Visualization Classes for debugging the vertical-collection
  */
.vertical-collection-visual-debugger {
  height: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: left;
  background: rgba(50, 50, 50, 1);
  width: 125px;
}

.vertical-collection-visual-debugger .vc_visualization-container {
  transform: scale(0.25);
  left: 0;
  position: relative;
}


.vertical-collection-visual-debugger .vc_visualization-screen {
  position: absolute;
  background: transparent;
  box-sizing: content-box;
  border-top: 2px dashed yellow;
  border-bottom: 2px dashed yellow;
  width: 500px;
}

.vertical-collection-visual-debugger .vc_visualization-scroll-container {
  position: absolute;
  width: 500px;
  background: rgba(100, 230, 100, 0.65);
}

.vertical-collection-visual-debugger .vc_visualization-item-container {
  position: absolute;
  width: 500px;
  background: rgba(255, 255, 255, .15);
}

.vertical-collection-visual-debugger .vc_visualization-virtual-component {
  box-sizing: border-box;
  background: rgba(230, 100, 230, 0.6);
  border: 1px dotted #bbb;
  border-top: 0px;
  color: #fff;
  text-align: center;
  font-size: 2.5em;
  width: 250px;
}

.vertical-collection-visual-debugger .vc_visualization-virtual-component:first-of-type {
  border-top: 1px dotted #bbb;
}

.vertical-collection-visual-debugger .vc_visualization-virtual-component.culled {
  background: transparent;
}
.occluded-content {
  display: block;
  position: relative;
  width: 100%;

  /* prevents margin overflow on item container */
  min-height: 0.01px;

  /* hides text visually while still being readable by screen readers */
  color: rgba(0,0,0,0);
}

table .occluded-content,
tbody .occluded-content,
thead .occluded-content,
tfoot .occluded-content {
  display: table-row;
  position: relative;
  width: 100%;
}

ul .occluded-content,
ol .occluded-content {
  display: list-item;
  position: relative;
  width: 100%;
  list-style-type: none;
  height: 0;
}
/*# sourceMappingURL=vendor.css.map */
