div#__next {
  height: 100%;
}

.content-enter {
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
}
.content-enter-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition:
    opacity 600ms,
    -webkit-transform 600ms;
  transition:
    opacity 600ms,
    -webkit-transform 600ms;
  transition:
    opacity 600ms,
    transform 600ms;
  transition:
    opacity 600ms,
    transform 600ms,
    -webkit-transform 600ms;
}

.content-exit {
  opacity: 1;
}
.content-exit-active {
  opacity: 0;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
}

.content-appear {
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
}
.content-appear-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition:
    opacity 600ms,
    -webkit-transform 600ms;
  transition:
    opacity 600ms,
    -webkit-transform 600ms;
  transition:
    opacity 600ms,
    transform 600ms;
  transition:
    opacity 600ms,
    transform 600ms,
    -webkit-transform 600ms;
}
/*
  temporary until the real-time notification designs are ready
*/
.realtime-popup-container .notif-marker {
  display: none;
}

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #1c6cfd;
  position: fixed;
  z-index: 9999;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
}

#nprogress .peg {
  display: block;
  position: absolute;
  inset-inline-end: 0px;
  width: 100px;
  height: 100%;
  -webkit-box-shadow: 0 0 10px #1c6cfd, 0 0 5px #1c6cfd;
          box-shadow: 0 0 10px #1c6cfd, 0 0 5px #1c6cfd;
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  inset-inline-end: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 2px transparent;
  border-block-start-color: #1c6cfd;
  border-inline-start-color: #1c6cfd;
  border-radius: 50%;
  -webkit-animation: nprogresss-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

