@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: normal;
    src: url('../../font/Oswald/Oswald-Regular.ttf');
}
@font-face {
    font-family: 'Oswald';
    font-style: italic;
    font-weight: normal;
    src: url('../../font/Oswald/Oswald-RegularItalic.ttf');
}
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    src: url('../../font/Oswald/Oswald-Medium.ttf');
}
@font-face {
    font-family: 'Oswald';
    font-style: italic;
    font-weight: 500;
    src: url('../../font/Oswald/Oswald-MediumItalic.ttf');
}
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    src: url('../../font/Oswald/Oswald-Light.ttf');
}
@font-face {
    font-family: 'Oswald';
    font-style: italic;
    font-weight: 300;
    src: url('../../font/Oswald/Oswald-LightItalic.ttf');
}
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: light;
    src: url('../../font/Oswald/Oswald-ExtraLight.ttf');
}
@font-face {
    font-family: 'Oswald';
    font-style: italic;
    font-weight: 100;
    src: url('../../font/Oswald/Oswald-Extra-LightItalic.ttf');
}
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: bold;
    src: url('../../font/Oswald/Oswald-Bold.ttf');
}
@font-face {
    font-family: 'Oswald';
    font-style: italic;
    font-weight: bold;
    src: url('../../font/Oswald/Oswald-BoldItalic.ttf');
}
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    src: url('../../font/Oswald/Oswald-DemiBold.ttf');
}
@font-face {
    font-family: 'Oswald';
    font-style: italic;
    font-weight: 700;
    src: url('../../font/Oswald/Oswald-Demi-BoldItalic.ttf');
}
@font-face {
    font-family: 'MSYH';
    font-style: normal;
    font-weight: normal;
    src: url('../../font/MSYH/Msyh.ttf');
}
:root {
    --slider-height: 7px;
    --slider-background: #efefef;
    --slider-accent: #007cf8;
    --slider-accent: black;
}
body{
    background-color: black;
    position: relative;
}
.player-wrapper{
    min-width: 820px ;
}
.player-container{
    height: 600px;
    min-height: 600px;
    max-height: 600px;
    width: 700px;
    min-width: 700px;
    max-width: 700px;
    margin-bottom: 50px;
}
.logo-wrapper{
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    overflow: hidden;
}
.logo-container{
    height: 70px;
    width: 150px;
    margin: 15px auto;
    text-align: center;
}
.logo-container a{
	display: block;
    margin: 0 auto;
}
.logo{
    max-height: 70px;
    max-width: 150px;
}
.logo[src$=".svg"]{
	width: 100%;
	height: 100%;
}
.player-control-info-wrapper{
    height: 190px;
    min-height: 190px;
    max-height: 190px;
    background-color: #FFCC07;
}
.player-control-info-container{
    padding: 10px 15px;
    height: 100%;
    position: relative; 
}
.player-control-info-song-current-image-wrapper,
.player-control-info-song-current-wrapper{
    display: inline-block;
    float: left;
}
.player-control-info-song-current-image-wrapper,
.player-control-info-song-current-image{
    height: 170px;
    min-height: 170px;
    max-height: 170px;
    width: 170px;
    min-width: 170px;
    max-width: 170px;
}
.player-control-info-song-current-image-wrapper{
    margin-right: 15px;
}
.player-control-info-song-current-image-container{
    box-shadow: 0px 0px 1px 3px rgba(0,0,0,0.1);
}
.player-control-info-song-current-image{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: white;
}
.player-control-info-song-current-image[style*=".svg"]{
    background-size: 80%;
}
.player-control-info-song-current-wrapper{
    width: calc(100% - 185px);
    min-width: calc(100% - 185px);
    max-width: calc(100% - 185px);
    padding-left: 15px;
    position: relative;
    z-index: 2;
}
.player-control-info-song-current-container{
    background-color: white;
    border-radius: 10px;
    margin-top: 15px;
    height: 70px;
    min-height: 70px;
    max-height: 70px;
    padding: 10px;
    position: relative;
    z-index: 1;
}
.player-control-info-song-current-caption-container{
    font-size: 12px;
    line-height: 12px;
    height: 22px;
    min-height: 22px;
    max-height: 22px;
    background-color: black;
    color: #FFCC07;
    padding: 5px 5px;
    text-transform: uppercase;
    margin-top: calc(-10px - 22px / 2);
}
.player-control-info-song-current-detail-wrapper{
    margin: 5px 0;
}
.player-control-info-song-current-detail-wrapper{
    padding-left: 40px; 
}
.player-control-info-song-current-title-container,
.player-control-info-song-current-artist-container{
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    text-transform: capitalize;
}
.player-control-info-song-current-title-container{
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
}
.player-control-info-song-current-artist-container{
    font-size: 14px;
    line-height: 20px;
}
.player-control-info-song-current-lyrics-wrapper{
    position: absolute;
    top: 0;
    right: 0;
}
.player-control-info-song-current-lyrics-container{
    padding: 5px;
}
.player-control-info-song-current-lyrics{
    width: 25px;
    cursor: pointer;
}
.player-control-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    min-height: 70px;
    max-height: 70px;
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    margin-left: -20px;
    padding: 10px;
}
.player-control-container{
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    width: 50px;
    min-width: 50px;
    max-width: 50px;
    background-color: black;
    border-radius: 50px;
    padding: 10px;
}
.player-control #play-btn,
.player-control #loading-btn,
.player-control #stop-btn,
.player-control #play-btn span,
.player-control #loading-btn span,
.player-control #stop-btn span{
    display: block;
    width: 30px;
    height: 30px;
}
.player-control #play-btn span{
    margin: 3px 0 3px 6px;
    border-right: 0px;
    border-left: 24px solid white;
    border-bottom: 12px solid transparent;
    border-top: 12px solid transparent;
    width: 24px;
    height: 24px;
}
.player-control #loading-btn span{
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    cursor: not-allowed;
    color: white;
}
.player-control #stop-btn span{
    border: 10px solid white;
    display: block;
    width: 20px;
    height: 20px;
    margin: 5px;
}

