.session-popup {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 100%;
  max-width: 541px;
  z-index: 99;
  padding-left: 40px;
  min-height: 89px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 16px 24px;
  -webkit-box-shadow: 0 0 40px 0 rgba(29, 29, 27, 0.1);
  box-shadow: 0 0 40px 0 rgba(29, 29, 27, 0.1);
  background: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.session-popup.active {
  opacity: 1;
  pointer-events: all;
}
.session-popup__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  color: #1d1d1b;
}
.session-popup__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 20px;
}
.session-popup__text p {
  margin: 0;
}
.session-popup__text span {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
.session-popup__text a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #0bbdff;
  transition: color 0.3s;
}
.session-popup__button {
  padding: 10px 20px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background: #0bbdff;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

@media (any-hover: hover) {
  .session-popup__text a:hover {
    cursor: pointer;
    color: #46ccfd;
  }
  .session-popup__button:hover {
    cursor: pointer;
    background-color: #46ccfd;
  }
}

@media screen and (max-width: 767px) {
  .session-popup__body {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .session-popup {
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: calc(100% - 20px);
  }
}
