/* COLOR PALETTE & BRAND STYLES */
:root {
  --primary-blue: #1a6bff;
  --secondary-grey: #cacacb;
  --transparent: transparent;
  --teal: #077A7D;
  --red: #F9041B;
  --light-red: #FDCCD1;
  --orange: orange;
  --light-orange: #ffe4c9;
  --green: #00b300;
  --light-green: #d2ffd2;
  --white: #ffffff;
  --black: #000000;
  --blue: #3399ff;
  --light-blue: #80bfff;
  --dark-green: #31511E;
  --light-green2: #65B741;
  --primary-color: #79A3B1;
  --secondary-color: #456268;
  --links: #73ecf3;
  --bg1: #FCF8EC;
  --bg2: #FFFFFF;
}

/* ========================================================================
   Channel List 
======================================================================== */

#channel-list {
  padding: 0 10px;
  list-style: none;
}

#channel-list>li {
  display: inline-block;
  padding: 10px;
}

#channel-list>li>.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 16px;
  border-radius: 14px;

  background: var(--secondary-color);
  border: 1px solid rgba(255, 255, 255, 0.15);

  text-decoration: none;
  transition: all 0.2s ease;
}

#channel-list > li > .wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--primary-color);
  border-color: var(--seconary-color);
}

#channel-list>li>.wrapper span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

/* BACKGROUND */
body {
  background: linear-gradient(to right, var(--bg1), var(--bg2));
}

/* HEADER / NAV COLORS */
header {
  background-color: var(--primary-color);
}

#top-header h3 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.navbar {
  background-color: var(--secondary-color);
}

.breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: underline;
  text-decoration-color: var(--white);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: bold;
}
.navbar-brand {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: bold;
  padding: 0 10px;
}

.navbar-brand a:hover {
  color: var(--orange);
}

.navbar-toggler {
  color: #fff;
  border-color: #fff;
  padding: 0 10px;
}

.nav-item .active,
a .active {
  color: var(--light-blue);
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.nav-item a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--white);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.nav-item a:hover {
  color: var(--orange);
  font-weight: bolder;
  text-decoration-color: var(--links);
}

/* FOOTER */
footer {
  color: #fff;
  background-color: #000;
}

footer a {
  color: var(--primary-blue);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: bold;
}

/* CUSTOM ELEMENT STYLING */
.more-chat-rooms a {
  color: var(--primary-blue);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#intro a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: bold;
}

.content_00 a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: bold;
}

chat-rules {
  padding-left: 10px;
}