body {
    margin: 0;
    padding: 0;
}

#player {
    font-family: "Gotham-Medium";
    position: absolute;
    display: block;
    width: 275px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #C10059;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
    min-height: 365px;
    height: 100%;
}

#player #cover-zone {
    display: block;
    position absolute;
    top: 0px;
    height: calc(100% - 90px);
    width: 100%;
}

#player #cover-zone #cover-fade {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%,rgba(0, 0, 0, 0.4) 40%,rgba(0, 0, 0, 0) 100%);
}

#player #cover-zone #cover-fade #radio-title-zone {
    height: 30px;
    width: 230px;
    font-size: 12px;
    padding-top: 10px;
    padding-left: 10px;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#player #cover-zone #cover-fade #popup-button-zone {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    padding-top: 5px;
    padding-right: 5px;
}

#player #cover-zone #cover-fade #popup-button-zone #btnPopup {
    cursor: pointer;
}

#player #cover-zone #cover-fade #popup-button-zone #btnPopup #zoom-icon path {
    fill: white;
}

#player #cover-zone #pochette {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#player #cover-zone #pochette img {
    position: relative;
    height: 101%;
    width: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    user-select: none;
}

#player #cover-zone .like-zone {
    display: block;
    width: 100%;
    height: calc(100% - 90px);
    top: 0;
    left: 0;
    position: absolute;
    overflow: hidden;
    background-color: rgba(30, 127, 203, 0.75);
    opacity: 0;
    transition: opacity 0.2s linear;
}

#player #cover-zone:hover .like-zone:not(.disable), #player #cover-zone .like-zone:not(.disable):hover {
    opacity: 1;
}

#player #cover-zone .like-title {
    margin-top: 90px;
    font-size: 14px;
    color: white;
    margin-bottom: 18px;
    text-align: center;
}

.like-buttons-zone {
    padding-left: 64px;
}

#player #cover-zone .like-zone #like-button,
#player #cover-zone .like-zone #dislike-button {
    display: block;
    width: 46px;
    height: 46px;
    position: relative;
    border-radius: 30px;
    background-color: white;
    cursor: pointer;
    float: left;
}

#player #cover-zone .like-zone #like-button.voteDisabled,
#player #cover-zone .like-zone #dislike-button.voteDisabled {
    opacity: 0.7;
}

#player #cover-zone .like-zone #like-button.voteDisabled:hover,
#player #cover-zone .like-zone #dislike-button.voteDisabled:hover {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
}

#player #cover-zone .like-zone #like-button {
    margin-right: 50px;
}

#player #cover-zone .like-zone #like-button svg,
#player #cover-zone .like-zone #dislike-button svg {
    width: 16px;
    height: 16px;
    position: relative;
    top: 15px;
    left: 15px;
}

#player #cover-zone .like-zone #like-button svg path,
#player #cover-zone .like-zone #dislike-button svg path {
    fill: #C10059;
}

#player #buttons-zone {
    display: block;
    position: absolute;
    bottom: 0px;
    height: 90px;
    width: 100%;
}


#player #buttons-zone #top-zone {
    width: 100%;
    height: 55px;
}

#player #buttons-zone #top-zone #play-pause-zone {
    float: left;
    display: block;
    height: 100%;
    width: 70px;
}

.play-pause-button svg {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-top: 5px;
}


.play-pause-button svg path {
    fill: #C10059;
}

#player #buttons-zone #top-zone #play-pause-zone #btnPlay,
#player #buttons-zone #top-zone #play-pause-zone #btnStop,
#player #buttons-zone #top-zone #play-pause-zone #loading
 {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 30px;
    margin-left: 15px;
    margin-top: 10px;
    cursor: pointer;
}

#player #buttons-zone #top-zone #play-pause-zone #loading,
#player #buttons-zone #top-zone #play-pause-zone #btnStop {
    display: none;
}

#player #buttons-zone #top-zone #titrage {
    float: left;
    display: block;
    color: white;
    height: 100%;
    width: calc(100% - 70px);
}

#player #buttons-zone #top-zone #titrage #titre {
    display: block;
    font-size: 15px;
    margin-top: 12px;
    margin-bottom: 4px;
    width: calc(100% - 5px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#player #buttons-zone #top-zone #titrage #artiste {
    display: block;
    font-family: "Gotham-Book";
    font-size: 14px;
    width: calc(100% - 5px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-text-transform: uppercase;
    text-transform: uppercase;
}

#player #buttons-zone #bottom-zone {
    width: 100%;
    height: 35px;
}

#player #buttons-zone #bottom-zone #volume-zone {
    float: left;
    height: 100%;
    width: 130px;
}

#player #buttons-zone #bottom-zone #volume {
    display: none;
}

#player #buttons-zone #bottom-zone #volume-zone #mute-button-zone {
    float: left;
    height: 100%;
    width: 50px;
}

#player #buttons-zone #bottom-zone #volume-zone #mute-button-zone #mute-button {
    margin-top: 4px;
    margin-left: 15px;
    height: 20px;
    width: 20px;
    cursor: pointer;
}

#player #buttons-zone #bottom-zone #volume-zone #mute-button-zone #mute-button #volume-up-icon {
    width: 100%;
    height: 100%;
}

#player #buttons-zone #bottom-zone #volume-zone #mute-button-zone #mute-button #volume-up-icon path {
    fill: white;
}

#player #buttons-zone #bottom-zone #volume-zone #mute-button-zone #mute-button #volume-off-icon {
    width: 100%;
    height: 100%;
}

#player #buttons-zone #bottom-zone #volume-zone #mute-button-zone #mute-button #volume-off-icon path {
    fill: white;
}

