@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
  padding: 0;
  margin: 0;
  border: border-box;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 1.5rem;
}

h4{
  font-size: .9rem;
  text-transform: uppercase;
  color: #aaa;
  margin-left: 20px;
}

i {
  font-size: 1.5rem;
  color: #fff;
}

p,a {
  font-size: 9.rem;
}

hr {
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 12px 0;
}

/* Scrollbar Styles  */

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 5px;
}

.sidebar:hover::-webkit-scrollbar-thumb {
  background: #717171;
}

::-webkit-scrollbar-thumb:hover{
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* header starts here  */ 
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #202020;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px -1 px;
  padding-right: 40px;
  height: 58px;

  

}

.logo-img {
  position: relative;
  height: 20px;
  width: 36px;
}

.youtube-logo-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#log-txt{
  letter-spacing: -1.5px;
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  padding-left: 15px;
  gap: 12px;
}

.search-container {
  display: flex;
  align-items: center;
  flex: 0 1 685px;
  margin-left: 40px;
}

.search-container form {
  position: relative;
  width: 100%;
}

.search-container input {
    height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1rem;
}

.search {
  min-width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  background-color: #313131;
  outline: none;
  border: none;
}

.mic {
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  outline: none;
  border: none;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #181818;
}

.profile-container {
  display: flex;
  align-items: center;
}

.profile-container i {
  margin-left: 25px;
}

.profile-box {
  position: relative;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 25px;
}


/* Bodoy container start here  */
.body-container {
  display: flex;
  position: fixed;
  height: calc(100vh - 60px);
  top: 48px;
}

.sidebar {
  background-color: #212121;
  padding-top: 5px;
  width: 240px;
  overflow-y: scroll;
}

.sidebar a {
  color: #fff;
  text-decoration: none;
}

.sidebar-items {
  display: flex;
  flex-direction: column;
}

.sidebar-item {
  display: flex;
  align-items: center;
  padding: 0 24px;
  cursor: pointer;
  height: 40px;
}

.sidebar-item:hover {
  background-color: #4c4c4c;
}

.sidebar-item i {
  margin-right: 24px;
}


/* Main Contents start here  */
.content {
  width: calc(100vw - 240px);
  margin-top: 10px;
}

.chips-wrapper {
  overflow-x: scroll;
  background-color: #181818;
  display: flex;
  padding-left: 14px;
  border-top:  1px solid rgba(255, 255, 255, 0.1);
  border-bottom:  1px solid rgba(255, 255, 255, 0.1);
}

.chip {
  margin: 12px 6px;
  background-color: #373737;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  white-space: nowrap;
  cursor: pointer;
  color: #fff;
  transition: .5s;
}

.chip:hover {
  background-color: #4d4d4d;
}


/*  video container starts here */

.video-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 18px;
  padding: 20px 25px;
  background-color: #181818;
  overflow-y: scroll;
  height: calc(100vh - 116px);
}

.video-content-cover {
  position: relative; 
  transition: .5s;
  transition-delay: .05s;
}

.video-content {
  margin-bottom: 25px;
  position: relative;
  transition: .5s;
  width: 100%;
}


.video-box {
  position: relative;
  width: 400px;
  height: 225px;
  display: block;
}

.video-details {
    display: flex;
    color: #fff;
    padding-top: 12px;
}

.channel-logo {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.channel-logo-image {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.yty-thumbnail {
  height: 100%;
  width: 100%;
}
.detail {
  margin-left: 12px;
}

.title {
  font-size:.9rem;
}

.channel-name {
  font-size: .8rem;
  margin-top: 8px;
  color: #aaa;
}

.views-upload {
  display: flex;
  font-size: .8rem;
  color: #aaa;
}

.upload {
  margin-left: 5px;
}

.hidden-content {
  display: none;
}








