body {
  background-color: black;
}
.parentWindow {
  min-height: 1545px;
  position: relative;
}

.stickyWindow {
  position: sticky;
  top: 35px;
}

.chat-slider-custom {
  height: 635px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.loaded.chat-slider-custom {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

.chat-slider-custom--status {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: 2;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.chat-slider-custom--status i {
  font-size: 100px;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.2s ease-in-out;
  position: absolute;
  width: 100px;
  margin-left: -50px;
}

.chat-slider-custom--cards {
  flex-grow: 1;
  padding-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  z-index: 1;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}

.chat-slider-custom--card {
  display: inline-block;
  width: 90%;
  min-width: fit-content;
  max-width: 400px;
  height: auto;
  padding-bottom: 40px;
  border: 2px solid white;
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  will-change: transform;
  transition: all 0.3s ease-in-out;
  cursor: grab;
  background-color: black;
  color: white;
  opacity: 0;
  transform: translateY(100px);
  z-index: -1;
}

.divider {
  width: 80%;
  height: 2px;
  background-color: #787c8a;
  color: #0d0e12;
  margin-top: 150px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.ctaButton {
  background-color: #0d0e12;
  color: #ffffff;
  padding: 8px 15px;
  border: 2px solid #787c8a;
  cursor: pointer;
  border-radius: 50px;
  font-size: 16px;
}

.ctaButton:hover {
  background-color: #0d0e12;
  color: #ffffff;
  padding: 8px 15px;
  border: 2px solid #787c8a;
  cursor: pointer;
  border-radius: 50px;
  font-size: 16px;
}
