/*!
 * Snarl - Web Notifications based on Growl
 * @version v0.3.3
 * @link https://hoxxep.github.io/snarl
 *
 * Copyright 2014-2017 Liam Gray <hoxxep@gmail.com>
 * Released under the MIT license
 * @license https://github.com/hoxxep/Snarl/blob/master/LICENSE
 */
#snarl-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  bottom: auto;
  left: auto;
  width: auto;
  min-width:380px;
  max-width:500px;
  z-index: 999999;
  pointer-events: none;
}
.snarl-notification {
  box-sizing: border-box;
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 15px;
  padding-left: 80px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  pointer-events: all;
  border: 1px solid #b0cca5;
  background: #def2d6;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 0, 0, 0.05) inset;
  border-radius: 5px;
  opacity: 0;
  left: 400px;
  transition: opacity 0.21s ease, left 0.35s ease-in, margin 0.35s ease;
}

.snarl-notification.info {
  border: 1px solid #7ebddf;
  background: #cde8f5;
}
.snarl-notification.warning {
  border: 1px solid #bd8181;
  background: #ecc8c5;
}
.snarl-notification.success {
  border: 1px solid #b0cca5;
  background: #def2d6;
}
.snarl-notification.error {
  border: 1px solid #d8cd85;
  background: #f8f3d6;
}


.snarl-notification.snarl-in {
  opacity: 1;
  left: 0;
  transition: opacity 0.28s ease-out 0.07s, left 0.35s ease-out;
}
.snarl-notification.no-hover:not(.not-dismissable) {
  padding-right: 95px;
}
.snarl-notification.no-hover:not(.not-dismissable) .snarl-close {
  opacity: 1;
  box-shadow: none;
}
.snarl-notification.not-dismissable {
  padding-right: 15px;
}
.snarl-notification.not-dismissable .snarl-close {
  display: none;
}
.snarl-notification .snarl-close {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  vertical-align: middle;
  text-align: center;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  background: #def2d6;
  box-shadow: -30px 0 30px #def2d6;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  cursor: pointer;
}
.snarl-notification.info .snarl-close {
  background: #cde8f5;
  box-shadow: -30px 0 30px #cde8f5;
}
.snarl-notification.warning .snarl-close {
  background: #ecc8c5;
  box-shadow: -30px 0 30px #ecc8c5;
}
.snarl-notification.success .snarl-close {
  background: #def2d6;
  box-shadow: -30px 0 30px #def2d6;
}
.snarl-notification.error .snarl-close {
  background: #f8f3d6;
  box-shadow: -30px 0 30px #f8f3d6;
}
.snarl-notification .snarl-close svg {
  position: relative;
  width: 30px;
  height: 30px;
  margin: -15px;
  top: 50%;
  vertical-align: top;
  fill: #000;
  pointer-events: none;
  transition: fill 0.25s ease;
}
.snarl-notification .snarl-close:hover svg {
  fill: #000;
}
.snarl-notification:hover .snarl-close {
  opacity: 1;
}
.snarl-notification .snarl-title {
  margin: 0 0 5px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-weight:bold;
  font-size: 1.4em;
  color:#000;
}
.snarl-notification.info .snarl-title {
  color:#4480ae;
}
.snarl-notification.warning .snarl-title {
  color:#bf3938;
}
.snarl-notification.success .snarl-title {
  color:#5a7052;
}
.snarl-notification.error .snarl-title {
  color:#967132;
}
.snarl-notification .snarl-text {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.25em;
  color:#333;
}
.snarl-notification .snarl-title:visible + .snarl-text:visible {
  margin-top: 0.3em;
}
.snarl-notification.snarl-no-title .snarl-title {
  display: none;
}
.snarl-notification.snarl-no-text .snarl-text {
  display: none;
}
.snarl-notification .snarl-icon {
  position: absolute;
  width: 80px;
  top: 0;
  bottom: 0;
  left: 0;
  margin-right: 15px;
}
.snarl-notification .snarl-icon * {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  line-height: 50px;
  /*font-size: 28px;*/
  vertical-align: middle;
  text-align: center;
}
.snarl-notification .snarl-icon .fa:before {
	font-size:50px;
}
.snarl-notification.snarl-no-icon {
  padding-left: 15px;
}
.snarl-notification.snarl-no-icon .snarl-icon {
  display: none;
}
.snarl-notification.waves-effect {
  display: block;
}
.snarl-notification.waves-effect .waves-ripple {
  z-index: 3;
  background: -webkit-radial-gradient(rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.075) 40%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 60%, rgba(255, 255, 255, 0) 70%);
  background: -moz-radial-gradient(rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.075) 40%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 60%, rgba(255, 255, 255, 0) 70%);
  background: -o-radial-gradient(rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.075) 40%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 60%, rgba(255, 255, 255, 0) 70%);
  background: radial-gradient(rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.075) 40%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 60%, rgba(255, 255, 255, 0) 70%);
}
@media screen and (max-width: 480px) {
  #snarl-wrapper {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
  }
  #snarl-wrapper .snarl-notification {
    margin: 0;
    padding-top: 10px;
    padding-right: 90px;
    padding-bottom: 10px 80px;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid #ccc;
  }
  #snarl-wrapper .snarl-notification .snarl-close {
    box-shadow: none;
    opacity: 1;
  }
  #snarl-wrapper .snarl-notification h3 {
    font-size: 1.2em;
  }
}


.snarl-notification.info .fa:before {
  color:#4480ae;
}
.snarl-notification.warning .fa:before {
	color:#b32f2d;
}
.snarl-notification.success .fa:before {
  color:#5a7052;
}
.snarl-notification.error .fa:before {
  color:#967132;
}