@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Poppins:ital,wght@1,100&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,500;1,700;1,900&display=swap');

* {  
  margin: 0; 
  padding: 0; 
  box-sizing: border-box;  
}  

body{ 
  font-family: 'Open Sans', sans-serif;
  font-family: 'Poppins', sans-serif;
  font-family: 'Roboto', sans-serif;
}

.navbar{ 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  height: 56px; 
  padding: 0 16px; 
  position: sticky; 
  top: 0; 
  background-color: white;
} 

.navbar .logo{ 
display: flex; 
align-items: center;
margin-left: 8px;
}  

.logo img{ 
  width: 90px; 
  margin-left: 18px;
} 

.navbar .searchbar{ 
  display: flex; 
  height: 32px; 
  align-items: center;
}  
.search button span{ 
  margin: 0 ; 
  
}

.search{ 
  display: flex; 
  border: 1px solid #cccccc; 
  width: 600px; 
  margin-right: 10px; 
  height: 100%; 
} 
.search input{ 
  border: none; 
  width: 90% ; 
  padding-left: 5px;
} 
.search button{ 
  border: none; 
  border-left: 1px solid #cccccc;
width: 10%;  
display: flex; 
align-items: center; 
justify-content: center;
} 

.material-icons{ 
  color: lightslategray; 
  margin-right: 10px;  
}  

.material-symbols-outlined{ 
  color: lightslategray; 
  margin-right: 10px;  
}

.mainbody{ 
  display: flex; 
  height: calc(100vh - 56px); 
  overflow: hidden;
} 

.categories{ 
width: 240px; 
height: 100% ; 
background: white; 
overflow-y: scroll  ;
}  

.category{ 
 width: 100%;
  display: flex; 
  align-items: center;  
  height: 40px; 
  padding: 0 24px; 
  font-size: 14px;  
  font-weight: 400;
  cursor: pointer;  

 } 
 .category img{ 
  border-radius: 50% ;
  width: 24px; 
  height: 24px; 
  margin-right: 24px;
  }
 .category :hover{ 
  background: #cccccc;
 }
 
 .category-section{ 
  border-bottom: 1px solid #cccccc; 
  margin-top: 10px;
  } 

 .category-section .catergory:last-child{ 
  margin-bottom: 10px;
 }   

 .catergory-heading{ 
  margin: 10px 0px 10px 25px ; 
 color: grey; 
 font-size: 14px; 
 font-weight: 500;
 }

 .active{ 
    background: #717171;  
    font-weight: 500;
 }

.active :hover{ 
  background: #717171;
}
 .active i{ 
  color: red;
 }    

 
.category-footer{ 
  margin: 25px; 
  padding: 25px;
 }  
.footer-section{ 
  margin-bottom: 12px;
}
.copyright{ 
  color:#606060; 
  font-size: 13px; 
  font-weight: 400; 
  margin-bottom: 20px;
}
 .footer-section span{ 
  font-size: 13px; 
  font-weight: 500; 
  margin-right: 5px; 
  color: #606060; 
  cursor: pointer;
 } 

.video-grid{ 
  display: flex; 
  padding: 15px;  
  
} 

.videos{ 
width: calc(100vw - 240px); 
background: #f9f9f9;   
height: 100%;
border: 1px solid #cccccc; 
overflow-y: scroll;
}   

.video .profile { 
margin-right: 12px ;

}
.video .video-details p{ 
  font-size:14px ; 
  font-weight: 500 ; 
  line-height: 20px;
}
.video{ 

width: calc(25%-10px); 
margin-right: 12px;  
margin-bottom: 35px;
}  
.video{ 
  cursor: pointer; 
  margin-bottom: 20px;

} 


.video .thumbnail img{ 
  width:100% ;
} 



.video .details{ 
  display: flex; 
  margin-top: 5px; 
  width: 90%;
} 

.video .profile img{ 
  border-radius: 50% ;  
  width: 36px; 
  height: 36px;
} 

.video .posted-by{ 
  font-size: 14px; 
  font-weight: 500; 
  color: #606060;
}