    #radio-player {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    #radio-player iframe {
      border: none;
    }

    #show-radio-btn {
      position: fixed;
      top: 80px;
      right: 0px;
      background-color: #4CAF50;
      color: #fff;
      border-radius: 50px;
      padding: 7px;
      font-size: 16px;
      cursor: pointer;
	  width: auto;
    }
	
	#reproductor {
      width: 300px;
      height: auto;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 5px;
      padding-right: 20px;
      padding-left: 20px;
	  padding-top: 10px;
	  padding-bottom: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	  margin-top: 90px;
    }

    #reproductor img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 10px;
    }

    #reproductor .station {
      padding: 8px;
      border-bottom: 1px solid #ddd;
      cursor: pointer;
    }

    #reproductor .station:hover {
      background-color: #f5f5f5;
    }

    #reproductor .station.active {
      background-color: #4CAF50;
      color: #fff;
	  }
	  
    .radio {
      height: 30px;
      margin-top:10px;
      border-radius: 0;
      background-color: #f0f0f0;
      box-shadow: none;
	  width: 100%;
      }

@media only screen and (max-width: 1000px){#show-radio-btn{top:70px;}}