.EuphoriaNotificationHolder {
  position: fixed;
  bottom: 20px;
  left: 10px;
  width: 300px;
  z-index: 9950;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes progressbar {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
.EuphoriaNotification {
  pointer-events: all;
  width: 100%;
  max-height: 300px;
  border-radius: 3px;
  padding: 15px 20px;
  margin-top: 10px;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 9951;
  transition-property: all;
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  -webkit-animation: fadein 0.5s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 0.5s;
  /* Firefox < 16 */
  -ms-animation: fadein 0.5s;
  /* Internet Explorer */
  -o-animation: fadein 0.5s;
  /* Opera < 12.1 */
  animation: fadein 0.5s;
}
.EuphoriaNotification > .progressbar {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  animation-name: progressbar;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  pointer-events: none;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}
.EuphoriaNotification:hover > .progressbar {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
.EuphoriaNotification.Interactable:hover {
  cursor: pointer;
  opacity: 0.7;
}
.EuphoriaNotification.Default {
  background: #323232;
}
.EuphoriaNotification.Default > .progressbar {
  background: rgba(255, 255, 255, 0.4);
}
.EuphoriaNotification.Error {
  background: #B71C1C;
}
.EuphoriaNotification.Information {
  background: #3F51B5;
}
.EuphoriaNotification.Success {
  background: #43A047;
}
.EuphoriaNotification.fading {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  pointer-events: none;
}

@media (max-width: 962px) {
  .EuphoriaNotificationHolder {
    width: auto;
    max-width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
  }

  .EuphoriaNotification {
    border-radius: 0;
    margin: 0;
    text-align: center;
    /*> .progressbar {
    	top: 0;
    	height: auto;
    }*/
  }
}
