.rabby-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.342);
  display: none;
  justify-content: flex-end;
  align-items: stretch;
  z-index: 9999;
}

.rabby-overlay.active {
  display: flex;
}

.rabby-modal {
  background: #e2f4ff ;
  width: 390px;
  height: 97vh;
  padding: 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 40px;
}

.rabby-spinner-logo {
  width: 100px;
  display: block;
  margin: 0 auto 10px;
  animation: rabbyFadeLogo 2s infinite;
}

.rabby-loader {
  border: 3px solid #d3a4ff;
  border-top: 3px solid #f3f3f3;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: rabbySpin 1s linear infinite;
  margin: 15px auto;
}

@keyframes rabbySpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rabbyFadeLogo {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.rabby-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 57px;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid #eee;
  background: rgba(236, 236, 236, 0.657);
  z-index: 10;
}

.rabby-header.show {
  display: flex;
}

.rabby-header img {
  height: 38px;
}

.rabby-close {
  background: transparent;
  border: 2px solid linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  color: #9b51e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.rabby-content {
  display: none;
  text-align: center;
  padding-top: 5px;
}

.rabby-icon {
  width: 65px;
  height: 65px;
  color: #9b51e0;
  margin-bottom: 25px;
}

.rabby-h5 {
  font-size: 25px;
  color: rgb(0, 0, 0);
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.rabby-version {
  font-size: 16px;
  color: rgb(32, 32, 32);
  margin-bottom: 26px;
  font-weight: 500;
}

.rabby-feature-box {
  background: rgba(236, 236, 236, 0.657);
  padding: 15px;
  margin: 20px auto;
  text-align: left;
  border-radius: 8px;
  width: fit-content;
}

.rabby-feature-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.rabby-feature-list li {
  margin-bottom: 5px;
  white-space: nowrap;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 15px;
}

.rabby-update-btn {
  background-color: #9b51e0;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 12px;
  width: 52%;
  height: 11%;
}

.rabby-support {
  color: rgb(34, 34, 34);
  margin-bottom: 5px;
  font-size: 15px;
}

.rabby-support a {
  color: #9b51e0;
  font-size: 15px;
}

@media (max-width: 767px) {
  .rabby-overlay {
    justify-content: center;
  }

  .rabby-modal {
    width: 100%;
    height: 100vh;
    margin-right: 0;
  }
}
