html, body {
     padding: 0;
     margin: 0;
 }

.container {
    width: 900px;
    margin: 0 auto;
}

.video-container .open-video {
    padding: 15px 20px;
    font-size: 32px;
    background-color: #0065A9;
    border-radius: 4px;
    cursor: pointer;
    color: #ffffff;
    display: inline-block;
    position: fixed;
    left: 50%;
    margin-left: -90px;
    top: 50%;
    margin-top: -33px;
}

.video-container .data {
    position: fixed;
    left: 20px;
    top: 20px;
    text-align: left;
}

.video-container .data div {
    padding: 20px;
    background-color: #0065A9;
    margin-bottom: 10px;
}

.video-container .overlay {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0,0,0,.8);
    color: #ffffff;
}

.video-container .close {
    position: fixed;
    cursor: pointer;
    right: 10px;
    top: 10px;
    background-color: #0065A9;
    border-radius: 4px;
    height: 30px;
    overflow: hidden;
    width: 30px;
    text-align: center;
    line-height: 25px;
}

.video-container .close:before {
    content: '';
    position: absolute;
    height: 2px;
    left: -14px;
    top: 13px;
    width: 60px;
    background: #ffffff;
    transform: rotate(45deg);
}

.video-container .close:after {
    content: '';
    position: absolute;
    height: 2px;
    left: -14px;
    top: 13px;
    width: 60px;
    background: #ffffff;
    transform: rotate(-45deg);
}

.video-container video {
    width: 900px;
}

.video-container .video-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.video-container .video-player {
    position: fixed;
    overflow: hidden;
    left: 50%;
    margin-left: -450px;
    top: 50%;
    margin-top: -270px;
}

.video-container .buttons {
    text-align: center;
    position: absolute;
    z-index: 99;
    top: 30px;
    width: 100%;
}

.video-container .buttons.center {
    left: 50%;
    margin-left: -247px;
    width: auto;
}

.video-container .buttons.center p {
    color: #333333;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.video-container .buttons .succes {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
}

.video-container .buttons > div {
    display: inline-block;
}

.video-container input[type=text] {
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.2);
    height: 19px;
    margin: 0;
    color: #333333;
    padding: 8px;
    border-radius: 3px;
    width: 350px;
    margin-right: 10px;
    display: block;
    line-height: 1;
}

.video-container input[type=submit] {
    font-size: 1.125rem;
    line-height: 1.4375rem;
    padding: 6px 15px 8px 15px;
    display: inline-block;
    color: white;
    background-color: #0072bc;
    border-radius: .1875rem;
    border-style: solid;
    border-width: 0;
    cursor: pointer;
    border-color: #007095;
    transition: background-color 300ms ease-out;
    position: relative;
    text-align: center;
    text-decoration: none;
}