.player-control #play-btn{
    display: block;
}
.player-control #stop-btn,
.player-control #loading-btn{
    display: none;
}
.player-control.playing #play-btn,
.player-control.playing #loading-btn,
.player-control.loading #play-btn,
.player-control.loading #stop-btn{
    display: none;
}
.player-control.loading #loading-btn,
.player-control.playing #stop-btn{
    display: block;
}
#live-player{
    display: none;
}
.player-control-info-programme-wrapper{
    padding-left: 15px; 
    text-align: center;
}
.player-control-info-programme-container{
    line-height: 20px;
}
.player-control-info-programme-current,
.player-control-info-programme-next{
    display: inline-block;
    font-size: 14px;
}
.player-control-info-programme-current.no-show{
    display: none;
}
.player-history-highlight-wrapper,
.player-history-container,
.player-highlight-container{
    background-color: white;
    height: calc(600px - 100px - 190px);
    min-height: calc(600px - 100px - 190px);
    max-height: calc(600px - 100px - 190px);
    position: relative;
}
.player-history-container{
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    padding: 5px 0px;
}
.player-history-container,
.player-highlight-container{
    display: inline-block;
    float: left;
}
.player-history-volume-wrapper{
    margin-bottom: 5px;
}
.player-history-volume-wrapper,
.player-history-volume-container{
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    max-width: 100%;
}
.player-history-volume-box {
    margin: 20px 0;
    position: relative;
    float: left;
}

.player-history-volume-box > div {
    display: inline-block;
    min-width: 35px;
    height: 40px;
    float: left;
}

.player-history-volume-box .player-history-volume-icon,
.player-history-volume-box .player-history-volume-range {
    line-height: 40px;
    font-size: 25px;
    text-align: left;
}
.player-history-volume-box .player-history-volume-range {
    width: calc(200px - 50px);
}
.player-history-volume-box .player-history-volume-icon i{
    cursor: pointer;
}

.volume-controller {
    margin: calc((38px - var(--slider-height)) / 2) 0;
    float: left;
    max-width: 100%;
    height: var(--slider-height)
}
.volume-controller {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.volume-controller::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: var(--slider-height);
    border-radius: var(--slider-height);
    background: var(--slider-background);
    overflow: hidden;
}
.volume-controller:focus::-webkit-slider-runnable-track {
    box-shadow: none;
}
.volume-controller::-moz-range-track {
    height: var(--slider-height);
    border-radius: var(--slider-height);
    background-color: var(--slider-background);
    overflow: hidden;
}
.volume-controller::-moz-range-progress {
    background-color: var(--slider-accent);; 
  }
