body {
  margin: 0;
  padding-top: 120px;
  padding-left: 130px;
  padding-right: 30px;
  padding-bottom: 1000px;
  background-color: rgb(248, 248, 248);
}

p {
  font-family: "Roboto", sans-serif;
  margin-top: 0;
  margin-bottom: 0;
}

.header {
  height: 4em;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: white;
  border-bottom: 1px solid rgb(235, 231, 231);
  z-index: 100;
}
.header .left-section {
  display: flex;
  align-items: center;
}
.header .left-section .menu {
  height: 26px;
  margin-left: 30px;
  margin-right: 24px;
  cursor: pointer;
}
.header .left-section .yt-logo {
  height: 20px;
  cursor: pointer;
}
.header .mid-section {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 70px;
  margin-right: 35px;
  max-width: 500px;
}
.header .mid-section .search-box {
  flex: 1;
  height: 36px;
  padding-left: 10px;
  font-size: 16px;
  border: 1px solid rgb(192, 192, 192);
  border-radius: 2px;
  box-shadow: inset 1px 2px 3px rgba(0, 0, 0, 0.05);
  width: 0;
}
.header .mid-section .search-box::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
.header .mid-section .search-box:-ms-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
.header .mid-section .search-box::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
.header .mid-section .search-btn {
  height: 40px;
  width: 66px;
  background-color: rgb(248, 243, 243);
  border: 1px solid rgb(192, 192, 192);
  margin-left: -0.5px;
  margin-right: 10px;
  cursor: pointer;
}
.header .mid-section .search-btn img {
  height: 25px;
  margin-top: 4px;
}
.header .mid-section .voice-btn {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  border: none;
  background-color: rgb(247, 247, 247);
  cursor: pointer;
}
.header .mid-section .voice-btn img {
  height: 24px;
  margin-top: 4px;
}
.header .right-section {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 20px;
  flex-shrink: 0;
}
.header .right-section .upload-icon, .header .right-section .apps-icon, .header .right-section .notifications-icon {
  height: 24px;
  cursor: pointer;
}
.header .right-section .user-dp {
  width: 33px;
  height: 33px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
}

.notifications-container {
  position: relative;
}
.notifications-container .notifications-count {
  position: absolute;
  top: -0.000001px;
  right: -4.5px;
  background-color: red;
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 5px 1px 5px;
  border-radius: 15px;
}

.sidebar {
  position: fixed;
  left: 0;
  bottom: 0;
  top: 55px;
  background-color: white;
  width: 85px;
  z-index: 200;
  padding-top: 8px;
}
.sidebar .sidebar-link {
  background-color: white;
  margin-top: 5px;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.sidebar .sidebar-link:hover {
  background-color: rgb(249, 242, 242);
}
.sidebar .sidebar-link img {
  height: 24px;
  margin-bottom: 5px;
}
.sidebar .sidebar-link div {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 40px;
}

.video-preview {
  box-shadow: 0 0 5px black;
}
.video-preview:hover {
  box-shadow: 10px 10px 10px black;
  transition: box-shadow 0.3s;
}
.video-preview img {
  width: 100%;
  cursor: pointer;
}

.video-info-grid {
  display: grid;
  grid-template-columns: 50px 1fr;
  cursor: pointer;
}

.display-picture img {
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}

.video-info .title {
  margin-bottom: 10px;
  font-size: 0.98rem;
  font-weight: 550;
}
.video-info .author, .video-info .stats {
  font-size: 0.87rem;
  color: rgb(96, 96, 96);
}
.video-info .author {
  margin-bottom: 0.3em;
}

.thumbnail-row {
  margin-bottom: 8px;
  position: relative;
}
.thumbnail-row .video-time {
  background-color: black;
  color: white;
  position: absolute;
  bottom: 10px;
  right: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 500px;
  padding: 4px;
  border-radius: 2px;
}

@media (max-width: 750px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 751px) and (max-width: 999px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}/*# sourceMappingURL=style.css.map */