/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 07 2025 | 23:38:37 */
/* Loading Animation Styles for Audio Players */

/* Loading state for play buttons */
.play-audio.loading {
    opacity: 0.8;
    cursor: wait;
}

/* Smooth transitions for icon changes */
.play-audio .fas {
    transition: all 0.2s ease-in-out;
}

/* Loading spinner animation */
.play-audio .fa-spinner {
    animation: spin 1s linear infinite;
    color: #007cba; /* Blue color for loading */
}

/* Custom spinner animation if FontAwesome doesn't work */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alternative loading styles */
.play-audio.loading .fas {
    color: #007cba;
    text-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}

/* Playing state styling */
.play-audio.playing {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 4px;
}

/* Hover effects */
.play-audio:hover:not(.loading) {
    opacity: 0.8;
    transform: scale(1.05);
    transition: all 0.2s ease;
}

/* Disabled state while loading */
.play-audio.loading:hover {
    transform: none;
    opacity: 0.8;
}

/* Loading text replacement (optional) */
.play-audio.loading::after {
    content: '';
    position: absolute;
    margin-left: 5px;
    font-size: 0.8em;
    color: #666;
    opacity: 0.7;
}

/* For larger play buttons (like in the player template and single posts) */
.page-play-audio.loading,
.single-play-audio.loading {
    pointer-events: none; /* Prevent multiple clicks while loading */
}

.page-play-audio .fa-spinner,
.single-play-audio .fa-spinner {
    font-size: 1.2em;
    color: #ff6b6b; /* Match your theme color */
}

/* Pulse effect for loading (alternative to spinner) */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* If you prefer a pulse instead of spin, use this class */
.play-audio.loading-pulse .fas {
    animation: pulse 1.5s ease-in-out infinite;
}

/*
.news-live-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.news-live .news-live-wrapper .news-live-image img {
    width: 100px;
    height: 100px;
    position: relative !important;
    top: unset;
    left: unset;
    width: unset;
    height: unset;
    object-fit: cover;
}

.news-live .news-live-wrapper .news-live-image img::after {
    padding: 0 !important;
    margin: 0 !important;
}

.news-live .news-live-wrapper .news-live-image:after {
    content: '';
    display: block;
    padding-top: 11.77% !important;
}

.news-slider {	
	display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

.news-slider > article {
	flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 15.5%;
}

.news-slider > article > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.news .news-item .news-item-image {
	margin-bottom: 5px;
    display: block;
    position: relative;
    width: 100%;
    height: 150px;
}

.podcast-slider {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

article.podcast-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 16.6%;
}
.now-playing-slider {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.now-playing img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    width: 150px !important;
    height: 150px !important;
    position: relative !important;
    top: unset;
    left: unset;
    width: unset;
    height: unset;
    object-fit: cover;
}

.now-playing img::after {
    padding: 0 !important;
    margin: 0 !important;
}

.now-playing .now-playing-slider .img-holder:after {
    padding: 0;
}
.now-playing .now-playing-slider .img-holder:after {
    padding: 0;
}

@media only screen and (max-width: 966px) {
	.podcast-slider, .news-slider, .news-live-wrapper,.now-playing-slider {
		flex-direction: column !important;
		justify-content: center;
		align-items: center;
	}
	.now-playing-slider article {
		width: 100%;
	}
}

.now-playing-slider {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.now-playing-slider article {
    width: 15%;
}
*/