.volume-controller:focus::-moz-range-track {
    box-shadow: none;
}
.volume-controller::-ms-track {
    height: var(--slider-height);
    border-radius: var(--slider-height);
    background: var(--slider-background);
    overflow: hidden;
}
.volume-controller:focus::-ms-track {
    box-shadow: none;
}
.volume-controller::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: var(--slider-height);
    height: var(--slider-height);
    border-radius: var(--slider-height);
    background-color: var(--slider-accent);
    border: none;
    box-shadow: calc(-100px - calc(var(--slider-height) / 2)) 0 0 100px var(--slider-accent);
}

.volume-controller::-moz-range-thumb {
    appearance: none;
    width: var(--slider-height);
    height: var(--slider-height);
    border-radius: var(--slider-height);
    background-color: var(--slider-accent);
    border: none;
}

.volume-controller::-ms-thumb {
    appearance: none;
    width: var(--slider-height);
    height: var(--slider-height);
    border-radius: var(--slider-height);
    background-color: var(--slider-accent);
    border: none;
}

.volume-controller::-ms-fill-upper {
    background: var(--slider-accent);
    border-color: var(--slider-accent);
}

.volume-controller::-ms-fill-lower {
    background: var(--slider-accent);
    border-color: var(--slider-accent);
}
.player-history-caption-wrapper{
    margin-bottom: 10px;
}
.player-history-caption{
    font-size: 12px;
    line-height: 12px;    
    height: 24px;
    min-height: 24px;
    max-height: 24px;
    background-color: black;
    color: #FFCC07;
    padding: 6px 5px;
    text-transform: uppercase;
}
.player-history-list-wrapper,
.player-history-list-container,
.player-history-list{
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    overflow: hidden;
}
.player-history-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.player-history-list li{
    display: block;
    position: relative;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    padding: 0 0 5px;
}
.player-history-list table{
    width: 100%;
    height: 100%;
}
.player-history-list table td{
    padding: 0;
    margin: 0;
    height: 55px;
    vertical-align: middle;
}
.player-history-list-loading{
    display: none;
    width: 100%;
    height: 100%;
    font-size: 50px;
    text-align: center;
    line-height: 180px;
}
.player-history-list ul:empty + .player-history-list-loading{
    display: block;
}
.player-history-album-container{
    width: 55px;
}
.player-history-album{
    height: 55px;
    width: 55px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: black;
    border-radius: 55px;
    border: 1px solid black;
}
.player-history-album[style*=".svg"]{
    background-size: 80%;
    background-color: white;
}
.player-history-album,
.player-history-title,
.player-history-artist{
    display: block;
    text-transform: capitalize;
}
.player-history-info-container{
    padding-left: 5px !important; 
}
.player-history-title,
.player-history-artist{
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    max-width: 100%;
}
.player-history-title{
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
}
.player-history-artist{
    font-size: 14px;
    line-height: 18px;
}
.player-highlight-container{
    width: calc(100% - 200px);
    min-width: calc(100% - 200px);
    max-width: calc(100% - 200px);
    padding: 0 15px 15px;
}
.player-highlight-slider-wrapper{
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    position: relative;
}
.player-highlight-slider-caption-container{
    margin-bottom: 320px; 
    font-size: 14px;
    line-height: 18px;
    height: 28px;
    min-height: 28px;
    max-height: 28px;
    background-color: black;
    color: #FFCC07;
    padding: 5px 20px;
    z-index: 1;
}
.player-highlight-slider-caption-container,
.player-highlight-slider-container{
    position: absolute;
    bottom: 0;
}
.player-highlight-slider-container{
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    height: 320px;
    min-height: 320px;
    max-height: 320px;
    overflow: hidden;
    box-shadow: 0px 0px 1px 4px rgb(0 0 0 / 15%);
}
.player-highlight-slider-content a{
    display: block;
    width: 320px;
    height: 320px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: black;
}
.slick-dotted.slick-slider{
	margin-bottom: 0;
}
.slick-dots{
	bottom: 5px;
}
.slick-dots li button:before{
	color: white;
}
.player-bookmark-wrapper{
    position: absolute;
    width: 40px;
    height: 120px;
    right: -33px;
    padding: 0;
    top: 110px;
    overflow-x: clip;
}
.player-bookmark-shadow,
.player-podcast-shadow{
    height: 100%;
    box-shadow: 1px 0 10px 1px rgb(0 0 0);
    z-index: 1;
}
.player-bookmark-item{
    display: block;
    width: 40px;
    height: 30px;
    border: 2px solid white;
    border-left: 0;
    border-radius: 0 10px 10px 0;
    margin: 5px 0;
    background-color: black;
    box-shadow: 0 0 5px 1px rgb(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 5px;
    float: left;
}
.player-bookmark-item a{
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.player-podcast-wrapper{
    position: absolute;
    width: 60px;
    height: 160px;
    right: -53px;
    padding: 0;
    top: 130px;
    overflow-x: clip;
}
.player-podcast-container{
	z-index: 1;
}
.player-podcast-item{
    display: block;
    width: 60px;
    height: 60px;
    border: 2px solid red;
    margin: 5px 0;
    background-color: white;
    box-shadow: 0 0 5px 1px rgb(0, 0, 0, 0.2);
    overflow: hidden;
    float: left;background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: white;
    box-shadow: 0px 0 5px 1px rgb(0 0 0 / 30%);
}
.player-programme-current.no-show{
    display: none;
}
.player-sharing-wrapper{
    position: absolute;
    width: 55px;
    height: 160px;
    right: -40px;
    padding: 0;
    bottom: 10px;
    overflow-x: clip;
}
.player-sharing-item{
    display: block;
    width: 55px;
    height: 30px;
    margin: 5px 0 0 ;
    overflow: hidden;
    float: left;
    position: relative
}
.player-share-badge-back,
.player-share-badge-mid,
.player-share-badge-front{
    display: block;
}
.player-share-badge-back{
    position: absolute;
    height: 25px;
    width: 18px;
    border-radius: 25px 0 0 25px;
}
.player-share-badge-mid{
    position: absolute;
    height: 25px;
    left: 14px;
    border: 4px solid transparent;
    border-left: 0;
}
.player-share-badge-front{
    position: absolute;
    height: 25px;
    width: 36px;
    left: 14px;
    top: 4px;
    border-radius:  0 25px 25px 0;
    padding: 0 6px 0 0;
}
.facebook-share .player-share-badge-back{
    background-color: #313C7A;
}
.facebook-share .player-share-badge-mid{
    border-right-color: #262261;
}
.facebook-share .player-share-badge-front{
    background-color: #4272B7;
}
.twitter-share .player-share-badge-back{
    background-color: #3677D6;
}
.twitter-share .player-share-badge-mid{
    border-right-color: #313D7A;
}
.twitter-share .player-share-badge-front{
    background-color: #429BD5;
}
.whatsapp-share .player-share-badge-back{
    background-color: #188A33;
}
.whatsapp-share .player-share-badge-mid{
    border-right-color: #0B621C;
}
.whatsapp-share .player-share-badge-front{
    background-color: #63BB60;
}
.embed-share .player-share-badge-back{
    background-color: #304255;
}
.embed-share .player-share-badge-mid{
    border-right-color: #1B2C39;
}
.embed-share .player-share-badge-front{
    background-color: #374C61;
}

.player-share-facebook-button:hover,
.player-share-twitter-button:hover,
.player-share-whatsapp-button:hover,
.player-share-embed-button:hover {
    color: white;
    text-decoration: none;
}
.player-sharing-item i{
    width: 19px;
    height: 19px;
    text-align: center;
    margin: 3px auto;
    display: block;
    color: white;
    font-size: 19px;
    line-height: 19px;
}
.player-embed-code{
	width: 100%;
	height: 100%;
	min-height: 100px;
	border: 0 !important;
	border-bottom: 1px solid black !important;
}
.player-embed-code:focus{
	outline: 0;
}
#player-ads-block-modal .modal-content{
	border-radius:0;
}
#player-ads-block-modal .modal-dialog{
	max-width: 300px;
}
#player-ads-block-modal .modal-body{
	padding:5px;
}
#player-ads-block-modal .close {
    font-size: 1rem;
    line-height: 0.6rem;
}
#player-ads-block-modal button.close:focus{
	outline: 0;
}
#player-ads-block-modal  .fa-exclamation-triangle{
	margin: 5px;
}
#player-ads-block-modal p{
	font-size: 12px;
	margin: 0;
}
#player-ads-block-modal .ads-block-title{
	font-size: 15px;
}

