/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 17. 10. 2023, 21:19:28
    Author     : Admin
*/
#t_video_text_content::-webkit-scrollbar {
    width: 10px;
}
#t_video_text_content::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    /*border-radius: 50px;*/
}
#t_video_text_content::-webkit-scrollbar-thumb {
    border-radius: 50px;
    border: 2px solid transparent;
    background-clip: content-box;
    background-color: #666;
}        
.t_video_subtitles{
    padding: 8px 8px;
    border-radius: 10px;
    margin: 0;
    transition: all 0.25s;
    cursor: pointer;
}
.t_video_subtitles:hover{
    background-color: #dedede;
}
.t_video_subtitles.current{
    background: var(--color-primary);
    color: white;
}

.t_video_icons{
    font-size: 24px !important;
    opacity: 0.8;
    color: #444;
    text-align: center;
    cursor: pointer;
}

.t_video_icons:hover{
    opacity: 1;
}
.t_video_close_icon{
    position: absolute;
    right: -5px;
    top: 1px;
    display: inline-block;
    margin: 10px 20px;
}
.t_video_menu_icon{
  display: inline-block;
  margin: 10px 24px;  
}
.t_video_show_menu_icons{
    display: block;
    margin: 10px auto 15px;
}
#t_video_text_title{
   display: block;
   background: #f0f0f0;
   color: #444;
   padding: 5px 10px 0; 
}
#t_video_text_content{
    background-color: #fff;
    color: #403F41;
    display: block;
    padding: 15px 7px;
    overflow: auto;
    font-size: 16px;
    margin-left: 8px;
    margin-bottom: 8px;
    border-radius: 3px;
}

#t_video_subtitles_box{
    grid-area: text;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    height: 100vh;
    background: #f0f0f0;
}
#t_video_player_box{
    grid-area: video;
    width: 100%;
    height: 100%;
    background: #222;
}
#t_video_wrapper{           
   osition: relative;
   height: 100%;
   width: 100%;
   display: grid;
   grid-template-columns: 1fr 40px;
   grid-template-rows: 1fr;
   grid-template-areas: 'video text';
}
#t_video_wrapper.expanded{
    grid-template-columns: 3fr minmax(300px, 1fr);
}
#t_video_overlay{
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: all 0.5s;
}
.t_video_menu{
    border-bottom: 1px solid #aaa;
}

.overflow_hidden{
    overflow: hidden !important;
}