#player #buttons-zone #bottom-zone #volume-zone #mute-button-zone #mute-button.muted #volume-up-icon {
    display: none;
}

#player #buttons-zone #bottom-zone #volume-zone #mute-button-zone #mute-button:not(.muted) #volume-off-icon {
    display: none;
}

#player #buttons-zone #bottom-zone #volume-zone #slider-zone {
    float: left;
    width: 70px;
    padding-right: 10px;
    height: 100%;
}

#player #buttons-zone #bottom-zone #volume-zone #slider-zone #slider {
    margin-top: 13px;
}

#player #buttons-zone #bottom-zone #volume-zone #slider-zone #slider.ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
    height: 2px;
    border: none;
    border: none;
    background: none;
    background-color: rgba(0,0,0,0.25);
}

#player #buttons-zone #bottom-zone #volume-zone #slider-zone #slider .ui-slider-range.ui-widget-header.ui-corner-all.ui-slider-range-min {
    background-image: none;
    background-color: white;
}

#player #buttons-zone #bottom-zone #volume-zone #slider-zone #slider.ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all .ui-slider-handle.ui-state-default.ui-corner-all {
    display: none;
}

#player #buttons-zone #bottom-zone #volume-zone #slider-zone:hover #slider.ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all .ui-slider-handle.ui-state-default.ui-corner-all {
    display: block;
    border: none;
    background: none;
    background-color: white;
    border-radius: 100px;
    height: 10px;
    width: 10px;
    top: 0px;
    margin-top: -4px;
    margin-left: -5.5px;
    outline: none;
    cursor: pointer;
}

#player #radioStream {
    display: none;
}

#player #listeners-count {
    color: white;
    font-size: 11px;
    font-family: "Gotham-Book";
    display: none;
}
#player #listeners-count svg {
    fill: white;
    width: 18px;
}
#player #listeners-count span.listeners-count {
    top: -7px;
    position: relative;
    margin-left: 2px;
}

#player #buttons-zone #bottom-zone .button-zone {
    display: block;
    float: left;
    height: 100%;
    width: 35px;
}

#player #buttons-zone #bottom-zone .button-zone #btnDownload {
    display: block;
    height: 20px;
    width: 20px;
    padding: 3px;
    border-radius: 50px;
    margin-left: 10px;
    cursor: pointer;
}

#player #buttons-zone #bottom-zone .button-zone #btnDownload #download-icon {
    width: 18px;
    height: 18px;
    margin-left: 1px;
    margin-top: 1px;
}

#player #buttons-zone #bottom-zone .button-zone #btnDownload #download-icon path {
    fill: white;
}

#player #buttons-zone #bottom-zone .button-zone #share-button {
    height: 20px;
    width: 20px;
    padding: 3px;
    border-radius: 50px;
    margin-left: 10px;
    cursor: pointer;
}

#player #buttons-zone #bottom-zone .button-zone #share-button.activated {
    background-color: rgba(122,122,122,0.2);
}

#player #buttons-zone #bottom-zone .button-zone #share-button #share-icon {
    width: 16px;
    height: 16px;
    margin-left: 1px;
    margin-top: 2px;
}

#player #buttons-zone #bottom-zone .button-zone #share-button #share-icon path {
    fill: white;
}

#player #buttons-zone #bottom-zone #hd-zone {
    float: left;
    display: block;
    height: 100%;
    width: 55px;
}

#player #buttons-zone #bottom-zone #hd-zone #hd-button {
    display: none;
    height: 20px;
    width: 20px;
    cursor: pointer;
    margin-left: 35px;
    margin-top: 8px;
    user-select: none;
}

#player #buttons-zone #bottom-zone #hd-zone #hd-button #hd-icon {
    display: block;
    width: 100%;
    height: 100%;
    font-family: "Gotham-Bold";
    text-align: center;
    font-style: italic;
    font-size: 12px;
}

.hd {
    color: rgba(0,0,0,0.25);
}

.hd.on {
    color: white;
}


/* Zone de partage */

#share-zone {
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 275px;
    height: calc(100% - 90px);
    background-color: rgba(30, 127, 203, 0.75);
    transition: opacity 0.2s linear;
}

#share-zone #share-top {
    position: relative;
    width: 100%;
    height: 30px;
    margin-bottom: 25px;
}

#share-zone #share-top .close-button {
    position: absolute;
    right: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

#share-zone #share-top .close-button svg {
    width: 100%;
    height: 100%;
}

#share-zone #share-top .close-button svg path {
    fill: white;
}

#share-zone #share-buttons-title, #share-zone #share-code-title {
    width: 100%;
    height: 14px;
    text-align: center;
    color: white;
    font-size: 14px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

#share-zone #share-buttons-zone {
    width: 100%;
    height: 42px;
    padding-left: 40px;
    margin-bottom: 30px;
}

#share-zone #share-buttons-zone .share-button {
    display: block;
    float: left;
    width: 42px;
    height: 42px;
    cursor: pointer;
    margin-right: 35px;
    border-radius: 50px;
}

#share-zone #share-code-zone {
    width: 100%;
    height: 25px;
    text-align: center;
}

#share-zone #share-code-zone input {
    border: none;
    height: 25px;
    width: 220px;
    border-radius: 50px;
    padding: 0;
    padding-left: 8px;
    color: black;
}

/* Loader */

#loading .loader {
    position: relative;
    left: 8px;
    top: 8px;
    border: 2px solid #FFFFFF; /* Light grey */
    border-top: 2px solid red; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

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

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

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

.dldisabled {
    opacity: 0.5;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    cursor: default;
}

.dldisabled:hover {
    opacity: 0.5;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    cursor: default;
}
