@charset "UTF-8";
/*
 *
 *	Variabiles
 *
 */
/*
 * Theme definitions
 *
 * usage:
 *		[[SELECTOR]] {
 *			@include themify($themes) {
 *				[[PROPERTY]]]: themed('nameFromThemeDecloration');
 *			}
 *		}
 */
/*
 * Poppins
 *	200 - extra light
 *	300 - light
  * 400 - regular
 *	500 - medium
 *	600 - semibold
 *	700 - bold
 *	800 - extra bold
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
/*
 * mixins, functions, animations, etc.
 */
/*
* Implementation of themes
*/
@import url("https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/css/splide.min.css");
@keyframes dash {
  0% {
    opacity: 0;
    stroke-dashoffset: 350;
  }
  40% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/*
* general styles
*
*	1. core elements, html, body
*	2. reusable styles, a11y, etc.
*	2. links & buttons
*	3. base body text & headings
*	4. SVG line things
*	5. SVG masks
*
*/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media (max-width: 900px) {
  html {
    max-width: 100vw;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: clamp(1.2rem, 0.57vw + 0.91rem, 2rem);
  max-width: 100vw;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
}
body.preload * {
  transition: none !important;
  animation-duration: 0s !important;
  -webkit-animation-duration: 0s !important;
}
body.preload .feature_frame .svg_line {
  stroke-dashoffset: 480;
  opacity: 0;
}
body.preload nav#site_main_navigation {
  position: fixed;
  opacity: 0;
}
body:not(.preload) {
  transition: background-color 200ms ease-in-out;
}
body:not(.preload) a,
body:not(.preload) :after {
  transition: all 250ms ease-in-out;
}
body:not(.preload) *[class^=logo_] {
  transition: all 300ms ease-in-out;
}
body.theme-light {
  background: #ffffff;
  color: #292929;
}
body.theme-dark {
  background: #292929;
  color: #ffffff;
}
body ::-moz-selection {
  background: rgba(255, 244, 0, 0.8);
  color: #212023;
}
body ::-webkit-selection {
  background: rgba(255, 244, 0, 0.8);
  color: #212023;
}
body ::selection {
  background: rgba(255, 244, 0, 0.8);
  color: #212023;
}

.frm_screen_reader,
.hide-this {
  height: 0;
  width: 0;
  overflow: hidden;
  padding: 0;
  display: none;
}

@media (min-width: 900px) {
  .mobile_only {
    display: none;
  }
}

.sr-only {
  position: absolute;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.alignleft {
  float: left;
  margin-right: 10px;
}

.alignright {
  float: right;
  margin-left: 10px;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  align-self: center;
}

.theme-light .background-IGB_Purple,
.theme-light .background-static_purple {
  background-color: #5e3a7e;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-dark .background-IGB_Purple,
.theme-dark .background-static_purple {
  background-color: #5e3a7e;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light .background-IGB_Purple a,
.theme-light .background-IGB_Purple a:visited,
.theme-light .background-IGB_Purple a:hover,
.theme-light .background-IGB_Purple a:visited:hover,
.theme-light .background-static_purple a,
.theme-light .background-static_purple a:visited,
.theme-light .background-static_purple a:hover,
.theme-light .background-static_purple a:visited:hover {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-dark .background-IGB_Purple a,
.theme-dark .background-IGB_Purple a:visited,
.theme-dark .background-IGB_Purple a:hover,
.theme-dark .background-IGB_Purple a:visited:hover,
.theme-dark .background-static_purple a,
.theme-dark .background-static_purple a:visited,
.theme-dark .background-static_purple a:hover,
.theme-dark .background-static_purple a:visited:hover {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}

.theme-light .overlay-IGB_Purple {
  background: rgba(94, 58, 126, 0.5);
}
.theme-dark .overlay-IGB_Purple {
  background: rgba(94, 58, 126, 0.5);
}
.theme-light .overlay-IGB_Purple:hover, .theme-light .overlay-IGB_Purple:target, .theme-light .overlay-IGB_Purple:focus {
  background-color: rgba(94, 58, 126, 0.75);
}
.theme-dark .overlay-IGB_Purple:hover, .theme-dark .overlay-IGB_Purple:target, .theme-dark .overlay-IGB_Purple:focus {
  background-color: rgba(94, 58, 126, 0.75);
}

.theme-light .background-IGB_Pink,
.theme-light .background-static_pink {
  background-color: #f2566e;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-dark .background-IGB_Pink,
.theme-dark .background-static_pink {
  background-color: #f2566e;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light .background-IGB_Pink a,
.theme-light .background-IGB_Pink a:visited,
.theme-light .background-IGB_Pink a:hover,
.theme-light .background-IGB_Pink a:visited:hover,
.theme-light .background-static_pink a,
.theme-light .background-static_pink a:visited,
.theme-light .background-static_pink a:hover,
.theme-light .background-static_pink a:visited:hover {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-dark .background-IGB_Pink a,
.theme-dark .background-IGB_Pink a:visited,
.theme-dark .background-IGB_Pink a:hover,
.theme-dark .background-IGB_Pink a:visited:hover,
.theme-dark .background-static_pink a,
.theme-dark .background-static_pink a:visited,
.theme-dark .background-static_pink a:hover,
.theme-dark .background-static_pink a:visited:hover {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}

.theme-light .overlay-IGB_Pink {
  background-color: rgba(242, 86, 110, 0.5);
}
.theme-dark .overlay-IGB_Pink {
  background-color: rgba(242, 86, 110, 0.5);
}
.theme-light .overlay-IGB_Pink:hover, .theme-light .overlay-IGB_Pink:target, .theme-light .overlay-IGB_Pink:focus {
  background: rgba(242, 86, 110, 0.75);
}
.theme-dark .overlay-IGB_Pink:hover, .theme-dark .overlay-IGB_Pink:target, .theme-dark .overlay-IGB_Pink:focus {
  background: rgba(242, 86, 110, 0.75);
}

.theme-light .background-IGB_Blue,
.theme-light .background-static_blue {
  background-color: #45acce;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-dark .background-IGB_Blue,
.theme-dark .background-static_blue {
  background-color: #45acce;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light .background-IGB_Blue a,
.theme-light .background-IGB_Blue a:visited,
.theme-light .background-IGB_Blue a:hover,
.theme-light .background-IGB_Blue a:visited:hover,
.theme-light .background-static_blue a,
.theme-light .background-static_blue a:visited,
.theme-light .background-static_blue a:hover,
.theme-light .background-static_blue a:visited:hover {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-dark .background-IGB_Blue a,
.theme-dark .background-IGB_Blue a:visited,
.theme-dark .background-IGB_Blue a:hover,
.theme-dark .background-IGB_Blue a:visited:hover,
.theme-dark .background-static_blue a,
.theme-dark .background-static_blue a:visited,
.theme-dark .background-static_blue a:hover,
.theme-dark .background-static_blue a:visited:hover {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}

.theme-light .overlay-IGB_Blue {
  background-color: rgba(69, 172, 206, 0.5);
}
.theme-dark .overlay-IGB_Blue {
  background-color: rgba(69, 172, 206, 0.5);
}
.theme-light .overlay-IGB_Blue:hover, .theme-light .overlay-IGB_Blue:target, .theme-light .overlay-IGB_Blue:focus {
  background-color: rgba(69, 172, 206, 0.75);
}
.theme-dark .overlay-IGB_Blue:hover, .theme-dark .overlay-IGB_Blue:target, .theme-dark .overlay-IGB_Blue:focus {
  background-color: rgba(69, 172, 206, 0.75);
}

.theme-light .background-IGB_Yellow,
.theme-light .background-static_yellow {
  background: #fbad41;
  color: #212023;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}
.theme-dark .background-IGB_Yellow,
.theme-dark .background-static_yellow {
  background: #fbad41;
  color: #212023;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}
.theme-light .background-IGB_Yellow a,
.theme-light .background-IGB_Yellow a:visited,
.theme-light .background-IGB_Yellow a:hover,
.theme-light .background-IGB_Yellow a:visited:hover,
.theme-light .background-static_yellow a,
.theme-light .background-static_yellow a:visited,
.theme-light .background-static_yellow a:hover,
.theme-light .background-static_yellow a:visited:hover {
  color: #212023;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}
.theme-dark .background-IGB_Yellow a,
.theme-dark .background-IGB_Yellow a:visited,
.theme-dark .background-IGB_Yellow a:hover,
.theme-dark .background-IGB_Yellow a:visited:hover,
.theme-dark .background-static_yellow a,
.theme-dark .background-static_yellow a:visited,
.theme-dark .background-static_yellow a:hover,
.theme-dark .background-static_yellow a:visited:hover {
  color: #212023;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}

.theme-light .overlay-IGB_Yellow {
  background-color: rgba(251, 173, 65, 0.5);
}
.theme-dark .overlay-IGB_Yellow {
  background-color: rgba(251, 173, 65, 0.5);
}
.theme-light .overlay-IGB_Yellow:hover, .theme-light .overlay-IGB_Yellow:target, .theme-light .overlay-IGB_Yellow:focus {
  background-color: rgba(251, 173, 65, 0.75);
}
.theme-dark .overlay-IGB_Yellow:hover, .theme-dark .overlay-IGB_Yellow:target, .theme-dark .overlay-IGB_Yellow:focus {
  background-color: rgba(251, 173, 65, 0.75);
}

.theme-light .background-IGB_Dark {
  background-color: #393939;
  color: #ffffff;
}
.theme-dark .background-IGB_Dark {
  background-color: #d6d6d6;
  color: #ffffff;
}

.theme-light .overlay-IGB_Dark {
  background-color: rgba(57, 57, 57, 0.5);
}
.theme-dark .overlay-IGB_Dark {
  background-color: rgba(214, 214, 214, 0.5);
}
.theme-light .overlay-IGB_Dark:hover, .theme-light .overlay-IGB_Dark:target, .theme-light .overlay-IGB_Dark:focus {
  background-color: rgba(57, 57, 57, 0.75);
}
.theme-dark .overlay-IGB_Dark:hover, .theme-dark .overlay-IGB_Dark:target, .theme-dark .overlay-IGB_Dark:focus {
  background-color: rgba(214, 214, 214, 0.75);
}

/* ---------------------------------------------------------------- dynamic color backgrounds --- */
.theme-light .background-dynamic_purple {
  background-color: #AC81CF;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}
.theme-dark .background-dynamic_purple {
  background-color: #5e3a7e;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light .background-dynamic_purple a,
.theme-light .background-dynamic_purple a:visited, .theme-light a .background-dynamic_purple, .theme-light a:visited .background-dynamic_purple {
  color: #292929;
}
.theme-dark .background-dynamic_purple a,
.theme-dark .background-dynamic_purple a:visited, .theme-dark a .background-dynamic_purple, .theme-dark a:visited .background-dynamic_purple {
  color: #ffffff;
}

.theme-light .background-dynamic_pink {
  background-color: #FF6687;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}
.theme-dark .background-dynamic_pink {
  background-color: #83353F;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light .background-dynamic_pink a,
.theme-light .background-dynamic_pink a:visited, .theme-light a .background-dynamic_pink, .theme-light a:visited .background-dynamic_pink {
  color: #292929;
}
.theme-dark .background-dynamic_pink a,
.theme-dark .background-dynamic_pink a:visited, .theme-dark a .background-dynamic_pink, .theme-dark a:visited .background-dynamic_pink {
  color: #ffffff;
}

.theme-light .background-dynamic_blue {
  background-color: #80C7E2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}
.theme-dark .background-dynamic_blue {
  background-color: #45acce;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light .background-dynamic_blue a,
.theme-light .background-dynamic_blue a:visited, .theme-light a .background-dynamic_blue, .theme-light a:visited .background-dynamic_blue {
  color: #292929;
}
.theme-dark .background-dynamic_blue a,
.theme-dark .background-dynamic_blue a:visited, .theme-dark a .background-dynamic_blue, .theme-dark a:visited .background-dynamic_blue {
  color: #ffffff;
}

.theme-light .background-dynamic_yellow {
  background-color: #FCB44F;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}
.theme-dark .background-dynamic_yellow {
  background-color: #7B623D;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light .background-dynamic_yellow a,
.theme-light .background-dynamic_yellow a:visited, .theme-light a .background-dynamic_yellow, .theme-light a:visited .background-dynamic_yellow {
  color: #292929;
}
.theme-dark .background-dynamic_yellow a,
.theme-dark .background-dynamic_yellow a:visited, .theme-dark a .background-dynamic_yellow, .theme-dark a:visited .background-dynamic_yellow {
  color: #ffffff;
}

/* ---------------------------------------------------------------- dynamic gradient backgrounds --- */
.theme-light .background-gradient_purple {
  background: linear-gradient(138deg, rgb(172, 129, 207) 0%, rgb(206, 186, 222) 100%);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}
.theme-dark .background-gradient_purple {
  background: linear-gradient(138deg, rgb(83, 54, 110) 0%, rgb(38, 29, 46) 100%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light .background-gradient_purple a,
.theme-light .background-gradient_purple a:visited, .theme-light a .background-gradient_purple, .theme-light a:visited .background-gradient_purple {
  color: #292929;
}
.theme-dark .background-gradient_purple a,
.theme-dark .background-gradient_purple a:visited, .theme-dark a .background-gradient_purple, .theme-dark a:visited .background-gradient_purple {
  color: #ffffff;
}

.theme-light .background-gradient_pink {
  background: linear-gradient(138deg, rgb(255, 102, 134) 0%, rgb(255, 191, 205) 100%);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}
.theme-dark .background-gradient_pink {
  background: linear-gradient(138deg, rgb(131, 53, 63) 0%, rgb(45, 18, 22) 100%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light .background-gradient_pink a,
.theme-light .background-gradient_pink a:visited, .theme-light a .background-gradient_pink, .theme-light a:visited .background-gradient_pink {
  color: #292929;
}
.theme-dark .background-gradient_pink a,
.theme-dark .background-gradient_pink a:visited, .theme-dark a .background-gradient_pink, .theme-dark a:visited .background-gradient_pink {
  color: #ffffff;
}

.theme-light .background-gradient_blue {
  background: linear-gradient(138deg, rgb(128, 199, 226) 0%, rgb(192, 223, 235) 100%);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}
.theme-dark .background-gradient_blue {
  background: linear-gradient(138deg, rgb(83, 172, 205) 0%, rgb(42, 86, 103) 100%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light .background-gradient_blue a,
.theme-light .background-gradient_blue a:visited, .theme-light a .background-gradient_blue, .theme-light a:visited .background-gradient_blue {
  color: #292929;
}
.theme-dark .background-gradient_blue a,
.theme-dark .background-gradient_blue a:visited, .theme-dark a .background-gradient_blue, .theme-dark a:visited .background-gradient_blue {
  color: #ffffff;
}

.theme-light .background-gradient_yellow {
  background: linear-gradient(138deg, rgb(252, 180, 79) 0%, rgb(255, 220, 171) 100%);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 0 0 rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.42);
}
.theme-dark .background-gradient_yellow {
  background: linear-gradient(138deg, rgb(123, 98, 61) 0%, rgb(74, 64, 49) 100%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light .background-gradient_yellow a,
.theme-light .background-gradient_yellow a:visited, .theme-light a .background-gradient_yellow, .theme-light a:visited .background-gradient_yellow {
  color: #292929;
}
.theme-dark .background-gradient_yellow a,
.theme-dark .background-gradient_yellow a:visited, .theme-dark a .background-gradient_yellow, .theme-dark a:visited .background-gradient_yellow {
  color: #ffffff;
}

/* ---------------------------------------------------------------- dynamic subtle backgrounds --- */
.theme-light .background-subtle_grey {
  background-color: #F5F3F7;
}
.theme-dark .background-subtle_grey {
  background-color: #393939;
}

.theme-light .background-subtle_purple {
  background-color: #F5F3F7;
}
.theme-dark .background-subtle_purple {
  background-color: #42344F;
}

.theme-light .background-subtle_pink {
  background-color: #f9dde0;
}
.theme-dark .background-subtle_pink {
  background-color: #473134;
}

.theme-light .background-subtle_blue {
  background-color: #F2F8FA;
}
.theme-dark .background-subtle_blue {
  background-color: #303F44;
}

.theme-light .background-subtle_yellow {
  background-color: #FFF7EC;
}
.theme-dark .background-subtle_yellow {
  background-color: #665741;
}

/* ---------------------------------------------------------------- color underlines/border --- */
.theme-light .underline-,
.theme-light .underline-IGB_Purple {
  border-bottom: 1px solid #5e3a7e;
}
.theme-dark .underline-,
.theme-dark .underline-IGB_Purple {
  border-bottom: 1px solid #5e3a7e;
}
.theme-light .underline-.single_playlist,
.theme-light .underline-IGB_Purple.single_playlist {
  border-top: 5px solid #5e3a7e;
}
.theme-dark .underline-.single_playlist,
.theme-dark .underline-IGB_Purple.single_playlist {
  border-top: 5px solid #5e3a7e;
}
.theme-light .underline-.single_playlist .single_playlist_header a,
.theme-light .underline-IGB_Purple.single_playlist .single_playlist_header a {
  border-top: 1px solid #5e3a7e;
  background: #F5F3F7;
}
.theme-dark .underline-.single_playlist .single_playlist_header a,
.theme-dark .underline-IGB_Purple.single_playlist .single_playlist_header a {
  border-top: 1px solid #5e3a7e;
  background: #42344F;
}

.theme-light .underline-IGB_Pink {
  border-bottom: 1px solid #f2566e;
}
.theme-dark .underline-IGB_Pink {
  border-bottom: 1px solid #f2566e;
}
.theme-light .underline-IGB_Pink.single_playlist {
  border-top: 5px solid #f2566e;
}
.theme-dark .underline-IGB_Pink.single_playlist {
  border-top: 5px solid #f2566e;
}
.theme-light .underline-IGB_Pink.single_playlist .single_playlist_header a {
  border-top: 1px solid #f2566e;
  background: #f9dde0;
}
.theme-dark .underline-IGB_Pink.single_playlist .single_playlist_header a {
  border-top: 1px solid #f2566e;
  background: #473134;
}

.theme-light .underline-IGB_Blue {
  border-bottom: 1px solid #45acce;
}
.theme-dark .underline-IGB_Blue {
  border-bottom: 1px solid #45acce;
}
.theme-light .underline-IGB_Blue.single_playlist {
  border-top: 5px solid #45acce;
}
.theme-dark .underline-IGB_Blue.single_playlist {
  border-top: 5px solid #45acce;
}
.theme-light .underline-IGB_Blue.single_playlist .single_playlist_header a {
  border-top: 1px solid #45acce;
  background: #F2F8FA;
}
.theme-dark .underline-IGB_Blue.single_playlist .single_playlist_header a {
  border-top: 1px solid #45acce;
  background: #303F44;
}

.theme-light .underline-IGB_Yellow {
  border-bottom: 1px solid #fbad41;
}
.theme-dark .underline-IGB_Yellow {
  border-bottom: 1px solid #fbad41;
}
.theme-light .underline-IGB_Yellow.single_playlist {
  border-top: 5px solid #fbad41;
}
.theme-dark .underline-IGB_Yellow.single_playlist {
  border-top: 5px solid #fbad41;
}
.theme-light .underline-IGB_Yellow.single_playlist .single_playlist_header a {
  border-top: 1px solid #fbad41;
  background: #FFF7EC;
}
.theme-dark .underline-IGB_Yellow.single_playlist .single_playlist_header a {
  border-top: 1px solid #fbad41;
  background: #665741;
}

.theme-light .underline-IGB_Dark {
  border-bottom: 1px solid #393939;
}
.theme-dark .underline-IGB_Dark {
  border-bottom: 1px solid #d6d6d6;
}
.theme-light .underline-IGB_Dark.single_playlist {
  border-top: 5px solid #393939;
}
.theme-dark .underline-IGB_Dark.single_playlist {
  border-top: 5px solid #d6d6d6;
}
.theme-light .underline-IGB_Dark.single_playlist .single_playlist_header a {
  border-top: 1px solid #393939;
  background: #F5F3F7;
}
.theme-dark .underline-IGB_Dark.single_playlist .single_playlist_header a {
  border-top: 1px solid #d6d6d6;
  background: #393939;
}

a,
a:visited {
  font-weight: 500;
}
.theme-light a,
.theme-light a:visited {
  color: #45acce;
  text-decoration-color: rgba(69, 172, 206, 0.5);
}
.theme-dark a,
.theme-dark a:visited {
  color: #fbad41;
  text-decoration-color: rgba(251, 173, 65, 0.5);
}
.theme-light a:hover, .theme-light a:target, .theme-light a:focus,
.theme-light a:visited:hover,
.theme-light a:visited:target,
.theme-light a:visited:focus {
  color: #5e3a7e;
  text-decoration-color: #45acce;
}
.theme-dark a:hover, .theme-dark a:target, .theme-dark a:focus,
.theme-dark a:visited:hover,
.theme-dark a:visited:target,
.theme-dark a:visited:focus {
  color: #FF6687;
  text-decoration-color: #fbad41;
}

input[type=submit],
.wp-element-button,
.wp-element-button:visited,
.wp-block-button__link,
.wp-block-button__link:visited,
a.primary_button,
a.primary_button:visited {
  display: inline-block;
  border-radius: 3px;
  position: relative;
  padding: 0.8em 2em;
  background-color: transparent;
  margin-left: 0.5em;
  z-index: 9;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.12);
}
.theme-light input[type=submit],
.theme-light .wp-element-button,
.theme-light .wp-element-button:visited,
.theme-light .wp-block-button__link,
.theme-light .wp-block-button__link:visited,
.theme-light a.primary_button,
.theme-light a.primary_button:visited {
  color: #ffffff;
}
.theme-dark input[type=submit],
.theme-dark .wp-element-button,
.theme-dark .wp-element-button:visited,
.theme-dark .wp-block-button__link,
.theme-dark .wp-block-button__link:visited,
.theme-dark a.primary_button,
.theme-dark a.primary_button:visited {
  color: #ffffff;
}
input[type=submit]:after,
.wp-element-button:after,
.wp-element-button:visited:after,
.wp-block-button__link:after,
.wp-block-button__link:visited:after,
a.primary_button:after,
a.primary_button:visited:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: skew(-18deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 3px;
  z-index: -1;
}
.theme-light input[type=submit]:after,
.theme-light .wp-element-button:after,
.theme-light .wp-element-button:visited:after,
.theme-light .wp-block-button__link:after,
.theme-light .wp-block-button__link:visited:after,
.theme-light a.primary_button:after,
.theme-light a.primary_button:visited:after {
  background-color: #45acce;
  border: 2px solid transparent;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark input[type=submit]:after,
.theme-dark .wp-element-button:after,
.theme-dark .wp-element-button:visited:after,
.theme-dark .wp-block-button__link:after,
.theme-dark .wp-block-button__link:visited:after,
.theme-dark a.primary_button:after,
.theme-dark a.primary_button:visited:after {
  background-color: #45acce;
  border: 2px solid transparent;
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
.theme-light input[type=submit]:hover, .theme-light input[type=submit]:focus,
.theme-light .wp-element-button:hover,
.theme-light .wp-element-button:focus,
.theme-light .wp-element-button:visited:hover,
.theme-light .wp-element-button:visited:focus,
.theme-light .wp-block-button__link:hover,
.theme-light .wp-block-button__link:focus,
.theme-light .wp-block-button__link:visited:hover,
.theme-light .wp-block-button__link:visited:focus,
.theme-light a.primary_button:hover,
.theme-light a.primary_button:focus,
.theme-light a.primary_button:visited:hover,
.theme-light a.primary_button:visited:focus {
  color: #ffffff;
}
.theme-dark input[type=submit]:hover, .theme-dark input[type=submit]:focus,
.theme-dark .wp-element-button:hover,
.theme-dark .wp-element-button:focus,
.theme-dark .wp-element-button:visited:hover,
.theme-dark .wp-element-button:visited:focus,
.theme-dark .wp-block-button__link:hover,
.theme-dark .wp-block-button__link:focus,
.theme-dark .wp-block-button__link:visited:hover,
.theme-dark .wp-block-button__link:visited:focus,
.theme-dark a.primary_button:hover,
.theme-dark a.primary_button:focus,
.theme-dark a.primary_button:visited:hover,
.theme-dark a.primary_button:visited:focus {
  color: #ffffff;
}
.theme-light input[type=submit]:hover:after, .theme-light input[type=submit]:focus:after,
.theme-light .wp-element-button:hover:after,
.theme-light .wp-element-button:focus:after,
.theme-light .wp-element-button:visited:hover:after,
.theme-light .wp-element-button:visited:focus:after,
.theme-light .wp-block-button__link:hover:after,
.theme-light .wp-block-button__link:focus:after,
.theme-light .wp-block-button__link:visited:hover:after,
.theme-light .wp-block-button__link:visited:focus:after,
.theme-light a.primary_button:hover:after,
.theme-light a.primary_button:focus:after,
.theme-light a.primary_button:visited:hover:after,
.theme-light a.primary_button:visited:focus:after {
  background-color: #f2566e;
  border: 2px solid #ffffff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}
.theme-dark input[type=submit]:hover:after, .theme-dark input[type=submit]:focus:after,
.theme-dark .wp-element-button:hover:after,
.theme-dark .wp-element-button:focus:after,
.theme-dark .wp-element-button:visited:hover:after,
.theme-dark .wp-element-button:visited:focus:after,
.theme-dark .wp-block-button__link:hover:after,
.theme-dark .wp-block-button__link:focus:after,
.theme-dark .wp-block-button__link:visited:hover:after,
.theme-dark .wp-block-button__link:visited:focus:after,
.theme-dark a.primary_button:hover:after,
.theme-dark a.primary_button:focus:after,
.theme-dark a.primary_button:visited:hover:after,
.theme-dark a.primary_button:visited:focus:after {
  background-color: #f2566e;
  border: 2px solid #d6d6d6;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}

.secondary_button,
a.secondary_button,
a.secondary_button:visited,
.fake_secondary_button {
  padding: 0.5em 1.5em;
}
.theme-light .secondary_button,
.theme-light a.secondary_button,
.theme-light a.secondary_button:visited,
.theme-light .fake_secondary_button {
  background-color: transparent;
  color: #5e3a7e;
  border: 2px solid #5e3a7e;
}
.theme-dark .secondary_button,
.theme-dark a.secondary_button,
.theme-dark a.secondary_button:visited,
.theme-dark .fake_secondary_button {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.theme-light .secondary_button:hover, .theme-light .secondary_button:focus,
.theme-light a.secondary_button:hover,
.theme-light a.secondary_button:focus,
.theme-light a.secondary_button:visited:hover,
.theme-light a.secondary_button:visited:focus,
.theme-light .fake_secondary_button:hover,
.theme-light .fake_secondary_button:focus {
  background-color: #5e3a7e;
  color: #ffffff;
  border: 2px solid #000000;
}
.theme-dark .secondary_button:hover, .theme-dark .secondary_button:focus,
.theme-dark a.secondary_button:hover,
.theme-dark a.secondary_button:focus,
.theme-dark a.secondary_button:visited:hover,
.theme-dark a.secondary_button:visited:focus,
.theme-dark .fake_secondary_button:hover,
.theme-dark .fake_secondary_button:focus {
  background-color: #f2566e;
  color: #000000;
  border: 2px solid #ffffff;
}

.subtle_overlay_button,
a.subtle_overlay_button,
a.subtle_overlay_button:visited {
  font-weight: 300;
  padding: 0.5em 1.5em;
}
.theme-light .subtle_overlay_button,
.theme-light a.subtle_overlay_button,
.theme-light a.subtle_overlay_button:visited {
  background-color: rgba(255, 255, 255, 0.7);
  color: #5e3a7e;
  border: 2px solid #5e3a7e;
}
.theme-dark .subtle_overlay_button,
.theme-dark a.subtle_overlay_button,
.theme-dark a.subtle_overlay_button:visited {
  background-color: rgba(41, 41, 41, 0.7);
  color: #ffffff;
  border: 2px solid #ffffff;
}
.theme-light .subtle_overlay_button:hover, .theme-light .subtle_overlay_button:focus,
.theme-light a.subtle_overlay_button:hover,
.theme-light a.subtle_overlay_button:focus,
.theme-light a.subtle_overlay_button:visited:hover,
.theme-light a.subtle_overlay_button:visited:focus {
  background-color: #5e3a7e;
  color: #ffffff;
  border: 2px solid #000000;
}
.theme-dark .subtle_overlay_button:hover, .theme-dark .subtle_overlay_button:focus,
.theme-dark a.subtle_overlay_button:hover,
.theme-dark a.subtle_overlay_button:focus,
.theme-dark a.subtle_overlay_button:visited:hover,
.theme-dark a.subtle_overlay_button:visited:focus {
  background-color: #f2566e;
  color: #000000;
  border: 2px solid #ffffff;
}

.safe-exit-button {
  position: fixed;
  top: 30vh;
  display: flex;
  right: -3.4em;
  transform: rotate(90deg);
  z-index: 999;
  filter: drop-shadow(1px -5px 15px rgba(50, 50, 50, 0.45)) drop-shadow(3px -2px 7px rgba(50, 50, 50, 0.35)) drop-shadow(1px 2px 2px rgba(50, 50, 50, 0.8));
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  .safe-exit-button {
    top: 57vh;
  }
}
.safe-exit-button a,
.safe-exit-button a:visited {
  display: inline-block;
  clip-path: polygon(0 0, 88% 0%, 100% 100%, 12% 100%);
  padding: 0.75em 2em 0.55em 2em;
}
.theme-light .safe-exit-button a,
.theme-light .safe-exit-button a:visited {
  background: #f2566e;
  color: #ffffff;
}
.theme-dark .safe-exit-button a,
.theme-dark .safe-exit-button a:visited {
  background: #f2566e;
  color: #ffffff;
}
.theme-light .safe-exit-button a:hover, .theme-light .safe-exit-button a:target, .theme-light .safe-exit-button a:focus,
.theme-light .safe-exit-button a:visited:hover,
.theme-light .safe-exit-button a:visited:target,
.theme-light .safe-exit-button a:visited:focus {
  background: #5e3a7e;
  color: #ffffff;
}
.theme-dark .safe-exit-button a:hover, .theme-dark .safe-exit-button a:target, .theme-dark .safe-exit-button a:focus,
.theme-dark .safe-exit-button a:visited:hover,
.theme-dark .safe-exit-button a:visited:target,
.theme-dark .safe-exit-button a:visited:focus {
  background: #5e3a7e;
  color: #ffffff;
}
.safe-exit-button a svg,
.safe-exit-button a:visited svg {
  margin-left: 2px;
  padding-left: 2px;
}

svg.file_icon {
  height: 1.5em;
  width: 1.5em;
  margin: -0.5em -1em -0.5em 1em;
}

.download_button.centered {
  text-align: center;
  margin: 4em auto 2em auto;
}

p, blockquote {
  max-width: 90ch;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: clamp(2.14rem, 6.16vw - 0.94rem, 10.77rem);
  line-height: 1.08;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
}
.theme-light h1 > span {
  color: #f2566e;
}
.theme-dark h1 > span {
  color: #f2566e;
}

h2 {
  font-size: clamp(1.46rem, 2.79vw + 0.07rem, 5.37rem);
  line-height: 1;
  font-weight: 700;
  margin-top: 0.5em;
}

h3 {
  font-size: clamp(1.39rem, 2vw + 0.39rem, 4.19rem);
  line-height: 1;
  font-weight: 700;
  margin-top: 0.5em;
}

h4 {
  font-size: clamp(1.33rem, 1.39vw + 0.63rem, 3.28rem);
  line-height: 1;
  font-weight: 500;
  margin-top: 0.5em;
}

h5 {
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
  line-height: 1;
  font-weight: 300;
  margin-top: 0.5em;
}

h6 {
  font-size: clamp(1.2rem, 0.57vw + 0.91rem, 2rem);
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.5em;
  margin-bottom: 0;
}

use {
  padding: 0;
  width: 100%;
  display: block;
}

.feature_frame {
  width: 50%;
  height: auto;
}

.svg_line {
  fill: transparent;
  stroke-width: 3.4%;
  stroke-linecap: square;
  stroke-linejoin: round;
}
.feature_frame .svg_line {
  stroke-dasharray: 290;
  animation: dash 2.15s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.feature_frame .svg_line:nth-of-type(2) {
  animation-delay: 100ms;
}
.feature_frame .svg_line:nth-of-type(3) {
  animation-delay: 140ms;
}
.svg_line.thin_line {
  stroke-width: 0.3rem;
}
.svg_line.blue {
  stroke: #45acce;
}
.svg_line.pink {
  stroke: #f2566e;
}
.svg_line.purple {
  stroke: #5e3a7e;
}
.svg_line.yellow {
  stroke: #fbad41;
}

.masked_image_container_single {
  -webkit-clip-path: url(#image_mask_slash);
  clip-path: url(#image_mask_slash);
}
.masked_image_container_single img,
.masked_image_container_single video {
  height: 100%;
  object-fit: cover;
}

.masked_image_container_double {
  -webkit-clip-path: url(#image_mask_double_slash);
  clip-path: url(#image_mask_double_slash);
  margin: -2% 0;
}
.masked_image_container_double img,
.masked_image_container_double video {
  height: 100%;
  object-fit: cover;
}

.icon-VK-dims {
  width: 30px;
  height: 30px;
}

.icon-doc-dims {
  width: 335px;
  height: 450px;
}

.icon-facebook-dims {
  width: 30px;
  height: 30px;
}

.icon-instagram-dims {
  width: 30px;
  height: 30px;
}

.icon-instagramES-dims {
  width: 30px;
  height: 30px;
}

.icon-linkedin-dims {
  width: 30px;
  height: 30px;
}

.icon-mp3-dims {
  width: 335px;
  height: 447px;
}

.icon-mp4-dims {
  width: 335px;
  height: 447px;
}

.icon-pdf-dims {
  width: 359px;
  height: 447px;
}

.icon-ppt-dims {
  width: 335px;
  height: 447px;
}

.icon-spotify-dims {
  width: 30px;
  height: 30px;
}

.icon-svg-dims {
  width: 335px;
  height: 447px;
}

.icon-tiktok-dims {
  width: 30px;
  height: 30px;
}

.icon-tumblr-dims {
  width: 30px;
  height: 30px;
}

.icon-twitch-dims {
  width: 30px;
  height: 30px;
}

.icon-website-dims {
  width: 30px;
  height: 30px;
}

.icon-x-dims {
  width: 30px;
  height: 30px;
}

.icon-youtube-dims {
  width: 30px;
  height: 30px;
}

.icon-zip-dims {
  width: 335px;
  height: 447px;
}

/**
 * NOTE: these styles are not actually controlling the post
 * icons because they are embeded with the <use> tag, so the
 * styles have to be included in the SVG symbol directly.
 * (thanks a *lot* CSS  (╯°□°）╯︵ ┻━┻  )
 * so if you need to update post type icon styles, change the CSS at:
 *
 *** 		/_assets/svg/content-type-icons.php			***
 *
 * thank you for coming to my TED talk
 *			┬──┬ ノ( ゜-゜ノ)
 */
.theme-light path[class*=icon_purple] {
  fill: #5e3a7e;
}
.theme-dark path[class*=icon_purple] {
  fill: #5e3a7e;
}

.theme-light path[class*=icon_pink],
.theme-light polygon[class*=icon_pink] {
  fill: #f2566e;
}
.theme-dark path[class*=icon_pink],
.theme-dark polygon[class*=icon_pink] {
  fill: #f2566e;
}

.theme-light path[class*=icon_blue] {
  fill: #45acce;
}
.theme-dark path[class*=icon_blue] {
  fill: #45acce;
}

.theme-light path[class*=icon_yellow] {
  fill: #fbad41;
}
.theme-dark path[class*=icon_yellow] {
  fill: #fbad41;
}

.theme-light path[class*=icon_grey] {
  fill: #393939;
}
.theme-dark path[class*=icon_grey] {
  fill: #d6d6d6;
}

.search_icon {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(2);
  width: 16px;
  height: 16px;
  border: 2px solid;
  border-radius: 100%;
  margin-left: -4px;
  margin-top: -4px;
}
.search_icon:after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 2px;
  height: 8px;
  background: currentColor;
  transform: rotate(-45deg);
  top: 10px;
  left: 12px;
}

#page.sticky-container {
  position: relative;
}

#content {
  max-width: 100vw;
}
@media (max-width: 900px) {
  #content {
    margin-top: -25px;
  }
}

.wp-block-embed,
.contained_width,
.wp-block-pullquote {
  width: 85vw;
  max-width: 90ch;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3em;
  padding-right: 3em;
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  .wp-block-embed,
  .contained_width,
  .wp-block-pullquote {
    padding-left: 1em;
    padding-right: 1em;
  }
}

.full_width {
  width: 100%;
  max-width: 100vw;
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  .full_width {
    padding-left: 2em;
    padding-right: 2em;
  }
}

.alignwide,
.wide_width {
  width: 96vw;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4em;
  padding-right: 4em;
}

.flex-row {
  display: flex;
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  .flex-row {
    padding-left: 2em;
    padding-right: 2em;
  }
}

.space-between {
  justify-content: space-between;
  align-items: center;
}

.two_column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  .two_column {
    padding-left: 2em;
    padding-right: 2em;
  }
}
.two_column > * {
  width: 48%;
  padding: 2em;
}
.two_column > * * {
  max-width: 100%;
}
@media (max-width: 900px) {
  .two_column {
    display: block;
  }
  .two_column > * {
    width: 100%;
  }
}
@media (orientation: portrait) {
  .two_column {
    display: block;
  }
  .two_column > * {
    width: 100%;
  }
}

main.post_main > p,
main.post_main > h2,
main.post_main > h3,
main.post_main > h4,
main.post_main > h5,
main.post_main > ol,
main.post_main > ul {
  max-width: 90ch;
  padding-left: 3em;
  padding-right: 3em;
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  main.post_main > p,
  main.post_main > h2,
  main.post_main > h3,
  main.post_main > h4,
  main.post_main > h5,
  main.post_main > ol,
  main.post_main > ul {
    padding-left: 4em;
    padding-right: 4em;
  }
}
main.post_main > h4,
main.post_main > h5 {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
main.post_main > h1,
main.post_main > h2,
main.post_main > h3 {
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  main.post_main > h1,
  main.post_main > h2,
  main.post_main > h3 {
    padding-left: 3em;
    padding-right: 3em;
  }
}

.content_grid_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 1800px) {
  .content_grid_container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .content_grid_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .content_grid_container {
    grid-template-columns: repeat(1, 1fr);
  }
}

main#main > p {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  main#main > p {
    padding-left: 2em;
    padding-right: 2em;
  }
}

h1.wp-block-heading {
  padding: 1em 0.25em;
}

.post_header {
  text-align: center;
  width: 90vw;
  margin: 1em auto;
}
.post_header h1 {
  font-size: clamp(3.39rem, 3.68vw + 1.55rem, 8.54rem);
  max-width: 30ch;
  margin: 1em auto 0.35em auto;
  text-align: center;
  line-height: 1.1;
  text-wrap: balance;
}
.post_header .post_date {
  margin-bottom: 1em;
}
.post_header .featured_image {
  padding: 8px;
  height: 65vh;
  margin: 1em 0 5em 0;
}
.theme-light .post_header .featured_image {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #ffffff;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark .post_header .featured_image {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #292929;
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
.post_header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post_header .related_terms {
  margin-top: -8em;
  margin-bottom: 8em;
  margin-right: 0.5em;
}

.post_main > * {
  margin-left: auto;
  margin-right: auto;
}

.main_eduguide_download_button {
  margin: -2em auto 3em auto;
}

.header_post_type_icon {
  padding: 1em;
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
  width: 25vw;
  max-width: 250px;
  height: auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  display: inline-block;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
  text-align: center;
}
.header_post_type_icon svg {
  max-width: 100%;
  height: auto;
}
.theme-dark .header_post_type_icon {
  filter: brightness(1.24);
}
.header_post_type_icon.smaller {
  transform: scale(0.45);
  transform-origin: bottom left;
  margin: -8.9em 0 1em -2em;
  max-width: 50%;
}

.related_playlist_container h6 {
  text-align: center;
  margin-top: 2em;
}

.genaric_title_area {
  text-align: center;
  padding: 3em 2em 1em 2em;
}
.genaric_title_area h1 span {
  font-size: clamp(1.39rem, 2vw + 0.39rem, 4.19rem);
}
.genaric_title_area h1 span.pipe {
  font-weight: 100;
  font-size: clamp(2.14rem, 6.16vw - 0.94rem, 10.77rem);
  opacity: 0.5;
  display: inline-block;
  margin: 0 10px 0 0;
}
.genaric_title_area h1 span span {
  font-weight: 200;
}

body.home #content {
  position: relative;
  top: 0;
}
body.home .featured_video {
  text-align: center;
}
body.home .featured_video h2,
body.home .featured_video h3,
body.home .featured_video h4,
body.home .featured_video h5,
body.home .featured_video h6 {
  max-width: 30ch;
  margin: 0.5em auto 1em auto;
}

.program_boxes {
  align-items: stretch;
  max-width: 99vw;
}

section.program_box {
  padding: 3.8em 4em;
  margin: 2em;
  clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
  transition: all 150ms ease-in-out;
}
@media (max-width: 900px) {
  section.program_box {
    padding: 3em;
    margin: 0.5em 1em;
  }
}

section.program_box h2.wp-block-heading span {
  color: #5e3a7e;
}

section.program_box a.secondary_button {
  display: inline-block;
  margin: 1em auto 0 auto;
}

.program_boxes > section.program_box {
  flex: 1;
}

article.single_playlist {
  background-repeat: no-repeat;
  background-size: auto 120%;
  margin: 3em 0 8em 0;
  background-position: 100% 50%;
}
.theme-light article.single_playlist {
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark article.single_playlist {
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
article.single_playlist:nth-of-type(2n) {
  background-position: 0% 50%;
}
article.single_playlist:nth-of-type(2n) .two_column {
  flex-direction: row-reverse;
}
.theme-light article.single_playlist:nth-of-type(2n) .two_column {
  background-image: linear-gradient(-84deg, white 35%, rgba(255, 255, 255, 0) 55%);
}
.theme-dark article.single_playlist:nth-of-type(2n) .two_column {
  background-image: linear-gradient(-84deg, #292929 35%, rgba(41, 41, 41, 0) 55%);
}
.theme-light article.single_playlist .two_column {
  background-image: linear-gradient(84deg, white 35%, rgba(255, 255, 255, 0) 55%);
}
.theme-dark article.single_playlist .two_column {
  background-image: linear-gradient(84deg, #292929 35%, rgba(41, 41, 41, 0) 55%);
}
article.single_playlist .single_playlist_header {
  margin-top: -4em;
}
.theme-light article.single_playlist .single_playlist_header {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}
.theme-dark article.single_playlist .single_playlist_header {
  background: rgba(41, 41, 41, 0.985);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}
article.single_playlist .single_playlist_header h3 {
  margin: 0;
  padding: 0;
}
article.single_playlist .single_playlist_header h3 a span.subhead {
  display: block;
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
  font-weight: 200;
}
.theme-light article.single_playlist .single_playlist_header h3 a span.subhead {
  text-decoration-color: transparent;
  color: #292929;
}
.theme-dark article.single_playlist .single_playlist_header h3 a span.subhead {
  text-decoration-color: transparent;
  color: #ffffff;
}
article.single_playlist .single_playlist_header a {
  display: block;
  border-radius: 4px;
  padding: 1em;
}
article.single_playlist .playlist_description {
  padding: 2em;
  border-radius: 4px;
  margin-bottom: -1em;
}
.theme-light article.single_playlist .playlist_description {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}
.theme-dark article.single_playlist .playlist_description {
  background: rgba(41, 41, 41, 0.85);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}

.playlist_header {
  position: relative;
  width: 100%;
  margin-top: 50px;
  height: auto;
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 100px, red 200px);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 100px, red 200px);
}
.playlist_header .playlist_header_image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 2;
}
.playlist_header .playlist_header_text {
  position: relative;
  z-index: 99;
  height: 100%;
  padding: 290px 2em 19vh 2em;
}
.theme-light .playlist_header .playlist_header_text {
  background-image: linear-gradient(34deg, rgba(255, 255, 255, 0.65) 45%, rgba(255, 255, 255, 0.05) 70%);
  text-shadow: 0 1px 20px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(0, 0, 0, 0.9), -1px -1px 0 rgba(255, 255, 255, 0.99);
}
.theme-dark .playlist_header .playlist_header_text {
  background-image: linear-gradient(34deg, rgba(41, 41, 41, 0.65) 45%, rgba(41, 41, 41, 0.05) 70%);
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.9), -1px -1px 0 rgba(255, 255, 255, 0.99);
}
.playlist_header .playlist_header_text .header_post_type_icon {
  background: none;
  box-shadow: none;
  margin-bottom: -1.2em;
  margin-left: -2.5em;
  padding: 0;
}

.playlist_details_row {
  margin-top: -15vh;
  margin-bottom: 3em;
  position: relative;
  z-index: 999;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .playlist_details_row {
    flex-wrap: wrap;
  }
}
.playlist_details_row .playlist_description {
  display: inline-block;
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
  padding: 1em 2em;
  margin: -1em 2em 0 0;
  width: 60vw;
  min-width: 400px;
}
.theme-light .playlist_details_row .playlist_description {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark .playlist_details_row .playlist_description {
  background: rgba(41, 41, 41, 0.92);
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
.playlist_details_row .partnership {
  text-align: center;
  padding: 1em;
}
.theme-light .playlist_details_row .partnership {
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 9px rgba(255, 255, 255, 0.35)) drop-shadow(2px 0 0 rgba(255, 255, 255, 0.98)) drop-shadow(0 2px 0 rgba(255, 255, 255, 0.98)) drop-shadow(-2px 0 0 rgba(255, 255, 255, 0.98)) drop-shadow(0 -2px 0 rgba(255, 255, 255, 0.98));
}
.theme-dark .playlist_details_row .partnership {
  filter: drop-shadow(0 0 1px rgba(41, 41, 41, 0.9)) drop-shadow(0 0 9px rgba(41, 41, 41, 0.35)) drop-shadow(2px 0 0 rgba(41, 41, 41, 0.98)) drop-shadow(0 2px 0 rgba(41, 41, 41, 0.98)) drop-shadow(-2px 0 0 rgba(41, 41, 41, 0.98)) drop-shadow(0 -2px 0 rgba(41, 41, 41, 0.98));
}
.theme-light .playlist_details_row .partnership svg * {
  fill: #292929;
}
.theme-dark .playlist_details_row .partnership svg * {
  fill: #ffffff;
}
.playlist_details_row .partnership img {
  max-height: 90px;
  width: auto;
  max-width: 200px;
  height: auto;
}
.theme-light .playlist_details_row .partnership img {
  color: #292929;
}
.theme-dark .playlist_details_row .partnership img {
  color: #ffffff;
}
.theme-dark .playlist_details_row .partnership img {
  filter: invert(100%);
}
.playlist_details_row .partnership img.partner_logo {
  margin: 0.5em 1em;
}

.series_trailer {
  position: relative;
  z-index: 999;
  margin: 7em auto;
  padding: 2em 1em;
  text-align: center;
}
.series_trailer h4 {
  margin: -5em 0 0.5em 0;
}
.series_trailer iframe {
  padding: 6px;
  margin-bottom: -5em;
}
.theme-light .series_trailer iframe {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #ffffff;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark .series_trailer iframe {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #292929;
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}

.episode_list_container {
  display: flex;
  flex-direction: column;
}

.page-template-archive-glossary nav.breadcrumb_navigation {
  display: none;
}

section.glossary_header > div,
section.glossary_header > p {
  padding: 1em 2em;
  max-width: 100%;
}

sub.term_category {
  font-size: clamp(1.2rem, 0.57vw + 0.91rem, 2rem);
  font-weight: 500;
}
.theme-light sub.term_category {
  color: #45acce;
}
.theme-dark sub.term_category {
  color: #fbad41;
}

dfn.term_category_def {
  font-style: normal;
  cursor: help;
}

footer.glossary_term_bottom_border {
  height: 5px;
}

.glossary_list {
  padding: 3em;
}
.glossary_list .single_term {
  margin: 2em 0;
  padding: 0;
}
.theme-light .glossary_list .single_term {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  background-image: linear-gradient(171deg, #ffffff 10%, whitesmoke 98%);
}
.theme-dark .glossary_list .single_term {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  background-image: linear-gradient(171deg, #292929 10%, #1f1f1f 98%);
}
.glossary_list .single_term h3 {
  padding: 0;
}
.glossary_list .single_term header {
  padding: 0.5em 2em 0 2em;
}
@media (max-width: 600px) {
  .glossary_list .single_term header {
    padding: 0;
  }
}
.glossary_list .single_term main {
  padding: 0 2em 2em 2em;
}
@media (max-width: 600px) {
  .glossary_list .single_term main {
    padding: 0;
  }
}
.glossary_list .single_term img {
  margin: -2em -2em -2.4em -2em;
  width: calc(100% + 4em);
  max-width: none !important;
  object-fit: cover;
}
@media (max-width: 600px) {
  .glossary_list .single_term img {
    max-height: 150px;
  }
}
.theme-light .glossary_list .single_term img {
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark .glossary_list .single_term img {
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}

a article.single_term,
a:visited article.single_term {
  transition: all 200ms ease-in-out;
  border: 1px solid transparent;
  border-bottom: none;
}
.theme-light a article.single_term,
.theme-light a:visited article.single_term {
  background: #ffffff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  color: #292929;
}
.theme-dark a article.single_term,
.theme-dark a:visited article.single_term {
  background: #292929;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}
a article.single_term main,
a:visited article.single_term main {
  font-weight: 200;
}
a article.single_term main p,
a:visited article.single_term main p {
  text-decoration: none !important;
}
.theme-light a:hover article.single_term, .theme-light a:target article.single_term, .theme-light a:focus article.single_term,
.theme-light a:visited:hover article.single_term,
.theme-light a:visited:target article.single_term,
.theme-light a:visited:focus article.single_term {
  background: #f0f0f0;
}
.theme-dark a:hover article.single_term, .theme-dark a:target article.single_term, .theme-dark a:focus article.single_term,
.theme-dark a:visited:hover article.single_term,
.theme-dark a:visited:target article.single_term,
.theme-dark a:visited:focus article.single_term {
  background: #1a1a1a;
}
.theme-light a:hover article.single_term.color-IGB_Purple, .theme-light a:target article.single_term.color-IGB_Purple, .theme-light a:focus article.single_term.color-IGB_Purple,
.theme-light a:visited:hover article.single_term.color-IGB_Purple,
.theme-light a:visited:target article.single_term.color-IGB_Purple,
.theme-light a:visited:focus article.single_term.color-IGB_Purple {
  border: 1px solid rgba(94, 58, 126, 0.5);
  border-bottom: none;
}
.theme-dark a:hover article.single_term.color-IGB_Purple, .theme-dark a:target article.single_term.color-IGB_Purple, .theme-dark a:focus article.single_term.color-IGB_Purple,
.theme-dark a:visited:hover article.single_term.color-IGB_Purple,
.theme-dark a:visited:target article.single_term.color-IGB_Purple,
.theme-dark a:visited:focus article.single_term.color-IGB_Purple {
  border: 1px solid rgba(94, 58, 126, 0.5);
  border-bottom: none;
}
.theme-light a:hover article.single_term.color-IGB_Pink, .theme-light a:target article.single_term.color-IGB_Pink, .theme-light a:focus article.single_term.color-IGB_Pink,
.theme-light a:visited:hover article.single_term.color-IGB_Pink,
.theme-light a:visited:target article.single_term.color-IGB_Pink,
.theme-light a:visited:focus article.single_term.color-IGB_Pink {
  border: 1px solid rgba(242, 86, 110, 0.5);
  border-bottom: none;
}
.theme-dark a:hover article.single_term.color-IGB_Pink, .theme-dark a:target article.single_term.color-IGB_Pink, .theme-dark a:focus article.single_term.color-IGB_Pink,
.theme-dark a:visited:hover article.single_term.color-IGB_Pink,
.theme-dark a:visited:target article.single_term.color-IGB_Pink,
.theme-dark a:visited:focus article.single_term.color-IGB_Pink {
  border: 1px solid rgba(242, 86, 110, 0.5);
  border-bottom: none;
}
.theme-light a:hover article.single_term.color-IGB_Blue, .theme-light a:target article.single_term.color-IGB_Blue, .theme-light a:focus article.single_term.color-IGB_Blue,
.theme-light a:visited:hover article.single_term.color-IGB_Blue,
.theme-light a:visited:target article.single_term.color-IGB_Blue,
.theme-light a:visited:focus article.single_term.color-IGB_Blue {
  border: 1px solid rgba(69, 172, 206, 0.5);
  border-bottom: none;
}
.theme-dark a:hover article.single_term.color-IGB_Blue, .theme-dark a:target article.single_term.color-IGB_Blue, .theme-dark a:focus article.single_term.color-IGB_Blue,
.theme-dark a:visited:hover article.single_term.color-IGB_Blue,
.theme-dark a:visited:target article.single_term.color-IGB_Blue,
.theme-dark a:visited:focus article.single_term.color-IGB_Blue {
  border: 1px solid rgba(69, 172, 206, 0.5);
  border-bottom: none;
}
.theme-light a:hover article.single_term.color-IGB_Yellow, .theme-light a:target article.single_term.color-IGB_Yellow, .theme-light a:focus article.single_term.color-IGB_Yellow,
.theme-light a:visited:hover article.single_term.color-IGB_Yellow,
.theme-light a:visited:target article.single_term.color-IGB_Yellow,
.theme-light a:visited:focus article.single_term.color-IGB_Yellow {
  border: 1px solid rgba(251, 173, 65, 0.5);
  border-bottom: none;
}
.theme-dark a:hover article.single_term.color-IGB_Yellow, .theme-dark a:target article.single_term.color-IGB_Yellow, .theme-dark a:focus article.single_term.color-IGB_Yellow,
.theme-dark a:visited:hover article.single_term.color-IGB_Yellow,
.theme-dark a:visited:target article.single_term.color-IGB_Yellow,
.theme-dark a:visited:focus article.single_term.color-IGB_Yellow {
  border: 1px solid rgba(251, 173, 65, 0.5);
  border-bottom: none;
}
.theme-light a:hover article.single_term.color-IGB_Dark, .theme-light a:target article.single_term.color-IGB_Dark, .theme-light a:focus article.single_term.color-IGB_Dark,
.theme-light a:visited:hover article.single_term.color-IGB_Dark,
.theme-light a:visited:target article.single_term.color-IGB_Dark,
.theme-light a:visited:focus article.single_term.color-IGB_Dark {
  border: 1px solid rgba(57, 57, 57, 0.5);
  border-bottom: none;
}
.theme-dark a:hover article.single_term.color-IGB_Dark, .theme-dark a:target article.single_term.color-IGB_Dark, .theme-dark a:focus article.single_term.color-IGB_Dark,
.theme-dark a:visited:hover article.single_term.color-IGB_Dark,
.theme-dark a:visited:target article.single_term.color-IGB_Dark,
.theme-dark a:visited:focus article.single_term.color-IGB_Dark {
  border: 1px solid rgba(214, 214, 214, 0.5);
  border-bottom: none;
}

.single-glossary .glossary_term_header {
  margin-top: 1em;
}

.glossary_term_header .two_column {
  min-height: 70vh;
}
.glossary_term_header .two_column .col_two {
  width: 60%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .glossary_term_header .two_column .col_two {
    width: 100%;
    height: 65vw;
  }
}
@media (orientation: portrait) {
  .glossary_term_header .two_column .col_two {
    width: 100%;
    height: 65vw;
  }
}
.glossary_term_header .two_column .col_two .video_container {
  flex: 1;
  width: 100%;
  padding: 6px;
}
.glossary_term_header .two_column .col_two img,
.glossary_term_header .two_column .col_two video,
.glossary_term_header .two_column .col_two iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.glossary_term_header .definition {
  font-size: clamp(1.33rem, 1.39vw + 0.63rem, 3.28rem);
}
.glossary_term_header .definition .pronunciation {
  font-family: monospace;
  font-size: clamp(1.2rem, 0.57vw + 0.91rem, 2rem);
  font-weight: 200;
  letter-spacing: 2px;
}
.glossary_term_header .definition span.phonetic_key {
  word-wrap: pre;
}
.glossary_term_header .definition span.part_of_speech {
  font-style: italic;
}
.glossary_term_header .definition .flex-row {
  align-items: center;
  justify-content: space-between;
}
.glossary_term_header ul.term_category_list {
  list-style: none;
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
  margin: 0;
  padding: 0;
}
.glossary_term_header ul.term_category_list li {
  display: inline-block;
  padding: 3px;
}

.extended_definition {
  padding: 2em;
}
.extended_definition > * {
  margin-left: auto;
  margin-right: auto;
}

.eduguide_list {
  margin-top: 2em;
}
.eduguide_list .grid_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(371px, 1fr));
  grid-gap: 3.5em;
}
.eduguide_list .grid_container .eduguide_card {
  width: auto;
  min-width: auto;
  max-width: 100%;
  margin: 1em;
}

.single-eduguide .post_date {
  display: none;
}

.eduguide_download_button_container {
  margin: 1em auto;
  padding: 2em;
}
.eduguide_download_button_container .flex-row {
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
}
.eduguide_download_button_container .flex-row a.primary_button,
.eduguide_download_button_container .flex-row a.primary_button:visited {
  margin: auto;
}

.facetwp-facet .facetwp-checkbox.checked .facetwp-display-value {
  font-weight: 500;
}
.facetwp-facet.facetwp-facet-type {
  display: flex;
  justify-content: space-evenly;
}

#mobile_filter_toggle_button {
  display: none;
}

#main.browse_content_page h6 {
  margin: 1em 0.5em;
  display: block;
  max-width: 100%;
}
.theme-light #main.browse_content_page h6 {
  border-bottom: 1px solid rgba(94, 58, 126, 0.4);
}
.theme-dark #main.browse_content_page h6 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
#main.browse_content_page .facetwp-checkbox {
  text-wrap: balance;
}
#main.browse_content_page .facetwp-counter {
  white-space: nowrap;
}
#main.browse_content_page .alignfull {
  width: 95vw;
  margin-left: auto;
  margin-right: auto;
}
#main.browse_content_page .browse_content_main {
  position: relative;
}
#main.browse_content_page .browse_content_main .filter_column {
  width: 18vw;
  min-width: 200px;
  flex: none;
}
@media (max-width: 600px) {
  #main.browse_content_page .browse_content_main .filter_column {
    margin-left: -200px;
    position: absolute;
    top: 0;
    z-index: 99;
    transition: all 300ms ease-in-out;
  }
  .theme-light #main.browse_content_page .browse_content_main .filter_column {
    background: #ffffff;
  }
  .theme-dark #main.browse_content_page .browse_content_main .filter_column {
    background: #292929;
  }
  #main.browse_content_page .browse_content_main .filter_column .mobile_filter_sticky_container {
    position: relative;
  }
  #main.browse_content_page .browse_content_main .filter_column #mobile_filter_toggle_button {
    display: block;
    position: sticky;
    bottom: 10%;
    left: 0;
    width: 7ch;
    margin-right: -7ch;
    text-wrap: balance;
    padding: 0.25em 0 0.25em 0.25em;
    border-radius: 0 4px 4px 0;
    text-decoration: none;
    line-height: 1.1;
    text-transform: uppercase;
  }
  .theme-light #main.browse_content_page .browse_content_main .filter_column #mobile_filter_toggle_button {
    color: #ffffff;
    background-color: #45acce;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
  }
  .theme-dark #main.browse_content_page .browse_content_main .filter_column #mobile_filter_toggle_button {
    color: #ffffff;
    background-color: #45acce;
    box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
  }
  .theme-light #main.browse_content_page .browse_content_main .filter_column #mobile_filter_toggle_button:hover, .theme-light #main.browse_content_page .browse_content_main .filter_column #mobile_filter_toggle_button:focus {
    background-color: #f2566e;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  }
  .theme-dark #main.browse_content_page .browse_content_main .filter_column #mobile_filter_toggle_button:hover, .theme-dark #main.browse_content_page .browse_content_main .filter_column #mobile_filter_toggle_button:focus {
    background-color: #f2566e;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  }
}
@media (max-width: 600px) {
  #main.browse_content_page .browse_content_main .filter_column .facetwp-facet-search {
    display: none;
  }
}
@media (max-width: 600px) {
  #main.browse_content_page .browse_content_main.filter_is_open .filter_column {
    margin-left: 0;
  }
  #main.browse_content_page .browse_content_main.filter_is_open .filter_column #mobile_filter_toggle_button {
    left: 200px;
  }
}
#main.browse_content_page .browse_content_main .results_column {
  flex: 1;
}
#main.browse_content_page .facetwp-facet-type {
  justify-content: flex-start;
}
#main.browse_content_page .facetwp-facet-type > * {
  margin-right: 2.5em;
}
#main.browse_content_page .facetwp-facet-type > *:last-child {
  margin: 0;
}
#main.browse_content_page .facetwp-type-sort select {
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
  padding: 0.5em 0.75em;
  margin: 0.5em auto;
  line-height: 1.1;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  border-radius: 8px;
  transition: all 250ms ease-in-out;
}
.theme-light #main.browse_content_page .facetwp-type-sort select {
  color: #292929;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.019) 2px 2px 6px 0px inset, rgba(0, 0, 0, 0.09) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.45) 0 -1px 1px;
}
.theme-dark #main.browse_content_page .facetwp-type-sort select {
  color: #ffffff;
  border: 1px solid rgba(54, 54, 54, 0.95);
  background: rgba(41, 41, 41, 0.7);
  box-shadow: rgba(0, 0, 0, 0.19) 2px 2px 8px 0px inset, rgba(0, 0, 0, 0.25) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.75) 0 -1px 3px;
}
#main.browse_content_page .facetwp-checkbox {
  position: relative;
  padding-left: 1.5em;
}
.theme-light #main.browse_content_page .facetwp-checkbox {
  background: white;
}
.theme-dark #main.browse_content_page .facetwp-checkbox {
  background: #292929;
}
#main.browse_content_page .facetwp-checkbox:after {
  position: absolute;
  content: "";
  height: 1em;
  width: 1em;
  top: 2px;
  left: 0;
  border-radius: 4px;
}
.theme-light #main.browse_content_page .facetwp-checkbox:after {
  border: 1px solid rgba(41, 41, 41, 0.8);
}
.theme-dark #main.browse_content_page .facetwp-checkbox:after {
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.theme-light #main.browse_content_page .facetwp-checkbox.checked:after {
  background: #5e3a7e;
}
.theme-dark #main.browse_content_page .facetwp-checkbox.checked:after {
  background: #5e3a7e;
}
.theme-light #main.browse_content_page .facetwp-checkbox.checked:nth-of-type(5n + 2):after {
  background: #f2566e;
}
.theme-dark #main.browse_content_page .facetwp-checkbox.checked:nth-of-type(5n + 2):after {
  background: #f2566e;
}
.theme-light #main.browse_content_page .facetwp-checkbox.checked:nth-of-type(5n + 3):after {
  background: #fbad41;
}
.theme-dark #main.browse_content_page .facetwp-checkbox.checked:nth-of-type(5n + 3):after {
  background: #fbad41;
}
.theme-light #main.browse_content_page .facetwp-checkbox.checked:nth-of-type(5n + 4):after {
  background: #45acce;
}
.theme-dark #main.browse_content_page .facetwp-checkbox.checked:nth-of-type(5n + 4):after {
  background: #45acce;
}
.theme-light #main.browse_content_page .facetwp-checkbox.checked:nth-of-type(5n + 5):after {
  background: #393939;
}
.theme-dark #main.browse_content_page .facetwp-checkbox.checked:nth-of-type(5n + 5):after {
  background: #d6d6d6;
}
#main.browse_content_page .facetwp-facet-playlist {
  width: 100%;
}
#main.browse_content_page .facetwp-facet-playlist .fs-wrap {
  width: 100%;
}
#main.browse_content_page .facetwp-facet-playlist .fs-label-wrap {
  padding: 0.5em 1em;
  border-radius: 8px;
}
.theme-light #main.browse_content_page .facetwp-facet-playlist .fs-label-wrap {
  color: #292929;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.019) 2px 2px 6px 0px inset, rgba(0, 0, 0, 0.09) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.45) 0 -1px 1px;
}
.theme-dark #main.browse_content_page .facetwp-facet-playlist .fs-label-wrap {
  color: #ffffff;
  border: 1px solid rgba(54, 54, 54, 0.95);
  background: rgba(41, 41, 41, 0.7);
  box-shadow: rgba(0, 0, 0, 0.19) 2px 2px 8px 0px inset, rgba(0, 0, 0, 0.25) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.75) 0 -1px 3px;
}
#main.browse_content_page .facetwp-facet-playlist .fs-label-wrap .fs-label {
  white-space: initial;
  line-height: 1.1;
}
.theme-light #main.browse_content_page .facetwp-facet-playlist .fs-dropdown,
.theme-light #main.browse_content_page .facetwp-facet-playlist .fs-search {
  color: #292929;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.019) 2px 2px 6px 0px inset, rgba(0, 0, 0, 0.09) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.45) 0 -1px 1px;
}
.theme-dark #main.browse_content_page .facetwp-facet-playlist .fs-dropdown,
.theme-dark #main.browse_content_page .facetwp-facet-playlist .fs-search {
  color: #ffffff;
  background: #292929;
  box-shadow: rgba(0, 0, 0, 0.19) 2px 2px 8px 0px inset, rgba(0, 0, 0, 0.25) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.75) 0 -1px 3px;
}
#main.browse_content_page .facetwp-facet-pagination {
  text-align: center;
}
#main.browse_content_page .facetwp-facet-pagination .facetwp-page {
  text-decoration: none;
  padding: 0.5em 1em;
  margin: 0 0.25em;
  border-radius: 2px;
}
.theme-light #main.browse_content_page .facetwp-facet-pagination .facetwp-page {
  background: rgba(230, 230, 230, 0.25);
  border: 1px solid rgba(69, 172, 206, 0.26);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}
