﻿/* CSS Document */
*{
    margin: 0;
    padding: 0;
}
body{
    background:  #6699FF;
}
.container {
    width: 80%;
    margin: 80px auto;
    background: #9999FF;
    border: solid;
    border-color: #000000;
}
.container h1{
    padding: 60px 0;
    color: #fff;
    font-size: 44px;
    text-align: center;
    text-shadow: 2px 0px #000;
   background: #0099FF;
}
.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    overflow: auto;

}
.col{
    flex-basis: 50%;
    min-width: 250px;

    overflow: hidden;
}
.feature-img{
    width: 85%;
    margin:auto;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
.small-img-row{
    display: flex;
    background: #efefef;
    margin: 20px 0;
    align-items: center;
    border-radius: 6px;
    overflow: auto;
    width: 85%;
}
.small-img{
    position: relative;
}
.small-img img{
    width: 150px;
}
.small-img-row p{
    margin-left: 20px;
    color: @707070;
    line-height: 22px;
    font-size: 15px;


}
  .small-img-col{
   display: flex;
    background: #efefef;
    margin: 20px 0;
    align-items: center;
    border-radius: 6px;
    overflow: auto;
    width: 100%;

}

.small-img-col p{
    position: relative;
      margin-left: 100px;
        color: @707070;
        line-height: 30px;
        font-size: 25px;

}
.play-btn{
    width: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}
.small-img .play-btn{
    width: 35px;

}
 .video-player{
    height: 80%;
    width: 80%;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: none;

 }
 video:focus{
     outline: none;

 }
 .close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
 }
   .subtitles-menu {
    display:none;
    position:absolute;
    bottom:14.8%;
    right:20px;
    background:#666;
    list-style-type:none;
    margin:0;
    padding:0;
    width:100px;
    padding:10px;
}

.subtitles-menu li {
    padding:0;
    text-align:center;
}

.subtitles-menu li button {
    border:none;
    background:#000;
    color:#fff;
    cursor:pointer;
    width:90%;
    padding:2px 5px;
    border-radius:2px;
}