@keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(25%);
  }
}

@keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(25%);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0)translateY(-45%)translateX(13%);
  }

  to {
    transform: scale(1)translateY(-45%)translateX(13%);
  }
}

.notyf {
  color: #fff;
  z-index: 9999;
  pointer-events: none;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.notyf__icon--error, .notyf__icon--success {
  background: #fff;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  margin: 0 auto;
  display: block;
  position: relative;
}

.notyf__icon--error:after, .notyf__icon--error:before {
  content: "";
  background: currentColor;
  border-radius: 3px;
  width: 3px;
  height: 12px;
  display: block;
  position: absolute;
  top: 5px;
  left: 9px;
}

.notyf__icon--error:after {
  transform: rotate(-45deg);
}

.notyf__icon--error:before {
  transform: rotate(45deg);
}

.notyf__icon--success:after, .notyf__icon--success:before {
  content: "";
  background: currentColor;
  border-radius: 3px;
  width: 3px;
  display: block;
  position: absolute;
}

.notyf__icon--success:after {
  height: 6px;
  top: 9px;
  left: 6px;
  transform: rotate(-45deg);
}

.notyf__icon--success:before {
  height: 11px;
  top: 5px;
  left: 10px;
  transform: rotate(45deg);
}

.notyf__toast {
  pointer-events: auto;
  box-sizing: border-box;
  border-radius: 2px;
  flex-shrink: 0;
  max-width: 300px;
  padding: 0 15px;
  animation: .3s ease-in forwards notyf-fadeinup;
  display: block;
  position: relative;
  overflow: hidden;
  transform: translateY(25%);
  box-shadow: 0 3px 7px #00000040;
}

.notyf__toast--disappear {
  animation: .3s .25s forwards notyf-fadeoutdown;
  transform: translateY(0);
}

.notyf__toast--disappear .notyf__icon, .notyf__toast--disappear .notyf__message {
  opacity: 1;
  animation: .3s forwards notyf-fadeoutdown;
  transform: translateY(0);
}

.notyf__toast--disappear .notyf__dismiss {
  opacity: 1;
  animation: .3s forwards notyf-fadeoutright;
  transform: translateX(0);
}

.notyf__toast--disappear .notyf__message {
  animation-delay: 50ms;
}

.notyf__toast--upper {
  margin-bottom: 20px;
}

.notyf__toast--lower {
  margin-top: 20px;
}

.notyf__toast--dismissible .notyf__wrapper {
  padding-right: 30px;
}

.notyf__ripple {
  transform-origin: 100% 100%;
  z-index: 5;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  animation: .4s ease-out forwards ripple;
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(0)translateY(-51%)translateX(13%);
}

.notyf__wrapper {
  z-index: 10;
  border-radius: 3px;
  align-items: center;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.notyf__icon {
  text-align: center;
  opacity: 0;
  width: 22px;
  margin-right: 13px;
  font-size: 1.3em;
  animation: .3s .3s forwards notyf-fadeinup;
}

.notyf__dismiss {
  opacity: 0;
  width: 26px;
  height: 100%;
  margin-right: -15px;
  animation: .3s .35s forwards notyf-fadeinleft;
  position: absolute;
  top: 0;
  right: 0;
}

.notyf__dismiss-btn {
  cursor: pointer;
  opacity: .35;
  background-color: #00000040;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  transition: opacity .2s, background-color .2s;
}

.notyf__dismiss-btn:after, .notyf__dismiss-btn:before {
  content: "";
  background: #fff;
  border-radius: 3px;
  width: 2px;
  height: 12px;
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 1px);
}

.notyf__dismiss-btn:after {
  transform: rotate(-45deg);
}

.notyf__dismiss-btn:before {
  transform: rotate(45deg);
}

.notyf__dismiss-btn:hover {
  opacity: .7;
  background-color: #00000026;
}

.notyf__dismiss-btn:active {
  opacity: .8;
}

.notyf__message {
  vertical-align: middle;
  opacity: 0;
  line-height: 1.5em;
  animation: .3s .25s forwards notyf-fadeinup;
  position: relative;
}

@media only screen and (width <= 480px) {
  .notyf {
    padding: 0;
  }

  .notyf__ripple {
    width: 600px;
    height: 600px;
    animation-duration: .5s;
  }

  .notyf__toast {
    border-radius: 0;
    width: 100%;
    max-width: none;
    box-shadow: 0 -2px 7px #00000021;
  }

  .notyf__dismiss {
    width: 56px;
  }
}

.tingle-modal * {
  box-sizing: border-box;
}

.tingle-modal {
  z-index: 1000;
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  cursor: url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"), auto;
  background: #000000e6;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

@supports ((-webkit-backdrop-filter: blur(12px))) or ((-webkit-backdrop-filter: blur(12px))) or (backdrop-filter: blur(12px)) {
  .tingle-modal {
    backdrop-filter: blur(12px);
  }
}

.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  z-index: 1000;
  color: #fff;
  cursor: pointer;
  background-color: #0000;
  border: none;
  width: 2rem;
  height: 2rem;
  padding: 0;
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
}

.tingle-modal__close svg * {
  fill: currentColor;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  opacity: 1;
  cursor: auto;
  will-change: transform, opacity;
  background: #fff;
  border-radius: 4px;
  flex-shrink: 0;
  width: 60%;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
}

.tingle-modal-box__content {
  padding: 3rem;
}

.tingle-modal-box__footer {
  cursor: auto;
  background-color: #f5f5f5;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  width: auto;
  padding: 1.5rem 2rem;
}

.tingle-modal-box__footer:after {
  clear: both;
  content: "";
  display: table;
}

.tingle-modal-box__footer--sticky {
  z-index: 10001;
  opacity: 1;
  transition: bottom .3s ease-in-out .3s;
  position: fixed;
  bottom: -200px;
}

.tingle-enabled {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  animation: .2s cubic-bezier(.68, -.55, .265, 1.55) forwards scale;
}

.tingle-modal--overflow {
  padding-top: 8vh;
  overflow-y: scroll;
}

.tingle-btn {
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  font-size: inherit;
  cursor: pointer;
  background-color: gray;
  border: none;
  margin: 0 .5rem;
  padding: 1rem 2rem;
  font-family: inherit;
  line-height: normal;
  text-decoration: none;
  transition: background-color .4s;
  display: inline-block;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

@media (width <= 540px) {
  .tingle-modal {
    width: 100%;
    padding-top: 60px;
    display: block;
    top: 0;
  }

  .tingle-modal-box {
    border-radius: 0;
    width: auto;
  }

  .tingle-modal-box__content {
    overflow-y: scroll;
  }

  .tingle-modal--noClose {
    top: 0;
  }

  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }

  .tingle-modal-box__footer .tingle-btn {
    float: none;
    width: 100%;
    margin-bottom: 1rem;
    display: block;
  }

  .tingle-modal__close {
    box-shadow: none;
    color: #fff;
    background-color: #2c3e50;
    border: none;
    width: 100%;
    height: 60px;
    display: block;
    top: 0;
    left: 0;
    right: 0;
  }

  .tingle-modal__closeLabel {
    vertical-align: middle;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1.6rem;
    display: inline-block;
  }

  .tingle-modal__closeIcon {
    vertical-align: middle;
    width: 1.6rem;
    margin-right: .8rem;
    font-size: 0;
    display: inline-block;
  }
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*# sourceMappingURL=index.9bd333fd.css.map */
