body {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
#site-radio {
	background: #c91212;
	color: #fff;
	font-size: 21px;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	position: fixed;
	bottom: 0;
	width: 100%;
	display: flex;
	z-index: 12;
	justify-content: center;
}
#radio_atlantico {
	display: none;
}
.radio-controls {
	border-right: 1px solid #fff;
	display: inline-block;
	padding: 10px;
	width: 70px;
	height: 50px;
}
.radio-controls button,
.radio-controls .radio-loading {
	display: none;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	color: #fff;
	border: 0px solid;
	cursor: pointer;
	width: 100%;
	height: 100%;
}
.radio-controls .visible {
	display: flex;
}

.spinner {
	color: #fff;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

.radio-description {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 10px;
	flex-wrap: wrap;
}

.radio-description span {
	display: block;
	width: 100%;
}
.radio-description span.song {
	font-size: 16px;
	font-weight: 500;
}
.radio-description span.artist {
	font-size: 14px;
	font-weight: 300;
}

.radio-title {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.vol-control {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-right: 10px;
	border-left: 1px solid #FFF;
}

.vol-btn {
	background: transparent;
	color: #fff;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	cursor: pointer;
	border-radius: 6px;
	transition: background 0.12s;
}
.vol-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

.vol-popup {
	position: absolute;
	bottom: 100%;
	right: 0;
	width: 60px;
	height: 140px;
	padding: 10px 8px;
	background: #c91212;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.12s, visibility 0.12s;
}

.vol-control.open .vol-popup {
	visibility: visible;
	opacity: 1;
}

input:not([type="submit"]).vol-slider {
	appearance: none;
	-webkit-appearance: none;
	width: 120px;
	height: 8px;
	transform: rotate(-90deg);
	background-color: #fff;
	outline: none;
	border-radius: 5px;
	border: 0;
	padding: 0;
	max-width: none;
}

.vol-percent {
	position: absolute;
	right: 60px;
	background: rgba(0, 0, 0, 0.6);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 12px;
	display: none;
}
.vol-control.open .vol-percent {
	display: block;
}

.vol-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
}

.vol-slider::-moz-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
}
.jscroll-to-top{
	bottom: 80px !important;
}
.jeg_viewport {
    padding-bottom: 50px;
}
#site-radio .wrapper-radio {
    display: flex;
    max-width: 1040px;
    width: 90%;
}