#player-ads-modal .modal-dialog{
	max-width: 300px;
	min-width: 300px;
	width: 300px;
	margin: 0 auto;
}
#player-ads-modal .modal-content{
	max-height: 250px;
	min-height: 250px;
	height: 250px;   
	margin: 0;
	background: transparent;
    border: 0;
}
#player-ads-modal .modal-body{
	width: 300px;
    height: 250px;
}
#player-ads-modal .modal-content button.close{
	position: absolute;
	right: 5px;
	top: 5px;
}
.menu-control,
.toggle-target-mobile,
.menu-control:checked + .menu-toggle{
    display: none;
}
.menu-toggle{
    background: #ff0808;
    border-radius: 0 40px 40px 0;
    position: absolute;
    top: 54px;
    left: 0;
    z-index: 10;
}
.menu-toggle .toggle-target {
    margin: 0;
    color: white;
    font-weight: bold;
    padding: 10px 30px 10px 15px;
    font-size: 18px;
    text-transform: uppercase;
}
.menu-toggle .toggle-target-mobile {
   width: 30px;
}
.sidebar {
    z-index: 30;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    width: 250px;
    background: rgba(0,0,0,0.8);
    position: absolute;
    top: 0;
    left: 0;
    transform: translatex(-100%);
    transition: transform 0.4s ease-in-out;
}
.sidebar-close-container{
    text-align: right;
    padding: 0 10px;
}
.sidebar-close {
    border-radius: 60px;
    margin: 0;
    padding: 5px;
    color: white;
}  
.sidebar-title-container{
    padding: 20px 0;
}
.sidebar-title{
    padding: 10px 30px 10px 15px;
    border-radius: 0 40px 40px 0;
    background: #666666;
    font-size: 18px;
    color: white;
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
}
.sidebar-menu-container{
    display: block;
    padding: 20px;
    max-height: calc(100% - 34px - 87px);
    overflow-y: auto;
} 
.sidebar-menu-container::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}
.sidebar-menu-container::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    background-color: #F5F5F5;
}
.sidebar-menu-container::-webkit-scrollbar-thumb {
    background: #000000;  
}
.sidebar-menu-item {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    margin-bottom: 20px;
    background: #666666;
    position: relative;
} 
.sidebar-menu-item::before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 3px solid #8d8d8d;
    border-radius: 50px;
} 
.sidebar-menu-item > div {
    display: inline-block;
    float: left;
} 
.sidebar-menu-logo-container{
    border: 3px solid #8d8d8d;
    border-radius: 50px;
    width: calc(100% - 50px);
    height: 100%;
    background: white;
}
.sidebar-menu-logo{
    width: 100px;
    height: 40px;
    margin: 2px auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: white;
}
.sidebar-menu-play-container{
    width: 50px;
    height: 50px;
}
.sidebar-menu-play{
    border-left: 20px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 0;
    margin: 15px auto;
    width: 20px;
    height: 20px;
}
.menu-control:checked + .menu-toggle + .sidebar {
    transform: translatex(0);
}
.player-control-info-song-current-lyrics-display-wrapper{
    width: 90%;
    margin: 0 auto;
    position: absolute;
    padding: 0 10px;
    left: 15px;
    right: 0;
    height: 0;
    max-height: 500px;
    background: #cccccc;
    z-index: 0;    
    overflow: hidden;
    transition: height 0.5s;
}
.player-control-info-song-current-lyrics-display-wrapper.open{
    height: 430px;
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%);
}
.player-control-info-song-current-lyrics-display-container{
    max-height: 430px;
    padding: 10px;
    overflow-y: auto;
}
.player-control-info-song-current-lyrics-controller-container{
    position: absolute;
    right: 40px;
    top: 10px;
}
.player-control-info-song-current-lyrics-controller-container > a{
    display: block;
}
.player-control-info-song-current-lyrics-controller-close,
.player-control-info-song-current-lyrics-controller-edit,
.player-control-info-song-current-lyrics-controller-report{
    width: 15px;
    margin-right: 5px;
}
.player-control-info-song-current-lyrics-controller-edit,
.player-control-info-song-current-lyrics-controller-report{
    margin-right: 0px;
    margin-top: 30px;
    width: 20px;
}
.player-control-info-song-current-lyrics-view-container{
    white-space: pre-line;
    width: calc(100% - 50px);
}
.player-control-info-song-current-lyrics-no-container,
.player-control-info-song-current-lyrics-view-container:empty{
    display: none;
}
.player-control-info-song-current-lyrics-view-container:empty + .player-control-info-song-current-lyrics-no-container{
    display: block;
}
.player-control-info-song-current-lyrics-view-container + .player-control-info-song-current-lyrics-no-container + .player-control-info-song-current-lyrics-controller-container .player-control-info-song-current-lyrics-controller-edit,
.player-control-info-song-current-lyrics-view-container + .player-control-info-song-current-lyrics-no-container + .player-control-info-song-current-lyrics-controller-container .player-control-info-song-current-lyrics-controller-report{
    display: none;
}
.player-control-info-song-current-lyrics-view-container.show + .player-control-info-song-current-lyrics-no-container + .player-control-info-song-current-lyrics-controller-container .player-control-info-song-current-lyrics-controller-edit,
.player-control-info-song-current-lyrics-view-container.show + .player-control-info-song-current-lyrics-no-container + .player-control-info-song-current-lyrics-controller-container .player-control-info-song-current-lyrics-controller-report{
    display: block;
}
.player-control-info-song-current-lyrics-view-container.verified + .player-control-info-song-current-lyrics-no-container + .player-control-info-song-current-lyrics-controller-container .player-control-info-song-current-lyrics-controller-edit,
.player-control-info-song-current-lyrics-view-container.verified + .player-control-info-song-current-lyrics-no-container + .player-control-info-song-current-lyrics-controller-container .player-control-info-song-current-lyrics-controller-report{
    display: none;
}
.player-control-info-song-current-lyrics-view-container.show:empty + .player-control-info-song-current-lyrics-no-container + .player-control-info-song-current-lyrics-controller-container .player-control-info-song-current-lyrics-controller-report{
    display: none;
}
::-webkit-scrollbar {
    width: 8px;
}
.player-control-info-song-current-lyrics-display-container::-webkit-scrollbar-track {
    background: #999999; 
    margin: 10px 0;
    border-radius: 8px;
}
.player-control-info-song-current-lyrics-display-container::-webkit-scrollbar-thumb {
    background: #e1e1e1; 
    border-radius: 8px;
}
.player-control-info-song-current-lyrics-display-container::-webkit-scrollbar-thumb:hover {
    background: #615D5F; 
}

