.session-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 24, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}
.session-popup.active {
  opacity: 1;
  transition: 0.25s ease;
  pointer-events: all;
}
.session-popup.active .session-popup-content {
  visibility: visible;
}
.session-popup .session-popup-content {
  visibility: hidden;
  max-width: 400px;
  background: white;
  padding: 60px 45px 30px;
  border-radius: 20px;
  position: relative;
}
.session-popup .session-popup-content .close-button,
.session-popup .session-popup-content .close-button-ty {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.session-popup .session-popup-content .close-button-ty {
  display: none;
}
.session-popup .session-popup-content button {
  border: 1px solid #FFFFFF;
  border-radius: 25px;
  color: #FFFFFF;
  font-family: korolev, sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
  letter-spacing: normal;
  background: #00BBB4;
  text-transform: uppercase;
  max-width: 150px;
  width: 100%;
  height: 50px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transition: 0.25s ease;
  position: relative;
}
.session-popup .session-popup-content button:before {
  content: "\e5c8";
  position: absolute;
  right: 50px;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: Material Icons;
  font-size: 15px;
  color: #FFFFFF;
  transition: 0.25s ease;
  opacity: 0;
}
.session-popup .session-popup-content button:hover {
  padding-right: 40px;
  transition: 0.25s ease;
}
.session-popup .session-popup-content button:hover:before {
  opacity: 1;
  right: 30px;
  transition: 0.25s ease;
}
.session-popup .session-popup-content .light-blue-top-title {
  color: #00BBB4;
  font-family: korolev, sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: uppercase;
}
.session-popup .session-popup-content p {
  color: #0F206C;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
  margin-bottom: 20px;
}

/*# sourceMappingURL=logout-popup.css.map */
