/* -------------------------------------------------------------------
 * Plugin Name           : Moro - Custom Video Playlist Gallery
 * Author Name           : Epic_Theme
 * Author URI            : https://codecanyon.net/user/epic_theme/
 * Created Date          : 5 September 2021
 * Version               : 1.0
 * File Name             : style.css
------------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* 01.Video Gallery                                                   
/* ---------------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
    -webkit-box-sizing: border-box;
          box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body {
    font-weight: normal;
    text-transform: normal;
    background: #eeeeee;
}

.et_main_heading {
    font-size: 18px;
    text-align: center;
    padding: 10px;
    color: #181818;
}

.et_video_list_wrp {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5px 0%;
}

.et_video_list_wrp .et_main_video {
    flex: 0 0 65%;
    max-width: 65%;
    border-radius: 5px;
    padding: 10px;
    background: #ffffff00;
}

.et_video_list_wrp .et_main_video .et_video video {
    width: 100%;
    border-radius: 5px;
}

.et_video_list_wrp .et_main_video .et_video .et_title {
    font-size: 17px;
    padding: 15px 0;
    color: #ffffff;
}

.et_video_list_wrp .et_video_list {
    flex: 0 0 34%;
    max-width: 34%;
    border-radius: 5px;
    background: #ffffff00;
    height: 430px;
    overflow-y: scroll;
}


.et_video_list_wrp .et_video_list::-webkit-scrollbar {
    width: 15px;
}

.et_video_list_wrp .et_video_list::-webkit-scrollbar-track {
    border-radius: 50px;
    background: #cccccc;
}

.et_video_list_wrp .et_video_list::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: rgb(19, 22, 31);
}

.et_video_list_wrp .et_video_list .et_video {
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 5px;
    margin: 10px;
    padding: 5px;
    cursor: pointer;
    background: #f7f7f700;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #424242;
}

.et_video_list_wrp .et_video_list .et_video { background: none; transition: border-color 0.3s; }

.et_video_list_wrp .et_video_list .et_video:hover { border: 1px solid #dddddd; }

.et_video_list_wrp .et_video_list .et_video.active {
    background: #2980b9;
}
.et_video_list_wrp .et_video_list .et_video video {
    flex: 0 0 20%;
    max-width: 20%;
    border-radius: 5px;
}
.et_video_list_wrp .et_video_list .et_video.active .et_title {
    color: #ffffff;
}

.et_video_list_wrp .et_video_list .et_video .et_title {
    font-size: 15px;
    color: #ffffff;
    flex: 1;
    max-width: 80%;
}




/* ---------------------------------------------------------------- */
/* Responsive max-width:767px;                                                
/* ---------------------------------------------------------------- */

@media (max-width:767px) {
    .et_video_list_wrp {
        flex-direction: column;
    }
    .et_video_list_wrp .et_main_video {
        flex: 0 0 100%;
        max-width: 100%;    
        
        margin-bottom: 10px;
    }
    .et_video_list_wrp .et_video_list {
        flex: 0 10% 0%;
        max-width: 100%;
        max-height: 280px;
    }
}

/* ---------------------------------------------------------------- */
/* Responsive max-width: 400px;                                                
/* ---------------------------------------------------------------- */

@media (max-width: 600px;) {
    .et_main_heading {
        font-size: 24px;
    }
    .et_video_list_wrp .et_main_video .et_video .et_title {
        font-size: 18px;
        padding: 10px 0;
    }
    .et_video_list_wrp .et_video_list .et_video .et_title {
        font-size: 14px;
    }
}