.theme-dark #main.browse_content_page .facetwp-facet-pagination .facetwp-page {
  background: rgba(16, 16, 16, 0.25);
  border: 1px solid rgba(251, 173, 65, 0.26);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}
#main.browse_content_page .facetwp-facet-pagination .facetwp-page.active {
  text-decoration: none;
  font-weight: 200;
  opacity: 0.7;
}
.theme-light #main.browse_content_page .facetwp-facet-pagination .facetwp-page.active {
  color: #292929;
  border: 1px solid rgba(41, 41, 41, 0.15);
}
.theme-dark #main.browse_content_page .facetwp-facet-pagination .facetwp-page.active {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.theme-light #main.browse_content_page .facetwp-facet-pagination .facetwp-page:not(.active):hover, .theme-light #main.browse_content_page .facetwp-facet-pagination .facetwp-page:not(.active):target, .theme-light #main.browse_content_page .facetwp-facet-pagination .facetwp-page:not(.active):focus {
  border: 1px solid #ffffff;
  background: #45acce;
  color: #ffffff;
}
.theme-dark #main.browse_content_page .facetwp-facet-pagination .facetwp-page:not(.active):hover, .theme-dark #main.browse_content_page .facetwp-facet-pagination .facetwp-page:not(.active):target, .theme-dark #main.browse_content_page .facetwp-facet-pagination .facetwp-page:not(.active):focus {
  border: 1px solid #292929;
  background: #fbad41;
  color: #292929;
}

