/*
Theme Name: KALX Custom Theme
Description: This is a theme created for KALX By HyperArts
Author: HyperArts
Author URI: https://hyperarts.com

Version: 4.7

Tags: accessibility-ready, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, left-sidebar, one-column, right-sidebar, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, two-columns, wide-blocks

Template: genesis

License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: genesis-sample
Requires at least: 5.4
Requires PHP: 5.6
*/

/* Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Genesis Simple FAQ
	- WPForms
- Skip Links
- Site Header
	- Title Area
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Footer Menu
- Content Area
	- Entry Content
	- Entry Meta
	- Pagination
	- Entry Comments
- Sidebar
- Footer Widgets
- Site Footer
- Media Queries
	- Min-width: 960px
		- Site Header
		- Genesis Menu
		- Responsive Menu
		- Header Menu
		- Site Inner
		- Content
		- Sidebar
		- Author Box
		- After Entry
		- Column Classes
		- Entry Misc.
		- Footer Widgets
- Print Styles
*/


/* HTML5 Reset
---------------------------------------------------------------------------- */

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
---------------------------------------------------------------------------- */
/* stylelint-disable */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}
/* stylelint-enable */

/* Box Sizing
--------------------------------------------- */

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.widget::before,
.wrap::before {
	content: " ";
	display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.widget::after,
.wrap::after {
	clear: both;
	content: " ";
	display: table;
}


/* Defaults
---------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	/*font-size: clamp(12px,.8rem + .2vw,20px);*/
	font-size: clamp(1rem, 0.9143rem + 0.2857vw, 1.2rem);
}

body {
	background-color: #fff;
	color: #333;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	line-height: 1.625;
	margin: 0;
	overflow-x: hidden;
	position: relative;
}

button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	transition: all 0.2s ease-in-out;
}

a {
	color: #0276ac;
	text-decoration: none;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	cursor: pointer !important;
}

a:focus,
a:hover {
	color: #333;
	text-decoration: none;
}

a.white:focus,
a.white:hover {
	color: #fff;
	text-decoration: none;
}

p {
	margin: 0 0 28px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	border: 0;
	border-collapse: collapse;
	clear: both;
	color: #eee;
	margin: 1.65em auto;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background: #ddd;
	color: #333;
}

blockquote {
	margin: 30px;
}

.blue {
	color: #0276ac !important;
}

.white {
	color: #fff;
}

.black {
	color: #000;
}

.yellow {
	color: #FFF000;
}

.blue-bg {
	background-color: #0276ac;
	color: #fff;
}

.black-bg {
	background-color: #000;
	color: #fff;
}

.regular {
	font-weight: 400 !important;
}

.semi {
	font-weight: 600 !important;
}

.bold {
	font-weight: 700 !important;
}

.upper {
	text-transform: uppercase !important;
}

.no-under {
	text-decoration: none !important;
}

.no-decorate {
	text-decoration: none;
}

.nomargin-btm {
	margin-bottom: 0 !important;
}

.large-35 {
	font-size: 2.1875rem !important;
}
.large-34 {
	font-size: 2.125rem !important;
}

.large-33 {
	font-size: 2.0625rem !important;
}

.large-32 {
	font-size: 2rem !important;
	letter-spacing: -.5px !important;
}

.large-30 {
	font-size: 1.875rem !important;
	letter-spacing: -.5px !important;
}

.large-28 {
	font-size: 1.75rem !important;
	letter-spacing: -.5px !important;
}

.large-26 {
	font-size: 1.625rem !important;
}

.large-25 {
	font-size: 1.625rem !important;
}

.large-25 {
	font-size: 1.56rem !important;
}

.large-24 {
	font-size: 1.5rem !important;
}

.large-23 {
	font-size: 1.4375rem !important;
}

.large-22 {
	font-size: 1.375rem !important;
}

.large-21 {
	font-size: 1.3125rem !important;
}

.large-20 {
	font-size: 1.25rem !important;
}

.large-19 {
	font-size: 1.19rem !important;
}

.large-18 {
	font-size: 1.125rem !important;
}

.large-17 {
	font-size: 1.0625rem !important;
}

.base {
	font-size: 1rem !important;
}

.small-15 {
	font-size: 0.9375rem !important;
}

.small-14 {
	font-size: 0.875rem !important;
}

.small-13 {
	font-size: 0.8125rem !important;
}

.small-12 {
	font-size: 0.75rem !important;
}

.x-small {
	font-size: 0.635rem !important;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 20px;
}

.entry-content h3,
.entry-content h4 {
	font-weight: 600;
}

.entry-content h4 {
	margin-top: 40px;
}

.h5, h5 {
	font-size: 1.25rem
}

.h6, h6 {
	font-size: 1rem
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	vertical-align: top;
}

figure {
	margin: 0;
}

/* Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery img {
	border: 1px solid #eee;
	height: auto;
	padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
	border: 1px solid #999;
	outline: none;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.gallery-item {
	float: left;
	margin: 0 0 30px;
	text-align: center;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	color: #333;
	font-size: 18px;
	font-weight: 400;
	padding: 15px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

:-ms-input-placeholder {
	color: #333;
	opacity: 1;
}

::placeholder {
	color: #333;
	opacity: 1;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.button {
	background-color: #333;
	border: 0;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	padding: 15px 30px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.button:focus,
.button:hover {
	background-color: #0073e5;
	border-width: 0;
	color: #fff;
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: #fff;
}

.button {
	display: inline-block;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eee;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid #eee;
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

td {
	padding: 0.5em;
}

tr {
	border-top: 1px solid #eee;
}

th {
	font-weight: 600;
	padding: 0.5em;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type="submit"]:focus {
	background: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #333;
	display: block;
	font-size: 1em;
	font-weight: 700;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.more-link {
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}


/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	animation: fadein 1s;
	word-wrap: break-word;
	overflow: hidden;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

/* Site Inner
--------------------------------------------- */

.site-inner {
	clear: both;
	margin: 0 auto;
	padding: 20px 1em 0;
	z-index: 1;
	position: relative;
}

@media only screen and ( min-width: 480px ) {
	.site-inner {
		padding: 20px 0 0;
	}
}


/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 20px;
}

.alignright .avatar {
	margin-left: 20px;
}

.comment .avatar {
	margin: 0 15px 20px 0;
}

/* Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 35px;
	margin-top: 20px;
}

.after-entry {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 20px 30px;
}

.after-entry .widget:last-of-type {
	margin-bottom: 0;
}

.breadcrumb {
	border-bottom: 1px solid #eee;
	font-size: 92%;
	margin-bottom: 40px;
	padding-bottom: 10px;
}

.genesis-title-hidden .breadcrumb {
	margin-top: 40px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.entry-content .search-form {
	margin-bottom: 40px;
	width: 50%;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}


header.entry-header {
	margin-top: 20px;
    margin-bottom: 35px;
}

.entry-title {
	margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    display: block;
    background-color: white;
    padding-right: 20px;
    font-weight: 700;
}

@-moz-document url-prefix() {
	.entry-title {
		display: block ruby;
	}
}

.entry-title:after, .archive-title:after {
	  background: url(/wp-content/uploads/2023/10/kalx_lines_background_1440px.png) no-repeat;
	  /*background-position: left 5px;*/
	  background-color: white;
      content: " ";
      padding-right: 100%;
      margin-left: 20px;
	background-size: cover;
  }

.entry-title a,
.sidebar .widget-title a {
	color: #333;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: #0073e5;
}

.widget-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.genesis-title-hidden .site-inner {
	padding-top: 0;
}

/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
	margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 14px;
	font-weight: 600;
	margin-top: 0.5em;
	margin-bottom: 1em;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}

/* Widgets
---------------------------------------------------------------------------- */

.widget {
	margin-bottom: 0;
}

.widget p:last-child,
.widget ul > li:last-of-type {
	margin-bottom: 0;
}

