body{
    background-color: #FFF;
    margin: 0;
}
.main-content {
    width: 750px;
    height: 600px;
    position: relative;
    background-color: #949ea6;
}
.main-content .back-btn {
    position: absolute;
    top: 15px;
    left: 15px;
}
.main-content .header {
    position: absolute;
    top: 25px;
    left: 160px;
}
.main-content .subheader-wrapper {
    position: absolute;
    top: 65px;
    left: 105px;  
}
.main-content .subheader {
    display: none;
}
.main-content video {
    position: absolute;
    top: 120px;
    left: 120px;
}
.main-content .faucet-btn {
    position: absolute;
    top: 180px;
    left: 160px;
    display: none;
    cursor: pointer;
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.6);
    box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.6);
}
.main-content .drain-btn {
    position: absolute;
    top: 310px;
    left: 320px;
    display: none;
    cursor: pointer;
    border-radius: 10px;
    -webkit-box-shadow: -3px 3px 6px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: -3px 3px 6px 0px rgba(0,0,0,0.6);
    box-shadow: -3px 3px 6px 0px rgba(0,0,0,0.6);
}
.main-content .nav-btns {
    position: absolute;
    left: 580px;
    top: 20px;
}
.main-content .nav-btns .nav-item {
    margin-bottom: 10px;
    display: block;
    cursor: pointer;
    border-radius: 5px;
    -webkit-box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.6);
    box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.6);
}
.main-content .nav-btns .nav-item.top-30 {
    margin-top: 30px;
}
.main-content .transcript {
    background-color: #e0a62c;
    border: 1px solid #333;
    height: 60px;
    width: 460px;
    position: absolute;
    top: 480px;
    left: 90px;
    display: none;
}
.main-content .transcript p {
    font-size: 16px;
    line-height: 1.3;
    font-family: arial;
    padding: 8px 10px;
    margin: 0;
}
.main-content .video-play-control {
    position: absolute;
    top: 250px;
    left: 290px;
    background-color: #daa92f;
    color: #222;
    border: 1px solid #222;
    border-radius: 5px;
    padding: 2px 5px;
    text-decoration: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.6);
}
.main-content .video-play-control::before {
        content: "";
    width: 11px;
    height: 24px;
    border-left: 3px solid #222;
    border-radius: 5px;
    position: absolute;
    top: 9px;
    left: 18px;
}
.main-content .video-play-control::after {
    content: "";
    position: absolute;
    top: 11px;
    left: 12px;
    width: 18px;
    height: 18px;
    transform: rotate(45deg) skew(-5deg, -5deg);
    border-top: 3px solid #222;
    border-right: 3px solid #222;
    border-radius: 5px;
}
.main-content .video-sound-control {
    position: absolute;
    top: 390px;
    left: 125px;
    background-color: #daa92f;
    color: #222;
    border: 1px solid #222;
    border-radius: 5px;
    padding: 2px 5px;
    text-decoration: none;
    cursor: pointer;
    display: none;
}
.main-content .replay-btn {
    display: none;
    position: absolute;
    top: 470px;
    left: 90px;
    cursor: pointer;
    border-radius: 10px;
    -webkit-box-shadow: -2px 3px 6px 0px rgba(0,0,0,0.6);
    -moz-box-shadow:-2px 3px 6px 0px rgba(0,0,0,0.6);
    box-shadow: -2px 3px 6px 0px rgba(0,0,0,0.6);
}
.main-content .next-video-wrapper {
    position: absolute;
    top: 470px;
    left: 350px;
}

.main-content .next-video-btn {
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    display: none;
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.6);
    box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.6);
}
/* Progress bar */
[class^="progress-bar"] {
    box-sizing: content-box;
    display: none;
    height: 15px;
    width: 460px;
    position: absolute;
    top: 440px;
    left: 90px;
    border: 1px solid #333;
    background-color: #84919c;
}
[class^="progress-bar"] > span {
    display: block;
    height: 100%;
    background-color: #52647e;
    position: relative;
    overflow: hidden;
}
[class^="progress-bar"] > span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background-size: 50px 50px;
    animation: move 2s linear infinite;
    overflow: hidden;
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}