#player{
max-width: 215px;
margin: 30px 0px 0px -30px;
}
.current-track-meta {
  text-align: center;
 }
.current-track-meta img {
  max-width: 200px;
}

.radioPlayer {
    position: fixed;
    bottom: 50px;
    left: 10px;
    height: 126px;
    width: 320px;
    box-sizing: border-box;
z-index:999;
}

.radioPlayer span.close {
    position: absolute;
    cursor: pointer;
    top: -18px;
    right: -8px;
    color: yellow;
    font-size: 22px;
    font-weight: 700;
    background: #e00083;
    height: 40px;
    border-radius: 25px;
    width: 40px;
    text-align: center;
}

.radioPlayer.hidden {
    width: 60px;
    border-color: transparent;
    background-color: transparent
}

.radioPlayer div.iframe-container {
    border: 2px solid #0D00FF;
    border-radius: 20px;
    background:#0d00ff;       
}

.radioPlayer div.iframe-container.hidden {
    opacity: 0;
    pointer-events: none
}

.radioPlayer div.closed {
    position: absolute;
    bottom: 0;
    top: 0;
    z-index: -1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radioPlayer div.closed::after {
    content: "Radio Chilango";
    display: none;
    position: absolute;
    right: -124px;
    background: rgba(0, 0, 0, 0.5);
    color:white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
}

.radioPlayer div.closed:hover::after {
    display: block;
}

.radioPlayer.hidden div.closed {
    display: block;
    cursor: pointer
}

.player .wrap {
    background: rgb(252 252 252/70%)!important;
    border: 1px solid red!important;
    padding: 10px!important
}

  .playerMainContent {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px
}

_::-webkit-full-page-media, _:future, :root  .playerMainContent {
	
 gap: 27px !important; /* Use !important to force override */  

}	

		
.RadioLogo {
    margin: auto;
    height: 50px;
    display: block
}

.logo-soup {
width: 50px;
margin-top: -39px;
z-index: 2;
position: absolute;
margin-left: 7px;
}
.playerImage {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center
}

.playerImage img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    position: absolute;
    z-index: 0;
    border-radius: 10px
}


.playerMarquee {
    position: relative;
    width: 100%;
    height: 25px;
    overflow: hidden;
    margin: -15px 0px 0px 125px;
}

.playerMarqueeHover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    background: linear-gradient(90deg,rgba(255,255,255,1) 0%,rgba(255,255,255,0.4962359943977591) 19%,rgba(255,255,255,0) 26%,rgba(255,255,255,0) 74%,rgba(255,255,255,0.5) 81%,rgba(255,255,255,1) 100%)
}

.playerControl {
    display: grid;
    grid-template-columns: 30px 1fr
}

.playerControl svg {
    width: 20px;
    height: 20px;
    cursor: pointer
}

.playerMeta a {
    display: block;
    width: max-content;
    margin: auto
}

.play.hidden,.stop.hidden,.mute.hidden,.volume.hidden {
    display: none
}

.playerMarqueeContent {
    font-size: 14px;
    color: #fff;
    font-weight:600;
    position: absolute;
    width: max-content;
    height: 100%;
    margin: 0;
    line-height: 2;
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: marqueePlayer 10s linear infinite;
    -webkit-animation: marqueePlayer 10s linear infinite;
    animation: marqueePlayer 10s linear infinite
}

@-moz-keyframes marqueePlayer {
    0% {
        -moz-transform: translateX(100%)
    }

    100% {
        -moz-transform: translateX(-100%)
    }
}

@-webkit-keyframes marqueePlayer {
    0% {
        -webkit-transform: translateX(100%)
    }

    100% {
        -webkit-transform: translateX(-100%)
    }
}

@keyframes marqueePlayer {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}