.widget ul > li {
	margin-bottom: 10px;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.featured-content .entry:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 16px;
	margin-bottom: 5px;
	margin-top: 10px;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews {
	text-align: center;
	padding: 10px;
}

.sidebar .enews {
	background-color: #f5f5f5;
	padding: 30px;
}

.enews-widget input {
	font-size: 16px;
	margin-bottom: 10px;
}

.after-entry .enews-widget input {
	text-align: center;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form + p {
	margin-top: 20px;
}

/* Genesis Simple FAQ
--------------------------------------------- */

.gs-faq__question {
	background: transparent;
	border-bottom: 1px solid #eee;
	color: #333;
	padding-left: 0;
	padding-right: 0;
}

.gs-faq__question:focus,
.gs-faq__question:hover {
	background: transparent;
	color: #0073e5;
}

.gs-faq__question::after {
	content: "\f132";
	font-family: dashicons; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
	float: right;
}

.gs-faq__question.gs-faq--expanded::after {
	content: "\f460";
}

/* WP Forms
--------------------------------------------- */

.entry-content .wpforms-container {
	margin-bottom: 40px;
}

.entry-content .wpforms-form .wpforms-field {
	clear: both;
	margin: 20px 0;
	overflow: hidden;
}

.site-container .wpforms-container .wpforms-form .wpforms-field input {
	border-radius: 0;
	height: auto;
	padding: 15px;
}

.site-container .entry-content .wpforms-form .wpforms-field-label {
	font-weight: 600;
}

.site-container .entry-content .wpforms-form .wpforms-field-sublabel {
	font-size: 14px;
	font-weight: 300;
}

.entry-content .wpforms-form .wpforms-field-hp {
	display: none !important;
	left: -9000px !important;
	position: absolute !important;
}

.site-container .entry-content .wpforms-form textarea {
	padding: 15px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-small {
	height: 120px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-medium {
	height: 200px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-large {
	height: 300px;
}


/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link .skip-link-hidden {
	display: none;
	visibility: hidden;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* Display outline on focus */
:focus {
	color: #333;
	/*outline: #ccc solid 1px;*/
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	background-color: #fff000;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 0;
}

.site-header .wrap {
	max-width: 1600px;
	margin: 0 auto;
}

/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding-bottom: 25px;
	padding-top: 25px;
}

.wp-custom-logo .title-area {
	max-width: 350px;
	padding-bottom: 5px;
	padding-top: 20px;
	width: 100%;
	padding-left: 10px;
}

.wp-custom-logo .site-container .title-area {
	width: 100%;
	padding-left: 5%;
}

@medud

@media only screen and ( min-width: 480px ) {
	.wp-custom-logo .site-container .title-area {
		width: 70%;
		padding-top: 50px;
	}
}

@media only screen and ( min-width: 768px ) {
	.wp-custom-logo .site-container .title-area {
		width: 33.3%;
		padding-top: 30px;
	}
}


@media only screen and ( min-width: 1440px ) {
	.wp-custom-logo .site-container .title-area {
		padding-top: 30px;
	}
}

@media only screen and ( min-width: 1600px ) {
	.wp-custom-logo .site-container .title-area {
		padding-left: 0;
		padding-top: 0;
	}
}

.wp-custom-logo .custom-logo-link {
	display: block;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.site-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #333;
	text-decoration: none;
}

.site-description,
.wp-custom-logo .site-title {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}


/* Header Audio
---------------------------------------------------------------------------- */


.header-widget-area audio {
	width: 54px;
	height: 54px;
	position: absolute;
	top: 55px;
	left: 10px;
}

.header-widget-area {
	display: flex;
	gap: 40px;
	margin-left: 200px;
	flex-wrap: wrap;
	margin-top: 20px;
	max-width: 1040px;
	width: 100%;
	align-items: center;
	margin-bottom: 20px;
	margin-left: 0 !important;
}

#custom_html-5, #block-8 {
	max-width: 520px;
	width: calc(50% - 20px);
}

#custom_html-5 {
	width: 100%;
	max-width: 90%;
	margin: 0 auto;
}

@media only screen and ( min-width: 480px ) {
	#custom_html-5 {
		width: 100%;
		max-width: 60%;
		margin: 0 auto;
	}
}

#block-8 {
	display: none;
}

@media only screen and ( min-width: 768px ) {
	.header-widget-area {
		max-width: 1040px;
		width: 66.6%;
		margin-bottom: 20px
	}
	#custom_html-5 {
		max-width: 520px;
		width: calc(50% - 20px);
	}
	#block-8 {
		display: block;
	}
}

#block-8 .widget-wrap {
	max-width: 400px;
	margin: 0 auto;
	padding-right: 10%;
}

@media only screen and ( min-width: 1600px ) {
	#block-8 .widget-wrap {
		padding-right: 0;
	}
}

#custom_html-5 {
	position: relative;
	padding: 15px 15px 50px 20px;
	border: 1px solid;
	height: 175px;
	margin-top: 8px;
}

#custom_html-6 {
	display: none;
}

.audio-container {
	overflow-wrap: break-word;
}

.audio-container .on-the-air {
	line-height: 20px;
	text-transform: uppercase;
}

.audio-container p {
	margin-bottom: 0;
}

.audio-container .img-box {
	float: left;
	margin-right: 10px;
	margin-left: 40px;
	padding-top: 0 !important;
	width: 65px;
	height: 65px;
}

.audio-container img {
	max-width: 55px;
	padding-top: 0 !important;
}

.audio-container .title {
	position: absolute;
	line-height: 15px;
	margin-top: -5px;
	padding-left: 35px;
	padding-right: 20px;
	width: 100%;
	top: 55px;
	left: 0;
}

@media only screen and ( min-width: 480px ) {
	.audio-container .title {
		height: 60px;
		overflow: hidden;
	}
}

@media only screen and ( min-width: 960px ) {
	.audio-container .title {
		line-height: 20px;
		height: unset;
		overflow: unset;
	}
}

.audio-container .song {
	/*margin-bottom: 5px;*/
}

.audio-container b {
	text-transform: uppercase;
}

.audio-container b span {
	font-weight: 300;
}

audio::-webkit-media-controls-enclosure {
	background: none;
	border: 2px solid #000;
}

audio::-webkit-media-controls-current-time-display {
	display: none;
}

audio::-webkit-media-controls-timeline {
	display: none;
}

audio::-webkit-media-controls-mute-button {
	display: none;
}

audio::-webkit-media-controls-play-button {
	border: 1px solid black;
	display: block !important;
	margin-left: 17px;
	width: 32px;
	height: 32px;
	background-size: 30px;
	background-color: transparent;
	color: transparent;
}

audio::-webkit-media-controls input[pseudo="-webkit-media-controls-play-button" i]:enabled:hover::-internal-media-controls-button-hover-background {
	background-color: rgba(32, 33, 36, 0.06) !important;
}

audio::-internal-media-controls-overflow-button {
	display: none !important;
}

.recent-playlist, .archive-player {
	position: absolute;
	width: 50%;
	bottom: 0;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	padding: 5px;
}



.recent-playlist {
	left: 0;
}

.archive-player {
	right: 0;
	color: white;
}

.recent-playlist p, .archive-player p {
	margin-top: 2px;
}

.recent-playlist a, .archive-player a {
	color: #fff;
}

.recent-playlist:hover, .archive-player:hover {
	color: #fff000;
}

.archive-player:focus {
	color: white;
}

.donation-btn {
	position: relative;
	background: url(/wp-content/uploads/2023/08/donate-bg.png) no-repeat;
	background-size: contain;
	width: 100%;
	height: 0;
	padding-top: 18.56%;
	margin-bottom: 10px;
}

#responsive-menu-pro-additional-content .donation-btn {
	position: unset;
}

.donation-btn span:hover {
	color: #fff000;
}

.donation-btn span {
	position: absolute;
	top: -5px;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-transform: uppercase;
}

.donation-btn span.large-32:not(.red) {
	font-size: 1.2rem !important;
	padding-left: 10px;
	padding-top: 5px;
}

@media only screen and ( min-width: 960px ) {
	.donation-btn span.large-32:not(.red) {
		font-size: 1.6rem !important;
		padding-left: 10px;
		padding-top: 0;
	}
}

@media only screen and ( min-width: 1440px ) {
	.donation-btn span.large-32:not(.red) {
		font-size: 1.8rem !important;
	}
}

.donation-btn .heart {
	position: relative;
	display: block;
	position: absolute;
	top: 40%;
	bottom: 0;
	left: 10%;
	right: 0;
}

@media only screen and ( min-width: 960px ) {
	.donation-btn .heart {
		left: 20%;
	}
}

.donation-btn span.dashicons-heart {
	color: #fff;
}

.donation-btn:hover span.dashicons-heart {
	color: #fff000;
}

.donation-btn span.dashicons-heart.red {
	color: #e5001d;
}

