body { font-family: verdana, sans-serif; }

h1 {
    font-size:16px;
    color:#333;
}

.player
{
    width: 100%;
    height: 100%;
}

#media-player {
    padding: 0px;
    background-color:#333;
    position: relative;
}

video, iframe {
    width: 100%;
    height: 100%;
    background:#000;
    position: absolute;
    top: 0px;
    left: 0px;
}

.media-cover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.media-controls-wrapper {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 10px;
    z-index: 10;
}

.media-controls-skin-padding {
    padding-bottom: 20px;
}

.media-controls {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.play-btn-wrapper, .mute-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

#play-btn, #mute-btn {
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1AB0FF;
    border-radius: 5px;
    cursor: pointer;
}

#mute-btn {
    background-color: transparent;
}

svg.play, svg.pause {
    display: none;
}

#play-btn.play svg.play {
    display: block;
    width: 24px;
}

#play-btn.pause svg.pause {
    display: block;
    width: 18px;
}

svg.sound-on, svg.sound-off {
    display: none;
}

#mute-btn.sound-on svg.sound-on {
    display: block;
    cursor: pointer;
    width: 24px;
}

#mute-btn.sound-off svg.sound-off {
    display: block;
    cursor: pointer;
    width: 24px;
}

#overlay-done-sharing {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background: #272727;
    z-index: 9999;
}

#share-gate-continue {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-left: 20px;
    color: white;
    font-weight: bold;
    background: #0ebc62;
    border-radius: 10px;
    cursor: pointer;
}

.progress-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 100px);
    height: 50px;
    padding: 0 0 0 10px ;
}

#progress-bar {
    width: 100%;
    display: block;
    border: 0 none;
    background: #444;
    border-radius: 2px;
    box-shadow: none;
    height: 5px;
}

#progress-bar::-moz-progress-bar {
    border-radius: 5px;
    background: #FFF;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    #progress-bar {
        height: 8px;
    }
}

#progress-bar::-webkit-progress-bar {
    background: transparent;
    position: relative;
}

#progress-bar::-webkit-progress-value {
    border-radius: 2px;
    background: #FFF;
}

#big-play-button {
    position: absolute;
    left: 50%;
    margin-left: -50px;
    top: 50%;
    margin-top: -50px;
    width: 100px;
    height: 100px;
    background: #1AB0FF;
    border-radius: 100%;
    cursor: pointer;
    z-index: 10;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.thumbnail-overlay img {
    max-width: 100%;
}

