body, html, *{
    box-sizing:border-box;
    margin: 0;
    padding: 0;
}
.row{
    width:100%;
    height:50px;
}
.col{
    width:100%;
}
.top{
    width:1000px;
    height:auto;
    padding:15px 0;
}
/* admin nav */
.admin-nav{
    height:50px;
    background: #aaa;
    color: black;
    padding:10px;
}
.admin-nav ul li{
    list-style: none;
    float: left;
}
.admin-nav ul li a{
    text-decoration: none;
    padding:10px;
    color: #005100;
    
}
.admin-nav ul li a:hover{
    border-bottom: 2px #000 solid;
    text-shadow: 2px 2px 5px #000 ;
    color: white;
    transition: border-bottom .5s;
}
/* admin nav */

/* From Style */
.vjs-icon-airplay{
    cursor:pointer;
}
.material-icons{
    font-size:1.5em;
}
.form{
    padding:15px;
    background: #ccc;
}

.form-group label{
    margin-bottom:5px;
}
.form-group label, .form-group input{
    padding:10px;
    display:blocK;
    width: 100%;
    font-size:1.2em;
}

.form-group label{
    padding-left:0;
}
.form-group input{
    border-radius: 5px;
}
.submit {
    background: green;
    text-align:center;
    /*width: 70%;*/
    margin: auto;
    color: white;
}
.form-control{
    margin: 10px auto;
    width:100%;
    padding:15px;
    font-size:18px;
    border-radius:5px
}
.p-15{
    padding:15px;
}
.uppercase{
    text-transform: uppercase;
}
/* From Style - End */

.center{
    margin: 0 auto;
    text-align: center;
}
.footer-menu ul li{
    list-style: none;
}
.footer-menu ul li a{
    text-decoration: none;
    color: #008080;

}
.myPlayer{
    width: 100%;
    height: 800px;
}
.container{
    width:1000px;
    margin: 0 auto;
}
.container h1{
    text-align: center;
    color: aliceblue;
}
body{
    background: #000;
    font-family: 'Montserrat', sans-serif;
}
.nav{
    background:#333;
    width: 100%;
    height: 700px;
}
.nav ul{

}
.nav ul li{
    display: inline;
    padding:15px;
    float: left;
}
.nav ul li a{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}
.nav ul li a:hover{
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #00e600, 0 0 40px #00e600, 0 0 50px #00e600, 0 0 60px #00e600, 0 0 70px #00e600;
}

.button{
    padding: 10px 15px;
    background: green;
    color:#fff;
    text-transform: uppercase;
    font-size: 1.2em;
    cursor: pointer;
    border-right:1px #000 solid;
    border-bottom:1px #000 solid;
}


.float-left{
    float:left;
}
.float-right{
    float:right;
}