.wp-block-search__inside-wrapper  {
	position: relative;
	background: url(/wp-content/uploads/2023/08/search-bg.png) no-repeat;
	background-size: contain;
	width: 100%;
	height: 0;
	padding-top: 17.56%;
}

.wp-block-search__input {
	position: absolute;
	background: transparent;
	top: 0;
	bottom: 0;
	border: none !important;
	padding: 0 0 0 4em;
  	text-transform: uppercase;
  	font-weight: bold;
}

@supports (-moz-appearance:none) {

.wp-block-search__input {
	padding-top: 17px !important;
	padding-left: 60px !important;
}

}



.wp-block-search__button, .wp-block-search__label {
	display: none;
}

input::-webkit-textfield-decoration-container {
	max-width: 85%;
	margin-left: auto;
}

input:-internal-autofill-selected {
	background-color: transparent !important;
}

input::-webkit-input-placeholder {
	padding-left: 60px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1rem;
}

/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	line-height: 1;
	width: 90%;
	position: absolute;
	top: 0;
	justify-content: space-evenly;
	display: flex;
	height: 100%;
	align-items: center;
}

@media only screen and ( min-width: 1600px ) {
	.genesis-nav-menu {
		width: 100%;
	}
}

.genesis-nav-menu > .menu-item {
	display: block;
	float: none;
	position: relative;
	padding-bottom: 17px;
}

.genesis-nav-menu a {
	color: #fff;
	display: block;
	font-weight: 400;
	outline-offset: -1px;
	padding-bottom: 12px;
	padding-top: 20px;
	text-decoration: none;
}

@media only screen and ( min-width: 960px ) {
	.genesis-nav-menu a {
		padding-top: 12px;
	}
}

@media only screen and ( min-width: 1440px ) {
	.genesis-nav-menu a {
		padding-top: 0;
	}
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:focus,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: #FFF000;
	text-decoration: none;
}

.genesis-nav-menu a:focus, .genesis-nav-menu a:hover {
	color: #fff000;
}

.nav-primary .genesis-nav-menu > .menu-item.current-menu-item > a {
	border-bottom-color: #fff000;
	text-decoration: underline;
	color: #fff000;
}

.current-menu-ancestor > a {
	color: #fff000;
    text-decoration: underline;
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	width: 100%;
}

.genesis-nav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	padding-left: 15px;
	position: static;
	z-index: 99;
}

@media only screen and ( min-width: 768px ) {
	.genesis-nav-menu .sub-menu {
		position: absolute;
	}
	.genesis-nav-menu .sub-menu, .genesis-nav-menu .sub-menu a {
		width: 200px;
	}
}

.genesis-nav-menu .sub-menu a {
	background-color: #0276ac;
	font-size: 1rem;
	position: relative;
	word-wrap: break-word;
	padding-left: 10px;
	padding-right: 10px;
}

.genesis-nav-menu .sub-menu a:hover {
	color: #FFF000 !important;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: relative;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	display: block;
	left: auto;
	opacity: 1;
}

.nav-primary #menu-primary > span {
	color: #fff;
	margin-top: -10px;
}

#menu-primary > span:nth-child(10) {
	display: none;
}

/* Responsive Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.js .nav-primary {
	display: none !important;
	position: relative;
}

@media only screen and ( min-width: 821px ) {
	.js .nav-primary {
		display: block !important;
	}
}

#responsive-menu-pro {
	margin-bottom: 3em !important;
}

#responsive-menu-pro-container {
	background-size: 100px !important;
	background-repeat: no-repeat !important;
	background-position: 90% 100% !important;
	font-family: 'Dimbo Regular';
	text-transform: uppercase;
	text-align: center !important;
}

@media only screen and ( min-width: 821px ) {
	#responsive-menu-pro-container {
		display: none !important;
	}
}

#responsive-menu-pro-wrapper {
	width: 100% !important;
	max-width: 70% !important;
	margin: 0 auto !important;
	display: block !important;
	padding-top: 20% !important;
}

#responsive-menu-pro-search-box {
	font-family: 'Poppins', sans-serif !important;
	position: relative !important;
	background: url(/wp-content/uploads/2023/08/search-bg.png) no-repeat !important;
	background-size: contain !important;
	width: 100% !important;
	height: 0 !important;
	padding-top: 17.56% !important;
	padding-bottom: 0 !important;
}

.responsive-menu-pro-search-box {
	position: absolute !important;
	background: transparent !important;
	top: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	border: none !important;
	padding: 0 !important;
	height: 32px !important;
	font-size: .8rem !important
}

@media only screen and ( min-width: 480px ) {
	.responsive-menu-pro-search-box {
		height: 71px !important;
	}
}

#responsive-menu-pro-search-box input::-webkit-input-placeholder {
	padding-left: 0 !important;
	font-size: 0.9rem;
}

@media only screen and ( min-width: 480px ) {
	#responsive-menu-pro-search-box input::-webkit-input-placeholder {
		font-size: 1rem !important;
		padding-left: 60px !important;

	}
}

#responsive-menu-pro-additional-content {
	padding: 0 !important;
	position: relative;
}

#responsive-menu-pro-additional-content a {
	background: url(/wp-content/uploads/2023/08/donate-bg.png) no-repeat;
	background-size: contain;
	width: 100%;
	height: 0;
	padding-top: 18.56%;
	margin-bottom: 10px;
	display: block;
	margin-bottom: 0;
}

#responsive-menu-pro-additional-content .donation-btn .heart {
	top: 35%;
}

.genesis-responsive-menu .genesis-nav-menu .menu-item:hover > .sub-menu {
	display: none;
}

.menu-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border-width: 0;
	color: #333;
	display: block;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

.menu-toggle:focus,
.menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
	color: #0073e5;
}

.menu-toggle {
	float: right;
	line-height: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 15px 0;
	position: relative;
	z-index: 1000;
	display: none;
}

@media only screen and ( min-width: 960px ) {
	.menu-toggle {
		display: block;
	}
}

.menu-toggle.activated::before {
	content: "\f335";
}

.site-header .dashicons-before::before {
	transition: none;
}

.site-header .menu-toggle::before {
	float: left;
	margin-right: 5px;
	position: relative;
	text-rendering: auto;
	top: 1px;
}

.sub-menu-toggle {
	float: right;
	padding: 9px 10px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100;
	display: none;
}

@media only screen and ( min-width: 480px ) {
	.sub-menu-toggle {
		right: -35px;
		top: 13px;
	}
}

@media only screen and ( min-width: 960px ) {
	.sub-menu-toggle {
		right: -25px;
		top: 7px;
	}
}

@media only screen and ( min-width: 1440px ) {
	.sub-menu-toggle {
		right: -45px;
		top: -3px;
	}
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
}

.sub-menu-toggle::before {
	display: inline-block;
	text-rendering: auto;
	transform: rotate(0);
	transition: transform 0.25s ease-in-out;
}

.sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

@media only screen and ( max-width: 820px ) {
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a .responsive-menu-pro-subarrow {
		background-color: transparent !important;
		padding-top: 5px;
	}
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	clear: both;
	font-family: 'Dimbo Regular';
	/*padding-bottom: 15px;
	padding-top: 15px;*/
	width: 100%;
	padding-top: 0;
	text-transform: uppercase;
}

.nav-primary .wrap {
	background: url(/wp-content/uploads/2023/08/primary-nav-bg.png) no-repeat;
	background-size: contain;
	width: 90%;
	height: 0;
	padding-top: 6%;
}

@media only screen and ( min-width: 1600px ) {
	.nav-primary .wrap {
		width: 100%;
	}
}