/*
* header styles
*
*	1. core site header styles
*	2. announcement bar
*	3. IGB logo
*	4. light/dark toggle switch
*	5. main nav toggle button
*
*/
.site_main_header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 0;
  min-height: 96px;
  z-index: 999;
  padding: 0.75rem 1.5em;
  transition: all 250ms ease-in-out;
}
.site_main_header.smaller {
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.5em;
}
.theme-light .site_main_header.smaller {
  background: rgba(255, 255, 255, 0.83);
  color: #292929;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 15px, rgba(0, 0, 0, 0.08) 0 -2px 6px, rgba(0, 0, 0, 0.18) 0px 3px 8px, rgba(0, 0, 0, 0.17) 0px 7px 15px, rgba(0, 0, 0, 0.59) 0 1px 1px;
}
.theme-dark .site_main_header.smaller {
  background: rgba(41, 41, 41, 0.83);
  color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 15px, rgba(0, 0, 0, 0.18) 0 -2px 6px, rgba(0, 0, 0, 0.28) 0px 3px 8px, rgba(0, 0, 0, 0.19) 0px 7px 15px, rgba(0, 0, 0, 0.62) 0 1px 1px;
}
@media (max-width: 600px) {
  .site_main_header.smaller {
    min-height: 82px;
  }
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  .site_main_header.smaller {
    min-height: 64px;
  }
}
.menu_is_open .site_main_header.smaller {
  background: transparent;
  box-shadow: none;
  color: #ffffff;
}
.menu_is_open .site_main_header {
  color: #ffffff;
}
.site_main_header .flex-row {
  justify-content: space-between;
  align-items: stretch;
}
.site_main_header .header_center {
  flex: 1;
  display: flex;
  align-self: center;
  justify-content: center;
  padding-right: 4em;
}
.site_main_header .header_right_side {
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .site_main_header .header_right_side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  .site_main_header .header_right_side {
    flex-direction: row;
    align-items: center;
  }
}
.site_main_header .header_right_side nav {
  margin: auto;
}
.site_main_header .utility_right_side {
  display: flex;
}

#top_announcment_bar {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
}
.theme-light #top_announcment_bar {
  background: #5e3a7e;
  color: #ffffff;
}
.theme-dark #top_announcment_bar {
  background: #fbad41;
  color: #292929;
}
#top_announcment_bar a,
#top_announcment_bar a:visited {
  text-decoration: underline;
  font-weight: bold;
}
.theme-light #top_announcment_bar a,
.theme-light #top_announcment_bar a:visited {
  color: #ffffff;
}
.theme-dark #top_announcment_bar a,
.theme-dark #top_announcment_bar a:visited {
  color: #292929;
}
#top_announcment_bar span {
  display: block;
  padding: 5px 2em;
  text-align: center;
}

#IGB_MAIN_LOGO {
  padding: 1rem 0;
  transition: all 200ms ease-in-out;
  z-index: 999;
  position: absolute;
  top: 2px;
  width: 130px;
  max-width: 18vw;
  margin-bottom: -0.5em;
}
#IGB_MAIN_LOGO svg {
  max-width: 100%;
  height: auto;
}
@media (max-height: 625px) {
  #IGB_MAIN_LOGO {
    height: 75px;
  }
  #IGB_MAIN_LOGO svg {
    max-height: 100%;
    width: auto;
  }
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  #IGB_MAIN_LOGO {
    height: 55px;
  }
  #IGB_MAIN_LOGO svg {
    max-height: 100%;
    width: auto;
  }
}

.theme-light .logo_purple {
  fill: #5e3a7e;
  stroke: #5e3a7e;
  stroke-width: 0.2;
}
.theme-dark .logo_purple {
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 0.2;
}
.menu_is_open .logo_purple {
  fill: #ffffff;
  stroke: #ffffff;
}

.theme-light .logo_blue {
  fill: #45acce;
  stroke: #45acce;
  stroke-width: 0.2;
}
.theme-dark .logo_blue {
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 0.2;
}
.menu_is_open .logo_blue {
  fill: #ffffff;
  stroke: #ffffff;
}

.theme-light .logo_pink {
  fill: #f2566e;
  stroke: #f2566e;
  stroke-width: 0.2;
}
.theme-dark .logo_pink {
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 0.2;
}
.menu_is_open .logo_pink {
  fill: #ffffff;
  stroke: #ffffff;
}

.theme-light .logo_yellow {
  fill: #fbad41;
  stroke: #fbad41;
  stroke-width: 0.2;
}
.theme-dark .logo_yellow {
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 0.2;
}
.menu_is_open .logo_yellow {
  fill: #ffffff;
  stroke: #ffffff;
}

.darkmode_switch {
  --hue: 223;
  --bg: hsl(var(--hue),10%,90%);
  --fg: hsl(var(--hue),10%,10%);
  --primary: hsl(var(--hue),90%,50%);
  --trans-dur: 0.3s;
  --trans-timing: cubic-bezier(0.76,0.05,0.24,0.95);
  --trans-timing-in: cubic-bezier(0.76,0.05,0.86,0.06);
  --trans-timing-out: cubic-bezier(0.05,0.76,0.06,0.86);
  margin: 0;
  position: relative;
  line-height: 1.5;
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  .darkmode_switch {
    margin-right: 30px;
  }
}
.darkmode_switch .switch__icon,
.darkmode_switch .switch__input {
  display: block;
}
.darkmode_switch .switch__icon {
  position: absolute;
  top: 9px;
  right: 5px;
  width: 20px;
  height: 10px;
  transition: opacity calc(var(--trans-dur) / 2), transform calc(var(--trans-dur) / 2);
}
.darkmode_switch .switch__icon polyline {
  transition: stroke-dashoffset calc(var(--trans-dur) / 2);
}
.darkmode_switch .switch__icon--light,
.darkmode_switch .switch__icon--light polyline {
  transition-delay: calc(var(--trans-dur) / 2);
  transition-timing-function: var(--trans-timing-out);
}
.darkmode_switch .switch__icon--dark {
  opacity: 0;
  transform: translateX(-0.75em) rotate(30deg) scale(0.75);
  transition-timing-function: var(--trans-timing-in);
}
.darkmode_switch .switch__input {
  background-color: #fbad41;
  border-radius: 0.75em;
  box-shadow: 0 0 0 0.125em hsla(var(--hue), 90%, 50%, 0), 0.125em 0.125em 0.25em hsla(var(--hue), 90%, 10%, 0.2);
  outline: transparent;
  position: relative;
  width: 3em;
  height: 1.5em;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color var(--trans-dur) var(--trans-timing), box-shadow 0.15s linear;
}
.darkmode_switch .switch__input:focus-visible {
  box-shadow: 0 0 0 0.125em hsl(var(--hue), 90%, 50%), 0.125em 0.125em 0.25em hsla(var(--hue), 90%, 10%, 0.2);
}
.darkmode_switch .switch__input:before,
.darkmode_switch .switch__input:after {
  content: "";
  display: block;
  position: absolute;
}
.darkmode_switch .switch__input:before {
  background-color: #80C7E2;
  border-radius: inherit;
  mask-image: linear-gradient(120deg, hsl(0, 0%, 0%) 20%, hsla(0, 0%, 0%, 0) 80%);
  -webkit-mask-image: linear-gradient(120deg, hsl(0, 0%, 0%) 20%, hsla(0, 0%, 0%, 0) 80%);
  inset: 0;
  transition: background-color var(--trans-dur) var(--trans-timing);
}
.darkmode_switch .switch__input:after {
  background-color: hsl(0, 0%, 100%);
  border-radius: 50%;
  box-shadow: 0.05em 0.05em 0.05em hsla(var(--hue), 90%, 10%, 0.1);
  top: 0.125em;
  left: 0.125em;
  width: 1.25em;
  height: 1.25em;
  transition: background-color var(--trans-dur) var(--trans-timing), transform var(--trans-dur) var(--trans-timing);
  z-index: 1;
}
.darkmode_switch .switch__input:checked {
  background-color: #148db5;
}
.darkmode_switch .switch__input:checked:before {
  background-color: #5e3a7e;
}
.darkmode_switch .switch__input:checked:after {
  background-color: hsl(0, 0%, 0%);
  transform: translateX(1.5em);
}
.darkmode_switch .switch__input:checked ~ .switch__icon--light,
.darkmode_switch .switch__input:checked ~ .switch__icon--light polyline {
  transition-delay: 0s;
  transition-timing-function: var(--trans-timing-in);
}
.darkmode_switch .switch__input:checked ~ .switch__icon--light {
  opacity: 0;
  transform: translateX(-0.75em) rotate(-30deg) scale(0.75);
}
.darkmode_switch .switch__input:checked ~ .switch__icon--light polyline {
  stroke-dashoffset: 1.5;
}
.darkmode_switch .switch__input:checked ~ .switch__icon--dark {
  opacity: 1;
  transform: translateX(-1.5em);
  transition-delay: calc(var(--trans-dur) / 2);
  transition-timing-function: var(--trans-timing-out);
}
.darkmode_switch .switch__sr {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
}

