/* COLOR PALETTE & BRAND STYLES */
:root {
  --primary-color: #63bcff;
  --secondary-color: #1a1a1a;
  --menu-color: #000000;
  --bg-1: #63bcff;
  --bg-2: #ffffff;
  --links: #0046FF;
  --white: #ffffff;
  --primary-blue: #AEDEFC;
}
/* ========================================================================
   Channel List 
======================================================================== */

#channel-list {
  padding: 0 10px;
}

#channel-list > li {
  display: inline-block;
  height: 5rem;
  text-align: center;
  padding: 5px;
}

#channel-list > li > .wrapper {
  display: block;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 5px;
  border: 5px solid var(--links);
  border-radius: 5px;
  background-color: var(--primary-color);
}

#channel-list > li > .wrapper.a-notice {
  border-color: red;
  position: relative;
}

#channel-list > li .wrapper.a-notice div:first-child {
  position: relative;
  bottom: 0;
  width: 100%;
  font-size: 0.55rem;
  font-style: italic;
  color: var(--white);
}

#channel-list > li > .wrapper span {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-weight: bold;
}
/* BACKGROUND */
body {
  background: linear-gradient(to right, var(--bg-1), var(--bg-2));
}

/* 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;
}

nav {
  background-color: var(--menu-color);
}

.navbar-brand {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: bold;
  padding: 0 10px;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

/* TOGGLE BUTTON FIX */
.navbar-toggler {
  border-color: var(--white);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 117, 170, 0.5);
}

/* ACTIVE LINK - FIXED WITH !important TO OVERRIDE BOOTSTRAP */
.nav-item a.active {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--primary-color) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 2px !important;
  font-weight: bold !important;
}

/* REGULAR NAV LINKS */
.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(--white);
  font-weight: bolder;
  text-decoration-color: var(--links);
}

/* FOOTER */
footer {
  color: #fff;
  background-color: #000;
}

footer a {
  color: var(--bg-1);
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: bold;
}

#intro a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: bold;
}