.nav-primary .wrap::before {
	background: url(/wp-content/uploads/2023/08/primary-nav-bg-left-bolt.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	width: 6%;
	height: 0;
	padding-top: 6.3%;
}

@media only screen and ( min-width: 1600px ) {
	.nav-primary .wrap::before {
		left: -81px;
	}
}

.nav-primary .wrap::after {
	content:'';
	background: url(/wp-content/uploads/2023/08/primary-nav-bg-right-bolt.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: -7px;
	right: -7px;
	width: 6%;
	height: 0;
	padding-top: 6.3%;
}

@media only screen and ( min-width: 960px ) {
	.nav-primary .wrap::after {
		right: -10px;
		top: -8px;
		padding-top: 6.9%;
	}
}

@media only screen and ( min-width: 1440px ) {
	.nav-primary .wrap::after {
		right: -14px;
		padding-top: 6.3%;
	}
}

@media only screen and ( min-width: 1600px ) {
	.nav-primary .wrap::after {
		right: -96px;
		padding-top: 6.3%;
	}
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin-top: 10px;
}

.nav-secondary .genesis-nav-menu {
	line-height: 1.5;
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
	margin-left: 10px;
	margin-right: 10px;
	padding: 0;
}


/* Content Area
---------------------------------------------------------------------------- */

/* Entry Content
--------------------------------------------- */

.entry {
	margin-bottom: 40px;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 30px;
	padding-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ul > li,
.entry-content ul ul > li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #f5f5f5;
}

.content .sticky {
	background-color: #f5f5f5;
	padding: 30px;
}

/* Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 20px;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

/* Custom Entry Content
--------------------------------------------- */

body.home .entry-content {
	font-family: "proxima-nova", sans-serif;
	font-weight: 400;
	font-style: normal;
	display: flex;
	flex-wrap: wrap;
}

body.home .recent .one-fourth {
	aspect-ratio: 50/50;
}

body.home .recent a {
	margin-top: 10px;
}

body.home .recent .title-container {
	background: url(/wp-content/uploads/2023/08/recently-played-bg.png) no-repeat;
	background-size: contain;
	width: 100%;
	height: 0;
	padding-top: 20%;
	position: relative;
}

body.home .recent .title-container h2 {
	font-family: 'Poppins', sans-serif;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	margin-left: 20px;
}

body.home .recent .main-container, body.home .now .main-container {
	overflow: hidden;
	border-bottom: none;
	padding-bottom: 1.5em;
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 20px;
	padding-bottom: 2em;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	height: calc(100% - 130px);
}

@media only screen and ( min-width: 480px ) {
	body.home .recent .main-container, body.home .now .main-container {
		border-bottom: 2px solid #d9ddf2;
	}
}

body.home .recent .main-container .row-container {
	position: relative;
	overflow: hidden;
	display: flex;
	margin-bottom: 10px;
	width: 100%;
}

body.home .recent .main-container .row-container:last-of-type {
	margin-bottom: 0;
}

body.home .recent img {
	max-width: 130px;
	min-width: 130px;
	float: left;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

@media only screen and ( min-width: 480px ) {
	body.home .recent img {
		max-width: 130px;
		min-width: unset;
		float: left;
		height: 100%;
		object-fit: contain;
		width: 100%;
	}
}

body.home .recent .text-container {
	line-height: 1.15rem;
	padding-left: 10px;
}

body.home .recent p, body.home .now p {
	margin-bottom: 0;
}

body.home .recent p.link, body.home .now p.link {
	margin-top: 10px;
	padding-left: 20px;
}

body.home .recent .main-container .three-fourths p.blue {
	margin-top: 10px;
}

body.home .now .one-half.first {
	position: relative;
	width: 40%;
}

body.home .now .one-half {
	position: relative;
	width: 60%;
}

body.home .now .one-half.title {
	padding-left: 10px;
}

body.home .now .one-half.title p {
	line-height: 30px;
}

body.home .now .title-container {
	background: url(/wp-content/uploads/2023/08/now-playing-bg.png) no-repeat 50% 100%;
	background-size: cover !important;
	width: 100%;
	height: 0;
	padding-top: 18%;
	position: relative;
	margin-top: -4px;
}

@media only screen and ( min-width: 480px ) {
	body.home .now .title-container {
		background: url(/wp-content/uploads/2023/08/now-playing-bg.png) no-repeat 50% 100%;
		margin-bottom: 10px;
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .now .title-container {
		background: url(/wp-content/uploads/2023/08/now-playing-bg.png) no-repeat 50% 100%;
	}
}

@media only screen and ( min-width: 1440px ) {
	body.home .now .title-container {
		background: url(/wp-content/uploads/2023/08/now-playing-bg.png) no-repeat 50% 100%;
		margin-bottom: 14px;
	}
}

body.home .now .title-container h2 {
	font-family: 'Poppins', sans-serif;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 1em;
}

body.home .now .btn-container {
	position: relative;
	width: 15%;
	height: 35px;
}

body.home .now .btn-container span.play-btn {
	background: url(/wp-content/uploads/2023/08/play-btn.png) no-repeat;
	background-size: contain;
	width: 35px;
	position: absolute;
	height: 35px;
	left: 8px;
}

body.home .now .btn-container span.other-btn {
	background: url(/wp-content/uploads/2023/08/other-btn.png) no-repeat;
	background-size: contain;
	width: 35px;
	position: absolute;
	height: 35px;
	left: 9px;
}

body.home .now .row-container {
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 10px 0;
	width: 100%;
}

body.home .now .row-container p.large-22 {
	padding-left: 10px;
}

body.home .now hr {
	border-top: 2px solid #ccc;
	width: 100%;
	margin: 0;
}

body.home .now hr:last-of-type {
	border: none;
}

body.home .soon {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-style: normal;
	display: block;
	flex-wrap: wrap;
	margin-top: 0;
	width: 100%;
}

@media only screen and ( min-width: 480px ) {
	body.home .soon {
		display: flex;
		margin-top: 1em;
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .soon {
		margin-top: 2em;
	}
}

@media only screen and ( min-width: 1440px ) {
	body.home .soon {
		margin-top: 4em;
	}
}

body.home .soon .desktop {
	display: none !important;
}

body.home .soon .mobile {
	display: block !important;
}

@media only screen and ( min-width: 480px ) {
	body.home .soon .mobile {
		display: none !important;
	}
	body.home .soon .desktop {
		display: block !important;
	}
}

body.home .soon .title-container {
	background: url(/wp-content/uploads/2023/08/reviews-bg.png) no-repeat 50% 70%;
	background-size: contain;
	width: 100%;
	height: 0;
	padding-top: 20.33%;
	position: relative;
}

body.home .soon .title-container h2 {
	font-family: 'Poppins', sans-serif;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin-bottom: 0;
	padding-left: .3em;
	display: flex;
	align-items: center;
}

body.home .soon .title-container h2 span {
	padding-left: 5px;
}

.more-playing {
	margin-top: -35px;
	padding-left: 20px;
}

@media only screen and ( min-width: 480px ) {
	body.home .soon .title-container {
		background: url(/wp-content/uploads/2023/08/playing-soon-title-bg.png) no-repeat;
		position: relative;
		background-size: contain;
		width: 100%;
		height: 34px;
		padding-top: 3.8%;
		position: relative;
		background-position: 100% 50% !important;
	}
	body.home .soon .title-container h2 {
		display: block;
	}
}

body.home .soon .heading-container {
	font-family: 'Poppins', sans-serif;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin-bottom: 0;
	width: 100%;
	height: 41px;
	transform: none;
	background: #fff;
}

@media only screen and ( min-width: 480px ) {
	body.home .soon .heading-container {
		width: 460px;
		transform: skew(155deg);
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .soon .heading-container {
		width: 530px;
	}
}

@media only screen and ( min-width: 1440px ) {
	body.home .soon .heading-container {
		width: 530px;
	}
}

body.home .soon .playing-soon {
	padding-left: 1em;
	padding-right: 1em;
	margin-bottom: 1em;
	min-height: 230px;
}

@media only screen and ( min-width: 768px ) {
	body.home .soon .playing-soon {
		margin-bottom: 0;
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .soon .playing-soon {
		/*overflow: hidden;*/
		display: block;
		margin-bottom: 0;
		margin-bottom: 2em;
		min-height: 230px;
	}
}

/*
@media only screen and ( min-width: 1280px ) {
	body.home .soon .playing-soon {
		display: flex;
		margin-bottom: 0;
		align-items: baseline;
	}
}
*/

body.home .soon .main-container {
	margin: 2em 0 2em 0;
}

@media only screen and ( min-width: 480px ) {
	body.home .soon .main-container {
		/*margin: 0;*/
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .soon .main-container {
		margin: 2em 0;
	}
}

body.home .soon .large-26 {
	transform: none;
	margin: 0 auto;
}

@media only screen and ( min-width: 480px ) {
	body.home .soon .large-26 {
		transform: skew(205deg);
		margin: unset;
	}
}

body.home .soon .large-19 {
	margin-top: 2em;
}

@media only screen and ( min-width: 480px ) {
	body.home .soon .large-19 {
		text-align: left;
		margin-top: unset;
	}
}

body.home .soon .two-thirds {
	width: 100% !important;
	display: block;
}

body.home .soon .one-third {
	width: 100% !important;
}

@media only screen and ( min-width: 768px ) {
	body.home .soon .two-thirds {
		width: 100% !important;
		/*display: flex;*/
		align-items: center;
	}

	body.home .soon .one-third {
		width: 100% !important;
		margin: 0;
	}

	body.home .soon .one-third p {
		margin-bottom: unset !important;
		margin: 2em 0 !important;
	}
}



@media (min-width: 1440px) {
.one-third.small-15.text-contianer {
    margin-top: -20px !important;
}
}

@media only screen and ( min-width: 1600px ) {
	body.home .soon .two-thirds {
		display: block;
		width: 56.811966% !important;
		margin-right: 20px;
	}

	body.home .soon .one-third {
		width: 40.623932% !important;
	}
}

body.home .soon .img-container {
	position: relative;
	width: 300px;
	height: 220px;
	margin: 0 auto;
	margin-bottom: 1em;
	max-width: 80%;
}

@media only screen and ( min-width: 768px ) {
	body.home .soon .img-container {
		width: 350px;
		height: 220px;
		margin-top: -20px;
		margin-bottom: 0;
		float: left;
		margin-bottom: 3em;
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .soon .img-container {
		margin-bottom: 20px;
	}
}

@media only screen and ( min-width: 1440px ) {
	body.home .soon .img-container {
		margin-top: 0;
		margin-bottom: 2em;
	}
}

body.home .soon .img-container::before {
	content: "";
	position: absolute;
	width: 260px;
	height: 232px;
	padding: 1rem;
	background: #fce901;
	left: -6px;
	clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
	rotate: -5deg;
}

@media only screen and ( min-width: 480px ) {
	body.home .soon .img-container::before {
		width: 310px;
		/*left: -6px;*/
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .soon .img-container::before {
		/*left: -6px;*/
	}
}

@media only screen and ( min-width: 1440px ) {
	body.home .soon .img-container::before {
		/*left: -6px;*/
	}
}

body.home .soon .img-container img {
	clip-path: polygon(0 0%, 100% 11%, 100% 90%, 0% 100%);
	height: 230px;
	object-fit: cover;
	margin-right: 40px;
	position: absolute;
}

body.home .soon .main-container p {
	margin-bottom: 0;
}

body.home .soon .main-container p.large-25 {
	line-height: 28px;
}

@media only screen and ( min-width: 960px ) {
	body.home .soon .main-container p.large-25 {
		line-height: initial;
	}
}

body.home .soon .date-container {
	padding-top: 1em;
}

@media only screen and ( min-width: 480px ) {
	body.home .soon .date-container {
		margin-top: 2em;
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .soon .date-container {
		margin-top: 2em;
	}
}

@media only screen and ( min-width: 1280px ) {
	body.home .soon .date-container {
		margin-top: 0px;
	}
}

body.home .soon hr {
	/*border-top: 2px solid #ccc;*/
	margin: 1.25em 0 2em 0;
}

body.home .soon hr:last-of-type {
	display: none;
}

@media only screen and ( min-width: 480px ) {
	body.home .soon hr {
		margin: 1.25em 0 2em 0;
	}
}

body.home .sidebar section.widget {
	display: none;
}

body.home .reviews {
	background: url(/wp-content/uploads/2023/08/kalx-cat-bg.png) no-repeat;
	background-position: 95% 100%;
	background-size: 60px;
	position: relative;
}

body.home .reviews .title-container {
	background: url(/wp-content/uploads/2023/08/now-playing-bg.png) no-repeat 50% 80%;
	background-size: cover !important;
	width: 100%;
	height: 0;
	padding-top: 18%;
	position: relative;
	margin-top: -8px;
}

@media only screen and ( min-width: 480px ) {
	body.home .reviews .title-container {
		background: url(/wp-content/uploads/2023/08/reviews-bg.png) no-repeat 50% 70%;
		background-size: contain;
	}
}

body.home .reviews .title-container h2 {
	font-family: 'Poppins', sans-serif;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 1em;
	text-transform: none !important;
}

body.home .reviews .main-container {
	border-bottom: 1px solid #0088c4;
	margin-top: -3px;
	width: 100%;
	padding: 2em 1em 3em 20px;
}

@media only screen and ( min-width: 480px ) {
	body.home .reviews .main-container {
		width: 99%;
		border-left: 1px solid #0088c4;
		border-right: 1px solid #0088c4;
		border-bottom: 1px solid #0088c4;
	}
}

body.home .reviews .content-container {
	padding: 0 2em 2em 2em;
}

@media only screen and ( min-width: 480px ) {
	body.home .reviews .content-container {
		padding: unset;
	}
}

body.home .reviews .content-container img {
	float: none;
	width: 100%;
	max-width: 185px;
	margin: 0 auto;
	aspect-ratio: 50/50;
	display: block;
	object-fit: cover;
	margin-bottom: 10px;
}

@media only screen and ( min-width: 480px ) {
	body.home .reviews .content-container img {
		float: left;
		margin-right: 20px;
		margin-bottom: 0;
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .reviews .content-container img {
		max-width: 50%;
		float: none;
		margin: 0 auto;
		margin-bottom: 1em;
	}
}

@media only screen and ( min-width: 420px ) and ( max-width: 1439px ) { 
	body.home .reviews .content-container p {
		text-align: left;
	}
}

@media only screen and ( min-width: 320px ) {
	body.home .reviews .content-container img {
		max-width: 80px;
		float: left;
		margin-bottom: 0;
		margin-right: 20px;
	}
}

body.home .reviews .content-container p {
	line-height: 23px;
}

@media only screen and ( min-width: 480px ) {
	body.home .reviews .content-container p {
		margin-bottom: 0;
		line-height: 23px;
	}
}

body.home .reviews .content-container p.small-12:first-of-type {
	margin-bottom: .5em;
}

body.home .reviews a {
	display: block;
	overflow: hidden;
	margin-bottom: 1em;
}

body.home .reviews a:last-of-type {
	height: unset;
}

body.home .reviews p:last-of-type {
	margin-bottom: 0;
	line-height: 20px;
}

body.home .reviews p.nomargin-btm {
	position: absolute;
	bottom: 20px;
}

body.home .features {
	position: relative;
	margin-top: 2em;
	padding-bottom: 1.1em;
}

body.home .features .img-container {
	width: 100%;
	height: 300px;
	margin-bottom: 2em;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.home .features .img-container:last-of-type {
	margin-bottom: 0;
}

body.home .features .img-container::before {
	content: "";
	position: absolute;
	width: 99.5%;
	height: 300px;
	padding: 1rem;
	background: #e5001d;
	left: 0;
	clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
	rotate: -5deg;
}

body.home .features .img-container:last-of-type::before {
	background: #fce901;
}

@media only screen and ( min-width: 480px ) {
	body.home .features .img-container::before {
		width: 100%;
		left: 36px;
		left: 10px;
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .features .img-container::before {
		left: 8px;
	}
}

@media only screen and ( min-width: 1440px ) {
	body.home .features .img-container::before {
		left: 8px;
	}
}

body.home .features .img-container::after {
	content: "";
	position: absolute;
	background: url(/wp-content/uploads/2023/08/featured-bg-1.png) no-repeat;
	top: -9px;
	right: 34px;
	background-size: contain;
	width: 123px;
	height: 29px;
	rotate: 0deg;
	z-index: -1;
}

@media only screen and ( min-width: 480px ) {
	body.home .features .img-container::after {
		top: -18px;
		right: 35px;
		rotate: -3deg;
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .features .img-container::after {
		top: -12px;
		rotate: 0deg;
		right: 8px;
	}
}

@media only screen and ( min-width: 1440px ) {
	body.home .features .img-container::after {
		top: -16px;
		rotate: -1.5deg;
		right: 38px;
	}
}

body.home .features .img-container:last-of-type:after {
	content: "";
	position: absolute;
	background: url(/wp-content/uploads/2023/08/featured-bg-2.png) no-repeat;
	top: -12px;
	right: 35px;
	background-size: contain;
	width: 123px;
	height: 29px;
	rotate: 0deg;
	z-index: -1;
}

@media only screen and ( min-width: 480px ) {
	body.home .features .img-container:last-of-type:after {
		top: -18px;
		rotate: -3deg;
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .features .img-container:last-of-type:after {
		top: -12px;
		rotate: 0deg;
		right: 8px;
	}
}

@media only screen and ( min-width: 1440px ) {
	body.home .features .img-container:last-of-type:after {
		top: -16px;
		rotate: -1.5deg;
		right: 38px;
	}
}

body.home .features .img-container img {
	clip-path: polygon(0 0%, 100% 11%, 100% 90%, 0% 100%);
	width: 100%;
	height: 300px;
	object-fit: cover;
	margin-right: 0;
	position: absolute;
	left: 0;
}

@media only screen and ( min-width: 480px ) {
	body.home .features .img-container img {
		margin-right: 40px;
		left: 10px;
	}
}

body.home .features .img-container img::before {
	content:"";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(red, yellow);
}

body.home .features .img-container .overlay {
	clip-path: polygon(0 0%, 100% 11%, 100% 90%, 0% 100%);
	width: 100%;
	height: 300px;
	object-fit: cover;
	margin-right: 0;
	position: absolute;
	background: rgba(0,153,255,.7);
	left: 0;
}

@media only screen and ( min-width: 480px ) {
	body.home .features .img-container .overlay {
		margin-right: 40px;
		left: 10px;
	}
}

body.home .features .img-container:last-of-type .overlay {
	background: rgba(0,0,0,.5);
}

body.home .features .img-container .content-container {
	position: absolute;
	max-width: 75%;
}

body.home .podcast {
	position: relative;
	margin-top: 1em;
	overflow: hidden;
	margin-bottom: 2em;
}

@media only screen and ( min-width: 480px ) {
	body.home .podcast {
		position: relative;
		margin-top: 1.5em;
		overflow: hidden;
		margin-bottom: unset;
	}
}

body.home .desktop {
	display: none !important;
}

body.home .mobile {
	display: block !important;
}

@media only screen and ( min-width: 480px ) {
	body.home .desktop {
		display: block !important;
	}
	body.home .mobile {
		display: none !important;
	}
}

body.home .podcast .title-container {
	background: url(/wp-content/uploads/2023/08/reviews-bg.png) no-repeat 50% 70%;
	background-size: contain;
	width: 100%;
	height: 0;
	padding-top: 20.33%;
	position: relative;
}

body.home .podcast .title-container h2 {
	font-family: 'Poppins', sans-serif;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 1em;
}

@media only screen and ( min-width: 480px ) {
	body.home .podcast .title-container {
		background: url(/wp-content/uploads/2023/08/podcast-title-bg.png) no-repeat;
		position: relative;
		background-size: contain;
		width: 100%;
		height: 34px;
		padding-top: 3.8%;
		position: relative;
		background-position: 100% 50% !important;
	}
	body.home .podcast .title-container h2 {
		font-family: unset;
		position: unset;
		top: unset;
		bottom: unset;
		left: unset;
		right: unset;
		margin-bottom: unset;
		display: unset;
		align-items: unset;
		justify-content: unset;
		padding-left: unset;
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .podcast .title-container {
		padding-top: 8.8%;
	}
}

body.home .podcast .heading-container {
	font-family: 'Poppins', sans-serif;
	position: absolute;
	top: -1px;
	bottom: 0;
	left: 0;
	right: 0;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: 47px;
	transform: none;
	background: #fff;
}

@media only screen and ( min-width: 480px ) {
	body.home .podcast .heading-container {
		width: 100px;
		transform: skew(155deg);
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .podcast .heading-container {
		width: 250px;
		height: 45px;
	}
}

@media only screen and ( min-width: 1440px ) {
	body.home .podcast .heading-container {
		width: 270px;
		height: 52px;
	}
}

body.home .podcast .large-26 {
	transform: none;
}

@media only screen and ( min-width: 480px ) {
	body.home .podcast .large-26 {
		margin-bottom: 0;
		transform: skew(205deg);
	}
}

body.home .podcast .main-container {
	margin-top: -3px;
	width: 99%;
	padding: 1em 0;
}

@media only screen and ( min-width: 960px ) {
	body.home .podcast .main-container {
		margin-top: -3px;
		width: 99%;
		padding: 1em 0;
	}
}

body.home .podcast .kalx-podcasts, body.home .podcast .campus-podcasts {
	margin-top: 0;
}

@media only screen and ( min-width: 480px ) {
	body.home .podcast .kalx-podcasts, body.home .podcast .campus-podcasts {
		margin-top: 1.5em;
	}
}

body.home .podcast .content-container {
	border: 1px solid #000;
	overflow: hidden;
	display: flex;
	align-items: center;
}

body.home .podcast .content-container img {
	float: left;
	max-width: 185px;
	aspect-ratio: 50/50;
}

body.home .podcast a {
	display: block;
	overflow: hidden;
	margin-bottom: 1em;
}

body.home .podcast .text-container {
	padding-left: 1em;
	padding-right: 1em;
}

body.home .podcast .text-container p.small-12 {
	margin-bottom: 5px;
}

body.home .games {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-style: normal;
	width: 100%;
	margin-top: 0;
}

.title-container.black.mobile.games-title-mobile {
    margin-top: 30px;
}

@media only screen and ( min-width: 480px ) {
	body.home .games {
		margin-top: 2em;
	}
}

body.home .games .desktop {
	display: none !important;
}

body.home .games .title-container {
	background: url(/wp-content/uploads/2023/08/recently-played-bg.png) no-repeat;
	background-size: contain;
	width: 100%;
	height: 0;
	padding-top: 20.28%;
	position: relative;
	display: block;
}

body.home .games .title-container h2 {
	font-family: 'Poppins', sans-serif;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 10px;
}

@media only screen and ( min-width: 480px ) {
	body.home .games .title-container {
		background: unset;
		background-size: unset;
		width: unset;
		height: unset;
		padding-top: unset;
		position: unset;
		display: unset;
	}

	body.home .games .title-container h2 {
		font-family: 'Poppins', sans-serif;
		position: unset;
		top: unset;
		bottom: unset;
		left: unset;
		right: unset;
		margin-bottom: unset;
		display: block;
		align-items: unset;
		justify-content: unset;
	}
}

@media only screen and ( min-width: 480px ) {
	body.home .games .desktop {
		display: block !important;
	}
	body.home .games .mobile {
		display: none;
	}
}

body.home .games .wrap {
	padding: 1em;
}

@media only screen and ( min-width: 480px ) {
	body.home .games .wrap {
		padding: 0 20px 0 10px;
	}
}

body.home .games .details .content-container {
	background: url(https://kalx.hyperarts.com/wp-content/uploads/2023/10/536248_blue_planner_schedule_month_date_calendar_circle.svg) no-repeat;
	background-size: contain;
	width: 100%;
	/*height: 34px;*/
	/*padding-top: 3.8%;*/
	/*padding-left: 50px;*/
	position: relative;
	background-position: 0;
	margin-bottom: 10px;
}

body.home .games .details .content-container p {
	/*position: absolute;*/
	top: 0;
	line-height: 20px;
}

@media only screen and ( min-width: 480px ) {
	body.home .games .details {
		margin-bottom: 2em;
		padding-left: 0;
		padding-right: 0;
	}
}

@media only screen and ( max-width: 768px ) {
	body.home .games .details {
		margin-bottom: 2em;
		width: 100% !important;
	}
}

@media only screen and ( min-width: 960px ) {
	body.home .games .details .content-container p {
		/*line-height: initial;*/
	}
}

body.home .games .sport {
	background-size: cover;
	padding-top: 35.8%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 230px;
}

@media only screen and ( max-width: 768px ) {
	body.home .games .sport {
		width: 100% !important;
	}
}

@media only screen and ( min-width: 480px ) {
	body.home .games .sport {
		background-size: cover !important;
	}
}

body.home .games .sport::before {
	content: '';
	background: #0078bf;
	background-size: contain;
	position: absolute;
	top: -15px;
	left: 0;
	width: 120px;
	padding-top: 5.9%;
	display: block;
	z-index: -1;
	aspect-ratio: 50 / 50;
}

@media only screen and ( min-width: 480px ) {
	body.home .games .sport::before {
		left: -15px;
	}
}

body.home .games .sport::after {
	content: '';
	background: #ffec00;
	background-size: contain;
	position: absolute;
	bottom: -15px;
	right: 0;
	width: 120px;
	padding-top: 5.9%;
	display: block;
	z-index: -1;
	aspect-ratio: 50 / 50;
}

@media only screen and ( min-width: 480px ) {
	body.home .games .sport::after {
		right: -15px;
	}
}

body.home .games .sport .content-container {
	position: absolute;
	width: 100%;
	bottom: 25px;
	max-width: 80%;
}

@media only screen and ( min-width: 480px ) {
	body.home .games .sport .content-container {
		bottom: 15px;
	}
}

body.home .games .link {
	padding-left: 20px;
}

@media only screen and ( min-width: 480px ) {
	body.home .games .link {
		margin-top: 1.5em;
	}
}

@media only screen and ( max-width: 479px ) {
	body.home .kalxtra  {
		margin-top: 1em;
	}
	body.home .kalxtra .podcast  {
		margin-bottom: 0;
	}
}

body.home .kalxtra .main-container {
	padding-left: 0;
	padding-right: 0;
	height: unset !important;
	margin: 0 !important;
}

body.home .kalxtra .title-container h2 span {
	padding-left: 0;
}

@media only screen and ( max-width: 479px ) {
	body.home .kalxtra .title-container h2 span {
		color: #FFF !important;
	}
}

body.page-id-19369 .entry-content:last-child p {
	margin-bottom: 0;
}

body.page-id-19369 hr {
	border: 1px solid #ccc;
}

body.page-id-19369 hr:last-of-type {
	display: none;
}

.page-id-20220 .col-content {

	background: url(https://kalx.hyperarts.com/wp-content/uploads/2023/10/536248_blue_planner_schedule_month_date_calendar_circle.svg) no-repeat;
	background-size: contain;
	width: 100%;
	height: 34px;
	padding-left: 50px;
	position: relative;
	background-position: 0;
	margin-bottom: 10px;

}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 60px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #f5f5f5;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	padding: 8px 12px;
	text-decoration: none;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #333;
	color: #fff;
}

/* Entry Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	margin-bottom: 40px;
}

.comment-list li {
	padding: 40px 0 0 30px;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	margin-bottom: 30px;
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-header p {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 10px;
}

/* Sidebar
---------------------------------------------------------------------------- */

.sidebar {
	font-size: 16px;
	line-height: 1.5;
}

.sidebar .widget {
	margin-bottom: 40px;
}

.sidebar p {
	margin-bottom: 10px;
}

/* Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
	background-color: #000;
	clear: both;
	overflow:visible;
	/*padding: 60px 0;*/
	position: relative;
	width: 100%;
	/*margin-top: -5em;*/
}

@media only screen and ( min-width: 480px ) {
	.footer-widgets {
		background-color: #000;
		/*padding: 60px 0;*/
		height: 450px;
		/*margin-top: -5em;*/
	}
}

.footer-widgets .wrap {
	margin-left: auto;
	margin-right: auto;
	background: url(/wp-content/uploads/2023/08/footer-bg.jpg) no-repeat;
	background-size: contain;
	width: 100%;
	padding-top: 6.201%;;
}

.footer-widgets .wrap::before {
	display: none;
}

@media only screen and ( min-width: 1600px ) {
	.footer-widgets .wrap {
		margin-left: auto;
		margin-right: auto;
		background: url(/wp-content/uploads/2023/08/footer-bg.jpg) no-repeat;
		background-size: contain;
		width: 100%;
		height: 0;
		padding-top: 6.127%;
		position: relative;
		top: -73.68px;
		left: 5%;
	}
	.footer-widgets .wrap::before {
		background: url(/wp-content/uploads/2023/08/footer-bg-left.jpg) no-repeat;
		background-size: contain;
		position: absolute;
		top: 45px;
		left: -493px;
		width: 32%;
		height: 0;
		padding-top: 5.9%;
		display: block;
	}
}

.footer-widget-area {
	margin-bottom: 40px;
	padding-left: 30px;
	padding-right: 30px;
}

.footer-widget-area:last-child,
.footer-widgets .widget:last-child {
	margin-bottom: 0;
}

.footer-widgets-1, .footer-widgets-2 {
	margin-top: 0;
}

@media only screen and ( min-width: 1600px ) {
	.footer-widgets-1, .footer-widgets-2 {
		margin-top: -3em;
	}
}

@media only screen and ( min-width: 1600px ) {
	.footer-widgets-1, .footer-widgets-2 {
		margin-top: -4em;
	}
}

.footer-widgets-1 {
	margin-left: 0;
	float: none;
}

.footer-widgets-2 {
	display: block;
	height: unset;
	align-items: center;
}

@media only screen and ( min-width: 480px ) {
	.footer-widgets-1 {
		margin-left: 7% !important;
		float: left;
		width: 100% !important;
	}
	.footer-widgets-2 {
		display: flex;
		height: 200px;
		align-items: center;
		width: 100% !important;
		justify-content: center;
	}
}

@media only screen and ( min-width: 960px ) {
	.footer-widgets-1 {
		margin-left: 7% !important;
		float: left;
		width: 23.076923076923077% !important;
	}
	.footer-widgets-2 {
		height: 275px;
		width: 60% !important;
		justify-content: center;
	}
}

.footer-widgets-2 p {
	font-family: 'Dimbo Regular';
	color: #fff;
	font-size: 2rem;
	text-align: center;
	line-height: 32px;
}

.footer-widgets-3 {
	width: 100%;
}

ul#menu-secondary {
	clear: both;
	line-height: 1;
	width: 100%;
	text-align: center;
	margin-bottom: 2em;
}

@media only screen and ( min-width: 960px) {
	ul#menu-secondary {
		height: 100px;
		text-align: left;
		clear: both;
		line-height: 1;
		width: 100%;
		justify-content: space-evenly;
		display: flex;
		align-items: center;
		margin-bottom: 0;
	}
}

@media only screen and ( min-width: 1600px) {
	ul#menu-secondary {
		width: 90%;
	}
}

ul#menu-secondary > li {
	margin-bottom: 5px;
}

@media only screen and ( min-width: 480px) {
	ul#menu-secondary > li {
		margin-bottom: 0;
	}
}

ul#menu-secondary a {
	font-family: 'Dimbo Regular';
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.6rem;
}


/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	background-color: #000;
	color: #fff;
	font-size: 15px;
	line-height: 1.5;
	padding-bottom: 30px;
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
	margin-top: 20px;
}

/* Recently Played */

#recently_played .song {
    /*margin-top: 10px;*/
}

/* Games */

.games .title-container.desktop {
    margin-bottom: 20px;
}


/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and ( min-width: 480px) {
	table {
		table-layout: auto;
		word-break: normal;
	}
	.content {
		width: 98%;
		margin: 0 auto;
	}
	body.home .content {
		width: 100%;
	}
	.one-half {
		float: left;
		width: 48.717948717948715%;
		margin-left: 2.564102564102564%;
	}
	.first {
		clear: both;
		margin-left: 0;
	}
	.tax-media_galleries .first {
		margin-left: 0 !important;
	}
	.one-fourth {
		width: 23.076923076923077%;
	}
	.tax-media_galleries .one-fourth {
		width: 48%;
		float: left;
		margin-left: 1%;
		min-height: 560px;
	}
	.three-fourths {
		width: 74.35897435897436%;
	}
}

@media only screen and (min-width: 960px) {

	/* Site Header
	--------------------------------------------- */

	.site-header {
		position: sticky;
		top: 0;
		z-index: 9999;
		max-height: 275px;
	}

	.admin-bar .site-header {
		top: 32px;
	}

	/* Genesis Menu
	--------------------------------------------- */

	.genesis-nav-menu > .menu-item {
		display: inline-block;
		padding-bottom: 10px;
	}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu > .menu-bold > a {
		font-weight: 700;
	}

	.genesis-nav-menu > .menu-highlight > a {
		background-color: #333;
		border-radius: 3px;
		color: #fff;
		font-weight: 600;
		margin-left: 15px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.genesis-nav-menu > .menu-highlight > a:focus,
	.genesis-nav-menu > .menu-highlight > a:hover {
		background-color: #0073e5;
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a {
		/*width: 180px;*/
	}

	.genesis-nav-menu .sub-menu {
		border-top: none;
		opacity: 0;
		padding-left: 0;
		position: absolute;
		transition: opacity 0.4s ease-in-out;
	}

	.genesis-nav-menu .sub-menu a {
		border-bottom: 1px solid #eee;
		border-top: 0;
		padding-bottom: 15px;
		padding-top: 15px;
		text-transform: initial;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -46px 0 0 179px;
	}

	/* Responsive Menu
	--------------------------------------------- */

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	/* Header Menu
	--------------------------------------------- */

	.nav-primary {
		clear: none;
		float: right;
		/*width: auto;*/
	}

	.nav-primary .genesis-nav-menu a {
		padding-left: 15px;
		padding-right: 15px;
	}

	/* Site-Inner
	--------------------------------------------- */

	.site-inner {
		max-width: 1600px;
	}

	/* Content
	--------------------------------------------- */

	body.home .content {
		float: left;
		width: 65%;
		padding-left: 50px;
	}

	.sidebar-content .content {
		float: right;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
		overflow: hidden;
		min-height: 500px;
	}

	body.home .recent .main-container, body.home .now .main-container, body.home .soon .main-container {
		padding-left: 1em;
		padding-right: 1em;
		height: calc(100% - 130px);
	}

	body.home .now .main-container {
		max-width: 100%;
		margin: 0 auto;
	}

	body.home .recent .main-container .three-fourths {
		padding: 0;
	}

	body.home .recent .text-container {
		line-height: 1.05rem;
	}

	body.home .now .btn-container span.play-btn {
		/*left: -43px;*/
	}

	body.home .now span.other-btn {
		/*left: -41px;*/
	}

	/* Sidebar
	--------------------------------------------- */

	.sidebar {
		float: right;
		width: 33%;
		padding-right: 50px;
	}

	.sidebar-content .sidebar {
		float: left;
	}

	/* Author Box
	--------------------------------------------- */

	.author-box {
		background-color: #f5f5f5;
		padding: 30px;
	}

	/* After Entry
	--------------------------------------------- */

	.after-entry {
		padding: 40px 60px;
	}

	.after-entry .enews {
		padding-left: 30px;
		padding-right: 30px;
	}

	/* Column Classes
	--------------------------------------------- */

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		float: left;
		margin-left: 2.564102564102564%;
	}

	.one-half,
	.three-sixths,
	.two-fourths {
		width: 48.717948717948715%;
	}

	.one-third,
	.two-sixths {
		width: 31.623931623931625%;
	}

	.four-sixths,
	.two-thirds {
		width: 65.81196581196582%;
	}

	.one-fourth {
		width: 23.076923076923077%;
	}

	.tax-media_galleries .one-fourth {
		width: 23.076923076923077%;
		margin-left: 2.564102564102564%;
		min-height: unset;
	}

	.three-fourths {
		width: 74.35897435897436%;
	}

	.footer-widgets .three-fourths {
		width: 67.35897435897436%;
	}

	.one-sixth {
		width: 14.52991452991453%;
	}

	.five-sixths {
		width: 82.90598290598291%;
	}

	.first {
		clear: both;
		margin-left: 0;
	}

	.tax-media_galleries .first {
		margin-left: 0 !important;
	}

	/* Entry Misc.
	--------------------------------------------- */

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings {
		margin-bottom: 60px;
	}

	/* Footer Widgets
	--------------------------------------------- */

	.footer-widgets .wrap {
		max-width: 1600px;
	}

	.footer-widget-area {
		margin-bottom: 0;
	}

}

@media only screen and ( min-width: 1440px ) {
	body.home .recent .main-container, body.home .now .main-container {
		padding-left: 2em;
		padding-right: 2em;
	}
	body.home .recent .text-container {
		line-height: 1.35rem;
	}
	body.home .now .btn-container span.play-btn {
		/*left: -69px;*/
	}
	body.home .now .btn-container span.other-btn {
		/*left: -67px;*/
	}
}

@media only screen and ( min-width: 1600px ) {
	.site-inner {
		max-width: 1600px;
		padding-left: 0;
		padding-right: 0;
	}
	.footer-widget-area {
		/*width: calc(100% / 3);*/
	}
	.footer-widgets .three-fourths {
		width: 57.35897435897436%;
	}
	.genesis-nav-menu .menu-item {
		display: inline-block;
		padding-bottom: 0;
	}
}

/* Print Styles
---------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: #333 !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title > a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}

/* Charts */

.chart-pagination {
    float: right;
}

div#chart-grid {
    clear: both;
}

p.entry-meta {
    display: none;
}

/* Playlist page */

.head.station {
    display: none;
}

.wp-custom-logo .site-container .title-area {
    padding-left: 30px;
}

/* Best Of Pages */

.best-of-content li, .best-of-content p{
	font-weight: normal;
}

.best-of-content  h2 {
    color: #0276ac !important;
    font-weight: bold;
}

/* News Feed */

.cvp-live-filter  .checkbox {
    float: left;
    margin-right: 20px;
}

.cvp-live-filter .cvp-label {
	display: none;
}

/* Clamp Responsive */


@media (max-width: 1438px) {

	html {
	font-size: clamp(1rem, 0.9143rem + 0.2857vw, 1.1rem);
	}
}


@media (max-width: 1200px) {
	html {
	font-size: clamp(1rem, 0.9143rem + 0.2857vw, 1.0rem);
	}
}

@media (max-width: 1100px) {
	html {
	font-size: clamp(1rem, 0.9143rem + 0.2857vw, .8rem);
	}
}

@media (max-width: 1015px) {
span.archive-branding {
    display: none;
}
}

.single-post p.entry-meta {
	display: block;
}

.post-featured-image {
	max-width: 30%;
    float: right;
    margin-left: 20px;
}

.left-image {
	float: left;
	margin-right: 30px;
	clear: right;
	margin-top: 20px;
	margin-bottom: 20px;
}

.right-image {
	float: right;
	margin-left: 30px;
	clear: left;
	margin-top: 20px;
	margin-bottom: 20px;
}

.entry-categories {
	display: none;
}

.post-5088 audio {
    margin-left: 300px;
    margin-top: 50px;
}

p.blue.semi {
    color: black !important;
}

p.small-12.blue.bold {
    color: black !important;
}

/* Box Views Styling */


.box-grid .pt-cv-content-item {
    background: url('/wp-content/uploads/2023/10/kalx_title_background.png') no-repeat;
    padding: 30px !important;
    min-height: 340px !important;
    margin-left: 1%;
	background-size:100% 100%;
 }

.box-grid .pt-cv-content-item:hover {
    background: url('/wp-content/uploads/2023/10/kalx_title_background_hover.png') no-repeat;
    min-height: 340px !important;
	margin-left: 1%;
	background-size:100% 100%;
    color: white !important;
 }

.box-grid .pt-cv-content-item a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
}

.box-grid .pt-cv-content-item a p {
	color: #000;
}

.box-grid .pt-cv-content-item:hover a .pt-cv-content {
	color: #fff;
}

.box-grid .pt-cv-content-item a:hover p {
	color: #fff;
}

.box-grid  .pt-cv-content-item:hover a {
    color: white !important;
 }
 
 .box-grid {
    margin-left: 0px !important;
 	width: 100%;
}

@media only screen and ( min-width: 480px ) {
	.pt-cv-wrapper .box-grid .pt-cv-content-item {
		width: 48% !important;
	}
}

@media only screen and ( min-width: 960px ) {
	.pt-cv-wrapper .box-grid .pt-cv-content-item {
		width: 32.333% !important;
		margin-bottom: 20px !important;
	}
}
 

/* Responsive Menu Styling */

 .responsive-menu-pro-item-link {
 	text-transform: none;
 }

 li.responsive-menu-pro-item a {
 	padding-bottom: 5px !important;
    padding-top: 5px !important;
 }

 #responsive-menu-pro-wrapper {
 	max-width: 100% !important;
 }

 #responsive-menu-pro-container .responsive-menu-pro-search-box {
 	margin-top: 10px;
    margin-left: 10px;
 }

/*Chart Pagnination */

@media (max-width: 550px) {
.chart-pagination {
    margin-bottom: 20px;
}
}

/* Events Calendar */

.weekly-calendar h3 {
	text-decoration: underline;
	font-style: italic;
	font-size: 1.1em;
	
}

.weekly-calendar h2 {
	color: #0276ac;
	font-size: 1.4em;
}

/* Announcements Bar */

#announcement-bar{
	min-height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-top: 14px;
    padding-left: 20px;
    margin-bottom: 20px;
    width: 100%;
    background-color: #0276ac;
    color: white;
}

#announcement-bar a{
	color: white;
}

a.announcement-link {
    font-weight: bold;
    padding-left: 16px;
    font-size: 16px;
}

body.home .reviews p:last-of-type {
    margin-bottom: 0;
    line-height: 28px;
}