#mobile_menu_toggle_container {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

#menu_toggle_button {
  width: 45px;
  height: 45px;
  padding: 5px;
  margin: 2em 0;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  z-index: 999999;
  background: transparent;
  position: absolute;
  top: 18px;
  right: 15px;
}
@media (max-width: 900px) {
  #menu_toggle_button {
    display: block;
  }
}
@media (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  #menu_toggle_button {
    top: 0;
    margin: 0;
  }
}
.theme-light #menu_toggle_button {
  color: #292929;
}
.theme-dark #menu_toggle_button {
  color: #ffffff;
}
.menu_is_open #menu_toggle_button {
  color: #ffffff;
}
@media (max-width: 600px) {
  #menu_toggle_button {
    padding: 10px;
    border: 2px solid currentColor;
  }
}
#menu_toggle_button:hover, #menu_toggle_button:target {
  border: 2px solid currentColor;
}
#menu_toggle_button .menu_line {
  transition: all 200ms ease-in-out;
  stroke-width: 3;
}
.theme-light #menu_toggle_button .menu_line {
  stroke: #292929;
}
.theme-dark #menu_toggle_button .menu_line {
  stroke: #ffffff;
}
.main_nav_open #menu_toggle_button .menu_line {
  stroke: #ffffff;
}
#menu_toggle_button.main_nav_open .middle_line {
  opacity: 0;
}

.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark, .theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light {
  background: rgba(255, 255, 255, 0.7);
  color: #292929;
  backdrop-filter: blur(12px);
}
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark, .theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light {
  background: rgba(41, 41, 41, 0.7);
  color: #ffffff;
  backdrop-filter: blur(12px);
}
.jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark *::selection,
.jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results .jetpack-instant-search__search-results-primary .jetpack-instant-search__search-result mark, .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light *::selection,
.jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results .jetpack-instant-search__search-results-primary .jetpack-instant-search__search-result mark {
  background: rgb(255, 244, 0);
  color: #212023;
}
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark input.jetpack-instant-search__box-input.search-field,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results, .theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light input.jetpack-instant-search__box-input.search-field,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results {
  background: #ffffff;
  color: #292929;
}
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark input.jetpack-instant-search__box-input.search-field,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results, .theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light input.jetpack-instant-search__box-input.search-field,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results {
  background: #292929;
  color: #ffffff;
}
.jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-wrapper, .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-wrapper {
  border-radius: 10px;
}
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-wrapper, .theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-wrapper {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-wrapper, .theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-wrapper {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-filters-title,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-result-expanded__content,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-list,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-title,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-unused-query, .theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-filters-title,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-result-expanded__content,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-list,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-title,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-unused-query {
  color: #292929;
}
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-filters-title,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-result-expanded__content,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-list,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-title,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-unused-query, .theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-filters-title,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-result-expanded__content,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-list,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-title,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-unused-query {
  color: #ffffff;
}
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-result-expanded__footer-author,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-result-expanded__footer-date, .theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-result-expanded__footer-author,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-result-expanded__footer-date {
  color: rgba(41, 41, 41, 0.7);
}
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-result-expanded__footer-author,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-result-expanded__footer-date, .theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-result-expanded__footer-author,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-result-expanded__footer-date {
  color: rgba(255, 255, 255, 0.7);
}
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget a,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget.widget_archive ul li a,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark a,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget a:visited,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget.widget_archive ul li a:visited,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark a:visited, .theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget a,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget.widget_archive ul li a,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light a,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget a:visited,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget.widget_archive ul li a:visited,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light a:visited {
  color: #45acce;
}
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget a,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget.widget_archive ul li a,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark a,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget a:visited,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget.widget_archive ul li a:visited,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark a:visited, .theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget a,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget.widget_archive ul li a,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light a,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget a:visited,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget.widget_archive ul li a:visited,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light a:visited {
  color: #fbad41;
}
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget a:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget.widget_archive ul li a:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark a:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget a:visited:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget.widget_archive ul li a:visited:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark a:visited:hover, .theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget a:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget.widget_archive ul li a:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light a:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget a:visited:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget.widget_archive ul li a:visited:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light a:visited:hover {
  color: #5e3a7e;
}
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget a:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget.widget_archive ul li a:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark a:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget a:visited:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget.widget_archive ul li a:visited:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark a:visited:hover, .theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget a:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget.widget_archive ul li a:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light a:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget a:visited:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .widget.widget_archive ul li a:visited:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light a:visited:hover {
  color: #FF6687;
}
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-filter-button:focus,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-filter-button:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-secondary, .theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-filter-button:focus,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-filter-button:hover,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-secondary {
  color: #45acce;
}
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-filter-button:focus,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-filter-button:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-secondary, .theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-filter-button:focus,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-filter-button:hover,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-secondary {
  color: #fbad41;
}
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-filter-sub-heading,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-result-expanded__path, .theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-filter-sub-heading,
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-result-expanded__path {
  color: #292929;
}
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-filter-sub-heading,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-result-expanded__path, .theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-filter-sub-heading,
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-result-expanded__path {
  color: #ffffff;
}
.jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark input[type=checkbox]:checked + label.jetpack-instant-search__search-filter-list-label, .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light input[type=checkbox]:checked + label.jetpack-instant-search__search-filter-list-label {
  font-weight: 800;
}
.jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark input[type=checkbox]:disabled, .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light input[type=checkbox]:disabled {
  cursor: not-allowed;
}
.jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark input[type=checkbox]:disabled + label.jetpack-instant-search__search-filter-list-label, .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light input[type=checkbox]:disabled + label.jetpack-instant-search__search-filter-list-label {
  font-weight: 200;
  font-style: italic;
  cursor: not-allowed;
}
.theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark input[type=checkbox]:disabled + label.jetpack-instant-search__search-filter-list-label, .theme-light .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light input[type=checkbox]:disabled + label.jetpack-instant-search__search-filter-list-label {
  color: rgba(41, 41, 41, 0.5);
}
.theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark input[type=checkbox]:disabled + label.jetpack-instant-search__search-filter-list-label, .theme-dark .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light input[type=checkbox]:disabled + label.jetpack-instant-search__search-filter-list-label {
  color: rgba(255, 255, 255, 0.5);
}
.jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-list li:before, .jetpack-instant-search.jetpack-instant-search__overlay.jetpack-instant-search__overlay--light .jetpack-instant-search__search-results-list li:before {
  content: none;
}

#site_search {
  position: absolute;
  top: 40px;
  right: 10px;
  z-index: 9999;
}
@media (max-width: 900px) {
  #site_search {
    display: none;
  }
}
.mobile_search_container {
  display: none;
}
@media (max-width: 900px) {
  .mobile_search_container {
    display: flex;
    max-width: 100%;
  }
}
.mobile_search_container .mobile_site_search_bar {
  width: 100%;
  padding: 2px;
}
.mobile_search_container .mobile_site_search_bar input {
  width: 100%;
  font-size: 16px;
}

.site_search_bar {
  display: flex;
  align-items: center;
}
.site_search_bar form {
  width: 0;
  overflow: hidden;
  transition: width 400ms ease-in-out, border 200ms linear;
  border: 3px solid transparent;
  border-right: 25px solid transparent;
  border-radius: 10px;
  margin-right: -25px;
}
.site_search_bar.search_open form {
  width: 50vw;
  min-width: 300px;
}
.theme-light .site_search_bar.search_open form {
  border-color: #f2566e;
  background: #ffffff;
}
.theme-dark .site_search_bar.search_open form {
  border-color: #f2566e;
  background: #292929;
}
.site_search_bar .search_form_row {
  display: flex;
  align-items: center;
}
.site_search_bar .search_form_row #search {
  padding: 0.5em 2.5em 0.5em 0.5em;
  font-size: 16px;
}
.site_search_bar .search_button {
  padding: 0.5em 1em;
  text-indent: -999px;
  margin-left: -2.1em;
  position: relative;
  border: none;
  background-size: 10% 10%, 10% 10%;
  background-repeat: no-repeat;
  background-position: center 38.2%, center 63.1%;
}
.theme-light .site_search_bar .search_button {
  background-image: linear-gradient(45deg, rgba(41, 41, 41, 0.7) 0%, rgba(41, 41, 41, 0.4) 50%, transparent 51%), linear-gradient(135deg, rgba(41, 41, 41, 0.7) 0%, rgba(41, 41, 41, 0.4) 50%, transparent 51%);
}
.theme-dark .site_search_bar .search_button {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 51%), linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 51%);
}
.site_search_bar.search_open form {
  flex: 1;
}
.site_search_bar.search_open form label,
.site_search_bar.search_open form #search {
  width: 100%;
}

#search_bar_toggle {
  display: inline-block;
  width: calc(3em + 10px);
  height: calc(3em + 10px);
  border-radius: 100%;
  position: relative;
  padding: 1px 1em 1em 1px;
}
.theme-light #search_bar_toggle:hover, .theme-light #search_bar_toggle:target {
  background: #f2566e;
}
.theme-dark #search_bar_toggle:hover, .theme-dark #search_bar_toggle:target {
  background: #f2566e;
}
#search_bar_toggle .search_icon {
  width: 9px;
  height: 9px;
  background: transparent;
  display: block;
  border-radius: 15px;
  position: relative;
  transition: all 0.2s ease-in-out;
  margin: 1em;
}
.theme-light #search_bar_toggle .search_icon {
  border: 1px solid #292929;
}
.theme-dark #search_bar_toggle .search_icon {
  border: 1px solid #ffffff;
}
.theme-light #search_bar_toggle .search_icon:hover {
  border-color: #ffffff;
}
.theme-dark #search_bar_toggle .search_icon:hover {
  border-color: #ffffff;
}
.theme-light #search_bar_toggle .search_icon:hover:before, .theme-light #search_bar_toggle .search_icon:hover:after {
  background: #ffffff;
}
.theme-dark #search_bar_toggle .search_icon:hover:before, .theme-dark #search_bar_toggle .search_icon:hover:after {
  background: #ffffff;
}
#search_bar_toggle .search_icon:before, #search_bar_toggle .search_icon:after {
  width: 2px;
  height: 5px;
  border-radius: 5px;
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  right: -2px;
  transform: rotate(-45deg);
  transition: all 0.2s ease-in-out;
}
.theme-light #search_bar_toggle .search_icon:before, .theme-light #search_bar_toggle .search_icon:after {
  background: #292929;
}
.theme-dark #search_bar_toggle .search_icon:before, .theme-dark #search_bar_toggle .search_icon:after {
  background: #ffffff;
}
#search_bar_toggle .search_icon:after {
  transform: rotate(45deg);
  opacity: 0;
}
.theme-light #search_bar_toggle.search_open {
  background: #f2566e;
}
.theme-dark #search_bar_toggle.search_open {
  background: #f2566e;
}
#search_bar_toggle.search_open .search_icon {
  transform: scale(4);
  transform-origin: top left;
  margin-left: 0.88em;
  margin-top: 0.85em;
}
.theme-light #search_bar_toggle.search_open .search_icon {
  border-color: #ffffff;
}
.theme-dark #search_bar_toggle.search_open .search_icon {
  border-color: #ffffff;
}
#search_bar_toggle.search_open .search_icon:before {
  top: 1px;
  right: 3px;
  width: 1px;
}
.theme-light #search_bar_toggle.search_open .search_icon:before {
  background: #ffffff;
}
.theme-dark #search_bar_toggle.search_open .search_icon:before {
  background: #ffffff;
}
#search_bar_toggle.search_open .search_icon:after {
  top: 1px;
  left: 3px;
  opacity: 1;
  width: 1px;
}
.theme-light #search_bar_toggle.search_open .search_icon:after {
  background: #ffffff;
}
.theme-dark #search_bar_toggle.search_open .search_icon:after {
  background: #ffffff;
}

footer.site_footer {
  text-align: center;
}
.theme-light footer.site_footer a,
.theme-light footer.site_footer a:visited {
  color: #5e3a7e;
}
.theme-dark footer.site_footer a,
.theme-dark footer.site_footer a:visited {
  color: #fbad41;
}
.theme-light footer.site_footer a:hover, .theme-light footer.site_footer a:target, .theme-light footer.site_footer a:focus,
.theme-light footer.site_footer a:visited:hover,
.theme-light footer.site_footer a:visited:target,
.theme-light footer.site_footer a:visited:focus {
  color: #45acce;
}
.theme-dark footer.site_footer a:hover, .theme-dark footer.site_footer a:target, .theme-dark footer.site_footer a:focus,
.theme-dark footer.site_footer a:visited:hover,
.theme-dark footer.site_footer a:visited:target,
.theme-dark footer.site_footer a:visited:focus {
  color: #FF6687;
}
footer.site_footer .footer_info .container {
  padding: 6em 3em;
  margin: 1em auto;
  max-width: 90ch;
  text-wrap: balance;
}
footer.site_footer .IGB_footer_logo {
  width: 500px;
  max-width: 50vw;
  margin: 0 auto;
}
footer.site_footer #footer-social-links {
  margin: 3em 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}
footer.site_footer #footer-social-links li,
footer.site_footer #footer-social-links a {
  width: 50px;
  height: 50px;
}
@media (max-width: 600px) {
  footer.site_footer #footer-social-links li,
  footer.site_footer #footer-social-links a {
    width: 40px;
    height: 40px;
  }
}
footer.site_footer #footer-social-links li use,
footer.site_footer #footer-social-links li svg,
footer.site_footer #footer-social-links a use,
footer.site_footer #footer-social-links a svg {
  width: 100%;
  height: 100%;
  padding: 0.5em;
}
.theme-light footer.site_footer #footer-social-links li use,
.theme-light footer.site_footer #footer-social-links li svg,
.theme-light footer.site_footer #footer-social-links a use,
.theme-light footer.site_footer #footer-social-links a svg {
  fill: #292929;
}
.theme-dark footer.site_footer #footer-social-links li use,
.theme-dark footer.site_footer #footer-social-links li svg,
.theme-dark footer.site_footer #footer-social-links a use,
.theme-dark footer.site_footer #footer-social-links a svg {
  fill: #F5F3F7;
}
footer.site_footer #footer-social-links a,
footer.site_footer #footer-social-links a:visited {
  border: 2px solid transparent;
}
.theme-light footer.site_footer #footer-social-links a:hover, .theme-light footer.site_footer #footer-social-links a:target, .theme-light footer.site_footer #footer-social-links a:focus,
.theme-light footer.site_footer #footer-social-links a:visited:hover,
.theme-light footer.site_footer #footer-social-links a:visited:target,
.theme-light footer.site_footer #footer-social-links a:visited:focus {
  border-bottom: 2px solid #45acce;
}
.theme-dark footer.site_footer #footer-social-links a:hover, .theme-dark footer.site_footer #footer-social-links a:target, .theme-dark footer.site_footer #footer-social-links a:focus,
.theme-dark footer.site_footer #footer-social-links a:visited:hover,
.theme-dark footer.site_footer #footer-social-links a:visited:target,
.theme-dark footer.site_footer #footer-social-links a:visited:focus {
  border-bottom: 2px solid #FF6687;
}
.theme-light footer.site_footer #footer-social-links a:hover use,
.theme-light footer.site_footer #footer-social-links a:hover svg, .theme-light footer.site_footer #footer-social-links a:target use,
.theme-light footer.site_footer #footer-social-links a:target svg, .theme-light footer.site_footer #footer-social-links a:focus use,
.theme-light footer.site_footer #footer-social-links a:focus svg,
.theme-light footer.site_footer #footer-social-links a:visited:hover use,
.theme-light footer.site_footer #footer-social-links a:visited:hover svg,
.theme-light footer.site_footer #footer-social-links a:visited:target use,
.theme-light footer.site_footer #footer-social-links a:visited:target svg,
.theme-light footer.site_footer #footer-social-links a:visited:focus use,
.theme-light footer.site_footer #footer-social-links a:visited:focus svg {
  fill: #5e3a7e;
}
.theme-dark footer.site_footer #footer-social-links a:hover use,
.theme-dark footer.site_footer #footer-social-links a:hover svg, .theme-dark footer.site_footer #footer-social-links a:target use,
.theme-dark footer.site_footer #footer-social-links a:target svg, .theme-dark footer.site_footer #footer-social-links a:focus use,
.theme-dark footer.site_footer #footer-social-links a:focus svg,
.theme-dark footer.site_footer #footer-social-links a:visited:hover use,
.theme-dark footer.site_footer #footer-social-links a:visited:hover svg,
.theme-dark footer.site_footer #footer-social-links a:visited:target use,
.theme-dark footer.site_footer #footer-social-links a:visited:target svg,
.theme-dark footer.site_footer #footer-social-links a:visited:focus use,
.theme-dark footer.site_footer #footer-social-links a:visited:focus svg {
  fill: #fbad41;
}
footer.site_footer nav.footer_legal_nav {
  margin: 1em 0;
}
footer.site_footer nav.footer_legal_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.site_footer nav.footer_legal_nav ul li {
  margin: 0 1em;
}
footer.site_footer nav.footer_legal_nav ul a {
  padding: 0.5em 1em;
}

/**
 * main nav
 *
*/
.mobile_menu_only {
  display: none;
}
@media (max-width: 900px) {
  .mobile_menu_only {
    display: initial;
  }
}

#site_utility_bar {
  align-items: center;
  justify-content: flex-end;
  z-index: 9999;
  position: relative;
}
.theme-light #site_utility_bar {
  background: linear-gradient(142deg, transparent 40%, rgba(242, 86, 110, 0.2) 60%, rgba(251, 173, 65, 0.3) 70%, rgba(69, 172, 206, 0.2) 79%, transparent 93%);
}
.theme-dark #site_utility_bar {
  background: linear-gradient(142deg, transparent 40%, rgba(251, 173, 65, 0.2) 60%, rgba(69, 172, 206, 0.4) 70%, rgba(94, 58, 126, 0.7) 79%, transparent 93%);
}
#site_utility_bar a,
#site_utility_bar a:visited {
  text-decoration: none;
}
.theme-light #site_utility_bar a,
.theme-light #site_utility_bar a:visited {
  color: #5e3a7e;
}
.theme-dark #site_utility_bar a,
.theme-dark #site_utility_bar a:visited {
  color: #ffffff;
}
.theme-light #site_utility_bar a:hover, .theme-light #site_utility_bar a:focus,
.theme-light #site_utility_bar a:visited:hover,
.theme-light #site_utility_bar a:visited:focus {
  color: #45acce;
}
.theme-dark #site_utility_bar a:hover, .theme-dark #site_utility_bar a:focus,
.theme-dark #site_utility_bar a:visited:hover,
.theme-dark #site_utility_bar a:visited:focus {
  color: #fbad41;
}
#site_utility_bar nav#utility_navigation {
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
}
#site_utility_bar nav#utility_navigation ul, #site_utility_bar nav#utility_navigation li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#site_utility_bar nav#utility_navigation ul {
  display: flex;
  align-items: center;
}
#site_utility_bar nav#utility_navigation a {
  padding: 0.24em 1em;
}
.theme-light #site_utility_bar nav#utility_navigation .current-menu-item a,
.theme-light #site_utility_bar nav#utility_navigation .current-menu-item a:visited {
  color: #ffffff;
}
.theme-dark #site_utility_bar nav#utility_navigation .current-menu-item a,
.theme-dark #site_utility_bar nav#utility_navigation .current-menu-item a:visited {
  color: #292929;
}
#site_utility_bar nav#utility_navigation .donate_button {
  font-size: clamp(1.2rem, 0.57vw + 0.91rem, 2rem);
  transform: scale(1.25);
}
#site_utility_bar nav#utility_navigation .donate_button a,
#site_utility_bar nav#utility_navigation .donate_button a:visited {
  display: inline-block;
  font-weight: 600;
  border-radius: 4px;
  margin: -8px 1em 0 1em;
}
.theme-light #site_utility_bar nav#utility_navigation .donate_button a,
.theme-light #site_utility_bar nav#utility_navigation .donate_button a:visited {
  background: #f2566e;
  color: #ffffff;
}
.theme-dark #site_utility_bar nav#utility_navigation .donate_button a,
.theme-dark #site_utility_bar nav#utility_navigation .donate_button a:visited {
  background: #f2566e;
  color: #ffffff;
}
#site_utility_bar nav#utility_navigation .donate_button a:hover, #site_utility_bar nav#utility_navigation .donate_button a:focus, #site_utility_bar nav#utility_navigation .donate_button a:target,
#site_utility_bar nav#utility_navigation .donate_button a:visited:hover,
#site_utility_bar nav#utility_navigation .donate_button a:visited:focus,
#site_utility_bar nav#utility_navigation .donate_button a:visited:target {
  transform: skew(-2deg);
}
.theme-light #site_utility_bar nav#utility_navigation .donate_button a:hover, .theme-light #site_utility_bar nav#utility_navigation .donate_button a:focus, .theme-light #site_utility_bar nav#utility_navigation .donate_button a:target,
.theme-light #site_utility_bar nav#utility_navigation .donate_button a:visited:hover,
.theme-light #site_utility_bar nav#utility_navigation .donate_button a:visited:focus,
.theme-light #site_utility_bar nav#utility_navigation .donate_button a:visited:target {
  background: #5e3a7e;
  color: #ffffff;
}
.theme-dark #site_utility_bar nav#utility_navigation .donate_button a:hover, .theme-dark #site_utility_bar nav#utility_navigation .donate_button a:focus, .theme-dark #site_utility_bar nav#utility_navigation .donate_button a:target,
.theme-dark #site_utility_bar nav#utility_navigation .donate_button a:visited:hover,
.theme-dark #site_utility_bar nav#utility_navigation .donate_button a:visited:focus,
.theme-dark #site_utility_bar nav#utility_navigation .donate_button a:visited:target {
  background: #5e3a7e;
  color: #ffffff;
}

