.channels-seeker {
  height: 31.25rem;
  position: relative;
  overflow: hidden;
  border-radius: 3.0625rem;
  border: 0.0625rem solid rgba(239, 240, 246, 0.5);
  background: #14171880;
  box-shadow: 0 0.25rem 4rem #2b4d5b40;
  -webkit-backdrop-filter: blur(0.625rem);
  backdrop-filter: blur(0.625rem);
  display: grid;
  gap: 0;
  grid-template-columns: 25rem 1fr;
  padding: 1.875rem;
  width: 100%;
  max-width: 68.75rem;
}
@media (max-width: 1024px) {
  .channels-seeker {
    grid-template-columns: 1fr;
    gap: 1rem;
    height: auto;
  }
}
.channels-seeker__loading-modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  background-color: #00000080;
  display: flex;
  justify-content: center;
  align-items: center;
}
.channels-seeker__loading-modal .loading-dots {
  display: flex;
  gap: 0.5rem;
}
.channels-seeker__loading-modal .dot {
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  border-radius: 50%;
  animation: dot-blink 1.5s infinite ease-in-out;
}
.channels-seeker__loading-modal .dot:nth-child(2) {
  animation-delay: 0.3s;
}
.channels-seeker__loading-modal .dot:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes dot-blink {
  0%,
  80%,
  to {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.channels-seeker__chat-area {
  padding: 0;
  border-radius: 1.625rem;
  background: #14171880;
  box-shadow: 0 0.25rem 4rem #2b4d5b40;
  -webkit-backdrop-filter: blur(0.625rem);
  backdrop-filter: blur(0.625rem);
  display: flex;
  flex-direction: column;
  overflow: auto;
}
@media (max-width: 1024px) {
  .channels-seeker__chat-area {
    height: 30rem;
  }
}
.channels-seeker__messages {
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.channels-seeker .message {
  padding: 1rem;
  border-radius: 1rem;
  background-color: #ffffff1a;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  word-break: break-word;
}
.channels-seeker .message.user {
  background-color: #1e90ff;
  align-self: flex-end;
}
.channels-seeker .message.bot {
  background-color: #2e2e2e;
  align-self: flex-start;
}
.channels-seeker__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem;
  background-color: #ffffff1a;
  border-radius: 1.625rem;
}
.channels-seeker__input {
  flex: 1;
  padding: 0.625rem;
  border: none;
  border-radius: 1.25rem;
  background-color: #fff3;
  color: #fff;
  font-size: 1rem;
  margin-right: 0.625rem;
  outline: none;
  width: 100%;
}
.channels-seeker__send {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 1.25rem;
  background-color: #1e90ff;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.channels-seeker__send:hover {
  background-color: #1c86ee;
}
.channels-seeker__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  padding: 1rem;
}
@media (max-width: 1024px) {
  .channels-seeker__channels {
    height: 30rem;
    padding: 0;
  }
}
.channels-seeker__channels .channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: #ffffff1a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.channels-seeker__channels .channel img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.channels-seeker__channels .channel:hover {
  background-color: #fff3;
}
.channels-seeker__channels-area {
  position: relative;
  overflow: auto;
}
.channels-seeker__channels-empty {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.channel-viewer {
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000bf;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem 1rem;
  z-index: 1000;
}
.channel-viewer__body {
  overflow: auto;
  max-height: calc(100% - 4rem);
}
.channel-viewer__close-button {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: 3rem;
  background-color: #fff3;
  border: none;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.channel-viewer__close-button:hover {
  background-color: #fff3;
}
::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
::-webkit-scrollbar-thumb {
  background-color: #fff3;
  border-radius: 0.25rem;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #ffffff4d;
}
::-webkit-scrollbar-track {
  background-color: #14171880;
  border-radius: 0.25rem;
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(20, 23, 24, 0.5);
}
*::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
*::-webkit-scrollbar-thumb {
  background-color: #fff3;
  border-radius: 0.25rem;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #ffffff4d;
}
*::-webkit-scrollbar-track {
  background-color: #14171880;
  border-radius: 0.25rem;
}
