@font-face {
    font-family: 'Onest';
    src: url('../font/onest.woff2');
    src: url('../font/onest.ttf')  format('truetype');
}

body {
	margin: 0;
	padding: 0;
	font-family: Onest, sans-serif;
	background-color: #6528F7;
	background-image: url('../img/texture.png');
    background-repeat: repeat;
    background-blend-mode: normal;
    background-size: cover;
	overflow-x: hidden;
}

p {
	color: black;
}

.container {
	display: flex;
	height: 100vh;
}

.content {
	flex: 1;
	padding: 20px;
	transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.content.show {
	opacity: 1;
}

.sidebar {
	width: 20%;
	background-color: #373A40;
	padding: 20px;
	color: white;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.logo {
	margin-top: 10%;
	margin-bottom: 25%;
	max-width: 200px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	pointer-events: none;
}

.navigation {
	margin-top: 20px;
}

.navigation a {
	display: block;
	margin-bottom: 3%;
	text-decoration: none;
	color: white;
	border-left: 4px solid #b9f728;
	width: 100%;
	font-size: 24px;
	font-weight: bold;
	padding-left: 6px;
	padding-bottom: 2px;
	padding-top: 2px;
	transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

#default {
	border-left: 4px solid #6628f7;
}

.navigation a:hover {
	box-shadow: inset 150px 0 0 0 #b9f728;
	color: #6628f7;
	cursor: pointer;
}

.footer {
	position: absolute;
    bottom: 0;
}

.footer p {
	color: #969696;
}
	
.social a {
	color: #BAF728;
	font-size: 18px;
}

.social a:hover {
	text-shadow: 0 0 4px #91bf26;
}

.radio-player {
    text-align: center;
    margin-top: 20px;
}

.play-pause-btn {
    width: 100px;
    height: 100px;
    background-color: #BAF728;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    align-items: center;
    justify-content: center;
}

.play-pause-btn:hover {
	
}

.play-pause-btn i {
    font-size: 50px;
    color: #6528F7;
}

.play-pause-btn.playing i::before {
    content: "\f04c";
}

.volume-container {
    margin-top: 10px;
}

.volume-slider {
    width: 20%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 5px;
    background: #dcdcdc;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.volume-slider:hover {
    opacity: 1;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #BAF728;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #BAF728;
    cursor: pointer;
}

#artist {
	text-align: center;
	color: white;
	font-size: 18px;
}

#title {
	text-align: center;
	color: white;
	font-weight: bold;
	margin-bottom: 2px;
	font-size: 18px;
}

.grilazi {
	background: #BAF728;
	color: #4a4a4a;
	width: 250px;
	height: auto;
	padding-left: 15px;
}

.grila h1 {
	margin-left: 5px;
}

a {
	color: #BAF728;
	text-decoration: none;
}

.program {
	justify-content: space-between;
}

.topspecial {
	background-color: #BAF728;
	color: #4a4a4a;
	text-align: center;
	font-weight: bold;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.topex {
	text-align: center;
}

.playercontainer {
	margin: auto;
	padding: 50px 50px 50px 50px;
	width: 25%;
}

.window {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.windowcontent {
    background-color: white;
    margin: 20px;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    position: relative;
    overflow-y: auto;
    max-height: 85%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.windowcontent::-webkit-scrollbar {
	display: none;
}

.windowtitle {
    color: #b9f728;
    position: relative;
    font-size: 40px;
    font-weight: bold;
    z-index: 2;
}

.close {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
	color: black;
    text-decoration: none;
}

td {
    padding: 2px;
    text-align: left;
  }
  
@media (max-width: 600px) {
  .sidebar {
    width: 35%;
  }
  .volume-slider {
    display: none;
  }
  .windowcontent {
    max-height: 75%;
    overflow-y: auto;
  }
  .playercontainer {
	margin: auto;
	padding: 50px 50px 50px 50px;
	width: 50%;
  }
  #artist {
	font-size: 14px;
  }
  #title {
	font-size: 14px;
  }
}

@media (max-width: 300px) {
  .sidebar {
    display: none;
  }
  .volume-slider {
    display: none;
  }
  .windowcontent {
    max-height: 75%;
    overflow-y: auto;
  }
  .playercontainer {
	margin: auto;
	padding: 50px 50px 50px 50px;
	width: 50%;
  }
  #artist {
	font-size: 14px;
  }
  #title {
	font-size: 14px;
  }
}

@media (max-height: 380px) {
  .sidebar {
    display: none;
  }
  .volume-slider {
    display: none;
  }
  .windowcontent {
    max-height: 75%;
    overflow-y: auto;
  }
  .playercontainer {
	margin: auto;
	padding: 50px 50px 50px 50px;
	width: 50%;
  }
  #artist {
	font-size: 14px;
  }
  #title {
	font-size: 14px;
  }
}

.selected {
	color: #969696;
}

.langselectable {
	color: white;
}

.anunt {
	background: #f72727;
	color: #ffffff;
	width: auto;
	padding-top: 0.3%;
	padding-bottom: 0.3%;
}

.anunt h1 {
	margin-left: 5%;
	font-size: 20px;
}

.anunt i {
	margin-right: 1%;
}