header.site_main_header .header_center {
  position: relative;
}
header.site_main_header .header_center a,
header.site_main_header .header_center a:visited {
  border-radius: 4px;
}
.theme-light header.site_main_header .header_center a,
.theme-light header.site_main_header .header_center a:visited {
  color: #292929;
  background: transparent;
}
.theme-dark header.site_main_header .header_center a,
.theme-dark header.site_main_header .header_center a:visited {
  color: #ffffff;
  background: transparent;
}
.theme-light header.site_main_header .header_center a:hover, .theme-light header.site_main_header .header_center a:focus, .theme-light header.site_main_header .header_center a:target,
.theme-light header.site_main_header .header_center a:visited:hover,
.theme-light header.site_main_header .header_center a:visited:focus,
.theme-light header.site_main_header .header_center a:visited:target {
  color: #ffffff;
  background: #5e3a7e;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
}
.theme-dark header.site_main_header .header_center a:hover, .theme-dark header.site_main_header .header_center a:focus, .theme-dark header.site_main_header .header_center a:target,
.theme-dark header.site_main_header .header_center a:visited:hover,
.theme-dark header.site_main_header .header_center a:visited:focus,
.theme-dark header.site_main_header .header_center a:visited:target {
  color: #292929;
  background: #fbad41;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
}
.theme-light header.site_main_header .header_center li.menu-item-has-children:hover, .theme-light header.site_main_header .header_center li.menu-item-has-children:focus, .theme-light header.site_main_header .header_center li.menu-item-has-children:target {
  background: rgba(94, 58, 126, 0.15);
}
.theme-dark header.site_main_header .header_center li.menu-item-has-children:hover, .theme-dark header.site_main_header .header_center li.menu-item-has-children:focus, .theme-dark header.site_main_header .header_center li.menu-item-has-children:target {
  background: rgba(251, 173, 65, 0.15);
}
.theme-light header.site_main_header .current-menu-ancestor > a,
.theme-light header.site_main_header .current-menu-ancestor > a:visited {
  background: rgba(94, 58, 126, 0.15);
}
.theme-dark header.site_main_header .current-menu-ancestor > a,
.theme-dark header.site_main_header .current-menu-ancestor > a:visited {
  background: rgba(251, 173, 65, 0.15);
}
.theme-light header.site_main_header .current-menu-item > a,
.theme-light header.site_main_header .current-menu-item > a:visited {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
  color: #ffffff;
  background: #5e3a7e;
}
.theme-dark header.site_main_header .current-menu-item > a,
.theme-dark header.site_main_header .current-menu-item > a:visited {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
  color: #292929;
  background: #fbad41;
}
@media (min-width: 900px) {
  header.site_main_header nav.main_nav_container {
    text-align: center;
    font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
    line-height: 1.1;
    padding: 10px 29px 0 193px;
    position: absolute;
    width: 100%;
    margin: 0 auto;
  }
  header.site_main_header nav.main_nav_container ul, header.site_main_header nav.main_nav_container li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  header.site_main_header nav.main_nav_container > ul {
    padding-left: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header.site_main_header nav.main_nav_container > ul > li {
    margin: 0 4px;
    display: flex;
    flex: auto;
    border-radius: 4px;
  }
  .theme-light header.site_main_header nav.main_nav_container > ul > li {
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
  }
  .theme-dark header.site_main_header nav.main_nav_container > ul > li {
    border: 1px solid rgba(41, 41, 41, 0.75);
    box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
  }
  header.site_main_header nav.main_nav_container > ul > li > a {
    padding: 0.25em;
    flex: 1;
  }
  header.site_main_header nav.main_nav_container a,
  header.site_main_header nav.main_nav_container a:visited {
    font-weight: 400;
    text-decoration: none;
  }
  header.site_main_header nav.main_nav_container .menu-item-has-children {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
  }
  header.site_main_header nav.main_nav_container .menu-item-has-children > a {
    flex: 1;
  }
  header.site_main_header nav.main_nav_container .menu-item-has-children .dropdown_icon {
    display: inline-block;
    padding: 0 0 0 0.75em;
  }
  header.site_main_header nav.main_nav_container .menu-item-has-children:focus-within .sub-menu, header.site_main_header nav.main_nav_container .menu-item-has-children:active .sub-menu, header.site_main_header nav.main_nav_container .menu-item-has-children:target .sub-menu {
    display: block;
    opacity: 1;
  }
  .preload header.site_main_header nav.main_nav_container .menu-item-has-children:hover .sub-menu {
    display: block;
    opacity: 1;
  }
  .preload header.site_main_header nav.main_nav_container .menu-item-has-children .dropdown_icon:after {
    display: block;
    width: 1ch;
    height: 1.1em;
    content: "❯";
    transform: rotate(90deg);
  }
  header.site_main_header nav.main_nav_container .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    overflow: hidden;
    font-size: clamp(1.2rem, 0.57vw + 0.91rem, 2rem);
    min-width: 34ch;
    width: 100%;
    backdrop-filter: blur(8px);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 200ms ease-in-out;
  }
  .theme-light header.site_main_header nav.main_nav_container .sub-menu {
    background: rgba(255, 255, 255, 0.87);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  }
  .theme-dark header.site_main_header nav.main_nav_container .sub-menu {
    background: rgba(41, 41, 41, 0.87);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  }
  header.site_main_header nav.main_nav_container .sub-menu li {
    text-align: left;
    width: 100%;
  }
  header.site_main_header nav.main_nav_container .sub-menu li a {
    display: block;
    padding: 0.65em 1em;
  }
}
@media (max-width: 900px) {
  header.site_main_header .header_center {
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100vh - 90px);
    width: 60vw;
    min-width: min(390px, 95%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    margin: 82px 0 0 0;
    padding: 0 60px 85px 0;
    overflow-y: auto;
    transition: transform 300ms ease-in-out;
    display: none;
  }
  .theme-light header.site_main_header .header_center {
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 15px, rgba(0, 0, 0, 0.08) 0 -2px 6px, rgba(0, 0, 0, 0.18) 0px 3px 8px, rgba(0, 0, 0, 0.17) 0px 7px 15px, rgba(0, 0, 0, 0.59) 0 1px 1px;
  }
  .theme-dark header.site_main_header .header_center {
    background: #292929;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 15px, rgba(0, 0, 0, 0.18) 0 -2px 6px, rgba(0, 0, 0, 0.28) 0px 3px 8px, rgba(0, 0, 0, 0.19) 0px 7px 15px, rgba(0, 0, 0, 0.62) 0 1px 1px;
  }
}
@media (max-width: 900px) and (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
  header.site_main_header .header_center {
    margin-top: 55px;
    height: calc(100vh - 55px);
  }
}
@media (max-width: 900px) {
  .main_nav_is_open header.site_main_header .header_center {
    transform: translateX(0%);
  }
  header.site_main_header .header_center nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 350ms ease-in-out;
  }
  header.site_main_header .header_center nav ul, header.site_main_header .header_center nav li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
  }
  header.site_main_header .header_center nav > ul {
    flex-direction: column;
    flex: 1;
  }
  header.site_main_header .header_center nav > ul > li {
    flex: 1;
  }
  header.site_main_header .header_center nav > ul a,
  header.site_main_header .header_center nav > ul a:visited {
    padding: 2em 1em;
    text-decoration: none;
    display: block;
    line-height: 1.1;
  }
  .theme-light header.site_main_header .header_center nav > ul a,
  .theme-light header.site_main_header .header_center nav > ul a:visited {
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid rgba(41, 41, 41, 0.14);
    color: #292929;
  }
  .theme-dark header.site_main_header .header_center nav > ul a,
  .theme-dark header.site_main_header .header_center nav > ul a:visited {
    border-top: 1px solid #292929;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
  }
  header.site_main_header .header_center nav > ul .menu-item-has-children {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  header.site_main_header .header_center nav > ul .menu-item-has-children a {
    flex: 1;
  }
  .theme-light header.site_main_header .header_center nav > ul .menu-item-has-children a {
    border-right: 1px solid rgba(41, 41, 41, 0.24);
  }
  .theme-dark header.site_main_header .header_center nav > ul .menu-item-has-children a {
    border-right: 1px solid rgba(255, 255, 255, 0.24);
  }
  header.site_main_header .header_center nav > ul .menu-item-has-children .dropdown_icon {
    display: inline-block;
    padding: 0 0 0 1.75em;
  }
  header.site_main_header .header_center nav > ul .menu-item-has-children:focus-within .sub-menu, header.site_main_header .header_center nav > ul .menu-item-has-children:active .sub-menu, header.site_main_header .header_center nav > ul .menu-item-has-children:target .sub-menu {
    display: flex;
    flex-direction: column;
    opacity: 1;
  }
  header.site_main_header .header_center nav > ul .menu-item-has-children:focus-within .sub-menu a, header.site_main_header .header_center nav > ul .menu-item-has-children:active .sub-menu a, header.site_main_header .header_center nav > ul .menu-item-has-children:target .sub-menu a {
    display: block;
  }
  .theme-light header.site_main_header .header_center nav > ul .menu-item-has-children.menu_is_open {
    background: #f2f2f2;
  }
  .theme-dark header.site_main_header .header_center nav > ul .menu-item-has-children.menu_is_open {
    background: #1c1c1c;
  }
  header.site_main_header .header_center nav > ul .sub-menu {
    display: none;
    width: 100%;
    max-width: 100%;
    margin-left: 12px;
  }
  .theme-light header.site_main_header .header_center nav > ul .sub-menu {
    border-left: 4px solid #5e3a7e;
    box-shadow: -12px 0 0 #ffffff;
  }
  .theme-dark header.site_main_header .header_center nav > ul .sub-menu {
    border-left: 4px solid #fbad41;
    box-shadow: -12px 0 0 #292929;
  }
}

nav.breadcrumb_navigation {
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
  margin-bottom: 3em;
}
body.page nav.breadcrumb_navigation, body.page-homepage nav.breadcrumb_navigation, body.page-browse-content nav.breadcrumb_navigation, body.single-glossary nav.breadcrumb_navigation {
  display: none;
}
nav.breadcrumb_navigation ul {
  margin: 3em 0 -3em 0;
  padding: 0;
  list-style: none;
  display: flex;
}
nav.breadcrumb_navigation ul li {
  transform: skewX(-26deg);
}
.theme-light nav.breadcrumb_navigation ul li {
  border-right: 2px solid rgba(69, 172, 206, 0.25);
}
.theme-dark nav.breadcrumb_navigation ul li {
  border-right: 2px solid rgba(251, 173, 65, 0.25);
}
nav.breadcrumb_navigation ul li:last-child {
  border-right: none;
}
nav.breadcrumb_navigation ul li a,
nav.breadcrumb_navigation ul li span {
  display: inline-block;
  padding: 0.2em 1.1em;
  transform: skewX(26deg);
}

