    
    @font-face {
    font-family: alticereg;
    src: url(AlticeRegular.otf);
    }
    @font-face {
    font-family: alticebold;
    src: url(AlticeBold.otf);
    }

    #debugwindow {position:fixed; top:0px; left:100px; z-index: 10000;}
    
    #bg {
      position:absolute;
      width:100%;
      height:100%;
      z-index: 30;
      top: 0%;
      left: 0%;
      display:none
    }

    #pub {
      position:absolute;
      width:100%;
      height:100%;
      z-index: 3;
      top: 0%;
      left: 0%;
      display:none
    }

    #bgstart {
      position:absolute;
      width:100%;
      height:100%;
      top: 0%;
      left: 0%;
      z-index: 0;
      display:block
    }

    #bgerror {
    background-image: url("splashscreen-tv-RMCBFMPlay-fond.png");
    height: 100%; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
    }

    #grad1 {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    top: 0%;
    left: 0%;
    opacity: 0;
    z-index: 5;
    }

    #logo {
    position:absolute;
    top:10%;
    left:calc(50% - 300px);
    width:600px;
    text-align:center;
    }

    #imgstart {
    position: absolute;
    left: 40;
    bottom: 73px;
    width: 208px;
    display: block;
    opacity: 0;
    z-index: 20;
    }

    #imgchannel {
    position: absolute;
    left: 280px;
    top: calc(100vh - 190px);
    height: 51.64px;
    display: block;
    opacity: 0;
    z-index: 20;
    }

    #play {
    position: absolute;
    left: calc(50vw - 50px);
    top: calc(50vh - 80px);
    z-index: 10;
    opacity: 0;
    display: block;
    }

    #pause {
    position: absolute;
    left: calc(50vw - 50px);
    top: calc(50vh - 60px);
    z-index: 10;
    display: none;
    }


    #loader {
    position: absolute;
    left: calc((100vw - 100px)/2);
    top: calc(100vh - 250px);
    width: 100px;
    height: 100px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid rgba(0,0,0,1);
    animation: spin 2s linear infinite;
    z-index: 15;
    display: none;
    }

    #contentInfo {
    display:block;
    }

    #progressbar {
    position:absolute;
    top:calc(100vh - 50px);
    left: 120px;
    width:calc(100% - 240px);
    height: 10px;
    z-index:20;
    background-color: #666666;
    border-radius: 5px;
    opacity: 0;
    }

    #progress {
    position:absolute;
    top:calc(100vh - 50px);
    left: 120px;
    width:0;
    height: 10px;
    z-index:25;
    background-color: white;
    border-radius: 5px;
    opacity: 0;
    }

    #leftHM {
    position:absolute;
    top: calc(100vh - 60px);
    left: 35px;
    width: 60px;
    height: 20px;
    color: white;
    font-size: 20px;
    font-family: alticereg;
    z-index:20;
    opacity: 1;
    }

    #rightHM {
    position:absolute;
    top: calc(100vh - 60px);
    left: calc(100vw - 110px);
    width: 60px;
    height: 20px;
    color: white;
    font-size: 20px;
    font-family: alticereg;
    z-index:20;
    opacity: 1;
    }

    #programTitle {
    position:absolute;
    top:calc(100vh - 140px);
    left: 280px;
    height: 80px;
    width:calc(100% - 380px);
    color:white;
    size:80px;
    font-size:42px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: alticebold;
    z-index:20;
    opacity: 0;
    }

    #hourssubtitle {
    position:absolute;
    top:calc(100vh - 90px);
    left: 280px;
    height: 35px;
    width:calc(100% - 380px);
    color: white;
    font-size: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: alticereg;
    z-index:20;
    opacity: 0;
    }

    #messagewindow {
    position: absolute;
    width: 800px;
    height: 250px;
    z-index: 15;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -400px;
    display:block;
    padding:10px;
    color:white;
    text-align:center;
    }

    .fadeout {
      transition: opacity 5s;
    }

    .quickfadeout {
      transition: opacity 1s;
    }

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

