.notify-container {
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  z-index: 1061;
}
.notify-container:before,
.notify-container:after {
  display: table;
  content: "";
}
.notify-container:after {
  clear: both;
}
.notify-container.position-left {
  left: 0;
  right: auto;
}
.notify-container.position-top {
  left: 0;
  right: 0;
  top: 0;
  height: auto;
}
.notify-container.position-top .notify {
  float: left;
}
.notify-container.position-bottom {
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  height: auto;
}
.notify-container.position-bottom .notify {
  float: left;
}
.notify {
  display: block;
  /*margin: .3125rem;*/
  margin: 2vw;
  /*padding: .625rem;*/
  padding: 1.3vw;
  min-width: 200px;
  cursor: default;
  max-width: 500px;
  position: relative;
}
.notify .notify-icon {
  width: 32px;
  height: 32px;
  font-size: 32px;
  text-align: center;
  position: absolute;
  margin: -16px 10px;
  top: 50%;
  left: 0;
}
.notify .notify-icon ~ .notify-title,
.notify .notify-icon ~ .notify-text {
  position: relative;
  margin-left: 42px;
}
.notify .notify-title,
.notify .notify-text {
  display: block;
  margin-right: 20px;
}
.notify .notify-title {
  font-weight: 500;
  font-size: 1.5vw;
}
.notify .notify-text {
  font-size: 1vw;
}
.notify .notify-closer {
  position: absolute;
  height: 2vw;
  width: 2vw;
  text-align: center;
  vertical-align: top;
  font-size: 2vw;
  font-weight: normal;
  padding: 0;
  z-index: 3;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  color: #777777;
  top: 3px;
  right: 3px;
}
.notify{
    -webkit-animation: mymove 7s infinite; /* Chrome, Safari, Opera */
    animation: mymove 5s infinite;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
    50% {box-shadow: 7px 13px 18px gray;}
}

/* Standard syntax */
@keyframes mymove {
    50% {box-shadow: 7px 13px 18px gray;}
}


.notify .notify-closer:after {
  border-color: #777777;
  content: '\D7';
  position: absolute;
  left: 25%;
  top: 10%;
  margin-top: -0.65rem;
  margin-left: -0.35rem;
}
.notify .notify-closer:hover {
  background-color: transparent;
  color: #ffffff;
  font-weight:900;
}
.notify .notify-closer:active {
  background-color: #92c0e0;
  color: #ffffff;
}
.notify {
  background-color: #e5f3fb;
  color: #1d1d1d;
}
.notify.success {
  background-color: #60a917;
  color: #ffffff;
}
.notify.success .notify-closer {
  background-color: transparent;
  color: #ffffff;
}
.notify.success .notify-closer:hover {
 background-color: transparent;
  color: #ffffff;
  font-weight:900;
  }
.notify.success .notify-closer:active {
  background-color: #128023;
}
.notify.alert {
  background-color: #ce352c;
  color: #ffffff;
}
.notify.alert .notify-closer {
  background-color: transparent;
  color: #ffffff;
}
.notify.alert .notify-closer:hover {
   background-color: transparent;
  color: #ffffff;
  font-weight:900;
}
.notify.alert .notify-closer:active {
  background-color: #9a1616;
}
.notify.warning {
  background-color: #F8C000;
  color: #e1e1e1!important;
}
.notify.warning .notify-closer {
  background-color: transparent;
  color: #e1e1e1!important;
}
.notify.warning .notify-closer:hover {
   background-color: transparent;
  color: #ffffff;
  font-weight:900;
}
.notify.warning .notify-closer:active {
  background-color: #bf5a15;
}
.notify.info {
  background-color: #1ba1e2;
  color: #ffffff;
}
.notify.info .notify-closer {
  background-color: transparent;
  color:black;
}
.notify.info .notify-closer:hover {
   background-color: transparent;
  color: balck;
  font-weight:900;
}
.notify.info .notify-closer:active {
  background-color: #1b6eae;
}