.session-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(2, 4, 3, .78);
  backdrop-filter: blur(12px);
}

.session-modal.is-visible {
  display: grid;
}

.session-modal__panel {
  width: min(430px, 100%);
  border: 1px solid rgba(167, 255, 47, .68);
  border-radius: 16px;
  padding: 30px 28px 28px;
  text-align: center;
  color: #f4f6f2;
  background: linear-gradient(180deg, rgba(10, 16, 13, .96), rgba(4, 7, 5, .96));
  box-shadow: 0 0 46px rgba(167, 255, 47, .2), 0 26px 90px rgba(0, 0, 0, .56);
}

.session-modal__loader {
  width: 82px;
  height: 82px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, .12);
  border-top-color: #a7ff2f;
  border-right-color: rgba(167, 255, 47, .55);
  animation: session-spin .9s linear infinite;
}

.session-modal__count {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: -12px auto 16px;
  border-radius: 50%;
  background: #a7ff2f;
  color: #071004;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(167, 255, 47, .34);
}

.session-modal__title {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.2;
}

.session-modal__message {
  margin: 0;
  color: #c0c7bd;
  font-size: 15px;
  line-height: 1.55;
}

@keyframes session-spin {
  to {
    transform: rotate(360deg);
  }
}
