body {
    background-color: #000;
    margin: 0;
    padding: 0;
}

#protected-video {
    position:absolute;
    left:50%;
    top:50%;
    margin: -50px 0 0 -170px;
    width: 340px;
    min-height: 100px;
    background: #333;
    background-color: rgba(0, 0, 0, 0.7); 
    color: #FFF;
    z-index: 4;
    font-family: arial, sans-serif;
    font-size: 12px;
    border-radius: 4px;
}

#protected-video .title{
    background-color: rgba(0, 0, 0, 0.5); 
    border-radius: 4px 4px 0 0;
    padding: 8px 10px;
    position: relative;
}

#protected-video .line{
    margin: 10px;
}

#protected-video .line .field{
    float:left;
    width: 150px;
    line-height: 21px;
}

#protected-video .line .value{
    float:left;
    line-height: 21px;
    position:relative;
    width: 200px;
    width: -moz-calc(100% - 70px);
    width: -webkit-calc(100% - 70px);
    width: -o-calc(100% - 70px);
    width: calc(100% - 70px);
}

#protected-video input{
    line-height: 15px;
    padding: 3px;
    width: 100%;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.7); 
    border:#999 solid 1px;
    border-radius: 2px;
    outline: none;
}

#protected-video input[type="submit"]{
    line-height: 15px;
    padding: 3px;
    width: 50px;
    margin: 0;
    background-color: rgba(255, 255, 255, 1); 
    border:#999 solid 1px;
    border-radius: 2px;
    cursor: pointer;
    margin-left: 10px;
}

#protected-video .line .submit{
    float:left;
    margin-left:307px;
}

::-webkit-input-placeholder {
    color:    black;
}

:-moz-placeholder {
   color:    black;
   opacity:  1;
}

::-moz-placeholder {
   color:    black;
   opacity:  1;
}

:-ms-input-placeholder {
   color:    black;
}

.protected-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.protected-bg img {
    visibility: hidden;
}

#firstPlayButton {
    position: absolute;
    width: 75px;
    height: 75px;
    background: url(../img/icons/firstPlayBtn.png) center center no-repeat;
    top: 50%;
    left: 50%;
    margin: -37.5px 0 0 -37.5px;
    z-index: 9999999;
    cursor: pointer;
}

@media only screen and (max-width: 320px) {
    #protected-video {
        width: -moz-calc(100% - 20px);
        width: -webkit-calc(100% - 20px);
        width: -o-calc(100% - 20px);
        width: calc(100% - 20px);
        left: 10px;
        margin: -50px 0 0 0px;
    }
}