/*
Author: Teo Zamudio
Date: January 31, 2023
Description: Custom CSS stylesheet for CKUT Radio.
Copyright: (c) 2023 CKUT
*/

/*
Base
*/
*,
*::after,
*::before {
	box-sizing: border-box;
}
body,
html {
	width: 100%;
	height: auto;
	font-family: 'Neue Montreal Regular';
	background: #fff;
	margin: 0;
	padding: 0;
}
/*
Fonts
*/
@font-face {
    font-family: 'Neue Montreal Bold';
    src: url('fonts/NeueMontreal-Bold.woff2') format('woff2'),
        url('fonts/NeueMontreal-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Montreal Medium';
    src: url('fonts/NeueMontreal-Medium.woff2') format('woff2'),
        url('fonts/NeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Montreal Regular';
    src: url('fonts/NeueMontreal-Regular.woff2') format('woff2'),
        url('fonts/NeueMontreal-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SemiBold';
    src: url('fonts/PPNeueMontreal-SemiBold.woff2') format('woff2'),
        url('fonts/PPNeueMontreal-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
img {
	max-width: 100%;
}
main img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}
hr {
	border: none;
	height: 1px;
	color: #000;
	background-color: #000;
	margin: 20px 0px 0px 0px;
}
a {
	color: #000;
	text-decoration: none;
	cursor: pointer !important;
}
.secondary-menu a:hover,
.main a:hover {
	color: #fff;
}
.center {
	text-align: center;
}
.spin {
	animation: spin 10s infinite;
}
@keyframes spin {
	0% {
		transform: rotateY(0deg);
	}
	100% {
		transform: rotateY(360deg);
	}
}
.container {
	padding: 40px 20px 0px;
}
.bandcamp-container{
	padding: 0px 20px 20px;
}
.secondary-container{
	padding: 0px 20px;
}
.full-container {
	padding: 0px;
}
.full-container hr {
	margin: 10px 0px 0px 0px;
}
.container .image img {
	height: 550px;
	width: 100%;
	object-fit: cover;
}
.store.container {
	padding: 40px 0px;
}
.page-header.store-header {
	padding: 20px 30px 50px;
}
.texto img {
	padding: 20px !important;
	object-fit: contain;
}
.podcasts.container .image img {
	height: auto;
}
.container .image.podcast-thumbnail img {
	height: 300px;
}
.podcasts .page-header {
	padding: 0px 0px 10px 0px;
}
.podcast-embed {
	padding: 20px 0px;
}
.podcast-programs h2{
	margin-top: 0px;
}
.content {
	width: 1000px;
	margin: 0 auto;
	max-width: 100%;
}
.page-template-page-get-involved .content,
.page-template-page-about .content,
.page-template-page-advertising .content {
	max-width: 1000px;
	width: auto;
}
.vertical-center {
	display: flex;
	align-items: center;
	height: 100%;
}
.podcast-programs.vertical-center {
	align-items: flex-start;
}
.side-bar-info {
	position: sticky;
	top: 90px;
	padding-top: 10px;
}
.side-bar {
	height: auto;
}
.side-bar small {
	font-size: 10px;
	display: block;
	margin: 15px 0px 5px 0px;
	font-family: 'Neue Montreal Bold';
}
.side-bar small:first-child {
	margin: 0px 0px 5px 0px;
}
.side-bar-nav {
	padding-top: 10px;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb-container {
	font-size: 12px;
}
.breadcrumb-container a:hover{
	opacity: .5;
}
.prev-next-post {
   display: block;
	font-size: 12px;
	text-align: right;
/*	position: fixed;*/
	bottom: 0px;
	padding: 40px 20px;
	right: 0px;
}
.prev-next-post a:first-child{
	padding-right: 10px;
}
.prev-next-post a:last-child{
	padding-left: 10px;
}
.videos .prev-next-post {
    text-align: left;
    padding-top: 30px;
}
.event-link:hover {
	opacity: .5;
	text-decoration: underline;
}
/*
Typography styling
*/
p {
	margin-bottom: 20px;
	font-size: 16px;
	letter-spacing: .40px;
}
h1 {
	font-size: 40px;
	margin-bottom: 20px;
	font-weight: normal;
}
h2 {
	font-size: 20px;
	margin: 20px 0px;
	font-family: 'Neue Montreal Medium';
	font-weight: normal;
}
h3 {
	font-family: 'Neue Montreal Medium';
	font-weight: normal;
}
small {
	font-size: 10px;
}
b, strong {
	font-family: 'Neue Montreal Bold';
	font-weight: normal;
}
/*
Loading
*/
.loading {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url('../../images/ckut-logo-light.svg') center no-repeat #000;
	background-size: 100px;
}
/*
Header
*/
header {
	border-bottom: 1px solid;
	max-width: 100%;
	height: 80px;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: flex-start;
	background: #fff;
	z-index: 100;
}
header a {
	text-decoration: none;
	color: #000;
}
header a:hover {
	opacity: 1;
}
.logo {
	max-width: 100%;
	width: 140px;
	padding: 15px 30px;
	border-right: 1px solid;
	height: 80px;
}
.logo:hover {
	background-color: #000;
}
.logo:hover svg{
	fill: #fff;
}
.logo svg {
	max-width: 79px;
}
/*
Nav
*/
nav {
	height: 40px;
	display: block;
	font-family: 'Neue Montreal Medium';
	background-color: #fff;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-flex: 1;
	width: 100%;
	flex-wrap: nowrap;
	justify-content: space-between;
	color: #000;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
nav a {
	text-decoration: none;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	text-align: center;
	height: 100%;
	align-items: center;
	justify-content: center;
	padding: 0px 20px;
}
nav a:hover {
	color: #fff;
	background: #000;
	opacity: 1;
}
.page-nav-links {
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	font-weight: bold;
	padding-top: 120px;
}
/*
Menu
*/
.menu {
	width: 100%;
	flex-direction: column;
}
.menu [aria-current] {
    background: #000;
	color:  #fff;
}
.menu .donate [aria-current] {
	background: transparent
}
.menu ul {
	margin: 0;
	padding: 0;
}
.primary-menu {
	width: 100%;
	height: 40px;
	display: flex;
}
.primary-menu li {
	display: flex;
}
.primary-menu-container {
	width: 100%;
	height: 40px;
	display: flex;
}
.primary-menu-container li {
	text-decoration: none;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	text-align: center;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
}
.primary-menu .sub-menu {
	position: absolute;
	top: 80px;
	width: 100%;
	left: 0;
	background: transparent;
	display: none;
	padding-bottom: 40px;
}
.primary-menu .sub-menu li a{
	padding: 9px 0px;
}
.primary-menu .sub-menu li {
	border-bottom: 1px solid;
}
.primary-menu .menu-item-has-children:hover .sub-menu{
	display: flex;
}
.menu-item-has-children:hover a{
	background: #000;
	color: #fff;
}
.menu-item-has-children .sub-menu a:hover {
	background: #fff;
	color: #000;
}
.primary-menu a {
	font-size: 16px;
	flex-grow: 1;
}
/*Secondary Menu */
.secondary-menu {
	height: 40px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	font-family: 'Neue Montreal Medium';
	font-size: 16px;
	display: flex;
	flex-direction: row;
/*	width: calc(100vw - 140px);*/
	overflow: hidden;
}
.secondary-menu .donate {
	padding: 0px 15px;
	align-items: center;
	height: 40px;
	width: 16%;
	justify-content: center;
	cursor: pointer;
	display: flex;
	color: #fff;
	background-color: #008d44;
}
.secondary-menu .donate a {
	text-decoration: none;
	color: #fff;
	margin-right: 10px;
}
.secondary-menu .donate span {
	text-decoration: none;
	color: #fff;
	margin-right: 10px;
}
.donate-icon {
	height: 20px;
	width: 20px;
	padding: 0px;
}
.donate:hover .donate-icon {
	background-color: #000;
}
.donate:hover .donate-icon .donate-default{
	display: none;
}
.donate .donate-icon .donate-hover{
	display: none;
}
.donate:hover .donate-icon .donate-hover{
	display: block;
}
.secondary-menu .donate:hover {
	background-color: #000;
}
.secondary-menu .donate:hover a {
	color: #fff;
}
.login {
	top: 80px;
	position: absolute;
	height: 35px;
	width: 100%;
	left: 0;
	border-right: 0px;
	background: transparent;
	z-index: 99;
	font-family: 'Neue Montreal Medium';
	text-decoration: none;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	padding: 0px;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}
/*
Search
*/
.search-results {
	grid-gap: 20px;
}
.search-thumbnail-result img {
	height: 300px;
	width: 100%;
	object-fit: cover;
}
.btn-search {
	width: 100%;
	border: none;
	border-right: 1px solid;
	padding: 0px 20px;
}
.search-results {
	grid-gap: 20px;
}
.search-icon {
	height: 40px;
	background: #fff;
	display: flex;
	width: 55px;
	padding: 10px 15px;
	border-left: 1px solid #000;
	cursor: pointer;
	z-index: 500;
	animation: color 5s linear 1s infinite alternate;
    -webkit-animation: color 10s linear 0s infinite alternate;
}
@keyframes color {
	0% {
		background-color: #fff;
	}
	100%  {
		background-color: #88f; 
	}
}
@-webkit-keyframes color {
	0% {
		background-color: #fff;
	}
	100% {
		background-color: #88f; 
	}
}
.search-icon svg line {
	fill:none;
	stroke:#000;
	stroke-width:6;
	stroke-miterlimit:10;
}
.search-icon.active {
	background: #000;
}
.search-icon.active {
	background: #000;
}
.search-icon.active svg line {
	stroke:#fff;
}
.search-icon.active svg path{
	fill:#fff;
}
.search-icon:hover {
    background-color: #b7b7b7;
}
.search-form-container {
	width: -webkit-calc(100% - 140px);
	width: -moz-calc(100% - 140px);
	width: calc(100% - 140px);
	background: #fff;
	color: #000;
	position: fixed;
	transform: translateX(100%);
	transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
	z-index: 100;
	top: 0;
	border-bottom: 1px solid;
	height: 40px;
}
.search-open .search-form-container {
	transform: translateX(180px);
	width: -webkit-calc(100% - 370px);
	width: -moz-calc(100% - 370px);
	width: calc(100% - 370px);
	z-index: 100;
}
.search-form {
	display: flex;
	justify-content: space-between;
}
.search-field {
	border-left: none;
	border-bottom: none;
	border-top: none;
	border-right: 1px solid;
	height: 40px;
	padding-left: 15px;
	width: 100%;
}
.search-submit:hover {
	background-color: #000;
	color: #fff;
}
.search-submit {
	border-left: none;
	border-bottom: none;
	border-top: none;
	border-right: none;
	height: 40px;
	background-color: #fff;
	padding: 0px 30px;
	cursor: pointer;
}
:focus-visible {
  outline: 0px;
}
/*
Player Header
*/
.player-button {
	display: flex;
	height: 40px;
	display: flex;
	width: 55px;
	padding: 10px 20px;
	border-right: 1px solid #000;
}
.player-button:hover {
	background-color: #000;
}
.player-button:hover svg{
	fill: #fff;
}
/*
Player
*/
.player {
	display: flex;
	height: 40px;
	display: flex;
	width: 55px;
	padding: 10px 20px;
	border-right: 1px solid #000;
}
.player:hover {
	background-color: #000;
}
.player:hover svg{
	fill: #fff;
}

.tracklist {
	display: flex;
	border-right: 1px solid #000;
	height: 40px;
	align-items: center;
	width: 40%;
	justify-content: center;
	overflow: hidden;
	/*	white-space: nowrap;*/
	position: relative;
}
/*
Programming Menu
*/
.programming-menu {
	display: flex;
	border-right: 1px solid #000;
	align-items: center;
	height: 40px;
	width: 25%;
	justify-content: center;
}
a.programming-menu  {
	text-transform: uppercase;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}
.programming-menu:hover {
	background-color: #ffa700;
	cursor: pointer;
}
.programming-menu:hover a{
	color: #fff;
}
.page-template-page-programming .menu [aria-current] {
	background-color: #ffa700;
}
.page-template-page-programming .programming-menu {
	background-color: #ffa700;
}
/*
Live
*/
.listen-live-wrapper {
	display: flex;
	border-right: 1px solid #000;
	height: 40px;
	align-items: center;
	width: 40vw;
	justify-content: center;
	overflow: hidden;
	position: relative;
	color: #fff;
}
.live-now:hover {
	background-color: #000;
	color: #fff;
	cursor: pointer;
}
.live-now:hover a {
	color: #fff;
}
.live-now {
	display: flex;
	border-right: 1px solid #000;
	height: 40px;
	align-items: center;
	width: 24%;
	justify-content: center;
}
.listen-live {
	position: absolute;
	display: flex;
	background: #f00;
	color: #fff;
	z-index: 999;
	left: 0;
	padding: 0px 20px;
	border-right: 1px solid #000;
	height: 40px;
	align-items: center;
}
.listen-live a:link {
	color: #fff;
}
.listen-live a {
	color: #fff;
}
.listen-live a:visited {
	color: #fff;
}
a.marquee-link:hover {
	color: #000;
} 
a.marquee-link:hover {
	color: #000;
} 
.blink {
	animation: listenlive 1s infinite alternate ease-in-out;
}
@keyframes listenlive {
	0% {
		opacity: .5;
	}
	100% {
		opacity: 1;
	}
}
.live {
	width: 10px;
	height: 10px;
	background-color: red;
	border-radius: 100%;
	animation: fadeIn 1s infinite alternate ease-in-out;
	margin: 0px 8px 0px 0px;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*
Marquee
*/
@-webkit-keyframes marquee {
	100% {
		transform: translateX(-100%);
	}
}
@keyframes marquee {
	100% {
		transform: translateX(-100%);
	}
}
[data-marquee] {
	--loop-duration: 30s;
	display: block;
}
[data-marquee] span{
	text-transform: uppercase;
	padding: 0px 5px;
}
[data-marquee] [data-marquee-shadow] {
	position: absolute;
	visibility: hidden;
	height: auto;
	width: auto;
	white-space: nowrap;
}
[data-marquee] [data-marquee-overflow] {
	overflow: hidden;
	transform: translate3d(0, 0, 0);
}
[data-marquee] [data-marquee-container] {
	display: flex;
	-webkit-animation: marquee var(--loop-duration) linear infinite;
	animation: marquee var(--loop-duration) linear infinite;
}
[data-marquee] [data-marquee-container]:hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
[data-marquee] [data-marquee-style] {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
[data-marquee-style] {
	padding: 0 12px;
	
}
.uppercase {
	text-transform: uppercase;
	padding:0px 5px;
}
/*
Audio Player
*/
.main-player {
	padding: 20px 20px 0px 20px;
}

header.audio-player {
	height: 70px;
	width: 100%;
	background-color: #000;
	color: #fff;
}
header.audio-player .logo {
	height: 70px;
	width: 100px;
	border-right: none;
	padding: 17px 20px;
	justify-content: flex-start;
}
header.audio-player .logo svg{
	fill: #fff;
}
header.audio-player .logo:hover {
	background-color: #fff;
}
header.audio-player .logo:hover svg{
	fill: #000;
}
.player-title {
	right: 0px;
	position: absolute;
	padding: 20px;
	font-size: 23px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 110px;
}
.page-template.page-template-templates.page-template-page-player.page-template-templatespage-player-php.page.page-id-119 {
	background: #000;
	color: #fff;
}
.page-template.page-template-templates.page-template-page-player.page-template-templatespage-player-php.page.page-id-119 hr {
	border: none;
	height: 1px;
	color: #fff;
	background-color: #fff;
	margin: 0px;
}
/*
Audio Player
*/
body.audio-player-template {
	height: 100vh;
	background: #000;
}
body.audio-player-template footer{
	display: none !important;
}
.audio-player-header {
	height: 60px;
	width: 100%;
	background-color: #000;
	color: #fff;
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
	position: relative;
	top: 0;
}
.audio-player-header .logo {
	height: 60px;
	width: 80px;
	border-right: none;
	position: relative;
	z-index: 100;
	display: flex;
	justify-content: center;
}
.audio-player-header .logo svg{
	fill: #fff;
	width: 41px;
}
.audio-player .logo:hover {
	background-color: #fff;
}
.audio-player .logo:hover svg{
	fill: #000;
}
.player-title {
	width: 110px;
	top: 0px;
	right: 0px;
	position: absolute;
	padding: 20px;
	font-size: 14px;
	line-height: 17px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-transform: uppercase;
	letter-spacing: 1px;
	height: 60px;
}
.player-title a{
	color: #fff;
	text-decoration: none;
}
.audio-player .marquee-link, .audio-player .marquee-link:hover {
	color: #fff;
	text-decoration: none;
	font-weight: normal;
}
body.audio-player {
	height: 100vh;
	background: #000;
}
body.audio-player-template footer{
	display: none !important;
}
audio {
	position: absolute;
}
.audio-player-main {
	position: absolute;
	left: 0px;
	transform: none;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	transition: all 0.2s;
	width: 100vw;
	max-width: 100%;
	background: #000;
	box-sizing: border-box;
	overflow: hidden;
}
.audio-player-marquee {
	flex: 1;
	padding: 25px 0px;
	color: #fff;
	height: 60px;
	position: relative;
	/*! display: block; */
}
.controls {
	width: 100%;
	height: 60px;
	display: flex;
	flex-direction: row;
	background: #000;
	margin-top: -1px;
	padding: 0px;
	box-sizing: border-box;
	transition: all 0.2s;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.play-button-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 80px;
	border-right: 1px solid #fff;
}
.play-button-wrapper:hover {
	background: #fff;
	cursor: pointer;
}
.play-button-wrapper:hover svg rect, .play-button-wrapper:hover svg path{
	fill: #000;
}
#volume-slider {
	width: 100%;
	cursor: pointer;
	margin: 0px 35px 0px 25px;
}
.play-button {
	display: flex;
	width: 100%;
	margin: 0 20px;
	left: 0;
	position: relative;
	justify-content: center;
}
.controls_player {
	fill: #fff;
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: calc(100% - 160px);
	border-right: 1px solid #fff;
}
.play {
	cursor: pointer;
	width: 13px;
	max-width: 18px;
	transition: all 0.2s;
	fill: #fff;
}
.play:hover {
	fill: #fff;
}
#pause_btn {
	display: none;
}
.comments-audio-player-link {
	width: 80px;
	display: flex;
	justify-content: center;
	cursor: pointer;
}
.comments-audio-player-link:hover {
	background: #fff;
}

#comments-audio-player {
	cursor: pointer;
	width: 80px;
	max-width: 80px;
	transition: all 0.2s;
}
.comments-audio-player-link svg polyline, 
.comments-audio-player-link svg line,  
.comments-audio-player-link svg polygon {
	fill:none;
	stroke:#FFFFFF;
	stroke-width:1;
	stroke-miterlimit:10;
}
.comments-audio-player-link:hover svg polyline,
.comments-audio-player-link:hover svg line,
.comments-audio-player-link:hover polygon {
	stroke:#000;
}
#volume_btn {
	width: 20px;
	max-width: 20px;
	margin: 0px 0px 0px 20px;
}

.progressbar_slide {
	width: 80%;
	background: #fff;
	height: 4px;
}
.progressbar_range {
	width: 0;
	background: #000;
	height: 4px;
	opacity: .5;
}
#timeleft {
	width: 10%;
	text-align: right;
	margin: 0 20px 2px 20px;
	color: #fff;
}
.audio-player input[type='range'] {
	overflow: hidden;
	width: 100%;
	-webkit-appearance: none;
	background-color: #000;
	height: 30px;
}
.audio-player input[type="range"]::-moz-range-progress {
	background-color: #fff;
	height: 1px;
}
.audio-player input[type="range"]::-moz-range-track {  
	background-color: #4d4d4d;
	height: 1px;
}
.audio-player input[type="range"]::-ms-fill-lower {
	background-color: #fff; 
	height: 1px;
}
.audio-player input[type="range"]::-ms-fill-upper {  
	background-color: #fff;
	height: 1px;
}
.audio-player input[type="range"]::-moz-range-thumb {
	height: 15px;
	background: #fff;
	border: 1px solid #fff;
	border-radius: 100px;
	width: 15px;
}
/* Mobile */
.mobile {
	display: none;
}
.mobile-menu a {
  padding: 10px 20px;
  display: flex;
}
.mobile-menu ul li a:hover {
	background: #000;
	color: #fff;
	opacity: 1;
}
.mobile-menu ul li.mobile-dropdown {
	border-bottom: 0px;
}
.mobile-dropdown a {
	border-bottom: 1px solid #000;
	padding: 10px 40px;
}
.mobile-menu .menu-item-has-children.on a{
	background: #000;
	color: #fff;
	border-bottom: 1px solid #fff;
}
.mobile-menu .menu-item-has-children.on a:hover{
	background: #fff;
	color: #000;
	border-bottom: 1px solid #000;
}
.mobile-parent-dropdown:hover .open-dropdown svg{
	fill: #fff;
}
.mobile-dropdown.on:hover .mobile-parent-dropdown svg{
	fill: #fff;
}
.mobile-dropdown.on .mobile-parent-dropdown:hover svg{
	fill: #000;
}
.mobile-dropdown.on .mobile-parent-dropdown:hover {
	border-bottom: 1px solid #fff;
}
.mobile-dropdown a.mobile-parent-dropdown {
	border-bottom: 1px solid #000;
	padding: 10px 12px 10px 20px;
	justify-content: space-between;
}
.mobile-menu .mobile-dropdown ul li  {
	border-bottom: 0px;
}
.mobile-menu .open-dropdown{
	display: flex;
	align-items: center;
}
.mobile-dropdown .mobile-parent-dropdown on.open-dropdown:hover  svg {
	fill: #000;
}
.mobile-menu .open-dropdown.on svg{
	fill: #fff;
	transform: rotate(-45deg);
}
.mobile-menu .open-dropdown svg{
	width: 15px;
	height: 15px;
}
.mobile-menu .sub-menu {
	opacity: 0;
	height: 0;
	pointer-events: none;
	transition: height 2s linear 1s;
}
.mobile-menu .sub-menu.on {
	opacity: 1;
	height: auto;
	border-top: 1px solid #fff;
	pointer-events: auto;
	
}
.mobile-menu ul li.mobile-programming-menu a:hover {
	background-color: #ffa700;
	color: #000;
}
.social-media {
	display: flex;
	padding: 10px 20px;
	width: 100%;
	justify-content: space-between;
	font-size: 14px;
}
.social-media-icons {
	height: 16px;
	display: inline-flex;
	align-items: center;
	align-content: center;
	flex-direction: row;
	gap: 10px;
}
.social-media-icons a {
	padding: 0px 2px;
}
.social-media-icons a:hover{
	opacity: .5;
}
/*
Main
*/
main {
	position: relative;
}
.main-content {
	max-width: 100%;
	width: 100%;
}
.sticky {
	position: sticky;
}
.default-page .sticky h1{
	position: sticky;
	top: 100px;
}
.default-page .grid.content-layout{
	grid-gap: 20px;
}
.default-page .container {
	padding: 30px 0px 0px;
}
/*
Grid
*/
.grid {
	display: grid !important;
}

.one-column {
	grid-template-columns: repeat(1, 1fr);
}

.two-columns {
	grid-template-columns: repeat(2, 1fr);
}

.three-columns {
	grid-template-columns: repeat(3, 1fr);
}

.four-columns {
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
}

.five-columns {
	grid-template-columns: repeat(5, 1fr);
}

.six-columns {
	grid-template-columns: repeat(6, 1fr);
}
.content-layout {
	grid-template-columns: 25% 50% 23%;
    grid-gap: 1%;
}
.gap-20 {
	grid-gap: 20px;
}
/*
Layout
*/
.about .grid {
	grid-gap: 20px;
}
.about .content a {
	text-decoration: underline;
}
.about-description p {
	font-size: 24px;
}
.about-content img {
	height: auto;
	position: sticky;
	top: 100px;
	padding: 125px;
}
.about-content a {
	text-decoration: underline;
}
.about-content a:hover {
	opacity: .5;
}
.separator {
	border-bottom: 1px solid #000;
	border-top: 1px solid #000;
	margin-bottom: 20px;
	padding-top: 18px;
}
/*
Slider
*/

.slide-container {
	align-content: center;
}

.slick-next {
	right: 10px;
}

.slick-prev {
	right: 30px;
	left: auto;
	z-index: 100;
}
.auto {
	display: none;
}
.slide-description {
	padding: 60px 40px 40px;
	display: block;
}
.slide-description p{
	font-size: 14px;
}
.slide-description a{
	text-decoration: underline;
}
.slide-link {
	padding: 5px 10px;
	margin-top: 10px;
	border: 1px solid;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
}
.slide-link:hover {
	background: #000;
	color: #fff;
}
a.slide-link {
	text-decoration: none;
}
.slider {
	width: 100%;
	margin: auto;
}
.slick-slide {
	margin: 0px;
}

.slick-prev:before,
.slick-next:before {
	color: white;
}
.slick-dots li.slick-active button::before {
    opacity: 1;
}
.slick-slide {
	transition: all ease-in-out .3s;
	opacity: 1;
}

.slick-active {
	opacity: 1;
}

.slick-current {
	opacity: 1;
}

.slick-dots {
	display: flex;
	justify-content: center;
}
.ckut-carousel.featured-slideshow {
	padding-right: 20px;
}
.ckut-carousel.events {
	padding-right: 20px;
}
/*Default*/
.default-page {
	padding: 20px;
}
/*Home*/
body.home .container {
	padding: 20px;
}
main.archive {
	padding-top: 0px;
}
.home-slideshow {
	height: auto;
	max-height: 100%;
	max-width: 100%;
	border-bottom: 1px solid #000;
	display: flex;
/*	overflow-y: hidden;*/
}
.home-slideshow h1{
	font-family: 'Neue Montreal Medium';
	line-height: 1.2;
}
.home-carousel:not(.tns-slider) {
	display: flex;
	overflow-x: auto;
	opacity: 0;
}
.featured-slideshow:not(.tns-slider) {
	display: flex;
	overflow-x: auto;
	opacity: 0;
}
.tns-slider {
    -webkit-animation: fadeInFromNone 0.5s ease-out;
    -moz-animation: fadeInFromNone 0.5s ease-out;
    -o-animation: fadeInFromNone 0.5s ease-out;
    animation: fadeInFromNone 0.5s ease-out;
}
@-webkit-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@-moz-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@-o-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}
.home-carousel.overflow-hidden:not(.tns-slider) {
	overflow: hidden;
}
.grid {
	max-width: 100%;
}
.nav-links {
	display: flex;
}
h2.screen-reader-text {
	font-weight: normal;
}
.nav-links a:hover {
	background: none;
	color: #000;
	opacity: .5;
}
.nav-links .current {
	opacity: .4;
}
nav .nav-links span, nav .nav-links a  {
	padding: 0px 0px 0px 20px;
}
.navigation.pagination {
	border-right: none;
	background: #fff;
	position: sticky;
	top: 79px;
	border-top: none;
	z-index: 50;
}
.home-slideshow  .slide-image {
	background-color: #000;
}
.home-slideshow .slick-dotted.slick-slider{
	margin-bottom: 0px !important;
}
.home-slideshow .slick-slide img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-bottom: 1px solid;
}
.home-slideshow .slick-prev,
.home-slideshow .slick-next {
	bottom: 0;
	mix-blend-mode: exclusion;
}
.home-slideshow .slide-image {
    height: 700px;
	width: 50vw;
}
.home-slideshow .slide-container {
	border-left: 1px solid #000;
}
.home-slideshow .slide-image img{
   object-position: top;
}
.home-slideshow .slick-dots li button::before {
	font-size: 9px;
}
.home-slideshow .slick-dots {
	width: calc(50% - 0px);
	padding: 20px 0px 20px 20px;
	right: 0;
	justify-content: flex-start;
	font-size: 12px;
}
.featured-archive.grid {
	grid-gap: 20px;
}
.featured-archive .description {
	display: flex;
	align-items: center;
}
.featured-archive .description.full-width {
	display: flex;
	align-items: baseline;
}
.featured-archive.one-column .image img {
	height: 75vh;
	object-fit: cover;
	width: 100%;
}
.featured-show.grid {
	grid-gap: 20px;
}
.featured-show .description {
	display: flex;
	align-items: center;
}

.featured-show .description.full-width {
	display: flex;
	align-items: baseline;
}

.featured-show.one-column .image img {
	height: 75vh;
	object-fit: cover;
	width: 100%;
}

.featured-show .caption a.link {
	text-decoration: underline;
}

.caption h2 {
	margin-top: 0px;
	margin-bottom: 10px;
}
.featured-video .image img {
	height: 360px;
}
.video-link {
	padding: 5px 10px;
	margin-top: 10px;
	border: 1px solid;
	cursor: pointer;
	display: inline-block;
}
.video-link:hover {
	background: #000;
	color: #fff;
}
.featured-slideshow {
	padding-top: 20px;
}
.featured-slideshow p{
	font-size: 14px;
}
.featured-thumbnail img {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	max-width: 100%;
	animation: fadeIn 1s ease-in;
}
.featured-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 100%;
}
/*
Video
*/
.video-play {
	display: flex;
	width: 47vw;
	align-items: center;
	justify-content: center;
	position: absolute;
	height: 360px;
}

