@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.player-radiobiryani-icon{
	height: 100px;
}
.radioco-playButton-playing:before {
    content: "\f144";
    font-family: 'FontAwesome', sans-serif;
    animation: pulse 2s infinite;
}
.radioco-playButton-paused:before {
    content: "\f28b";
    font-family: 'FontAwesome', sans-serif;
}
.radioplayer {
	margin-top: 54px;
	background-color: var(--dark-color);
    box-shadow: #ccc 10px 10px 20px;
	min-height: 450px;
    height: calc(100vh - 154px);
    khtml-user-select: none;
    moz-user-select: none;
    ms-user-select: none;
    overflow: hidden;
    padding: 20px;
    user-select: none;
    webkit-touch-callout: none;
    webkit-user-select: none;
    width: 100vw;
	display: flex;
    align-items: center;
	justify-content: center;
	flex-direction: column;
}
.radioco-playButton {
    color: var(--primary-color);
    font-size: 14vw;
    z-index: 2;
}
.radioco-playButton:active {
    color: var(--primary-color);
}
.radioco-playButton-playing {
    color: var(--primary-color);
    text-shadow: black 2px 2px 50px;
}
.radioco-playButton-paused {
    text-shadow: black 2px 2px 50px;
}
.radioco-image {
    display: none;
}
.radioco-bg {
    left: 0px;
    overflow: hidden;
    position: relative;
    width: 600px;
	display: none;
}
.radioco-information {
    color: #fff;
    display: block;
    margin-top: 14px;
    width: 340px;
    z-index: 1;
}
.radioco-information span {
    display: none;
    font-weight: bold;
    letter-spacing: 0px;
    padding-bottom: 15px;
	text-align: center;
}

.volume-control-container {
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 50px;
    border: 2px Solid #444;
    margin-bottom: 20px;
}

.volume-control-container:before {
    content: "\f6a8";
    font-family: 'Font Awesome 6 Pro', sans-serif;
    display: block;
    margin-right: 10px;
    font-size: 20px;
    font-weight: 100;
}

.radioco-information input[type="range"] {
	accent-color: var(--primary-color);
    cursor: -webkit-grab;
    display: block;
    height: 4px;
    margin: 20px auto;
    outline: 0;
    webkit-appearance: none;
    webkit-border-radius: 8px;
    width: 100%;
}
.radioco-information input[type=range]::-webkit-slider-thumb {
    background: #ffffff;
    border: none;
    border-radius: 10px;
    height: 15px;
    webkit-appearance: none;
    webkit-transition: box-shadow 0.2s;
    width: 15px;
}
.radioco-nowPlaying {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    text-align: left;
    text-shadow: #fff 1px 1px 50px;
}
.radioco-information input[type=range]::-webkit-slider-thumb:hover {
    box-shadow: #fff 1px 1px 20px;
}
.radioco-information input[type=range]:active,
.information input[type=range]:focus {
    outline: 0;
}