.notiny-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.notiny-container {
  position: fixed;
  z-index: 99999;
}

.notiny-container-fluid-top .notiny-base,
.notiny-container-fluid-bottom .notiny-base {
  width: 100%;
  border-radius: 0;
}

.notiny-container-fluid-top .notiny-base {
  margin-top: 0;
}

.notiny-container-fluid-bottom .notiny-base {
  margin-bottom: 0;
}

.notiny-img {
  display: none;
}

/* Animations */

@-webkit-keyframes notiny-animation-hide {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  20% {
    opacity: 1;
  }

  30% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  90% {

  }

  100% {
    opacity: 0;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes notiny-animation-hide {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  20% {
    opacity: 1;
  }

  30% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  90% {

  }

  100% {
    opacity: 0;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes notiny-animation-show {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-filter: blur(4px);
    filter: blur(4px);
  }

  15% {
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1, 1);
  }

  90% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes notiny-animation-show {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-filter: blur(4px);
    filter: blur(4px);
  }

  15% {
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  90% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes notiny-animation-hover {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
}

@keyframes notiny-animation-hover {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
}

/* Default themes. (We are currently using .notiny-theme-dark) */


.notiny-theme-dark {
  background-color: #671945;
  color: #f5f5f5;
}

.notiny-theme-light {
  background-color: #f0f0f0;
  color: #202020;
}

.notiny-default-vars {
  padding: 3px 3px;
  margin: 2px 0px;
  border-radius: 2px;
  min-height: 50px;
 /*  max-width: 100vw;*/
}

.notiny-default-vars .notiny-img {
  display: inline-block;
  float: left;
  width: 32px;
  height: 32px;
  padding: 10px 0px 0px 0px;
}

.notiny-default-vars .notiny-text {
  font-family: 'montserrat', Arial;
  letter-spacing: 0pt;
  font-size: 22px;
  font-weight: 500;
  padding: 15px 0px 11px 0px;
  display: block;
 /* overflow: hidden;
 /* white-space: nowrap; */
  text-overflow: ellipsis;
  text-align: center;
  text-shadow: 2px 2px 8px #000000;
}
.notiny-text a:link {color: #f5f5f5; text-decoration: none;}
.notiny-text a:visited {color: #f5f5f5; text-decoration: none;}
.notiny-text a:hover {color: #fff; text-decoration: none;}

.notiny-default-vars .notiny-with-img .notiny-text {
  padding-left: 6px;
}

.notiny-tinytext {
  font-family: 'montserrat', Arial, sans serif;
  font-size: 14px;
  font-weight: 350;
}