.container .image .video-play svg {
	max-width: 60px;
	object-fit: contain;
	width: 100%;
}
.container .image .video-play svg path {
	fill:#FFFFFF;
}
.video .embed-container {
	overflow-y: hidden;
}
.embed-container {
	position: relative;
	padding-bottom: 45.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	overflow-y: auto;
}
.video .embed-container {
/*	height: auto;*/
	aspect-ratio: 16 / 9;
	margin: 0 auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.caption a{
	text-decoration: underline;
}
.caption a:hover{
	text-decoration: underline;
	opacity:  .5;
}
/*
Archive Page
*/
.archive-description a{
	text-decoration: underline;
}
.archive-description a:hover{
	opacity: .5;
}
/*
News
*/
.grid-layout {
	width: 100%;
	grid-gap: 20px;
	box-sizing: border-box;
	padding-bottom: 20px;
}
.grid-item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.blogs-container .grid-item img{
	aspect-ratio: 3/2;
	height: auto;
	max-height: 300px;
}
.grid-item h2 {
	margin: 0px 0px 10px;
}

.grid-item a:hover {
	opacity: 1;
}

.grid-item a:hover .featured-blog-title {
	opacity: .5;
}
.featured-blog-title {
	font-size: 16px;
}
.featured-blog-title h1{
	margin-bottom: 10px;
}
.featured-blog-description {
	letter-spacing: .5px;
	font-size: 14px;
}
.blog-wrapper {
	padding-top: 20px;
}
/*
Playing Next
*/
.playing-now {
	align-items: center;
}

.playing-now a {
	text-decoration: underline;
}

.playing-now .description {
	display: block;
}
/*
Featured
*/
.featured-programming {
	padding-top: 20px;
}
.featured {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 10px 20px 0px 20px;
}
.featured.separator {
	justify-content: space-between;
	padding: 10px 0px 10px 0px;
	position: sticky;
	top: 79px;
	background-color: #fff;
}
.featured.separator .featured-nav {
	width: auto;
} 
.featured h1 {
	margin-bottom: 0px;
}
.featured h1 a {
	opacity: 1;
}
.featured h1 a:hover {
	opacity: .5;
}
.featured .featured-nav {
	width: 90px;
	flex-wrap: nowrap;
	justify-content: space-between;
	display: flex;
}
.featured .featured-nav .prev-arrow,
.featured .featured-nav .next-arrow {
	width: 40px;
	height: 40px;
	border: 1px solid;
	border-radius: 100%;
	padding: 9px;
	cursor: pointer;
}
.next-arrow-icon, .prev-arrow-icon {
	fill:none;
	stroke:#000;
	stroke-linecap:round;
	stroke-miterlimit:10;
	stroke-width:2px
}
.ckut-carousel .slick-slide img {
	width: 100%;
	max-height: 300px;
	min-height: 300px;
	object-fit: cover;
}
.ckut-carousel .slick-prev,
.ckut-carousel .slick-next {
	bottom: 0;
	mix-blend-mode: exclusion;
}
.ckut-carousel .slide {
	padding: 20px 0px 20px 20px;
}
.ckut-carousel .slide img {
	width: 100%;
	height: auto;
}
.tags {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 10px 0px;
	height: 40px;
}
.tags .thumbnail-category a:after {
	content: '/';
	padding-left: 5px;
}
.tags .thumbnail-category a:last-child:after{
	content: '';
	padding-left: 0px;
}
.general-featured-image img {
	width: 100%;
	max-width: 100%;
	padding: 20px;
	height: 50vh;
	object-fit: cover;
}
.general-featured-image.full-screen img {
	height: calc(100vh - 80px);
	object-fit: cover;
}
.general-featured-image.banner img {
	height: calc(50vh - 80px);
	object-fit: cover;
}
.header-featured-image img {
	width: 100%;
	max-width: 100%;
	height: 60vh;
	object-fit: cover;
}
.home-slideshow .slideshow-nav img,
.featured .featured-nav img {
	object-fit: contain;
}
.home-slideshow .slideshow-nav {
	width: 90px;
	flex-wrap: nowrap;
	display: flex;
	justify-content: space-between;
	position: absolute;
	mix-blend-mode: exclusion;
	right: 0px;
	z-index: 1;
	align-self: flex-end;
	margin: 20px;
}
.home-slideshow .slideshow-nav .prev-slide,
.home-slideshow .slideshow-nav .next-slide {
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 100%;
	padding: 9px 8px;
	cursor: pointer;
}
.ckut-carousel.featured-episodes .slide img {
	max-height: 500px;
	min-height: 500px;
}
/*
Marquee
*/
@-webkit-keyframes marquee {
	100% {
		transform: translateX(-100%);
	}
}
@keyframes marquee {
	100% {
		transform: translateX(-100%);
	}
}
[data-marquee] {
	--loop-duration: 30s;
	display: block;
}
[data-marquee] [data-marquee-shadow] {
	position: absolute;
	visibility: hidden;
	height: auto;
	width: auto;
	white-space: nowrap;
}
[data-marquee] [data-marquee-overflow] {
	overflow: hidden;
	transform: translate3d(0, 0, 0);
}
[data-marquee] [data-marquee-container] {
	display: flex;
	-webkit-animation: marquee var(--loop-duration) linear infinite;
	animation: marquee var(--loop-duration) linear infinite;
}
[data-marquee] [data-marquee-container]:hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
[data-marquee] [data-marquee-style] {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
[data-marquee-style] {
	padding: 0 12px;
}
/*
Categories
*/
.section-categories {
	position: relative;
    display: block;
    padding: 20px 0px;
    justify-content: flex-start;
    left: 0px;
	flex-wrap: wrap;
	max-width: 100%;
	width: fit-content;
	font-size: 12px;
	line-height: 1em;
}
.archive .section-categories {
	padding: 0px 0px 20px;
}
.section-categories a{
	padding: 5px 10px;
	border: 1px solid #000;
	margin: 5px 10px 5px 0px;
	font-size: 12px;
	height: 26px;
	display: inline-flex;
}
.section-categories a:first-child{
	margin: 5px 10px 5px 0px;
}
.section-categories a:hover {
	background-color: #000;
	color: #fff;
}
.parent-categories, 
.child-categories {
	display: flex;
	position: relative;
	flex-wrap: wrap;
}
.parent-categories a {
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
}
.parent-categories a:hover {
	background-color: #fff;
	border: 1px solid #000;
	color: #000;
}
.child-categories {
	display: inline-flex;
	max-height: 152px;
	border-top: 1px solid #000;
	padding-top: 12px;
	overflow-y: auto;
	align-content: baseline;
}
.section-categories select{
	background: transparent;
	background-color: transparent;
	margin: 0;
	border-color: #000;
	font: inherit;
	white-space: nowrap !important;
	word-wrap: normal !important;
	cursor: default;
	box-sizing: border-box;
	border-width: 1px;
	border-style: solid;
	overflow: clip;
	display: inline-block;
	page-break-inside: avoid;
	padding-block: 1px;
	background-color: #fff;
	color: #000;
	vertical-align: baseline;
	appearance: none;
	padding: 5px 40px 7px 5px;
}
.section-categories form::after {
	content: '<>';
	font: 12px "Consolas", monospace;
	color: #000;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	right: 0px;
	top: 19px;
	padding: 5px 0px 0px 8px;
	border-bottom: none;
	position: absolute;
	pointer-events: none;
	height: 25px;
	width: 25px;
	top: 0;
	display: block;
}
/*
Footer
*/
footer {
	padding: 20px 0px;
	margin: 20px;
	grid-gap: 20px;
}
footer small {
	padding-bottom: 15px;
	display: block;
}
footer .follow a{
	text-decoration: underline;
	padding-right: 5px;
}
footer .follow a:hover{
	opacity: .5;
}
footer p {
	font-size: 14px;
}
footer a {
	font-size: 14px;
	display: block;
}
footer a:hover {
	opacity: .5;
}
/*
Sections
*/
.section-title {
	text-align: left;
	padding: 0px 0px 20px 0px;
	font-size: 42px;
	line-height: 1em;
	
}
.section-subtitle {
	text-align: left;
	font-size: 16px;
	padding: 0px;
	margin: auto;
	font-weight: normal;
	letter-spacing: .8px;
	width: 100%;
}
body.term-618 .section-subtitle p:first-child {
  display: none;
}
/*
Programing Single
*/
.post-description h2{
	margin: 0px 0px 40px 0px;
}
a.single-post-categories {
	font-size: 12px;
	padding: 5px;
	border: 1px solid;
	margin-top: 5px;
	display: inline-block;
}
a.single-post-categories:hover {
	background-color: #000;
	color: #fff;
	border: 1px solid #000;
}
.slideshow-program-category {
	text-transform: capitalize;
	text-align: right;
}
.slideshow-program-category span {
	padding-right: 5px;
	text-transform: capitalize;
}
.slideshow-program-category span:after {
	content: '/';
	padding-left: 5px;
}
.slideshow-program-category span:last-child:after{
	content: '';
	padding-left: 0px;
}
.slideshow-program-category span:last-child{
	padding-left: 0px;
}
/*
Store
*/
.page-header {
	padding: 0px 10px;
	border-bottom: 1px solid;
}
.shopify-buy__product__variant-img {
	padding: 10px;
	height: 300px;
	object-fit: contain;
}
/*
Editorial Content
*/
.editorial-content a {
	text-decoration: underline;
}
.editorial-content a:hover {
	opacity: .5;
}
.editorial-content div {
	max-width: 100%;
}
.editorial-content img {
	width: auto;
	max-width: 100%;
}
.editorial-content .wp-caption {
	width: 100% !important;
}
.video-full-width {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}
/*
Secondary Layout
*/
.container.secondary-container{
	padding: 0px 20px;
}
.container.secondary-container a{
	text-decoration: underline;
}
.secondary-slideshow {
	padding-bottom: 20px;
}
.secondary-slideshow-wrapper {
	padding-left: 20px;
}
.secondary-slideshow-wrapper .tns-item, .secondary-slideshow-wrapper .tns-inner {
	margin: 0 !important;
	margin: 0 !important;
}
.secondary-slideshow.sm-slider {
	padding: 20px 20px 60px;
}
/*Slideshow*/
.secondary-slideshow.overflow-hidden:not(.tns-slider) {
	overflow: hidden;
}
.no-js .secondary-slideshow { overflow-x: auto; }
.no-js .secondary-slideshow > div { float: none; }
.secondary-slideshow p {
	font-size: 11px;
	opacity: .5;
}
.secondary-slideshow.safari-class .slide{
	height: auto;
}
.secondary-slideshow.chrome-class .slide{
	height: 400px;
}
.secondary-slideshow img {
	display: block;
	object-fit: cover;
}
.secondary-slideshow.tns-slider.active-lightbox {
	height: 100vh;
	max-width: 100vw;
}
.secondary-slideshow.tns-slider.active-lightbox {
	transform: translate3d(-2%, 0px, 0px) !important;
	overflow-y: scroll;
}
.secondary-slideshow img.active-lightbox{
	height: auto;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
}
.secondary-slideshow.tns-slider.active-lightbox .tns-item{
	display: none;
}
.secondary-slideshow.tns-slider.active-lightbox .tns-item.active-lightbox{
	display: inherit;
}
/*Secondary slideshow nav*/

.secondary-slideshow-wrapper .tns-controls {
	padding-bottom: 60px;
}
.tns-controls button{
	background: transparent;
	border: 1px solid #000;
	margin: 0px 10px 0px 0px;
	font-size: 10px;
	text-transform: uppercase;
}
.tns-controls button:hover {
	background: #000;
	color: #fff;
}
.secondary-nav img {
	object-fit: contain;
}
.secondary-nav {
	width: 90px;
	flex-wrap: nowrap;
	display: flex;
	justify-content: space-between;
	mix-blend-mode: exclusion;
	right: 0px;
	z-index: 1;
	align-self: flex-end;
	margin: 20px;
}
.secondary-nav .prev,
.secondary-nav .next {
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 100%;
	padding: 9px 8px;
	cursor: pointer;
}
/*
Image Gallery
*/

.image-gallery-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
img.image-lightbox-preview {
	max-height: 300px;
	max-width: 300px;
	cursor: zoom-in;
}
.lightbox-wrapper {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	overflow-y: scroll;
	display: none;
	z-index: 10;
}
.image.active-lightbox .lightbox-wrapper {
	display: block;
}
img.image-lightbox {
	height: auto;
	max-height: auto;
	width: 100vw;
	cursor: zoom-out;
}
.image {
	padding: 20px 20px 0px;
}
/*
Error Page
*/
.error-page {
	height: 40vh;
}
/*
Login
*/
body.login {
	background-color: #000 !important;
	width: 100%;
	height: 100vh;
	display: flex;
}
body.login form {
	background-color: #000;
	border: none;
}
body.login #login form p {
	margin-bottom: 0;
	text-align: left;
}
body.login #login form p.submit #wp-submit {
	background-color: #000;
	color: #fff;
	position: relative;
	width: 100%;
	border: 1px solid;
	margin-top: 15px;
}
body.login #login_error,
.login .message,
.login .success {
	background-color: #000;
	text-align: center;
	border-left: none;
}
body.login form .input,
.login form input[type="checkbox"],
.login input[type="text"] {
	background: #000;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
	color: #fff;
}
.lastname,
.organization {
	padding-top: 30px;
}
body.login div#login {
	padding: 0;
}
body.login div#login h1 {
	color: #000;
}
body.login div#login h1 a {
	top: 10px;
	right: 10px;
	background-size: 100%;
	color: #000;
	width: 40%;
}
body.login div#login form#loginform {
	background-color: #000;
}
body.login div#login form#loginform input#user_login {
	background: #000;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
	color: #fff;
}
body.login div#login form#loginform input#user_pass {
	background: #000;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
}
.wp-core-ui .button-secondary {
	color: #fff !important;
}
.wp-core-ui .button {
	color: #000;
}
body.login div#login form#loginform p.forgetmenot input#rememberme {
	background: #000;
	border: 1px solid #fff;
	border-radius: 100%;
	margin-top: -7px;
}
input[type="checkbox"]:checked::before {
	margin: 0;
	height: 100%;
	width: 100%;
	background: #fff;
	border-radius: 100%;
	border: none;
	content: close-quote;
}
body.login div#login form#loginform p.submit input#wp-submit {
	background: #000;
	border: 1px solid #fff;
	color: #fff;
	border-radius: 0px;
	margin-top: 20px;
}
body.login div#login p#nav {
	color: #fff;
	text-align: center;
	margin: 0;
	display: flex;
	justify-content: space-between;
}
body.login div#login p#nav a {
	color: #fff;
}
body.login div#login p#backtoblog a {
	display: none;
}
/*
Civic CRM
*/
.price-set-row {
    box-sizing: content-box;
}
/*
PopUP
*/
#popup {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup-backgound {
	width: 100%;
	height: 100vh;
	opacity: 1;
	position: fixed;
	background-color: #000000;
	opacity: 1;
	background-image: radial-gradient(#ffffff 0.55px, #000000 0.55px);
	background-size: 11px 11px;
}
.popup-image {
	position: absolute;
	height: 500px;
	width: 100%;
	max-width: 500px;
	background: transparent;
	background-image: none;
	color: #fff;
	background-image: url('../../images/ckut-wheel.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	top: 0;
}
.popup-content {
	height: 500px;
	width: 100%;
	max-width: 500px;
	text-align: center;
	position: absolute;
	color: #fff;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup-text {
	position: relative;
	z-index: 100;
	padding: 60px;
}
.popup-logo path{
	fill: #fff;
}
.popup-logo svg{
	width: 100px;
}
.explore-button {
	cursor: pointer;
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
	padding: 10px;
}
.explore-button:hover {
	background: #fff;
	color: #000;
}
@-webkit-keyframes rotating {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}
.rotating {
    -webkit-animation: rotating 60s linear infinite;
}
@media screen and (min-width: 1920px) {
	p {
		font-size: 22px;
	}
	.slide-description p {
		font-size: 20px;
	}
	.featured-blog-description {
		font-size: 20px;
	}
	.home-slideshow .slide-image {
		height: 70vh;
	}
	.home-slideshow h1 {
		font-size: 60px;
	}
	.featured-blog-title h2{
		font-size: 30px;
	}
	.featured-slideshow h3{
		font-size: 24px;
	}
	.featured-slideshow p {
		font-size: 20px;
	}
}
@media screen and (max-width: 1440px) {
	.section-subtitle {
		font-size: 14px;
	}
	[data-marquee] {
/*
		overflow: hidden;
		max-width: 500px;
*/
	}
}
@media screen and (max-width: 1250px) {
	.secondary-menu {
		font-size: 12px;
	}
	.primary-menu a {
		font-size: 12px;
	}
	.listen-live {
		min-width: 110px;
	}
	.search-open .search-form-container {
		transform: translateX(160px);
		width: calc(100% - 350px);
	}
	.section-subtitle {
		font-size: 14px;
	}
	.home-slideshow .slide-image {
    	max-height: 100%;
		height: 700px;
		width: 100%;
	}
	.slide-description {
		padding: 35px 40px 40px;
	}
	.slide-description p {
		font-size: 14px;
	}
	.prev-next-post {
		display: none;
	}
}
@media screen and (max-width: 1000px) {
	.home-slideshow .two-columns{
		grid-template-columns: 1fr;
	}
	.home-slideshow .slide-image {
		height: 400px;
		border-right: none;
		border-bottom: 1px solid #000000;
	}
	.home-slideshow .slide-container {
		border-left: none;
	}
	.home-slideshow .slide-image img{
		border-right: none;
		object-position: center;
	}
	.four-columns {
		grid-template-columns: 1fr 1fr;
	}
	main {
		padding-top: 30px;
	}
	/* Header - Menu */
	header {
		height: 40px;
		font-size: 12px;
	}
	.primary-menu {
		display: none;
	}
	.secondary-menu,
	.logo {
		z-index: 3;
	}
	.secondary-menu {
		font-size: 12px;
/*		width: calc(100vw - 70px);*/
	}
	.logo {
		height: 40px;
		width: 70px;
		padding: 10px;
		position: absolute;
		object-fit: contain;
		display: flex;
		justify-content: center;
	}
	.listen-live-wrapper {
		width: 100%;
	}
	.listen-live {
		display: none;
	}
	.live-text {
		display: none;
	}
	.live {
		margin: 0px;
	}
	.live-now {
		width: 12%;
	}
	.search-form {
		border-bottom: 1px solid;
	}
	.search-form-container {
		top: 40px;
		width: 100%;
		border: 0px;
	}
	.search-form-container {
		height: 38px;
	}
	.search-submit {
		height: 38px;
	}
	.search-open .search-form-container {
		transform: translateX(-70px);
		width: calc(100% - 0px);
	}
	.search-submit {
		border-right: none;
	}
	.secondary-menu .donate {
		display: none;
	}
	a.programming-menu {
		width: 50%;
	}
	.programming-menu:hover {
		border-bottom: 1px solid #000;
	}
	.listen-live-wrapper {
		width: 100%;
		grid-template-columns: 100%;
	}
	.donate {
		border-right: 1px solid;
	}
	.donate-icon {
		display: none;
	}
	/* Hamburger Menu */
	.mobile {
		display: block;
	}
	.menu {
		max-width: 100%;
		flex-direction: column;
		box-sizing: border-box;
		padding-left: 70px;
	}
	.mobile-menu-button {
		min-width: 40px;
		display: flex;
		height: 40px;
		justify-content: center;
		cursor: pointer;
		margin: 0px 5px;
	}
	.trigger {
		width: 30px;
		height: 30px;
		position: relative;
		top: 10px;
		bottom: auto;
		z-index: 3;
		justify-content: center;
	}
	.trigger span {
		display: block;
		width: 100%;
		height: 1px;
		background: #000;
		margin: 0 0 5px 0;
		position: absolute;
	}
	.trigger span:first-child {
		top: 3px;
		left: 0;
	}
	.trigger span:nth-child(2) {
		top: 9px;
		left: 0;
	}
	.trigger span:last-child {
		top: 15px;
		left: 0;
	}
	.trigger.on {
		top: 20px;
	}
	.trigger.on span:first-child {
		transform: rotate(45deg);
		top: 0px;
    	left: 0px;
	}
	.trigger.on span:nth-child(2) {
		transform: rotate(-45deg);
		top: 0px;
		left: 0px;
	}
	.trigger.on span:last-child {
		transform: rotate(45deg);
		top: 0;
		display: none;
	}
	.mobile-menu {
		background: #fff;
		height: 100%;
		position: fixed;
		top: 40px;
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		z-index: 1;
		overflow: auto;
		padding-bottom: 40px;
	}
	.mobile-menu ul {
		list-style-type: none;
		padding: 0px;
		width: 100%;
		text-align: left;
		position: relative;
		top: 0px;
		right: auto;
		bottom: auto;
	}
	.mobile-menu ul li {
		color: #000;
		font-size: 14px;
		padding: 0px;
		border-bottom: 1px solid;
	}
	.mobile-menu ul li.current-menu-item {
		background: #000;
	}
	.mobile-menu ul li.sub-menu-item {
		padding: 10px 50px;
	}
	.mobile-menu .menu-item-has-children {
		border-bottom: 0px;
	}
	.mobile-menu .menu-item-has-children a:first-of-type {
		  border-bottom: 1px solid #000;
		  padding: 10px 12px 10px 20px;
		  justify-content: space-between;
	}
	.mobile-menu .menu-item-has-children a:first-of-type:before {
		content: '+';
		position: absolute;
		right: 20px;
	}
	.mobile-menu .menu-item-has-children.on a:first-of-type:before {
		content: '-';
		position: absolute;
		right: 20px;
	}
	.mobile-menu .menu-item-has-children .sub-menu a::before {
		content: ' ';
		position: absolute;
		right: 20px;
	}
	.mobile-menu .menu-item-has-children.on .sub-menu a::before {
		content: ' ';
		position: absolute;
		right: 20px;
	}
	.mobile-menu .sub-menu {
		opacity: 0;
		height: 0;
		pointer-events: none;
		transition: height 2s linear 1s;
	}
	.mobile-menu ul li:last-child {
		background-color: #008d44;
	}
	.mobile-menu ul li:last-child a{
		color: #fff;
	}
	.search-icon {
		padding: 10px;
		border-left: none;
		border-right: 1px solid #000;
		display: flex;
		min-width: 40px;
		border-bottom: 1px solid #000;
	}
	.navigation.pagination {
		top: 39px;
	}
	.section-categories a {
		display: inline-flex;
	}
	.login {
		top: 35px;
		border-bottom: 1px solid #000;
		padding-bottom: 2px;
	}
	.container {
		padding: 50px 20px;
	}
	.about .container,
	.get-involved .container,
	.advertising .container,
	.single-news .container,
	.single-spoken-word .container,
	.single-podcasts .container,
	.single-music .container,
	.single-time-capsule .container {
		padding: 20px;
	}
	/*Civic CRM*/
	body.civicrm .default-page {
		padding: 40px 0px;
	}
	body.civicrm .container.grid.content-layout{
		display: block !important;
	}
	body.civicrm .content.Donation_Amount-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	body.civicrm .four crm-form-text {
		width: 80px !important;
	}
	body.civicrm #crm-container.crm-public .price-set-row {
		width: auto;
	}
	body.civicrm #crm-radio-is_recur_radio-wrapper {
		font-size: 12px;
		margin-bottom: 10px;
	}
	body.civicrm #crm-container.crm-public .price-set-row.other-amount {
		width: auto;
	}
	body.civicrm .default-page .container { 
		padding: 20px;
	}
	body.page-template-default .content {
		width: auto;
	}
}
@media screen and (max-width: 800px) {
	/* Grid */
	.two-columns,
	.three-columns,
	.four-columns,
	.five-columns,
	.content-layout {
		grid-template-columns: 1fr;
	}
	iframe {
		max-width: 100%;
	}
	main .container:first-of-type {
		padding: 20px;
	}
	main.advertising .container:first-of-type,
	main.get-involved .container:first-of-type {
		padding: 50px 20px;
	}
	.container {
		padding: 60px 20px;
	}
	.container.secondary-container{
		padding: 0px 20px;
	}
	.side-bar-info {
		padding-bottom: 20px;
	}
	body.page-template-page-about .container {
		padding: 20px 20px;
	}
	/* Home */
	main {
		padding-top: 30px;
		overflow-x: hidden;
	}
	main.advertising, main.get-involved {
		padding-top: 0px;
	}
	main.advertising h1, main.get-involved h1{
		font-size: 32px;
	}
	.page-header {
		padding: 0px;
	}
	.live-show-header {
		height: auto;
	}
	.featured-blog-title {
		padding-top: 10px;
	}
	.featured-blog-title h1{
		margin-bottom: 10px;
	}
	.archive .featured-blog-title {
		padding-top: 0px;
	}
	.archive .grid-item {
		padding-bottom: 20px;
	}
	.featured-video .container .image img {
		height: 320px;
	}
	body.home .container {
		padding: 20px;
	}
	/* Typography */
	h1 {
		font-size: 18px;
	}
	.home-slideshow h1 {
		font-size: 24px;
	}
	h2 {
		font-size: 14px;
	}
	h3 {
		font-size: 18px;
		font-weight: normal;
	}
	p {
    	margin-bottom: 20px;
    	font-size: 12px;
	}
	.date {
		font-size: 12px;
	}
	.slide-link {
		font-size: 12px;
	}
	.about-description p {
    	font-size: 16px;
	}
	/* Menu */
	.mobile-menu-button { 
		margin: 0px;
	}
	.trigger { 
		width: 20px;	
	}
	.secondary-menu .donate {
		display: none;
	}
	a.programming-menu {
		display: none;
	}
	.player-button {
		display: flex;
		height: 40px;
		display: flex;
		width: 40px;
		padding: 10px 15px;
		border-right: 1px solid #000;
	}
	.player-button img {
		max-width: 10px;
	}
	.live-text {
		display: none;
	}
	.live-now {
		min-width: 40px;
	}
	.live {
		margin: 0px;
	}
	.search-form {
		border-bottom: 1px solid #000;
	}
	.player {
		width: 40px;
		padding: 10px 15px;
	}
	.search-icon {
		padding: 11px;
		width: 51px;
	}
	/* Hero Slideshow */
	.home-slideshow .slide-image {
		max-height: 250px;
		border-right: 0px;
		height: 240px;
	}
	.home-carousel,
	.ckut-carousel {
		display: block;
	}
	.home-slideshow {
		height: auto;
		max-height: 100%;
	}
	.home-slideshow .slick-slide img {
		height: 200px;
	}
	.home-slideshow .slideshow-nav {
		width: 90%;
		flex-wrap: nowrap;
		justify-content: space-between;
		position: absolute;
		mix-blend-mode: exclusion;
		right: 0px;
		z-index: 1;
		align-self: flex-end;
		margin: 20px;
		top: 115px;
		left: 0px;
	}
	.home-slideshow .slideshow-nav .prev-slide,
	.home-slideshow .slideshow-nav .next-slide {
		width: 30px;
		height: 30px;
		border: 1px solid #fff;
		border-radius: 100%;
		padding: 5px;
	}
	.home-slideshow .slick-dots {
		width: 100%;
		padding: 20px 0px 20px 20px;
		right: 0;
		justify-content: center;
		font-size: 12px;
		bottom: inherit;
		top: 140px;
	}
	.slide-description {
		padding: 20px;
	}
	.video-play {
		width: 93%;
	}
	/* Featured Carousel */
	.featured .featured-nav {
		width: 70px;
	}
	.featured .featured-nav .prev-arrow,
	.featured .featured-nav .next-arrow {
		width: 30px;
		height: 30px;
		border: 1px solid;
		border-radius: 100%;
		padding: 5px;
		display: flex;
		align-items: stretch;
		justify-content: center;
	}
	/*
	Playlist
	*/
	.playlist,
	.live-show-description {
		border-right: 0px;
	}
	.playlist table {
		border: 0;
	}
	.playlist table caption {
		font-size: 1.3em;
	}
	.playlist table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
	.playlist table tr {
		border-bottom: 1px solid #000;
		display: block;
		margin-bottom: 10px;
	}
	.playlist table td {
		border-bottom: 1px solid #e1e1e1;
		display: block;
		font-size: 12px;
		text-align: right;
	}
	.playlist table td::before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		text-transform: capitalize;
	}
	.playlist table td:last-child {
		border-bottom: 0;
		margin-bottom: 10px;
	}
	.playlist table th,
	.playlist table td {
		padding: 5px 0px;
	}
	/*
	Chat
	*/
	.chat {
		border-top: 1px solid #000;
	}
	.chat .submit-form-wrapper {
		width: 89vw;
	}
	/* About */
	.header-featured-image img {
		height: 30vh;
	}
	.about-content img {
		position: relative;
		padding: 0px 0px 5px 0px;
	}
	.section-title {
		text-align: center;
	}
	.about-content img {
		padding: 0px;
		top: 0px;
	}
	/* Categories*/
	.section-categories {
		align-self: center;
		padding: 0px;
	}
	.section-categories a {
		padding: 5px;
		border: 1px solid #000;
		margin: 5px 10px 5px 0px;
		font-size: 10px;
	}
	.section-subtitle {
		text-align: center;
		font-size: 12px;
		padding: 0px;
		display: flex;
		flex-direction: column;
	}
	.child-categories {
		height: 80px;
	}
	/* Archives*/
	.navigation.pagination {
		top: 39px;
	}
	.tags {
		padding: 5px 0px 10px 0px;
		height: auto;
	}
	.content {
		width: 100%;
		margin: 0 auto;
		max-width: 100%;
	}
	.page-template-default .container{
		padding: 40px 0px;	
	}
}