.dialog,
.dialog__overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.dialog {
  position: fixed;
  z-index: 999999;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  pointer-events: none;
}

.dialog__overlay {
  position: absolute;
  z-index: 1;
  background: rgba(55, 58, 71, 0.9);
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-backface-visibility: hidden;
}

.dialog--open .dialog__overlay {
  opacity: 1;
  pointer-events: auto;
}

.dialog__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: -200px;
  width: 100%;
  max-width: 500px;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid transparent;
  border-radius: .2rem;
  outline: 0;
  z-index: 2;
}

.dialog--open .dialog__content {
  pointer-events: auto;
}

.dialog .dialog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: .2rem;
  border-top-right-radius: .2rem;
  background-color: #0acf97!important;
  color: #fff;
}

.dialog .dialog__header .dialog__top__close {
  background-color: transparent;
  margin: -1em -1em -1em auto;
  padding: 1em;
  border: 0;
  color: #fff;
  font-size: 18px;
  outline: none;
  cursor: pointer;
}

.dialog__body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1em;
  font-size: 14px;
  color: #6c757d;
}

.dialog__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1em;
  border-top: 1px solid #dee2e6;
}

.dialog--close .dialog__overlay {
  -webkit-transition-delay: .25s;
  transition-delay: 0.25s;
}

.dialog.dialog--open .dialog__content,
.dialog.dialog--close .dialog__content {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.dialog.dialog--open .dialog__content {
  -webkit-animation-name: anim-open;
  animation-name: anim-open;
}

.dialog.dialog--close .dialog__content {
  -webkit-animation-name: anim-close;
  animation-name: anim-close;
}

@-webkit-keyframes anim-open {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(calc(-150vw), 0, 0);
  }

  50% {
    opacity: 1;
    -webkit-transform: translate3d(100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes anim-open {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(calc(-150vw), 0, 0);
    transform: translate3d(calc(-150vw), 0, 0);
  }

  50% {
    opacity: 1;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes anim-close {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    -webkit-transform: translate3d(-100px, 0, 0) scale3d(1.1, 1.1, 1);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(calc(150vw), 0, 0);
  }
}

@keyframes anim-close {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    -webkit-transform: translate3d(-100px, 0, 0) scale3d(1.1, 1.1, 1);
    transform: translate3d(-100px, 0, 0) scale3d(1.1, 1.1, 1);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(calc(150vw), 0, 0);
    transform: translate3d(calc(150vw), 0, 0);
  }
}

.dialog__action {
  padding: .6em 2em;
  outline: 0;
  font-size: 1.2em;
  border: 0;
  color: #313a46;
  background: #e3eaef;
  cursor: pointer;
}

.dialog__confirm {
  background-color: #0acf97;
  color: #fff;
  margin-left: 20px;
}

.dialog__ok {
  background-color: #0acf97;
  color: #fff;
}

.jq-toast-wrap {
  display: block;
  position: fixed;
  width: 250px;
  pointer-events: none!important;
  letter-spacing: normal;
  z-index: 9000 !important;
}

.jq-toast-wrap.bottom-left {
  bottom: 20px;
  left: 20px;
}

.jq-toast-wrap.bottom-right {
  bottom: 20px;
  right: 40px;
}

.jq-toast-wrap.top-left {
  top: 20px;
  left: 20px;
}

.jq-toast-wrap.top-right {
  top: 20px;
  right: 40px;
}

.jq-toast-single {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 0 0 5px;
  border-radius: 4px;
  font-size: 12px;
  font-family: arial, sans-serif;
  line-height: 17px;
  position: relative;
  pointer-events: all!important;
  background-color: #444;
  color: #fff;
}

.jq-toast-single {
  padding: 15px;
  font-family: Nunito, sans-serif;
  background-color: #25C390;
  font-size: 13px;
  line-height: 22px;
}

.jq-toast-single h2 {
  font-family: Nunito, sans-serif;
}

.jq-toast-single a {
  font-size: 0.875rem;
}

.jq-toast-single a:hover {
  color: #fff;
}

.jq-toast-loader {
  display: block;
  position: absolute;
  top: -2px;
  height: 5px;
  width: 0;
  left: 0;
  border-radius: 5px;
  background-color: #727cf5;
}

.jq-toast-loaded {
  width: 100%;
}

.jq-has-icon {
  padding: 10px 10px 10px 50px;
}

.close-jq-toast-single {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 18px;
  cursor: pointer;
  height: 22px;
  width: 22px;
  background: #343a40;
  color: #f1f3fa;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
}

.jq-toast-loader {
  height: 3px;
  top: 0;
  border-radius: 0;
}