/* *
 * jQuery toast plugin created by Kamran Ahmed copyright MIT license 2014 */

.jq-toast-wrap {
  display: block;
  position: fixed;
  width: 90%;
  height: 200px;
  pointer-events: none !important;
  margin: 0;
  padding: 0;
  letter-spacing: normal;
  z-index: 9000 !important;
  /*margin-top: 60px;*/
}

.jq-toast-wrap * {
  margin: 0;
  padding: 0;
}

.jq-toast-wrap.bottom-left {
  bottom: -40px;
  left: 20px;
}

.jq-toast-wrap.bottom-right {
  bottom: -40px;
  right: 20px;
}

.jq-toast-wrap.top-left {
  top: 90px;
  left: 20px;
}

.jq-toast-wrap.top-right {
  top: 90px;
  right: 20px;
}

.jq-toast-single {
  display: block;
  width: 100%;
  /*height: 100px;*/
  padding: 10px;
  margin: 0px 0px 5px;
  border-radius: 4px;
  font-size: 15px;
  font-family: Nunito, sans-serif;
  line-height: 17px;
  position: relative;
  pointer-events: all !important;
  background-color: #444444;
  color: white;
  box-shadow: 0 1rem 3rem rgba(67,66,66,0.6)!important;
  border-left: 10px solid transparent;
}

.jq-toast-single h2 {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  margin: 0px 0px 7px;
  background: none;
  color: inherit;
  line-height: inherit;
  letter-spacing: normal;
  /*text-transform: uppercase;*/
  font-weight: bold;
  /*margin-right: 7px;*/
  font-weight: bold;
}

.jq-toast-single a {
  color: #eee;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid white;
  padding-bottom: 3px;
  font-size: 12px;
}

.jq-toast-single ul {
  margin: 0px 0px 0px 15px;
  background: none;
  padding: 0px;
}

.jq-toast-single ul li {
  list-style-type: disc !important;
  line-height: 17px;
  background: none;
  margin: 0;
  padding: 0;
  letter-spacing: normal;
}

.close-jq-toast-single {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 30px;
  cursor: pointer;
}

.jq-toast-loader {
  display: block;
  position: absolute;
  top: -2px;
  height: 5px;
  width: 0%;
  left: 0;
  border-radius: 5px;
  background: rgb(135, 135, 135);
}

.jq-toast-loaded {
  width: 100%;
}

.jq-has-icon {
  padding: 15px 30px 15px 50px;
  background-repeat: no-repeat;
  background-position: 10px;
}

.jq-icon-info {
  background-image: url("../img/icons/information.png");
  background-size: 25px 25px;
  background-color: rgb(0, 158, 220);
  color: #ffffff;
  border-width: 3px;
  border-color: rgb(0, 112, 156);
}

.jq-icon-message {
  background-image: url("../img/icons/bell.png");
  background-size: 25px 25px;
  background-color: rgb(78, 115, 223);
  color: #f3f3f3;
  border-width: 3px;
  border-color: rgb(39, 72, 172);
}

.jq-icon-warning {
  background-image: url("../img/icons/warning.png");
  background-size: 25px 25px;
  background-color: rgb(239, 162, 29);
  color: #ffffff;
  border-width: 3px;
  border-color: rgb(184, 129, 3);
}

.jq-icon-error {
  background-image: url("../img/icons/error.png");
  background-size: 25px 25px;
  background-color: rgb(252, 57, 57);
  color: #ffffff;
  border-width: 3px;
  border-color: rgba(168, 23, 23, 0.938);
}

.jq-icon-success {
  background-image: url("../img/icons/success.png");
  background-size: 25px 25px;
  color: #ffffff;
  background-color: rgb(20, 186, 86);
  border-width: 3px;
  border-color: rgb(0, 130, 71);
}

@media (min-width: 768px) {
  .jq-toast-wrap {
    display: block;
    position: fixed;
    width: 40%;
    pointer-events: none !important;
    margin: 0;
    padding: 0;
    letter-spacing: normal;
    z-index: 9000 !important;
  }
}