.next_previous_playlist,
.next_previous_glossary {
  opacity: 0.95;
  transition: all 150ms ease-in-out;
}
.theme-light .next_previous_playlist,
.theme-light .next_previous_glossary {
  background: rgba(245, 243, 247, 0.95);
}
.theme-dark .next_previous_playlist,
.theme-dark .next_previous_glossary {
  background: rgba(57, 57, 57, 0.95);
}
.next_previous_playlist:hover,
.next_previous_glossary:hover {
  opacity: 1;
}
.next_previous_playlist.top,
.next_previous_glossary.top {
  margin-top: 7em;
}
.next_previous_playlist a.glossary_back_link,
.next_previous_playlist a.playlist_back_link,
.next_previous_glossary a.glossary_back_link,
.next_previous_glossary a.playlist_back_link {
  display: block;
  margin: 1px;
  font-weight: 200;
  text-align: center;
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
  padding: 0.5em 3em;
  text-transform: uppercase;
  text-decoration: none;
}
.theme-light .next_previous_playlist a.glossary_back_link,
.theme-light .next_previous_playlist a.playlist_back_link,
.theme-light .next_previous_glossary a.glossary_back_link,
.theme-light .next_previous_glossary a.playlist_back_link {
  background: rgba(255, 255, 255, 0.85);
}
.theme-dark .next_previous_playlist a.glossary_back_link,
.theme-dark .next_previous_playlist a.playlist_back_link,
.theme-dark .next_previous_glossary a.glossary_back_link,
.theme-dark .next_previous_glossary a.playlist_back_link {
  background: rgba(41, 41, 41, 0.85);
}
.theme-light .next_previous_playlist a.glossary_back_link:hover, .theme-light .next_previous_playlist a.glossary_back_link:focus, .theme-light .next_previous_playlist a.glossary_back_link:target,
.theme-light .next_previous_playlist a.playlist_back_link:hover,
.theme-light .next_previous_playlist a.playlist_back_link:focus,
.theme-light .next_previous_playlist a.playlist_back_link:target,
.theme-light .next_previous_glossary a.glossary_back_link:hover,
.theme-light .next_previous_glossary a.glossary_back_link:focus,
.theme-light .next_previous_glossary a.glossary_back_link:target,
.theme-light .next_previous_glossary a.playlist_back_link:hover,
.theme-light .next_previous_glossary a.playlist_back_link:focus,
.theme-light .next_previous_glossary a.playlist_back_link:target {
  background: rgba(69, 172, 206, 0.1);
}
.theme-dark .next_previous_playlist a.glossary_back_link:hover, .theme-dark .next_previous_playlist a.glossary_back_link:focus, .theme-dark .next_previous_playlist a.glossary_back_link:target,
.theme-dark .next_previous_playlist a.playlist_back_link:hover,
.theme-dark .next_previous_playlist a.playlist_back_link:focus,
.theme-dark .next_previous_playlist a.playlist_back_link:target,
.theme-dark .next_previous_glossary a.glossary_back_link:hover,
.theme-dark .next_previous_glossary a.glossary_back_link:focus,
.theme-dark .next_previous_glossary a.glossary_back_link:target,
.theme-dark .next_previous_glossary a.playlist_back_link:hover,
.theme-dark .next_previous_glossary a.playlist_back_link:focus,
.theme-dark .next_previous_glossary a.playlist_back_link:target {
  background: rgba(255, 102, 135, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-links > * {
  width: 50%;
}
.theme-light .nav-links > * {
  border-left: 1px solid #ffffff;
}
.theme-dark .nav-links > * {
  border-left: 1px solid #292929;
}
.nav-links > *:first-child {
  border-left: none;
}
.nav-links > * a {
  display: block;
  font-weight: 200;
  padding: 1em 2em;
}
.theme-light .nav-links > * a:hover, .theme-light .nav-links > * a:focus, .theme-light .nav-links > * a:target {
  background: rgba(69, 172, 206, 0.1);
}
.theme-dark .nav-links > * a:hover, .theme-dark .nav-links > * a:focus, .theme-dark .nav-links > * a:target {
  background: rgba(255, 102, 135, 0.1);
}
.nav-links > * a em {
  font-style: normal;
  font-weight: 500;
}
.nav-links .nav-next {
  margin-left: auto;
  text-align: right;
}
.nav-links .nav-previous {
  margin-right: auto;
}

nav.pagination {
  margin: 3em 2em;
}
nav.pagination .nav-links {
  justify-content: center;
}
nav.pagination .page-numbers {
  text-align: center;
  padding: 0.5em 1em;
  margin: 0 0.25em;
  border-radius: 2px;
  width: auto;
  text-decoration: none;
}
.theme-light nav.pagination .page-numbers {
  background: rgba(230, 230, 230, 0.25);
  border: 1px solid rgba(69, 172, 206, 0.25);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}
.theme-dark nav.pagination .page-numbers {
  background: rgba(16, 16, 16, 0.25);
  border: 1px solid rgba(251, 173, 65, 0.25);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}
.theme-light nav.pagination .page-numbers:hover {
  background: #45acce;
  color: #ffffff;
  border: 1px solid rgba(69, 172, 206, 0.5);
}
.theme-dark nav.pagination .page-numbers:hover {
  background: #fbad41;
  color: #292929;
  border: 1px solid rgba(251, 173, 65, 0.5);
}
.theme-light nav.pagination .page-numbers.current {
  border: 1px solid rgba(41, 41, 41, 0.15);
}
.theme-dark nav.pagination .page-numbers.current {
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.theme-light nav.pagination .page-numbers.current:hover {
  background: rgba(230, 230, 230, 0.25);
  color: #292929;
  border: 1px solid rgba(41, 41, 41, 0.15);
}
.theme-dark nav.pagination .page-numbers.current:hover {
  background: rgba(16, 16, 16, 0.25);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

img {
  max-width: 100% !important;
}
.featured_image img {
  max-height: 90vh;
}

video,
iframe {
  max-width: 100% !important;
  max-height: 90vh;
  margin: 1em auto;
  padding: 6px;
}
.theme-light video,
.theme-light iframe {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #ffffff;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark video,
.theme-dark iframe {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #292929;
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}

.single_video_page {
  padding-bottom: 5em;
}
.single_video_page .video_container {
  margin: 0 auto;
  text-align: center;
}
.single_video_page video,
.single_video_page iframe {
  width: 90vw;
  height: 55.8vw;
}
.single_video_page .video_title {
  max-width: 45ch;
  margin: 1em auto;
  padding: 0 1em;
}

.wp-block-embed__wrapper {
  margin-bottom: 4em;
}

.wp-block-coblocks-gallery-offset .coblocks-gallery--item {
  min-width: 375px;
}
@media (max-width: 600px) {
  .wp-block-coblocks-gallery-offset .has-huge-gutter figure,
  .wp-block-coblocks-gallery-offset .has-large-gutter figure,
  .wp-block-coblocks-gallery-offset .has-medium-gutter figure,
  .wp-block-coblocks-gallery-offset .has-small-gutter figure {
    padding-bottom: 2em;
  }
}

input {
  font-size: 16px;
}
input[type=text], input[type=tel], input[type=number], input[type=password], input[type=url], input[type=email], input[type=search] {
  font-size: 16px;
  padding: 0.5em 0.75em;
  margin: 0.5em auto;
  line-height: 1.1;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  border-radius: 8px;
  transition: all 250ms ease-in-out;
}
.theme-light input[type=text], .theme-light input[type=tel], .theme-light input[type=number], .theme-light input[type=password], .theme-light input[type=url], .theme-light input[type=email], .theme-light input[type=search] {
  color: #292929;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.019) 2px 2px 6px 0px inset, rgba(0, 0, 0, 0.09) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.45) 0 -1px 1px;
}
.theme-dark input[type=text], .theme-dark input[type=tel], .theme-dark input[type=number], .theme-dark input[type=password], .theme-dark input[type=url], .theme-dark input[type=email], .theme-dark input[type=search] {
  color: #ffffff;
  border: 1px solid rgba(54, 54, 54, 0.95);
  background: rgba(41, 41, 41, 0.7);
  box-shadow: rgba(0, 0, 0, 0.19) 2px 2px 8px 0px inset, rgba(0, 0, 0, 0.25) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.75) 0 -1px 3px;
}
.theme-light input[type=text]:hover, .theme-light input[type=text]:target, .theme-light input[type=text]:active, .theme-light input[type=tel]:hover, .theme-light input[type=tel]:target, .theme-light input[type=tel]:active, .theme-light input[type=number]:hover, .theme-light input[type=number]:target, .theme-light input[type=number]:active, .theme-light input[type=password]:hover, .theme-light input[type=password]:target, .theme-light input[type=password]:active, .theme-light input[type=url]:hover, .theme-light input[type=url]:target, .theme-light input[type=url]:active, .theme-light input[type=email]:hover, .theme-light input[type=email]:target, .theme-light input[type=email]:active, .theme-light input[type=search]:hover, .theme-light input[type=search]:target, .theme-light input[type=search]:active {
  border: 1px solid rgba(94, 58, 126, 0.95);
  background: white;
}
.theme-dark input[type=text]:hover, .theme-dark input[type=text]:target, .theme-dark input[type=text]:active, .theme-dark input[type=tel]:hover, .theme-dark input[type=tel]:target, .theme-dark input[type=tel]:active, .theme-dark input[type=number]:hover, .theme-dark input[type=number]:target, .theme-dark input[type=number]:active, .theme-dark input[type=password]:hover, .theme-dark input[type=password]:target, .theme-dark input[type=password]:active, .theme-dark input[type=url]:hover, .theme-dark input[type=url]:target, .theme-dark input[type=url]:active, .theme-dark input[type=email]:hover, .theme-dark input[type=email]:target, .theme-dark input[type=email]:active, .theme-dark input[type=search]:hover, .theme-dark input[type=search]:target, .theme-dark input[type=search]:active {
  border: 1px solid rgba(94, 58, 126, 0.95);
  background: #292929;
}
.theme-light input[type=text]:focus, .theme-light input[type=text]:focus-visible, .theme-light input[type=tel]:focus, .theme-light input[type=tel]:focus-visible, .theme-light input[type=number]:focus, .theme-light input[type=number]:focus-visible, .theme-light input[type=password]:focus, .theme-light input[type=password]:focus-visible, .theme-light input[type=url]:focus, .theme-light input[type=url]:focus-visible, .theme-light input[type=email]:focus, .theme-light input[type=email]:focus-visible, .theme-light input[type=search]:focus, .theme-light input[type=search]:focus-visible {
  outline: 3px solid #5e3a7e;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 15px, rgba(0, 0, 0, 0.08) 0 -2px 6px, rgba(0, 0, 0, 0.18) 0px 3px 8px, rgba(0, 0, 0, 0.17) 0px 7px 15px, rgba(0, 0, 0, 0.59) 0 1px 1px;
}
.theme-dark input[type=text]:focus, .theme-dark input[type=text]:focus-visible, .theme-dark input[type=tel]:focus, .theme-dark input[type=tel]:focus-visible, .theme-dark input[type=number]:focus, .theme-dark input[type=number]:focus-visible, .theme-dark input[type=password]:focus, .theme-dark input[type=password]:focus-visible, .theme-dark input[type=url]:focus, .theme-dark input[type=url]:focus-visible, .theme-dark input[type=email]:focus, .theme-dark input[type=email]:focus-visible, .theme-dark input[type=search]:focus, .theme-dark input[type=search]:focus-visible {
  outline: 3px solid #5e3a7e;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 15px, rgba(0, 0, 0, 0.18) 0 -2px 6px, rgba(0, 0, 0, 0.28) 0px 3px 8px, rgba(0, 0, 0, 0.19) 0px 7px 15px, rgba(0, 0, 0, 0.62) 0 1px 1px;
}

select {
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
  padding: 0.5em 0.75em;
  margin: 0.5em auto;
  line-height: 1.1;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  border-radius: 8px;
  transition: all 250ms ease-in-out;
}
.theme-light select {
  color: #292929;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.019) 2px 2px 6px 0px inset, rgba(0, 0, 0, 0.09) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.45) 0 -1px 1px;
}
.theme-dark select {
  color: #ffffff;
  border: 1px solid rgba(54, 54, 54, 0.95);
  background: rgba(41, 41, 41, 0.7);
  box-shadow: rgba(0, 0, 0, 0.19) 2px 2px 8px 0px inset, rgba(0, 0, 0, 0.25) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.75) 0 -1px 3px;
}

textarea {
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
  padding: 0.5em 0.75em;
  margin: 0.5em auto;
  line-height: 1.1;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  border-radius: 8px;
  transition: all 250ms ease-in-out;
  width: 100%;
  min-height: 5em;
}
.theme-light textarea {
  color: #292929;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.019) 2px 2px 6px 0px inset, rgba(0, 0, 0, 0.09) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.45) 0 -1px 1px;
}
.theme-dark textarea {
  color: #ffffff;
  border: 1px solid rgba(54, 54, 54, 0.95);
  background: rgba(41, 41, 41, 0.7);
  box-shadow: rgba(0, 0, 0, 0.19) 2px 2px 8px 0px inset, rgba(0, 0, 0, 0.25) -1px -1px 6px 1px inset, rgba(0, 0, 0, 0.75) 0 -1px 3px;
}

label {
  display: block;
  font-weight: 300;
}
.theme-light label {
  color: #292929;
}
.theme-dark label {
  color: #ffffff;
}

button {
  display: inline-block;
  border: none;
  position: relative;
  padding: 0.8em 2em;
  margin-left: 0.5em;
  z-index: 9;
  border-radius: 3px;
  transition: all 250ms ease-in-out;
}
.theme-light button {
  color: #ffffff;
  background-color: #45acce;
  border: 2px solid transparent;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark button {
  color: #ffffff;
  background-color: #45acce;
  border: 2px solid transparent;
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
.theme-light button:hover, .theme-light button:focus {
  color: #ffffff;
  background-color: #f2566e;
  border: 2px solid #ffffff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}
.theme-dark button:hover, .theme-dark button:focus {
  color: #ffffff;
  background-color: #f2566e;
  border: 2px solid #d6d6d6;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}

#main .frm_forms fieldset,
.frm_forms fieldset {
  margin: 0 0 1em 0;
  padding: 0;
  width: 100%;
  border: none;
}
#main .frm_forms fieldset input,
.frm_forms fieldset input {
  max-width: calc(100% - 1em);
}
#main .frm_forms .frm_combo_inputs_container,
.frm_forms .frm_combo_inputs_container {
  display: flex;
}
#main .frm_forms .frm_combo_inputs_container > div,
.frm_forms .frm_combo_inputs_container > div {
  margin-right: 2em;
  flex: 1;
}
#main .frm_forms .frm_combo_inputs_container > div:last-child,
.frm_forms .frm_combo_inputs_container > div:last-child {
  margin-right: 0;
}
@media (max-width: 600px) {
  #main .frm_forms .frm_combo_inputs_container,
  .frm_forms .frm_combo_inputs_container {
    display: block;
  }
  #main .frm_forms .frm_combo_inputs_container > div,
  .frm_forms .frm_combo_inputs_container > div {
    margin-right: 0;
  }
}
#main .frm_forms .frm_description,
.frm_forms .frm_description {
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
}
#main .frm_forms .frm_form_fields > fieldset,
.frm_forms .frm_form_fields > fieldset {
  max-width: 90%;
  margin: 2em auto 5em auto;
  padding: 3em;
}
.theme-light #main .frm_forms .frm_form_fields > fieldset,
.theme-light .frm_forms .frm_form_fields > fieldset {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #f7f7f7;
  background-image: linear-gradient(178deg, #ffffff 10%, #fafafa 31%, #f7f7f7 70%);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark #main .frm_forms .frm_form_fields > fieldset,
.theme-dark .frm_forms .frm_form_fields > fieldset {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #212121;
  background-image: linear-gradient(178deg, #292929 10%, #242424 31%, #212121 70%);
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
#main .frm_forms .frm_form_fields > fieldset legend,
.frm_forms .frm_form_fields > fieldset legend {
  padding: 0.5em 1em;
  font-weight: 600;
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
  border-radius: 10px;
}
.theme-light #main .frm_forms .frm_form_fields > fieldset legend,
.theme-light .frm_forms .frm_form_fields > fieldset legend {
  background: #ffffff;
}
.theme-dark #main .frm_forms .frm_form_fields > fieldset legend,
.theme-dark .frm_forms .frm_form_fields > fieldset legend {
  background: #292929;
}
#main .frm_forms .frm_form_fields input,
.frm_forms .frm_form_fields input {
  display: inline-block;
}
#main .frm_forms .frm_form_fields input[type=text], #main .frm_forms .frm_form_fields input[type=tel], #main .frm_forms .frm_form_fields input[type=number], #main .frm_forms .frm_form_fields input[type=password], #main .frm_forms .frm_form_fields input[type=url], #main .frm_forms .frm_form_fields input[type=email],
.frm_forms .frm_form_fields input[type=text],
.frm_forms .frm_form_fields input[type=tel],
.frm_forms .frm_form_fields input[type=number],
.frm_forms .frm_form_fields input[type=password],
.frm_forms .frm_form_fields input[type=url],
.frm_forms .frm_form_fields input[type=email] {
  display: block;
  width: 100%;
}
#main .frm_forms .frm_form_fields .frm_form_field,
.frm_forms .frm_form_fields .frm_form_field {
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
#main .frm_forms .frm_form_fields .frm_form_field.frm_two_col .frm_opt_container, #main .frm_forms .frm_form_fields .frm_form_field.frm_three_col .frm_opt_container, #main .frm_forms .frm_form_fields .frm_form_field.frm_four_col .frm_opt_container,
.frm_forms .frm_form_fields .frm_form_field.frm_two_col .frm_opt_container,
.frm_forms .frm_form_fields .frm_form_field.frm_three_col .frm_opt_container,
.frm_forms .frm_form_fields .frm_form_field.frm_four_col .frm_opt_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: max-content;
}
#main .frm_forms .frm_form_fields .frm_form_field.frm_two_col .frm_radio,
#main .frm_forms .frm_form_fields .frm_form_field.frm_two_col .frm_checkbox, #main .frm_forms .frm_form_fields .frm_form_field.frm_three_col .frm_radio,
#main .frm_forms .frm_form_fields .frm_form_field.frm_three_col .frm_checkbox, #main .frm_forms .frm_form_fields .frm_form_field.frm_four_col .frm_radio,
#main .frm_forms .frm_form_fields .frm_form_field.frm_four_col .frm_checkbox,
.frm_forms .frm_form_fields .frm_form_field.frm_two_col .frm_radio,
.frm_forms .frm_form_fields .frm_form_field.frm_two_col .frm_checkbox,
.frm_forms .frm_form_fields .frm_form_field.frm_three_col .frm_radio,
.frm_forms .frm_form_fields .frm_form_field.frm_three_col .frm_checkbox,
.frm_forms .frm_form_fields .frm_form_field.frm_four_col .frm_radio,
.frm_forms .frm_form_fields .frm_form_field.frm_four_col .frm_checkbox {
  grid-column-end: span 1;
}
#main .frm_forms .frm_display_format_buttons .frm_radio label,
#main .frm_forms .frm_display_format_buttons .frm_checkbox label,
.frm_forms .frm_display_format_buttons .frm_radio label,
.frm_forms .frm_display_format_buttons .frm_checkbox label {
  display: block;
  height: 100%;
}
#main .frm_forms .frm_display_format_buttons .frm_radio input[type=radio],
#main .frm_forms .frm_display_format_buttons .frm_radio input[type=checkbox],
#main .frm_forms .frm_display_format_buttons .frm_checkbox input[type=radio],
#main .frm_forms .frm_display_format_buttons .frm_checkbox input[type=checkbox],
.frm_forms .frm_display_format_buttons .frm_radio input[type=radio],
.frm_forms .frm_display_format_buttons .frm_radio input[type=checkbox],
.frm_forms .frm_display_format_buttons .frm_checkbox input[type=radio],
.frm_forms .frm_display_format_buttons .frm_checkbox input[type=checkbox] {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px !important;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px !important;
  word-wrap: normal !important;
}
.theme-light #main .frm_forms .frm_display_format_buttons .frm_radio input[type=radio]:checked + .frm_label_button_container,
.theme-light #main .frm_forms .frm_display_format_buttons .frm_radio input[type=radio]:checked + .frm_image_option_container,
.theme-light #main .frm_forms .frm_display_format_buttons .frm_radio input[type=checkbox]:checked + .frm_label_button_container,
.theme-light #main .frm_forms .frm_display_format_buttons .frm_radio input[type=checkbox]:checked + .frm_image_option_container,
.theme-light #main .frm_forms .frm_display_format_buttons .frm_checkbox input[type=radio]:checked + .frm_label_button_container,
.theme-light #main .frm_forms .frm_display_format_buttons .frm_checkbox input[type=radio]:checked + .frm_image_option_container,
.theme-light #main .frm_forms .frm_display_format_buttons .frm_checkbox input[type=checkbox]:checked + .frm_label_button_container,
.theme-light #main .frm_forms .frm_display_format_buttons .frm_checkbox input[type=checkbox]:checked + .frm_image_option_container,
.theme-light .frm_forms .frm_display_format_buttons .frm_radio input[type=radio]:checked + .frm_label_button_container,
.theme-light .frm_forms .frm_display_format_buttons .frm_radio input[type=radio]:checked + .frm_image_option_container,
.theme-light .frm_forms .frm_display_format_buttons .frm_radio input[type=checkbox]:checked + .frm_label_button_container,
.theme-light .frm_forms .frm_display_format_buttons .frm_radio input[type=checkbox]:checked + .frm_image_option_container,
.theme-light .frm_forms .frm_display_format_buttons .frm_checkbox input[type=radio]:checked + .frm_label_button_container,
.theme-light .frm_forms .frm_display_format_buttons .frm_checkbox input[type=radio]:checked + .frm_image_option_container,
.theme-light .frm_forms .frm_display_format_buttons .frm_checkbox input[type=checkbox]:checked + .frm_label_button_container,
.theme-light .frm_forms .frm_display_format_buttons .frm_checkbox input[type=checkbox]:checked + .frm_image_option_container {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #f2566e;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 15px, rgba(0, 0, 0, 0.08) 0 -2px 6px, rgba(0, 0, 0, 0.18) 0px 3px 8px, rgba(0, 0, 0, 0.17) 0px 7px 15px, rgba(0, 0, 0, 0.59) 0 1px 1px;
  color: #ffffff;
}
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_radio input[type=radio]:checked + .frm_label_button_container,
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_radio input[type=radio]:checked + .frm_image_option_container,
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_radio input[type=checkbox]:checked + .frm_label_button_container,
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_radio input[type=checkbox]:checked + .frm_image_option_container,
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_checkbox input[type=radio]:checked + .frm_label_button_container,
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_checkbox input[type=radio]:checked + .frm_image_option_container,
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_checkbox input[type=checkbox]:checked + .frm_label_button_container,
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_checkbox input[type=checkbox]:checked + .frm_image_option_container,
.theme-dark .frm_forms .frm_display_format_buttons .frm_radio input[type=radio]:checked + .frm_label_button_container,
.theme-dark .frm_forms .frm_display_format_buttons .frm_radio input[type=radio]:checked + .frm_image_option_container,
.theme-dark .frm_forms .frm_display_format_buttons .frm_radio input[type=checkbox]:checked + .frm_label_button_container,
.theme-dark .frm_forms .frm_display_format_buttons .frm_radio input[type=checkbox]:checked + .frm_image_option_container,
.theme-dark .frm_forms .frm_display_format_buttons .frm_checkbox input[type=radio]:checked + .frm_label_button_container,
.theme-dark .frm_forms .frm_display_format_buttons .frm_checkbox input[type=radio]:checked + .frm_image_option_container,
.theme-dark .frm_forms .frm_display_format_buttons .frm_checkbox input[type=checkbox]:checked + .frm_label_button_container,
.theme-dark .frm_forms .frm_display_format_buttons .frm_checkbox input[type=checkbox]:checked + .frm_image_option_container {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #f2566e;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 15px, rgba(0, 0, 0, 0.18) 0 -2px 6px, rgba(0, 0, 0, 0.28) 0px 3px 8px, rgba(0, 0, 0, 0.19) 0px 7px 15px, rgba(0, 0, 0, 0.62) 0 1px 1px;
  color: #ffffff;
}
#main .frm_forms .frm_display_format_buttons .frm_label_button_container,
#main .frm_forms .frm_display_format_buttons .frm_image_option_container,
.frm_forms .frm_display_format_buttons .frm_label_button_container,
.frm_forms .frm_display_format_buttons .frm_image_option_container {
  border-radius: 2px;
  padding: 0.5em 1.5em;
  cursor: pointer;
  align-items: center;
  height: 100%;
  display: flex;
  box-sizing: border-box;
  flex-wrap: nowrap !important;
  gap: 16px;
  overflow: hidden;
  margin: 1em 0;
  transition: all 250ms ease-in-out;
}
.theme-light #main .frm_forms .frm_display_format_buttons .frm_label_button_container,
.theme-light #main .frm_forms .frm_display_format_buttons .frm_image_option_container,
.theme-light .frm_forms .frm_display_format_buttons .frm_label_button_container,
.theme-light .frm_forms .frm_display_format_buttons .frm_image_option_container {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #f7f7f7;
  background-image: linear-gradient(178deg, #ffffff 10%, #fafafa 31%, #f7f7f7 70%);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
  color: rgba(41, 41, 41, 0.46);
}
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_label_button_container,
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_image_option_container,
.theme-dark .frm_forms .frm_display_format_buttons .frm_label_button_container,
.theme-dark .frm_forms .frm_display_format_buttons .frm_image_option_container {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #212121;
  background-image: linear-gradient(178deg, #292929 10%, #242424 31%, #212121 70%);
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
  color: rgba(255, 255, 255, 0.46);
}
.theme-light #main .frm_forms .frm_display_format_buttons .frm_label_button_container:hover,
.theme-light #main .frm_forms .frm_display_format_buttons .frm_image_option_container:hover,
.theme-light .frm_forms .frm_display_format_buttons .frm_label_button_container:hover,
.theme-light .frm_forms .frm_display_format_buttons .frm_image_option_container:hover {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #5e3a7e;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
  color: #ffffff;
}
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_label_button_container:hover,
.theme-dark #main .frm_forms .frm_display_format_buttons .frm_image_option_container:hover,
.theme-dark .frm_forms .frm_display_format_buttons .frm_label_button_container:hover,
.theme-dark .frm_forms .frm_display_format_buttons .frm_image_option_container:hover {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #5e3a7e;
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
  color: #ffffff;
}

.wp-block-frm-modal-content.show {
  z-index: 99999;
}
.wp-block-frm-modal-content .modal-header {
  border-bottom: none;
  padding-bottom: 0 !important;
}
.theme-light .wp-block-frm-modal-content .modal-content {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #f7f7f7;
  background-image: linear-gradient(178deg, #ffffff 10%, #fafafa 31%, #f7f7f7 70%);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark .wp-block-frm-modal-content .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #212121;
  background-image: linear-gradient(178deg, #292929 10%, #242424 31%, #212121 70%);
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
.wp-block-frm-modal-content .modal-body {
  padding-top: 0;
}

/**
 *	styles for looped content
 *
 */
h3.item_title {
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
  font-weight: 300;
  display: inline-block;
  text-wrap: balance;
}
.theme-light a h3.item_title, .theme-light a:visited h3.item_title,
.theme-light h3.item_title a,
.theme-light h3.item_title a:visited {
  text-decoration-color: rgba(69, 172, 206, 0.15);
}
.theme-dark a h3.item_title, .theme-dark a:visited h3.item_title,
.theme-dark h3.item_title a,
.theme-dark h3.item_title a:visited {
  text-decoration-color: rgba(251, 173, 65, 0.15);
}

.content_grid_container {
  width: 90%;
  margin: 0 auto 3em auto;
}
.content_grid_container > article {
  padding: 1em;
  text-decoration: none;
}
.content_grid_container > article a:not(.secondary_button),
.content_grid_container > article a:not(.secondary_button):visited {
  text-decoration: none;
  border: 3px solid transparent;
  display: block;
  border-radius: 5px;
}
.theme-light .content_grid_container > article a:not(.secondary_button),
.theme-light .content_grid_container > article a:not(.secondary_button):visited {
  background: rgba(230, 230, 230, 0.25);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark .content_grid_container > article a:not(.secondary_button),
.theme-dark .content_grid_container > article a:not(.secondary_button):visited {
  background: rgba(16, 16, 16, 0.25);
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
.content_grid_container > article a:not(.secondary_button):hover, .content_grid_container > article a:not(.secondary_button):focus, .content_grid_container > article a:not(.secondary_button):target,
.content_grid_container > article a:not(.secondary_button):visited:hover,
.content_grid_container > article a:not(.secondary_button):visited:focus,
.content_grid_container > article a:not(.secondary_button):visited:target {
  outline: none;
}
.theme-light .content_grid_container > article a:not(.secondary_button):hover, .theme-light .content_grid_container > article a:not(.secondary_button):focus, .theme-light .content_grid_container > article a:not(.secondary_button):target,
.theme-light .content_grid_container > article a:not(.secondary_button):visited:hover,
.theme-light .content_grid_container > article a:not(.secondary_button):visited:focus,
.theme-light .content_grid_container > article a:not(.secondary_button):visited:target {
  background: rgba(230, 230, 230, 0.5);
  border: 3px solid rgba(69, 172, 206, 0.5);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.theme-dark .content_grid_container > article a:not(.secondary_button):hover, .theme-dark .content_grid_container > article a:not(.secondary_button):focus, .theme-dark .content_grid_container > article a:not(.secondary_button):target,
.theme-dark .content_grid_container > article a:not(.secondary_button):visited:hover,
.theme-dark .content_grid_container > article a:not(.secondary_button):visited:focus,
.theme-dark .content_grid_container > article a:not(.secondary_button):visited:target {
  background: rgba(16, 16, 16, 0.5);
  border: 3px solid rgba(251, 173, 65, 0.5);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.theme-light .content_grid_container > article a:not(.secondary_button):hover img, .theme-light .content_grid_container > article a:not(.secondary_button):focus img, .theme-light .content_grid_container > article a:not(.secondary_button):target img,
.theme-light .content_grid_container > article a:not(.secondary_button):visited:hover img,
.theme-light .content_grid_container > article a:not(.secondary_button):visited:focus img,
.theme-light .content_grid_container > article a:not(.secondary_button):visited:target img {
  filter: none;
  border: 1px solid rgba(41, 41, 41, 0.5);
}
.theme-dark .content_grid_container > article a:not(.secondary_button):hover img, .theme-dark .content_grid_container > article a:not(.secondary_button):focus img, .theme-dark .content_grid_container > article a:not(.secondary_button):target img,
.theme-dark .content_grid_container > article a:not(.secondary_button):visited:hover img,
.theme-dark .content_grid_container > article a:not(.secondary_button):visited:focus img,
.theme-dark .content_grid_container > article a:not(.secondary_button):visited:target img {
  filter: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.content_grid_container .group_container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 5px solid transparent;
  overflow: visible !important;
  overflow-inline: visible !important;
}
.content_grid_container .group_container:hover span.content_type {
  filter: none;
  background: rgba(255, 255, 255, 0.8);
}
.content_grid_container .group_container span.content_type {
  position: absolute;
  display: block;
  z-index: 99;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.98);
  clip-path: polygon(8.42% 39.5%, 12.96% 49.97%, 17% 57.68%, 22.04% 65.65%, 27.58% 73.12%, 33.67% 78.56%, 40.75% 83.49%, 48.33% 87.43%, 56.42% 90.87%, 67.15% 93.78%, 77.88% 96.18%, 99.33% 99.5%, 99.92% 0.13%, 0% 0%, 3.63% 20.82%, 5.77% 30.16%);
  filter: brightness(500%) saturate(0%) opacity(0.7);
  padding: 3px 3px 15px 15px;
  transition: all 100ms ease-in-out;
}
.content_grid_container .group_container span.content_type svg,
.content_grid_container .group_container span.content_type use {
  width: 50px;
  height: 50px;
}
.content_grid_container .group_container img {
  width: 100%;
  height: auto;
  transition: all 780ms ease-in-out;
}
.theme-light .content_grid_container .group_container img {
  border: 1px solid rgba(69, 172, 206, 0.25);
}
.theme-dark .content_grid_container .group_container img {
  border: 1px solid rgba(251, 173, 65, 0.25);
}
.content_grid_container .group_container h3 {
  align-self: flex-start;
  flex: none;
  display: inline-block;
  padding: 1.5em;
  margin: 0;
}

.video_card {
  margin: 1em 0;
}
@media (min-width: 900px) {
  .video_card:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
.theme-light .video_card {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  background-image: linear-gradient(171deg, #ffffff 10%, whitesmoke 98%);
}
.theme-dark .video_card {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  background-image: linear-gradient(171deg, #292929 10%, #1f1f1f 98%);
}
.video_card .description_side .content_container {
  max-width: 45ch;
  text-align: left;
  text-wrap: balance;
  margin: 0 auto;
}
.video_card .video_side {
  padding: 0;
  min-width: 60vw;
}
.video_card .video_side video,
.video_card .video_side iframe {
  min-width: 480px;
  width: 100%;
  padding: 6px;
  height: 34.8vw;
}
@media (orientation: portrait) {
  .video_card .video_side video,
  .video_card .video_side iframe {
    height: 56.84vw;
  }
}

.eduguide_card {
  margin: 2em auto;
  width: 50vw;
  min-width: 300px;
  max-width: 700px;
}
.theme-light .eduguide_card {
  background: rgba(230, 230, 230, 0.25);
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.98), 3px 3px 1px rgba(41, 41, 41, 0.4), 4px 4px 0 rgba(255, 255, 255, 0.98), 7px 7px 1px rgba(41, 41, 41, 0.3), 8px 8px 0 rgba(255, 255, 255, 0.98), 11px 11px 1px rgba(41, 41, 41, 0.2), 12px 12px 0 rgba(255, 255, 255, 0.98), 15px 15px 1px rgba(41, 41, 41, 0.1);
}
.theme-dark .eduguide_card {
  background: rgba(16, 16, 16, 0.25);
  box-shadow: 2px 2px 0 rgba(41, 41, 41, 0.98), 3px 3px 1px rgba(255, 255, 255, 0.4), 4px 4px 0 rgba(41, 41, 41, 0.98), 7px 7px 1px rgba(255, 255, 255, 0.3), 8px 8px 0 rgba(41, 41, 41, 0.98), 11px 11px 1px rgba(255, 255, 255, 0.2), 12px 12px 0 rgba(41, 41, 41, 0.98), 15px 15px 1px rgba(255, 255, 255, 0.1);
}
.eduguide_card .content_container {
  position: relative;
  padding: 18em 0 2em 0;
}
.eduguide_card .content_container img {
  object-fit: cover;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.eduguide_card .content_container h3.eduguide_title {
  margin: 0 -2em;
  padding: 1em;
  text-align: center;
  border-radius: 5px;
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
  text-wrap: balance;
}
.theme-light .eduguide_card .content_container h3.eduguide_title {
  background: #e6e6e6;
}
.theme-dark .eduguide_card .content_container h3.eduguide_title {
  background: #101010;
}
.eduguide_card .content_container h3.eduguide_title span {
  font-weight: 200;
}
.eduguide_card .content_container .button_container {
  margin: 2em 1em 0 1em;
  text-align: center;
}
.eduguide_card .content_container .button_container a {
  display: inline-block;
}
.eduguide_card .content_container span.content_type {
  position: absolute;
  display: block;
  z-index: 99;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  clip-path: circle(50% at 100% 0);
  padding: 3px 3px 100px 100px;
}
.eduguide_card .content_container span.content_type svg,
.eduguide_card .content_container span.content_type use {
  width: 50px;
  height: 50px;
}

.file_size {
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
  font-weight: 200;
  white-space: nowrap;
  line-height: 1;
}

.list_container {
  padding-top: 1em;
}
.theme-light .list_container {
  background-image: linear-gradient(to bottom, #f2f2f2 0, transparent 150px);
}
.theme-dark .list_container {
  background-image: linear-gradient(to bottom, #1c1c1c 0, transparent 150px);
}
.list_container .list_item {
  margin: 4em 2em 6em 2em;
  padding: 2em 3em;
  transition: all 250ms ease-in-out;
}
.theme-light .list_container .list_item {
  background: rgba(230, 230, 230, 0.25);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
  border: 2px solid transparent;
}
.theme-dark .list_container .list_item {
  background: rgba(16, 16, 16, 0.25);
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
  border: 2px solid transparent;
}
.theme-light .list_container .list_item:hover, .theme-light .list_container .list_item:target, .theme-light .list_container .list_item:focus {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(94, 58, 126, 0.35);
}
.theme-dark .list_container .list_item:hover, .theme-dark .list_container .list_item:target, .theme-dark .list_container .list_item:focus {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 102, 135, 0.35);
}
.theme-light .list_container .list_item:hover .thumbnail_image img, .theme-light .list_container .list_item:target .thumbnail_image img, .theme-light .list_container .list_item:focus .thumbnail_image img {
  border: 1px solid rgba(94, 58, 126, 0.5);
}
.theme-dark .list_container .list_item:hover .thumbnail_image img, .theme-dark .list_container .list_item:target .thumbnail_image img, .theme-dark .list_container .list_item:focus .thumbnail_image img {
  border: 1px solid rgba(255, 102, 135, 0.5);
}
.list_container .list_item .thumbnail_image {
  width: 40%;
  margin: -3em 2em -3em -2.5em;
  position: relative;
}
.list_container .list_item .thumbnail_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 5px;
}
.theme-light .list_container .list_item .thumbnail_image img {
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border: 1px solid rgba(41, 41, 41, 0.3);
}
.theme-dark .list_container .list_item .thumbnail_image img {
  background: #292929;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.list_container .list_item .thumbnail_image aside.related_terms {
  position: absolute;
  bottom: 0;
}
.list_container .list_item .post_details {
  flex: 1;
}
.list_container .list_item .post_date {
  display: none;
}
.list_container .list_item.type-post .content_title {
  margin-bottom: 5px;
}
.list_container .list_item.type-post .post_date {
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
  display: block;
  opacity: 0.6;
  font-weight: 600;
  margin-top: 0;
}

aside.related_content_container {
  width: 90vw;
  margin: 2em auto;
}
aside.related_content_container .aside_heading {
  font-weight: 200;
  text-transform: uppercase;
}
aside.related_content_container .aside_heading span {
  font-weight: 700;
}

.related_content_container .section_header {
  padding: 0 0 0 2em;
}
.theme-light .related_content_container .section_header {
  background: #f2f2f2;
}
.theme-dark .related_content_container .section_header {
  background: #1c1c1c;
}
.related_content_container .section_header h6 {
  margin: 0;
  line-height: 2.5;
}
.related_content_container .content_grid_container.eduguide {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(371px, 1fr));
  grid-gap: 2.5em;
}
.related_content_container .content_grid_container.eduguide .eduguide_card {
  width: auto;
  min-width: auto;
  max-width: 100%;
  margin: 1em;
}
.related_content_container .content_grid_container.eduguide .eduguide_card .content_container {
  padding: 12em 0 0em 0;
}

aside.related_terms {
  max-width: 90vw;
  margin: -1em auto 0 auto;
  position: relative;
}
.theme-light aside.related_terms:not(.smaller) ul {
  background-image: linear-gradient(to right, rgba(94, 58, 126, 0) 6%, #5e3a7e 45%);
}
.theme-dark aside.related_terms:not(.smaller) ul {
  background-image: linear-gradient(to right, rgba(94, 58, 126, 0) 6%, #5e3a7e 45%);
}
aside.related_terms.smaller {
  display: flex;
  justify-content: flex-end;
  width: 103%;
}
aside.related_terms.smaller a,
aside.related_terms.smaller a:visited,
aside.related_terms.smaller a.secondary_button,
aside.related_terms.smaller a.secondary_button:visited {
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
  padding: 0.1em 0.5em;
  border-radius: 2px;
}
aside.related_terms > ul {
  margin: 0 2em 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
aside.related_terms > ul > li {
  margin-left: -1px;
  transform: skewX(-26deg);
}
.theme-light aside.related_terms > ul > li {
  background: #ffffff;
}
.theme-dark aside.related_terms > ul > li {
  background: #292929;
}
aside.related_terms > ul > li:last-of-type {
  margin-right: -1em;
}
aside.related_terms > ul > li > a > span {
  transform: skewX(26deg);
}
aside.related_terms a,
aside.related_terms a:visited {
  display: inline-block;
  padding: 0.25em 1em;
}
aside.related_terms a span,
aside.related_terms a:visited span {
  display: inline-block;
}
aside.related_terms ul.more_terms_dropdown {
  transform: skewX(26deg);
  margin: 0;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  z-index: 99999;
  top: 100%;
  left: 0;
  width: 100%;
  list-style: none;
}
.theme-light aside.related_terms ul.more_terms_dropdown {
  background: rgba(255, 255, 255, 0.8);
}
.theme-dark aside.related_terms ul.more_terms_dropdown {
  background: rgba(41, 41, 41, 0.8);
}
aside.related_terms ul.more_terms_dropdown > li {
  flex: none;
  margin: 2px;
  padding: 0;
}
aside.related_terms ul.more_terms_dropdown > li a,
aside.related_terms ul.more_terms_dropdown > li a:visited {
  display: inline-block;
}

div.list_of_all_tags {
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
  font-weight: 200;
  display: flex;
  flex-wrap: wrap;
  max-width: 90vw;
  margin: 5em auto -2.5em auto;
  justify-content: center;
  align-items: baseline;
  position: relative;
  z-index: 9;
}
.theme-light div.list_of_all_tags {
  color: rgba(41, 41, 41, 0.3);
}
.theme-dark div.list_of_all_tags {
  color: rgba(255, 255, 255, 0.3);
}
div.list_of_all_tags a,
div.list_of_all_tags a:visited {
  display: inline-block;
  line-height: 1;
  padding: 0.1em 0.51em;
  margin: 0 0.25em;
  border-radius: 5px;
}
.theme-light div.list_of_all_tags a,
.theme-light div.list_of_all_tags a:visited {
  color: #ffffff;
  background: rgba(69, 172, 206, 0.6);
  text-decoration-color: transparent;
}
.theme-dark div.list_of_all_tags a,
.theme-dark div.list_of_all_tags a:visited {
  color: #292929;
  background: rgba(251, 173, 65, 0.6);
  text-decoration-color: transparent;
}
.theme-light div.list_of_all_tags a:hover, .theme-light div.list_of_all_tags a:target, .theme-light div.list_of_all_tags a:focus,
.theme-light div.list_of_all_tags a:visited:hover,
.theme-light div.list_of_all_tags a:visited:target,
.theme-light div.list_of_all_tags a:visited:focus {
  color: #ffffff;
  background: rgba(94, 58, 126, 0.76);
  text-decoration-color: transparent;
}
.theme-dark div.list_of_all_tags a:hover, .theme-dark div.list_of_all_tags a:target, .theme-dark div.list_of_all_tags a:focus,
.theme-dark div.list_of_all_tags a:visited:hover,
.theme-dark div.list_of_all_tags a:visited:target,
.theme-dark div.list_of_all_tags a:visited:focus {
  color: #292929;
  background: rgba(255, 102, 135, 0.76);
  text-decoration-color: transparent;
}

/**

for a11y slider "splide"

https://splidejs.com/

*/
.splide__track {
  -webkit-mask: linear-gradient(to right, transparent 0%, red 5%, red 95%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, red 5%, red 95%, transparent 100%);
}

.splide__arrow {
  transform: translateY(0) scale(1.5);
}
.theme-light .splide__arrow {
  background-color: #292929;
}
.theme-dark .splide__arrow {
  background-color: #ffffff;
}
.theme-light .splide__arrow svg {
  fill: #ffffff;
}
.theme-dark .splide__arrow svg {
  fill: #292929;
}

.horizontal_slider.splide__list {
  padding: 0 5% !important;
}
.horizontal_slider .slide {
  background-size: cover;
}
.horizontal_slider .slide img {
  width: 100%;
  height: auto;
}
.horizontal_slider .slide a {
  display: block;
  padding-bottom: 1em;
}
.horizontal_slider .slide a.slide_content,
.horizontal_slider .slide a.slide_content:visited {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 1em;
  text-wrap: balance;
  border: 2px solid transparent;
  font-weight: 600;
}
.horizontal_slider .slide a.slide_content:hover, .horizontal_slider .slide a.slide_content:focus, .horizontal_slider .slide a.slide_content:target,
.horizontal_slider .slide a.slide_content:visited:hover,
.horizontal_slider .slide a.slide_content:visited:focus,
.horizontal_slider .slide a.slide_content:visited:target {
  backdrop-filter: brightness(120%) saturate(120%);
}
.theme-light .horizontal_slider .slide a.slide_content:hover, .theme-light .horizontal_slider .slide a.slide_content:focus, .theme-light .horizontal_slider .slide a.slide_content:target,
.theme-light .horizontal_slider .slide a.slide_content:visited:hover,
.theme-light .horizontal_slider .slide a.slide_content:visited:focus,
.theme-light .horizontal_slider .slide a.slide_content:visited:target {
  border: 2px solid #292929;
}
.theme-dark .horizontal_slider .slide a.slide_content:hover, .theme-dark .horizontal_slider .slide a.slide_content:focus, .theme-dark .horizontal_slider .slide a.slide_content:target,
.theme-dark .horizontal_slider .slide a.slide_content:visited:hover,
.theme-dark .horizontal_slider .slide a.slide_content:visited:focus,
.theme-dark .horizontal_slider .slide a.slide_content:visited:target {
  border: 2px solid #ffffff;
}
.horizontal_slider .slide a.slide_content span,
.horizontal_slider .slide a.slide_content:visited span {
  display: inline-block;
  padding: 0.5em 12%;
  clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
}
.theme-light .horizontal_slider .slide a.slide_content span,
.theme-light .horizontal_slider .slide a.slide_content:visited span {
  background: rgba(245, 243, 247, 0.75);
  color: #292929;
}
.theme-dark .horizontal_slider .slide a.slide_content span,
.theme-dark .horizontal_slider .slide a.slide_content:visited span {
  background: rgba(66, 52, 79, 0.75);
  color: #ffffff;
}

.accordion_tabs_container {
  display: flex;
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 999;
}
.accordion_tabs_container.half_width {
  width: 45vw;
  min-width: 410px;
}
@media (max-width: 600px) {
  .accordion_tabs_container.half_width {
    width: calc(100vw - 3em);
    min-width: 0;
    display: block;
    margin-top: 2em;
  }
}
.accordion_tabs_container.half_width .tab {
  overflow: hidden;
}
.accordion_tabs_container.half_width .tab .tab_content {
  width: 30vw;
  min-width: 270px;
}
@media (max-width: 600px) {
  .accordion_tabs_container.half_width .tab .tab_content {
    width: 100%;
    min-width: 0;
  }
}
.accordion_tabs_container.half_width .tab.expanded {
  width: 70%;
}
@media (max-width: 600px) {
  .accordion_tabs_container.half_width .tab.expanded {
    width: 100%;
  }
}
.accordion_tabs_container.half_width .tab.collapsed {
  width: 2.5em;
}
@media (max-width: 600px) {
  .accordion_tabs_container.half_width .tab.collapsed {
    width: 100%;
    opacity: 1;
  }
}
.accordion_tabs_container.full_width {
  width: 100vw;
}
.accordion_tabs_container.full_width .tab .tab_content {
  width: 90vw;
}
.accordion_tabs_container .tab {
  position: relative;
  display: inline-block;
  transition-property: width border;
  transition-duration: 450ms;
  cursor: pointer;
  border: 2px solid transparent;
}
.theme-light .accordion_tabs_container .tab:hover {
  border: 2px solid #ffffff;
}
.theme-dark .accordion_tabs_container .tab:hover {
  border: 2px solid #292929;
}
@media (max-width: 600px) {
  .accordion_tabs_container .tab {
    border-radius: 10px;
  }
}
.accordion_tabs_container .tab:first-of-type {
  border-radius: 10px 0 0 10px;
}
@media (max-width: 600px) {
  .accordion_tabs_container .tab:first-of-type {
    border-radius: 10px;
  }
}
.accordion_tabs_container .tab:last-of-type {
  border-radius: 0 10px 10px 0;
}
@media (max-width: 600px) {
  .accordion_tabs_container .tab:last-of-type {
    border-radius: 10px;
  }
}
.accordion_tabs_container .tab .tab_inner {
  padding: 1em 1em 3em 1em;
}
@media (max-width: 600px) {
  .accordion_tabs_container .tab .tab_inner {
    padding: 1em;
  }
}
.accordion_tabs_container .tab h5 {
  display: block;
  position: absolute;
  width: 2em;
  margin: 0;
  padding: 0;
  left: 0rem;
  bottom: 2rem;
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
  white-space: nowrap;
  line-height: 1em;
  text-align: left;
  transform: rotate(-90deg);
  transition-property: left right transform;
  transition-duration: 550ms;
  font-weight: 600;
}
@media (max-width: 600px) {
  .accordion_tabs_container .tab h5 {
    transform: rotate(0);
    width: 100%;
    bottom: 0.5em;
    left: 0.5em;
  }
}
.accordion_tabs_container .tab .tab_content {
  margin: 0;
  padding: 1em;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 400ms;
  overflow: hidden;
  font-weight: 400;
}
@media (max-width: 600px) {
  .accordion_tabs_container .tab .tab_content {
    transition: all 400ms ease-in-out;
    max-height: 0;
    padding: 0;
  }
}
.accordion_tabs_container .expanded h5 {
  left: 1rem;
  bottom: 1rem;
  transform: rotate(0deg);
}
@media (max-width: 600px) {
  .accordion_tabs_container .expanded h5 {
    top: 1em;
    left: 0.5em;
  }
}
.accordion_tabs_container .expanded .tab_content {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 400ms;
}
@media (max-width: 600px) {
  .accordion_tabs_container .expanded .tab_content {
    height: auto;
    max-height: none;
    padding: 1.75em 0.5em 1.1em 0.5em;
  }
}

.svg_divider.full_width {
  width: 100vw;
}

.wp-block-frm-modal-content.show {
  z-index: 99999;
}

#main #form_newsletter-signup {
  background: #5e3a7e;
  color: #ffffff;
}
.theme-light #main #form_newsletter-signup fieldset {
  border: none;
  background: none;
}
.theme-dark #main #form_newsletter-signup fieldset {
  border: none;
  background: none;
}
@media (min-width: 900px) {
  #main #form_newsletter-signup fieldset .frm_fields_container {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-evenly;
  }
  #main #form_newsletter-signup fieldset .frm_fields_container > .frm6 {
    flex: none;
    width: 49%;
    margin: 0 1% 0 -1em;
  }
  #main #form_newsletter-signup fieldset .frm_fields_container > .frm6:nth-of-type(2n) {
    margin: 0 -1em 0 1%;
  }
}
#main #form_newsletter-signup fieldset input[type=email] {
  width: 100%;
}
#main #form_newsletter-signup fieldset h2 {
  margin: 0;
  font-size: clamp(2.14rem, 6.16vw - 0.94rem, 10.77rem);
}
#main #form_newsletter-signup fieldset p {
  text-wrap: balance;
}
#main #form_newsletter-signup fieldset label {
  color: #ffffff;
}
#main #form_newsletter-signup fieldset .frm_forms .frm_form_fields .frm_form_field {
  margin-bottom: 0;
}
#main #form_newsletter-signup fieldset .frm_button_submit {
  margin: 1em 0 0 auto;
  width: 49%;
}

body .has-x-large-font-size,
#content .has-x-large-font-size {
  font-size: clamp(1.39rem, 2vw + 0.39rem, 4.19rem) !important;
}
body .has-large-font-size,
#content .has-large-font-size {
  font-size: clamp(1.33rem, 1.39vw + 0.63rem, 3.28rem) !important;
}
body .has-medium-font-size,
#content .has-medium-font-size {
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem) !important;
}
body .has-small-font-size,
#content .has-small-font-size {
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem) !important;
}
body .has-igb-purple-background-color,
body .has-igb-blue-background-color,
body .has-igb-yellow-background-color,
body .has-igb-pink-background-color,
#content .has-igb-purple-background-color,
#content .has-igb-blue-background-color,
#content .has-igb-yellow-background-color,
#content .has-igb-pink-background-color {
  font-weight: 300;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 0, 0, 0.2);
}

.is-style-small_width {
  width: 40ch;
  max-width: 80vw;
}

.is-style-staggered {
  width: 40ch;
  max-width: 75vw;
  margin-left: 40% !important;
  transform: translateX(-50%);
  margin-right: auto !important;
}
.is-style-staggered:nth-of-type(2n) {
  margin-left: auto !important;
  margin-right: 40% !important;
  transform: translateX(50%);
}

.theme-light .is-style-post-it {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #ffffff;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark .is-style-post-it {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #292929;
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
.is-style-post-it.alignright {
  float: right;
  margin-right: 1em;
  margin-left: 3em;
  transform: rotate(1.5deg);
}
.is-style-post-it.alignleft {
  float: left;
  margin-left: 1em;
  margin-right: 3em;
  transform: rotate(-1.5deg);
}

.wp-block-media-text .wp-block-media-text__content {
  padding: 2em 8%;
}

.section_framed_hero {
  margin: 2em auto;
  width: 90vw;
  max-width: 1950px;
  display: flex;
  align-content: stretch;
  font-weight: 500;
}
@media (max-width: 600px) {
  .section_framed_hero {
    flex-direction: column;
  }
}
.section_framed_hero.is-full-height {
  min-height: calc(100vh - 150px);
}
.section_framed_hero .hero_main {
  border-radius: 14px;
  position: relative;
  display: grid;
  flex: 1;
}
.section_framed_hero .hero_main > * {
  grid-area: 1/1;
}
.section_framed_hero .hero_main b,
.section_framed_hero .hero_main strong,
.section_framed_hero .hero_main a,
.section_framed_hero .hero_main a:visited {
  font-weight: 900;
}
.section_framed_hero .content_container {
  position: relative;
  z-index: 99;
  max-width: 65%;
  text-wrap: balance;
  padding: 3em 3em 6em 3em;
}
@media (max-width: 900px) {
  .section_framed_hero .content_container {
    max-width: 90%;
    padding: 2em 2em 6em 2em;
  }
}
@media (max-width: 600px) {
  .section_framed_hero .content_container {
    max-width: 86%;
    padding: 2em 4em 6em 2em;
  }
}
.section_framed_hero .content_container h1 {
  line-height: 1.05;
  font-size: clamp(3.39rem, 3.68vw + 1.55rem, 8.54rem);
  margin-bottom: 2rem;
}
.section_framed_hero .content_container .hero_paragraph_text {
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
}
.section_framed_hero .image_container {
  display: grid;
  align-items: end;
  z-index: 9;
  width: 100%;
}
.section_framed_hero .image_container img {
  border-radius: 0 0 14px 0;
  width: 55%;
  max-width: 58% !important;
  margin: 0 0 0 auto;
}
.section_framed_hero .background_decoration {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
}
.section_framed_hero .background_decoration.dashes {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1642' height='1642' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23751CFF' stroke-width='29.5' stroke-linecap='round' %3E%3Cline stroke='%236e49ff' x1='639' y1='727' x2='590' y2='776'/%3E%3Cpolyline stroke='%237421ff' points='586 717 888 415 981 512 279 1215 120 1056 607 569'/%3E%3Cline stroke='%237425ff' x1='935' y1='494' x2='776' y2='653'/%3E%3Cline stroke='%237328ff' x1='425' y1='624' x2='488' y2='560'/%3E%3Cpolyline stroke='%23732cff' points='745 685 198 1232 -24 1010 226 759'/%3E%3Cline stroke='%23722fff' x1='383' y1='666' x2='393' y2='655'/%3E%3Cline stroke='%237232ff' x1='416' y1='569' x2='438' y2='547'/%3E%3Cline stroke='%237135ff' x1='194' y1='664' x2='237' y2='622'/%3E%3Cpolyline stroke='%237137ff' points='374 547 35 886 194 1045 618 622'/%3E%3Cline stroke='%23703aff' x1='681' y1='685' x2='671' y2='696'/%3E%3Cline stroke='%23703cff' x1='724' y1='516' x2='649' y2='590'/%3E%3Cline stroke='%236f3eff' x1='334' y1='776' x2='501' y2='611'/%3E%3Cpolyline stroke='%236f41ff' points='556 746 226 1077 353 1204 1052 505 956 410 713 653'/%3E%3Cline stroke='%236f43ff' x1='258' y1='727' x2='385' y2='600'/%3E%3Cline stroke='%236f45ff' x1='671' y1='505' x2='639' y2='537'/%3E%3Cpolyline stroke='%236e47ff' points='162 696-24 883 71 978 353 696'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 75%;
  mix-blend-mode: exclusion;
  opacity: 0.5;
}
.section_framed_hero .background_decoration.halftone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1500 1000'%3E%3Cdefs%3E%3Cg id='a' fill='%23ffffff'%3E%3Ccircle r='.5'/%3E%3Ccircle cx='20' r='1'/%3E%3Ccircle cx='40' r='1.5'/%3E%3Ccircle cx='60' r='2'/%3E%3Ccircle cx='80' r='2.5'/%3E%3Ccircle cx='100' r='3'/%3E%3Ccircle cx='120' r='3.5'/%3E%3Ccircle cx='140' r='4'/%3E%3Ccircle cx='160' r='4.5'/%3E%3Ccircle cx='180' r='5'/%3E%3Ccircle cx='200' r='5.5'/%3E%3Ccircle cx='220' r='6'/%3E%3Ccircle cx='240' r='7'/%3E%3Ccircle cx='260' r='7.5'/%3E%3Ccircle cx='280' r='8'/%3E%3Ccircle cx='300' r='8.5'/%3E%3Ccircle cx='320' r='9'/%3E%3Ccircle cx='340' r='9.5'/%3E%3Ccircle cx='360' r='10'/%3E%3Ccircle cx='380' r='10.5'/%3E%3Ccircle cx='400' r='11'/%3E%3Ccircle cx='420' r='11.5'/%3E%3Ccircle cx='440' r='12'/%3E%3Ccircle cx='460' r='12.5'/%3E%3Ccircle cx='480' r='13'/%3E%3Ccircle cx='500' r='13.5'/%3E%3Ccircle cx='520' r='14'/%3E%3Ccircle cx='540' r='14.5'/%3E%3Ccircle cx='560' r='15'/%3E%3Cpath d='M560-15h9999v30H560z'/%3E%3C/g%3E%3Cg id='b'%3E%3Cuse x='40' href='%23a'/%3E%3Cuse x='30' y='20' href='%23a'/%3E%3Cuse x='20' y='40' href='%23a'/%3E%3Cuse x='10' y='60' href='%23a'/%3E%3Cuse y='80' href='%23a'/%3E%3C/g%3E%3Cg id='c'%3E%3Cuse x='250' href='%23b'/%3E%3Cuse x='200' y='100' href='%23b'/%3E%3Cuse x='150' y='200' href='%23b'/%3E%3Cuse x='100' y='300' href='%23b'/%3E%3Cuse x='50' y='400' href='%23b'/%3E%3Cuse y='500' href='%23b'/%3E%3C/g%3E%3C/defs%3E%3Cg transform='rotate(14.4 750 500)'%3E%3Cg transform='translate(750 500)'%3E%3Cuse transform='translate(-900 600)' href='%23c'/%3E%3Cuse transform='translate(-600)' href='%23c'/%3E%3Cuse transform='translate(-300 -600)' href='%23c'/%3E%3Cuse transform='translate(0 -1200)' href='%23c'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 120% auto;
  background-position: -175% 100%;
  mix-blend-mode: difference;
}
.section_framed_hero .background_decoration.brush_strokes {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1200'%3E%3Cdefs%3E%3ClinearGradient id='g' gradientUnits='objectBoundingBox' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='.1' stop-color='%236721FF'/%3E%3Cstop offset='.4' stop-color='%231CD9FF' stop-opacity='0.7'/%3E%3Cstop offset='.6' stop-color='%23ffffff' stop-opacity='0.3'/%3E%3C/linearGradient%3E%3CradialGradient id='a'%3E%3Cstop offset='0' stop-color='%231CD9FF'/%3E%3Cstop offset='1' stop-color='%231CD9FF' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='b'%3E%3Cstop offset='0' stop-color='%230081ff'/%3E%3Cstop offset='1' stop-color='%230081ff' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='c'%3E%3Cstop offset='0' stop-color='%2300b3ff'/%3E%3Cstop offset='1' stop-color='%2300b3ff' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='d'%3E%3Cstop offset='0' stop-color='%236721FF'/%3E%3Cstop offset='1' stop-color='%236721FF' stop-opacity='0'/%3E%3C/radialGradient%3E%3Cg id='z'%3E%3Crect x='-1000' width='2000' height='50'/%3E%3Crect x='-1800' y='122' width='3600' height='50'/%3E%3Crect x='-1000' y='255' width='2000' height='50'/%3E%3Crect x='-1400' y='378' width='2800' height='50'/%3E%3Crect x='-1500' y='501' width='3000' height='50'/%3E%3Crect x='-1000' y='624' width='2000' height='50'/%3E%3Crect x='-1800' y='833' width='3600' height='50'/%3E%3Crect x='-1400' y='955' width='2800' height='50'/%3E%3C/g%3E%3Cg id='y'%3E%3Crect x='-1000' y='55' width='2000' height='50'/%3E%3Crect x='-1600' y='177' width='3200' height='50'/%3E%3Crect x='-1000' y='299' width='2000' height='50'/%3E%3Crect x='-1500' y='431' width='3000' height='50'/%3E%3Crect x='-1400' y='547' width='2800' height='50'/%3E%3Crect x='-1000' y='666' width='2000' height='50'/%3E%3Crect x='-1600' y='779' width='3200' height='50'/%3E%3Crect x='-1400' y='922' width='2800' height='50'/%3E%3C/g%3E%3C/defs%3E%3Cg transform='rotate(316.8 1000 750)'%3E%3Cg transform='translate(-300 0)'%3E%3Cg style='transform-origin:center'%3E%3Crect fill='url(%23g)' x='-50%25' y='-100%25' width='200%25' height='300%25'/%3E%3Cg id='v'%3E%3Cuse href='%23z' fill='url(%23a)'/%3E%3Cuse href='%23y' fill='url(%23b)'/%3E%3Cuse href='%23z' y='643' fill='url(%23b)'/%3E%3Cuse href='%23y' y='721' fill='url(%23a)'/%3E%3Cuse href='%23z' y='343' fill='url(%23a)'/%3E%3Cuse href='%23y' y='443' fill='url(%23b)'/%3E%3Cuse href='%23z' y='843' fill='url(%23b)'/%3E%3Cuse href='%23y' y='921' fill='url(%23a)'/%3E%3C/g%3E%3Cg fill-opacity='0.92'%3E%3Cuse href='%23v' x='-744' y='-321'/%3E%3Cuse href='%23v' x='-744' y='-571'/%3E%3C/g%3E%3Cg id='x'%3E%3Cuse href='%23z' y='111' fill='url(%23c)'/%3E%3Cuse href='%23y' y='222' fill='url(%23d)'/%3E%3Cuse href='%23z' y='356' fill='url(%23c)'/%3E%3Cuse href='%23y' y='567' fill='url(%23d)'/%3E%3Cuse href='%23z' y='411' fill='url(%23c)'/%3E%3Cuse href='%23y' y='622' fill='url(%23d)'/%3E%3Cuse href='%23z' y='756' fill='url(%23c)'/%3E%3Cuse href='%23y' y='867' fill='url(%23d)'/%3E%3C/g%3E%3Cg fill-opacity='0.92'%3E%3Cuse href='%23x' x='-454' y='-321'/%3E%3Cuse href='%23x' x='-454' y='-621'/%3E%3Cuse href='%23x' x='-784' y='-121'/%3E%3Cuse href='%23x' x='-784' y='-521'/%3E%3C/g%3E%3Crect fill='url(%23g)' x='-50%25' y='-100%25' width='200%25' height='300%25' fill-opacity='0.92'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: 100%;
  mix-blend-mode: overlay;
}
.section_framed_hero .background_decoration.animated_rainbow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%231D7FDC'%3E%3Canimate attributeName='stop-color' values='%231D7FDC%3B%235825E7%3B%23B117AA%3B%233B1002%3B%23BB8C15%3B%231D7FDC' dur='29s' repeatCount='indefinite'%3E%3C/animate%3E%3C/stop%3E%3Cstop offset='1' stop-color='%235825E7'%3E%3Canimate attributeName='stop-color' values='%235825E7%3B%23B117AA%3B%233B1002%3B%23BB8C15%3B%231D7FDC%3B%235825E7' dur='29s' repeatCount='indefinite'%3E%3C/animate%3E%3C/stop%3E%3CanimateTransform attributeName='gradientTransform' type='rotate' from='0 .5 .5' to='360 .5 .5' dur='29s' repeatCount='indefinite' /%3E%3C/linearGradient%3E%3CradialGradient id='b' r='0.9' cx='.5' cy='0' fr='.4' fx='.5'%3E%3Cstop offset='0' stop-color='%23BB8C15' stop-opacity='0'%3E%3Canimate attributeName='stop-color' values='%23BB8C15%3B%231D7FDC%3B%235825E7%3B%23B117AA%3B%233B1002%3B%23BB8C15' dur='29s' repeatCount='indefinite'%3E%3C/animate%3E%3C/stop%3E%3Cstop offset='1' stop-color='%235825E7' stop-opacity='.5'%3E%3Canimate attributeName='stop-color' values='%235825E7%3B%23B117AA%3B%233B1002%3B%23BB8C15%3B%231D7FDC%3B%235825E7' dur='29s' repeatCount='indefinite'%3E%3C/animate%3E%3C/stop%3E%3CanimateTransform attributeName='gradientTransform' type='rotate' values='360 .5 .5%3B0 .5 .5' dur='29s' repeatCount='indefinite' /%3E%3C/radialGradient%3E%3CradialGradient id='c' r='1' cx='.5' cy='.5' fr='.2' fx='0'%3E%3Cstop offset='0' stop-color='%231D7FDC' stop-opacity='.5'%3E%3Canimate attributeName='stop-color' values='%231D7FDC%3B%235825E7%3B%23B117AA%3B%231D7FDC%3B%23B117AA%3B%231D7FDC%3B%23BB8C15%3B%231D7FDC' dur='29s' repeatCount='indefinite'%3E%3C/animate%3E%3C/stop%3E%3Cstop offset='1' stop-color='%231D7FDC' stop-opacity='0'%3E%3Canimate attributeName='stop-color' values='%231D7FDC%3B%235825E7%3B%23B117AA%3B%231D7FDC%3B%23B117AA%3B%231D7FDC%3B%23BB8C15%3B%231D7FDC' dur='29s' repeatCount='indefinite'%3E%3C/animate%3E%3C/stop%3E%3CanimateTransform attributeName='gradientTransform' type='rotate' values='360 .5 .5%3B0 .5 .5' dur='29s' repeatCount='indefinite' /%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='100%25' height='100%25' /%3E%3Crect fill='url(%23b)' width='100%25' height='100%25' /%3E%3Crect fill='url(%23c)' width='100%25' height='100%25' /%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
  mix-blend-mode: overlay;
}
.section_framed_hero .background_decoration.prism_overlay {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(322,1272,582)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23939393'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='775' height='645.8' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.08'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-size: cover;
  mix-blend-mode: multiply;
}
.section_framed_hero .secondary_column {
  min-width: 29%;
  max-width: 29%;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .section_framed_hero .secondary_column {
    min-width: none;
    max-width: none;
    margin: 10px 0 0 0;
    flex-direction: row;
  }
}
.section_framed_hero .secondary_column > * {
  flex: 1;
}
.section_framed_hero .secondary_column > *:first-child {
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .section_framed_hero .secondary_column > *:first-child {
    margin-bottom: 0;
    margin-right: 10px;
  }
}
.section_framed_hero .secondary_column > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .section_framed_hero .secondary_column > *:last-child {
    margin-right: 0;
  }
}
.section_framed_hero .secondary_column .secondary_box {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  border: 3px solid transparent;
  transition: all 310ms ease-in-out;
  line-height: 1.2;
}
.theme-light .section_framed_hero .secondary_column .secondary_box {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}
.theme-dark .section_framed_hero .secondary_column .secondary_box {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}
.section_framed_hero .secondary_column .secondary_box h1,
.section_framed_hero .secondary_column .secondary_box h2,
.section_framed_hero .secondary_column .secondary_box h3,
.section_framed_hero .secondary_column .secondary_box h4,
.section_framed_hero .secondary_column .secondary_box h5,
.section_framed_hero .secondary_column .secondary_box h6 {
  margin-top: 0;
}
.section_framed_hero .secondary_column .secondary_box ul,
.section_framed_hero .secondary_column .secondary_box ol {
  padding-left: 30px;
}
.section_framed_hero .secondary_column .secondary_box img {
  max-width: 100%;
  height: auto;
}
.section_framed_hero .secondary_column .secondary_box img.alignleft, .section_framed_hero .secondary_column .secondary_box img.alignright {
  max-width: 50% !important;
}
.section_framed_hero .secondary_column .secondary_box .box_content {
  padding: 18px;
}
.section_framed_hero .secondary_column a {
  text-decoration: none;
}
.section_framed_hero .secondary_column a:hover, .section_framed_hero .secondary_column a:focus, .section_framed_hero .secondary_column a:target {
  outline: none;
}
.theme-light .section_framed_hero .secondary_column a:hover .secondary_box, .theme-light .section_framed_hero .secondary_column a:focus .secondary_box, .theme-light .section_framed_hero .secondary_column a:target .secondary_box {
  border-color: #5e3a7e;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.theme-dark .section_framed_hero .secondary_column a:hover .secondary_box, .theme-dark .section_framed_hero .secondary_column a:focus .secondary_box, .theme-dark .section_framed_hero .secondary_column a:target .secondary_box {
  border-color: #FF6687;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.section_framed_hero .secondary_column a b,
.section_framed_hero .secondary_column a strong {
  font-weight: 900;
}

.section_hero {
  display: flex;
  width: 100%;
  max-width: 100vw;
  min-height: 800px;
}
@media (max-width: 900px) {
  .section_hero {
    min-height: 500px;
  }
}
@media (max-width: 600px) {
  .section_hero {
    min-height: 270px;
  }
}
@media (min-width: 1200px) {
  .section_hero {
    margin-bottom: 3vh;
  }
}
body.page-homepage.theme-light .section_hero {
  background: #f9dde0;
}
.section_hero > div {
  width: 50%;
  padding-top: 50px;
}
.section_hero > div img, .section_hero > div svg {
  max-width: 100%;
}
.section_hero .hero_text-container {
  padding: 3em 1.5em 0 1.5em;
  margin-top: 100px;
  margin-bottom: -2em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  text-wrap: balance;
}
@media (max-width: 600px) {
  .section_hero .hero_text-container {
    padding-top: 1em;
  }
}
.section_hero .hero_image-container {
  position: relative;
  text-align: center;
}
.section_hero .hero_image-container svg {
  position: absolute;
  width: 100%;
  height: auto;
  max-height: 92vh;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
}
body:not(.home) .section_hero .hero_image-container svg {
  z-index: -1;
}
.section_hero .hero_image-container img {
  position: relative;
  z-index: 9;
  padding: 12% 14% 0 15%;
  margin-bottom: 3em;
  -webkit-mask: linear-gradient(168deg, red 70%, transparent 85%);
  mask: linear-gradient(168deg, red 70%, transparent 85%);
}
.theme-light .section_hero .hero_image-container img {
  /* filter:
  		drop-shadow(3px 2px 0 rgba( themed( 'accentYellow' ), 0.97 ) )
  		drop-shadow(6px 4px 0 rgba( themed( 'accentPink' ), 0.97 ) )
  	//	drop-shadow(9px 6px 0 rgba( themed( 'accentBlue' ), 0.97 ) )
  		drop-shadow(15px 10px 0 rgba( themed( 'accentPurple' ), 0.87 ) )
  	//	drop-shadow(15px 8px 20px rgba( themed( 'accentPurple' ), 0.57 ) )
  	//	drop-shadow(15px 8px 20px rgba( themed( 'accentPurple' ), 0.87 ) )
  		drop-shadow(-10px 8px 28px rgba( 0, 0, 0, 0.23 ) )
  	; */
}
.theme-dark .section_hero .hero_image-container img {
  /* filter:
  		drop-shadow(3px 2px 0 rgba( themed( 'accentYellow' ), 0.97 ) )
  		drop-shadow(6px 4px 0 rgba( themed( 'accentPink' ), 0.97 ) )
  	//	drop-shadow(9px 6px 0 rgba( themed( 'accentBlue' ), 0.97 ) )
  		drop-shadow(15px 10px 0 rgba( themed( 'accentPurple' ), 0.87 ) )
  	//	drop-shadow(15px 8px 20px rgba( themed( 'accentPurple' ), 0.57 ) )
  	//	drop-shadow(15px 8px 20px rgba( themed( 'accentPurple' ), 0.87 ) )
  		drop-shadow(-10px 8px 28px rgba( 0, 0, 0, 0.23 ) )
  	; */
}

section.featured_content .subhead {
  display: inline-block;
  padding: 0.5em 2em 0.5em 5em;
  margin-top: 0;
  margin-left: -5em;
  clip-path: polygon(0 0, 100% 0%, 93% 100%, 0% 100%);
}
.theme-light section.featured_content .subhead {
  background: #f2566e;
  color: #ffffff;
}
.theme-dark section.featured_content .subhead {
  background: #f2566e;
  color: #ffffff;
}
section.featured_content svg.svg_divider {
  margin: -0.2em 0 -9.5em 0;
  display: block;
}
section.featured_content.video .section_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
section.featured_content.video .section_content > * {
  margin: 0.5em;
}
section.featured_content.video .section_content h6 {
  align-self: flex-start;
}
section.featured_content.video .section_content h6.subhead {
  margin-bottom: -0.75em;
  margin-left: -3em;
}
section.featured_content.video .section_content .video_wrapper {
  width: 100%;
}
section.featured_content.video .section_content .featured_video_title {
  max-width: 45ch;
  padding: 0 1em 2em 1em;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}
section.featured_content.video .section_content .related_videos {
  align-self: stretch;
  margin-top: -1.5em;
}
section.featured_content.video .section_content .related_videos .flex-row {
  justify-content: space-evenly;
  align-items: flex-start;
}
section.featured_content.video .section_content .related_videos .related_video {
  flex: 1;
  padding: 0.5em;
}
section.featured_content.video .section_content .related_videos .related_video a {
  display: block;
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 13em;
}
.theme-light section.featured_content.video .section_content .related_videos .related_video a:hover img, .theme-light section.featured_content.video .section_content .related_videos .related_video a:focus img, .theme-light section.featured_content.video .section_content .related_videos .related_video a:target img {
  border: 1px solid rgba(69, 172, 206, 0.25);
  filter: none;
}
.theme-dark section.featured_content.video .section_content .related_videos .related_video a:hover img, .theme-dark section.featured_content.video .section_content .related_videos .related_video a:focus img, .theme-dark section.featured_content.video .section_content .related_videos .related_video a:target img {
  border: 1px solid rgba(251, 173, 65, 0.25);
  filter: none;
}
section.featured_content.video .section_content .related_videos .related_video img {
  width: 100%;
  object-fit: cover;
}
.theme-light section.featured_content.video .section_content .related_videos .related_video img {
  border: 1px solid rgba(69, 172, 206, 0.25);
}
.theme-dark section.featured_content.video .section_content .related_videos .related_video img {
  border: 1px solid rgba(251, 173, 65, 0.25);
}
section.featured_content.video video,
section.featured_content.video iframe {
  width: 85%;
  margin: 1em auto;
  padding: 8px;
  display: block;
  min-height: 28.5vw;
}
.theme-light section.featured_content.video video,
.theme-light section.featured_content.video iframe {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #ffffff;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark section.featured_content.video video,
.theme-dark section.featured_content.video iframe {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #292929;
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
@media (max-width: 900px) {
  section.featured_content.video video,
  section.featured_content.video iframe {
    width: 100%;
    margin-top: 3em;
  }
}
section.featured_content.playlist {
  margin: 6em 0 8em 0;
  padding-bottom: 4em;
}
section.featured_content.playlist .column_left > * {
  max-width: 45ch;
}
section.featured_content.playlist .column_left .excerpt {
  margin: 0 auto;
}
section.featured_content.playlist .column_right {
  align-self: stretch;
  justify-self: flex-end;
  margin: 0;
  padding: 0;
}
section.featured_content.playlist .column_right figure,
section.featured_content.playlist .column_right img {
  width: 100%;
  height: calc(100% + 4em);
}
section.featured_content.playlist .column_right figure {
  margin: -2em 0;
}
section.featured_content.playlist .more_playlists_container {
  margin: 3em 2em 0 2em;
}
section.featured_content.playlist .more_playlists_container h6 {
  margin: 1em;
}
section.featured_content.blog {
  padding: 2em;
}
section.featured_content.blog .featured_blog_container {
  margin: 1%;
  padding: 3em;
  position: relative;
  height: 85vh;
  transition: all 200ms ease-in-out;
}
@media (orientation: portrait) {
  section.featured_content.blog .featured_blog_container {
    height: 50vh;
  }
}
.theme-light section.featured_content.blog .featured_blog_container {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #ffffff;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark section.featured_content.blog .featured_blog_container {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #292929;
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
.theme-light section.featured_content.blog .featured_blog_container:hover {
  border: 1px solid #5e3a7e;
}
.theme-dark section.featured_content.blog .featured_blog_container:hover {
  border: 1px solid #FF6687;
}
.theme-light section.featured_content.blog .featured_blog_container:hover img {
  filter: none;
}
.theme-dark section.featured_content.blog .featured_blog_container:hover img {
  filter: none;
}
.theme-light section.featured_content.blog .featured_blog_container a:not(.primary_button) {
  color: #292929;
  text-decoration: none;
}
.theme-dark section.featured_content.blog .featured_blog_container a:not(.primary_button) {
  color: #ffffff;
  text-decoration: none;
}
section.featured_content.blog .featured_blog_container img {
  position: absolute;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  top: 8px;
  left: 8px;
  bottom: 8px;
  right: 0;
  object-fit: cover;
  z-index: 0;
}
section.featured_content.blog .featured_blog_container h6 {
  position: relative;
  z-index: 99;
  padding-left: 2em;
  margin-left: -4em;
}
section.featured_content.blog .featured_blog_container .blog_overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
  width: 90ch;
  max-width: 50vw;
  clip-path: polygon(4% 0, 100% 0%, 100% 100%, 0% 100%);
  padding: 2em 3% 3em 6%;
}
.theme-light section.featured_content.blog .featured_blog_container .blog_overlay {
  background: rgba(255, 255, 255, 0.9);
}
.theme-dark section.featured_content.blog .featured_blog_container .blog_overlay {
  background: rgba(41, 41, 41, 0.9);
}
@media (max-width: 600px) {
  section.featured_content.blog .featured_blog_container .blog_overlay {
    max-width: 75vw;
  }
}
section.featured_content.blog .featured_blog_container .blog_overlay .excerpt {
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
}
section.featured_content.term {
  margin: 5em 0 7em 0;
  padding-bottom: 6em;
}
section.featured_content.term .section_content {
  position: relative;
}
section.featured_content.term .two_column > * {
  flex: 50%;
}
section.featured_content.term .two_column .column_left {
  padding: 2em;
  margin: 0 auto;
}
section.featured_content.term .two_column .column_left > * {
  max-width: 45ch;
}
section.featured_content.term .two_column .column_right {
  margin: -3em 0;
}
section.featured_content.term .excerpt {
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
  margin: 0 auto;
}
section.featured_content.term video,
section.featured_content.term iframe {
  width: 50vw;
  min-height: 29vw;
  padding: 8px;
}
.theme-light section.featured_content.term video,
.theme-light section.featured_content.term iframe {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #ffffff;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark section.featured_content.term video,
.theme-dark section.featured_content.term iframe {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #292929;
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
@media (max-width: 900px) {
  section.featured_content.term video,
  section.featured_content.term iframe {
    width: 100%;
    margin-top: 3em;
  }
}
section.featured_content.term .related_content {
  margin: 2em;
  padding: 1em 0 2.7em 0;
}
section.featured_content.term .related_content img {
  object-fit: cover;
  height: 100%;
  max-height: 200px;
  padding: 6px;
  margin: 1em 0;
}
.theme-light section.featured_content.term .related_content img {
  border: 1px solid rgba(41, 41, 41, 0.5);
  background: #ffffff;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark section.featured_content.term .related_content img {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #292929;
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}

.page_link_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 300ms ease-in-out;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.page_link_section.image_left {
  flex-direction: row-reverse;
}
.page_link_section > div {
  width: 50%;
}
.page_link_section > div.page_link-text_container {
  width: 55%;
  margin-left: -5%;
  position: relative;
  z-index: 99;
}
@media (max-width: 600px) {
  .page_link_section > div.page_link-text_container {
    width: 72%;
  }
}
.theme-light .page_link_section:hover, .theme-light .page_link_section:target, .theme-light .page_link_section:focus {
  border-top: 1px solid rgba(41, 41, 41, 0.23);
  border-bottom: 1px solid rgba(41, 41, 41, 0.23);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.theme-dark .page_link_section:hover, .theme-dark .page_link_section:target, .theme-dark .page_link_section:focus {
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

h3.link_title {
  display: block;
  padding: 1em 1em 1em 6%;
  transition: all 250ms ease-in-out;
  clip-path: polygon(5% 0, 100% 0%, 100% 100%, 0% 100%);
}
.theme-light h3.link_title {
  background: #45acce;
  color: #ffffff;
  border: 2px solid transparent;
  text-decoration: none;
}
.theme-dark h3.link_title {
  background: #45acce;
  color: #ffffff;
  border: 2px solid transparent;
  text-decoration: none;
}
h3.link_title span {
  font-weight: 200;
}
h3.link_title span.subheading {
  font-size: clamp(1.14rem, 0.3vw + 0.99rem, 1.56rem);
  display: block;
  margin-bottom: 0.25em;
  line-height: 1.1;
  font-weight: 500;
}
.theme-light h3.link_title:hover, .theme-light h3.link_title:target, .theme-light h3.link_title:focus {
  background: #f2566e;
  color: #ffffff;
  border: 2px solid #ffffff;
  text-decoration: none;
}
.theme-dark h3.link_title:hover, .theme-dark h3.link_title:target, .theme-dark h3.link_title:focus {
  background: #f2566e;
  color: #ffffff;
  border: 2px solid #d6d6d6;
  text-decoration: none;
}

.page_link-text_container a,
.page_link-text_container a:visited {
  text-decoration: none;
}
.page_link-text_container a .link_description,
.page_link-text_container a:visited .link_description {
  font-weight: 200;
  font-size: clamp(1.26rem, 0.93vw + 0.8rem, 2.56rem);
  max-width: 45ch;
  margin: 0 auto;
}
.theme-light .page_link-text_container a .link_description,
.theme-light .page_link-text_container a:visited .link_description {
  color: #292929;
}
.theme-dark .page_link-text_container a .link_description,
.theme-dark .page_link-text_container a:visited .link_description {
  color: #ffffff;
}
@media (max-width: 900px) {
  .page_link-text_container a .link_description,
  .page_link-text_container a:visited .link_description {
    padding: 0 2em 0 8%;
  }
}
.page_link-text_container .fake_button {
  display: inline-block;
  margin: 1.25em 2em;
  float: right;
  transition: all 250ms ease-in-out;
}

.page_link-image_container {
  position: relative;
  margin: 2em 0;
}
.page_link-image_container .small_frame {
  position: absolute;
  width: 110%;
  left: 0;
  z-index: -1;
  height: 100%;
}
.page_link-image_container figure {
  margin: 0 0 0 -3em;
  width: 95%;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.23));
}
.page_link-image_container figure img {
  margin: 3em 0;
  width: 100%;
  max-height: 350px;
}
.theme-light .page_link-image_container figure img {
  border: 6px solid #ffffff;
}
.theme-dark .page_link-image_container figure img {
  border: 6px solid #292929;
}

section.glossary_term_list {
  padding: 2em;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.wp-block-column section.glossary_term_list {
  height: 100%;
}
section.glossary_term_list > .section_content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 3.2em 0;
}
section.glossary_term_list h2 {
  text-align: center;
  margin: -2.5em 0 0 0;
}

ul.term_list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 1.5em 0;
  overflow: hidden;
  list-style: none;
  flex-flow: row wrap;
}
ul.term_list .term {
  flex-grow: 1;
  text-align: center;
  margin: 0 -11px;
  padding: 0 11px 0 3px;
  border: 1px solid transparent;
  transform: skewX(-26deg);
}
ul.term_list .term:last-of-type, ul.term_list .term:nth-last-of-type(2) {
  padding-right: 0;
}
ul.term_list .term.more_terms {
  margin: 0 11px -1px 11px;
}
.theme-light ul.term_list .term.more_terms a {
  color: #292929;
}
.theme-dark ul.term_list .term.more_terms a {
  color: #ffffff;
}
.theme-light ul.term_list .term.more_terms a:hover, .theme-light ul.term_list .term.more_terms a:focus, .theme-light ul.term_list .term.more_terms a:target {
  color: #5e3a7e;
}
.theme-dark ul.term_list .term.more_terms a:hover, .theme-dark ul.term_list .term.more_terms a:focus, .theme-dark ul.term_list .term.more_terms a:target {
  color: #FF6687;
}
ul.term_list a,
ul.term_list a:visited {
  display: block;
  padding: 0.5em 1.75em;
  text-decoration: none;
  border: 4px solid transparent;
}
.theme-light ul.term_list a:hover, .theme-light ul.term_list a:focus, .theme-light ul.term_list a:target,
.theme-light ul.term_list a:visited:hover,
.theme-light ul.term_list a:visited:focus,
.theme-light ul.term_list a:visited:target {
  border-top-color: #292929;
  border-bottom-color: #292929;
}
.theme-dark ul.term_list a:hover, .theme-dark ul.term_list a:focus, .theme-dark ul.term_list a:target,
.theme-dark ul.term_list a:visited:hover,
.theme-dark ul.term_list a:visited:focus,
.theme-dark ul.term_list a:visited:target {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
ul.term_list a span,
ul.term_list a:visited span {
  display: block;
  transform: skewX(26deg);
}

.more_content_section {
  display: block;
  padding: 2em;
}
.more_content_section .more_content_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.more_content_section .more_content_header h2 {
  margin-top: 0;
  padding-top: 0;
}
.more_content_section .more_content_header h3 + a {
  margin-top: -2em;
}
.more_content_section .more_content_footer {
  text-align: right;
}

.eduguide_link-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  transition: all 300ms ease-in-out;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.theme-light .eduguide_link-container:hover, .theme-light .eduguide_link-container:target, .theme-light .eduguide_link-container:focus {
  border-top: 1px solid rgba(41, 41, 41, 0.23);
  border-bottom: 1px solid rgba(41, 41, 41, 0.23);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.theme-dark .eduguide_link-container:hover, .theme-dark .eduguide_link-container:target, .theme-dark .eduguide_link-container:focus {
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.eduguide_link-container .eduguide_link-image_container {
  width: 40%;
  padding-bottom: 4em;
}
.eduguide_link-container .eduguide_link_thumbnail {
  margin: 2em;
  min-height: 99%;
  object-fit: cover;
}
.theme-light .eduguide_link-container .eduguide_link_thumbnail {
  background: rgba(230, 230, 230, 0.25);
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.98), 3px 3px 1px rgba(41, 41, 41, 0.4), 4px 4px 0 rgba(255, 255, 255, 0.98), 7px 7px 1px rgba(41, 41, 41, 0.3), 8px 8px 0 rgba(255, 255, 255, 0.98), 11px 11px 1px rgba(41, 41, 41, 0.2), 12px 12px 0 rgba(255, 255, 255, 0.98), 15px 15px 1px rgba(41, 41, 41, 0.1);
}
.theme-dark .eduguide_link-container .eduguide_link_thumbnail {
  background: rgba(16, 16, 16, 0.25);
  box-shadow: 2px 2px 0 rgba(41, 41, 41, 0.98), 3px 3px 1px rgba(255, 255, 255, 0.4), 4px 4px 0 rgba(41, 41, 41, 0.98), 7px 7px 1px rgba(255, 255, 255, 0.3), 8px 8px 0 rgba(41, 41, 41, 0.98), 11px 11px 1px rgba(255, 255, 255, 0.2), 12px 12px 0 rgba(41, 41, 41, 0.98), 15px 15px 1px rgba(255, 255, 255, 0.1);
}
.eduguide_link-container .eduguide_link-text_container {
  flex: 1;
  padding: 0.7em 2em;
  margin: 5em 3em 5em -4em;
  border-radius: 6px;
}
.theme-light .eduguide_link-container .eduguide_link-text_container {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.12) 0px 50px 100px -20px, rgba(0, 0, 0, 0.23) 0px 30px 60px -30px;
}
.theme-dark .eduguide_link-container .eduguide_link-text_container {
  background: rgba(41, 41, 41, 0.85);
  box-shadow: rgba(26, 26, 50, 0.36) 0px 50px 100px -20px, rgba(0, 0, 0, 0.414) 0px 30px 60px -30px;
}
.eduguide_link-container .eduguide_link-text_container .eduguide_download_button_container {
  margin: 0;
  padding: 0;
}
.eduguide_link-container .eduguide_link-text_container .eduguide_download_button_container .subtle_overlay_button {
  margin: auto;
}

section.eduguide_header section.eduguide_link_section:nth-of-type(2n+1) .eduguide_link-container {
  flex-direction: row-reverse;
}
section.eduguide_header section.eduguide_link_section:nth-of-type(2n+1) .eduguide_link-container .eduguide_link-text_container {
  position: relative;
  margin-right: -8em;
  margin-left: 3em;
  z-index: 9;
}
section.eduguide_header section.eduguide_link_section:nth-of-type(2n+1) .eduguide_link-container .eduguide_link-image_container {
  margin-right: 6em;
}