.widget_p24_radio_widget {
    width: 100vw;
    max-width: 1400px;
    max-height: 150px;
    display: flex;
}

.p24radio-container {
    display: flex;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 10px;

    width: 100%;
    justify-content: center;
    flex-direction: row;
    align-items: center;

    /* color: #0f3554; */
    color: #fff;

    background: url(../images/wave-right.png) center left no-repeat;
    background-size: 100% 50%;
}

.p24radio-logo {
    display: flex;
    max-width: 10%;
}

.p24radio-control {
    min-width: 40px;
    min-height: 40px;   
    
    display: flex;
    align-content: center;
    justify-content: center;
    height: 100%;
}

.p24radio-button, .p24radio-start-button {
    width: 40px;
    height: 40px;
    color: #000000;
    cursor: pointer;

    display: flex;
    align-self: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex: 1;
    justify-content: center;
}

.p24radio-button {
    display: none;
}

.p24radio-button svg, .p24radio-start-button svg {
    flex: 0.8;
    width: 100%;
    height: 100%;
    fill: #7cbf00;
}

.p24radio-button-play {
    font-size: 36px;
    line-height: 40px;
}

.p24radio-button-play .play-icon {
    display: flex;
    flex: 0.8;
    width: 100%;
    height: 100%;
}

.p24radio-button-play .pause-icon {
    display: none;
    flex: 0.8;
    width: 100%;
    height: 100%;
}

.p24radio-button-pause {
    font-size: 36px;
    line-height: 40px;
}

.p24radio-button-pause .play-icon {
    display: none;
}

.p24radio-button-pause .pause-icon {
    display: flex;
}

.p24radio-details {
    display: flex;
    text-shadow: black 1px 0 10px;
}

.p24radio-details-content {
    display: flex;
    flex-direction: column;
}

.p24radio-details-content .p24radio-details-artist {
    font-size: 1.6em;
    line-height: 1.0em;
}

.p24radio-details-content .p24radio-details-title {
    font-size: 1.2em;
    line-height: 1em;
}

.p24radio-details-content .p24radio-details-time {
    flex: 1;
    font-size: 0.8em;
}

.p24radio-upcoming {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-shadow: black 1px 0 10px;
}

.p24radio-upcoming-arrow {
    width: 15px;
    display: none;
    opacity: 0.4;
}

.p24radio-upcoming-arrow {
    fill: #7c7c7c;
}

.p24radio-upcoming-content {
    display: flex;
    flex-direction: column;
}

.p24radio-upcoming-content .p24radio-upcoming-title {
    font-size: 1em;
    line-height: 0.8em;
}

.p24radio-upcoming-content .p24radio-upcoming-time {
    flex: 1;
    font-size: 0.8em;
}

@keyframes p24radio-play-loading-anim {
    0% {opacity: 1;}
    50% {opacity: 0.5;}
    100% {opacity: 1;}
}

.p24radio-button-play-loading {
    animation: p24radio-play-loading-anim;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@media screen and (max-width: 768px) {

    .p24radio-container {
        justify-content: space-between;
    }

	.p24radio-upcoming {
		display: none !important;
	}

    .p24radio-logo {
        max-width: 30%;
    }

    .top-bar {
        position: relative;
    }

}

.p24radio-popup-player-container {
    background-color: #0f3554;
    min-height: 198px;
    min-width: 998px;
    width: 998px;
    height: 198px;

    display: flex;
    padding: 30px 0;
}

.p24radio-popup-player-container .p24radio-start-button {
    display: none;
}

.p24radio-popup-player-container .p24radio-button {
    display: flex;
}

@media screen and (max-width: 768px) {
    .p24radio-popup-player-container {
        width: 100%;
        min-width: 0;
    }
}