html,
body{
    height: 100%;
    padding: 0%;
    margin: 0%;
}

*{
    font-family: Arial, Helvetica, sans-serif;
    /*color: #333333;*/
    box-sizing: border-box;
}
h3,h4{
    color:#e5e5e5 ;
}
a h3:hover{
    color: #fff;
}

a {
    text-decoration: none;

}

.wrapper{
    min-width: 1050px ;
    background-color:#141414 ;
    min-height: 100%;
}

.signInContainer{
    background-color: #efefee;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column{
    background-color: #fff;
    min-height: 300px;
    max-height: 100%;
    width: 450px;
    box-shadow: rgba(0,0,0,0.1) 0 1px 2px;
    padding: 20px 35px;
    overflow-y: auto;
}

.column form{
    display: flex;
    flex-direction: column;
    padding-top: 25px;
}

.column form input[type="text"],
.column form input[type="email"],
.column form input[type="password"] {
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid #dedede;
    }

.column form input[type="submit"]{
    background-color: #4285f4;
    color: #fff;
    height: 36px;
    width: 88px;
    border: none;
    border-radius: 3px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}

.column .header{
    padding: 20px 0;
}

.column h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    padding-top: 16px;
    margin: 0;
    color: #000;
}

.column .header span {
    font-size: 14px;
}

.column .header img {
    width: 110px;
}

.signInMessage{
    font-size: 14px;
    font-weight: 400;
}

.errorMessage{
    color: #f00;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.previewImage,
.previewVideo {
position: relative;
width: 100%;
}






.previewContainer {
    position: relative;
    display: flex;


}

.previewContainer.small {
    width: 230px;
    height: 129px;
    margin-right: 4px;
    display: inline-flex;
}

.previewContainer.small img{
    width:100%;
    height: 100%;
    object-fit: cover;
}

.previewOverlay {
    width: 100%;
    height: 100%;
    /*background-color: rgba(0,0,0,0.3);*/
    position: absolute;
}

.previewOverlay .mainDetails h3 {
    color: #fff;
    font-size: 40px;
    margin: 15px 0;}


.previewOverlay .mainDetails{
    position: relative;
    top: 35%;
    margin-left: 60px;
    display: flex;
    flex-direction: column;}

.previewOverlay .mainDetails button{
    background-color: rgba(255,255,255,0.3);
    color: white;
    border: none;
    min-width: 150px;
    padding: 15px;
    height: 50px;
    max-height: 50px;
    font-size: 18px;
    border-radius: initial;
    border-top-width: initial;
    margin-right: 5px;
    cursor:pointer ;}

button i{
    color: black;
}

.mainDetails button:hover{
    background-color: #e6e6e6;
    color: #000
}

.category{
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}
.entities,
.videos {
    overflow: overlay;
    white-space: nowrap;

}
.videos::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
.videos::-webkit-scrollbar-thumb {
    background: rgba(90, 90, 90);
  }
  
.videos::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
  }

.entities::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
.entities::-webkit-scrollbar-thumb {
    background: rgba(90, 90, 90);
  }
  
.entities::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
  }

.previewCategories{
    padding: 0 50px;
}

.errorBanner{
    color: #fff;
    position: absolute;
    top: 25%;
    width: 100%;
    text-align: center;
    font-size: 20px;
}

.season{
    display: flex;
    flex-direction: column;            
    padding: 10px 50px;           
}

.episodeContainer{
    display: inline-flex;
    justify-content: center;
    margin-right: 4px;
}

.episodeContainer .contents {
    display: flex;
    flex-direction: column;
    width: 230px;
    position: relative;
}

.episodeContainer img{
    width: 230px;
    height: 129px;
    object-fit: cover;
}

.episodeContainer .videoInfo h4,
.episodeContainer .videoInfo span{
    color: white;
    width: 100%;
    white-space: normal;
}

.episodeContainer .videoInfo{
    max-height: 120px;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}

.episodeContainer .videoInfo::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.watchContainer video{
    width: 100%;
}

.videoControls {
    position: absolute;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0,0.3);
}

.videoControls h1{
    color: #fff;
}

.videoControls button{
    font-size: 50px;
    padding: 50px;
    color: white;
    background-color: transparent;
    border: none;
}

.upNext{
    height:100%;
    justify-content:center;
}

.upNextContainer button{
    padding: 0;
}

.upNextContainer h2{
    color: #e5e5e5;
}

.seen{
    color: white;
    font-size: 26px;
    position: absolute;
    top: 5px;
    left: 5px;
}

.topBar {
    position: fixed;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 55px 60px;
    height: 70px;
    box-sizing: border-box;
    min-width: 1050px;
    transition: background-color 200ms linear;
}

.topBar.scrolled {
    background-color: #141414;
    transition: background-color 200ms linear;
}

.logoContainer {
    height: 40px;
}

.logoContainer img {
    height: 100%;
}

.navLinks {
    display: flex;
    list-style: none;
}

.navLinks a {
    color: #fff;
    font-size: 14px;
    margin-left: 20px;
}

.rightItems {
    text-align: right;
    flex: 1;
}

.rightItems i {
    color: #fff;
    font-size: 20px;
    margin-left: 10px;
}

.previewCategories h1 {
    color: #e5e5e5;
}

.textboxContainer {
    padding: 100px 50px;
}

.textboxContainer{
    padding: 120px 70px;
}

.searchInput{
    height: 50px;
    width: 600px;
    border: 1px solid #dedede;
    color: #fff;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 3px;
    background-color: transparent;
}

.settingsContainer{
    padding-top: 60px;
    background-color: transparent;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.settingsContainer h2{
    color: white;
}

.settingsContainer .formSection{
    display: flex;
    flex-direction: column;
    margin: 20px 0px;
    BORDER-BOTTOM: 1px solid #dedede;
    padding-bottom: 20px;
}

.settingsContainer form input[type="text"],
.settingsContainer form input[type="email"],
.settingsContainer form input[type="password"]{
    height: 40px;
    font-size: 15px;
    margin: 5px 0;
    border: none;
    width: 300px;
    border-radius: 3px;
    padding: 0 5px;
}

.settingsContainer form input[type="submit"]{
    background-color:#dc1928;
    width: 100px;
    height: 40px;
}

.alertSucess,
.alertError{
    margin: 10px 0;
    color: #dc1928;
}

.swiper-button-next,.swiper-button-prev,.author.qq362695000{position: absolute; top: 50%; width: 1.2rem; height: 1.2rem; margin-top: -0.6rem;z-index: 99;text-align: center; line-height: 1.2rem;font-size: 0.45rem;color: #fff!important;background:rgba(0, 0, 0, 0.4);}
a:hover.swiper-button-next,a:hover.swiper-button-prev{color: #fff;background:#ff5f00;}
.swiper-button-next{right: 0; left: auto}
.swiper-button-prev{left: 0; right: auto}
.swiper-pagination{position: absolute; text-align: center; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; transition: .3s; -webkit-transform: translate3d(0,0,0); -ms-transform: translate3d(0,0,0); -o-transform: translate3d(0,0,0); transform: translate3d(0,0,0); z-index: 10}
.swiper-pagination-bullet{width: 0.15rem; height: 0.15rem; display: inline-block; border-radius: 32px; background: #fff; opacity: .6; margin: 0 0.125rem; cursor: pointer;}
.swiper-container-horizontal>.swiper-pagination-bullets {bottom: 0.2rem;left: 0;width: 100%;}
.swiper-pagination-bullet-active {opacity: 1;background: #ff5f00;width: 0.35rem}