.open-app-modal{
    text-align: center;
}
.open-app-modal .modal-dialog{
    max-width: 300px;
    margin: 0 auto;
}
.open-app-modal .modal-content{
    border-radius: 15px;
    font-size: 22px;    
    line-height: 25px;
    overflow: hidden;
}
.open-app-modal .modal-body{
    padding: 20px 30px 0;
}
.open-app-modal .mobile-logo{
    text-align: center;
    margin-bottom: 20px;
}
.open-app-modal .mobile-logo .logo{
    max-width: 100px;
}
.open-app-modal .mobile-app-logo{
    max-height: 70px;
    max-width: 150px;
}
.open-app-modal .mobile-app-logo[src$=".svg"] {
    width: 100%;
    height: 100%;
}
.open-app-modal .modal-footer{
    justify-content: space-around;
    background: #ffcc07;
    border: 0;
}
.open-app-modal .modal-footer .btn{
    background: #d11816;
    border-bottom: 3px solid #770e0b;
    border-radius: 3px;
    color: white;
    text-transform: uppercase;
}
.open-app-modal .modal-footer .fas{
    margin-right: 10px;
}
.open-app-modal .modal-footer .btn-open-app{
    background: #168dab;
    border-bottom: 3px solid #0e4f61;
}
.player-control-info-song-current-lyrics-verify-container{
    margin-bottom: 10px;
    padding: 0;
    display: none;
}
.player-control-info-song-current-lyrics-verify-container.verified{
    display: block;
}
.player-control-info-song-current-lyrics-verify-container span{
    font-size: 10px;
    color: #204FFF;
    font-weight: bold;
    background: #ffffff;
    padding: 2px 5px;
    border-radius: 20px;
}
.player-control-info-song-current-lyrics-verify-container img{
    width: 10px;
    margin-right: 3px;
    margin-top: -2px;
    vertical-align: middle;
}
@media only screen and (max-width: 820px) {
    .player-wrapper{
        min-width: 320px;
    }
    .player-container {
        height: auto;
        min-height: 100vh;
        max-height: unset;
        width: 320px;
        min-width: 320px;
        max-width: 320px;
        overflow: hidden;
    }
    .logo-wrapper {
        height: 70px;
        min-height: 70px;
        max-height: 70px;
    }
    .logo-container {
        height: 50px;
        width: 70px;
        margin: 10px auto;
    }
    .logo {
	    max-height: 50px;
	    max-width: 70px;
	}
    .player-control-info-wrapper,
    .player-history-container,
    .player-history-highlight-wrapper, 
    .player-history-container, 
    .player-highlight-container{
        height: auto;
        min-height: unset;
        max-height: unset;
    }
    .player-control-info-container{
        padding: 15px 0;
    }
    .player-control-info-song-current-image-wrapper, 
    .player-control-info-song-current-wrapper{
        display: block;
        float: none;
        margin: 0 auto;
    }
    .player-control-info-song-current-image{
        height: 170px;
        min-height: 170px;
        max-height: 170px;
        width: 170px;
        min-width: 170px;
        max-width: 170px;
    }
    .player-control-info-song-current-wrapper,
    .player-highlight-container{
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    .player-control-info-song-current-container{
        margin: 0;
    }
    .player-control-info-song-current-caption-wrapper{
        margin-left: -15px;
    }
    .player-control-info-programme-wrapper{
    	height: 42px;
    	padding-top: 5px;
    }
    .player-control-info-programme-current, 
    .player-control-info-programme-next,
    .player-history-container, 
    .player-highlight-container{
        display: block;
        float: none;
    }
    .player-control-info-programme-current, 
    .player-control-info-programme-next{
        margin: 0 auto;
    }
    .player-history-highlight-wrapper{
        padding-bottom: 15px; 
    }
    .player-history-volume-wrapper{
        display: none !important;
    }
    .player-history-caption-wrapper{
        justify-content: left !important;
        margin-top: 10px;
    }
    .player-history-album-container{
        display: none;
    }
    .player-highlight-container{
        padding: 0;
    }
    .player-highlight-slider-caption-container, 
    .player-highlight-slider-container{
        position: relative;
        bottom: unset;
    }
    .player-highlight-slider-wrapper{
        display: block !important;
    }
    .player-highlight-slider-caption-container{
        margin: 0 auto;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
    }
    .player-highlight-slider-container,
    .player-highlight-slider-content a{
        width: 290px;
        min-width: 290px;
        max-width: 290px;
        height: 290px;
        min-height: 290px;
        max-height: 290px;
    }
    .player-bookmark-wrapper{
        right: 25px;
        width: 50px;
    }
    .player-podcast-wrapper{
        right: 5px;
        top: 410px;
        width: 70px;
    }
    .player-sharing-wrapper{
        right: unset;
        top: 80px;
        left: -10px;
    }
    .player-sharing-shadow-container,
    .player-sharing-shadow{
        height: 100%;
        z-index: 1;
        position: absolute;
    }
    .player-sharing-shadow-container{
        left: 14px;
        overflow-x: clip;
        right: 37px;
    }
    .player-sharing-shadow{
        box-shadow: 1px 0 3px 1px rgb(0 0 0);
        right: 0;
    }
    .facebook-share .player-share-badge-front,
    .twitter-share .player-share-badge-front,
    .whatsapp-share .player-share-badge-front,
    .embed-share .player-share-badge-front{
        z-index: 2;
    }
    .menu-toggle{
        top: 20px;
        left: calc(50% - 150px);
        background: unset;
    }
    .toggle-target-mobile{
        display: inline-block;
    }
    .toggle-target{
        display: none;
    }
    .player-control-info-song-current-lyrics-display-wrapper{
        width: calc(100% + 30px);
        margin-left: -30px;
        margin-top: -30px;
    }
    .player-control-info-song-current-lyrics-display-container{
        padding-top: 40px;
    }
    .player-control-info-song-current-lyrics-controller-container{
        top: 40px;
    }
}