body.-jsplash-opened {
  overflow-y: hidden !important;
}

.jsplash-viewport {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.17);
  opacity: 0;
  z-index: 9999;
  animation: jssplash-fade-out 300ms both cubic-bezier(0.22, 0.61, 0.36, 1);
}

.jsplash-blured {
  filter: blur(4px);
}

.jsplash-viewport.jsplash-visible {
  animation: jssplash-fade-in 400ms both cubic-bezier(0.13, 0.97, 0.53, 1.01);
}

.jsplash-closebtn {
  position: absolute;
  cursor: pointer;
  z-index: 100;
  border-radius: 100%;
  text-align: center;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  top: 0px;
  font-size: 30px;
  right: -40px;
  color: #000;
}

.jsplash-closebtn:hover {
  color: #f44336;
}

.jsplash-closebtn:before {
  font-family: "Material Icons";
  font-feature-settings: "liga";
  content: "close";
}

.jsplash-wrapper {
  background-color: #fff;
  border-radius: 6px;
  padding: 20px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(0deg, rgb(243, 243, 243) 0%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 100%);
  box-shadow: 0 5px 15px 0 rgba(97, 37, 37, 0.15), 0 2px 4px 0 rgba(148, 93, 93, 0.2);
}
.jsplash-wrapper.message-box-dialog {
  border-left: 10px solid #e25c5d;
}
.jsplash-inner {
  position: relative;
  max-width: 400px;
  height: 100%;
  overflow: auto;
  text-align: center;
}

.jsplash-wrapper.jsplash-fullscreen {
  width: 100%;
  height: 100%;
  padding: 0;
  overflow-y: auto;
}

.jsplash-fullscreen .jsplash-inner {
  padding: 0 12px;
  max-width: 100%;
  height: 100%;
  overflow: auto;
}

@keyframes jssplash-fade-out {
  0% {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
}

@keyframes jssplash-fade-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}
