@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}

*:focus {
  outline: none;
}

body {
  position: relative;
  background-color: #f9f9f9;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2.5vw;
}

.navbar__toggle-btn {
  width: 20px;
  height: 10px;
  position: relative;
  cursor: pointer;
}

.navbar__toggle-btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #979797;
}

.navbar__toggle-btn span:nth-child(1) {
  top: 0;
}

.navbar__toggle-btn span:nth-child(3) {
  top: 100%;
}

.navbar__logo {
  height: 20px;
  margin: 0 30px 0 10px;
}

.navbar__search-box {
  position: relative;
  max-width: 500px;
  width: 50%;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar__search-field {
  width: 85%;
  height: 100%;
  border: 2px solid #dbdbdb;
  padding: 0 20px;
  font-size: 16px;
  text-transform: capitalize;
}

.navbar__search-btn {
  width: 15%;
  height: 100%;
  background-color: #f0f0f0;
  border: none;
  outline: none;
  border: 2px solid #dbdbdb;
  border-left: none;
  padding: 5px 0;
  cursor: pointer;
}

.navbar__search-btn img {
  height: 100%;
}

.navbar__user-options {
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar__option-icon {
  height: 80%;
  margin-right: 20px;
  cursor: pointer;
  color: #3b3b3b;
}

.navbar__user {
  cursor: pointer;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  overflow: hidden;
}

.navbar__avatar {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.side-bar {
  position: fixed;
  top: 60px;
  left: 0;
  min-width: 250px;
  width: 250px;
  height: calc(100vh - 60px);
  background-color: #fff;
  padding-right: 10px;
}

.side-bar__links {
  width: 100%;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
}

.side-bar__links:hover {
  background-color: #0001;
}

.side-bar__links:hover p {
  color: red;
}

.side-bar__links p {
  height: 25px;
  margin-right: 20px;
}

.side-bar__links.active {
  background-color: #0001;
}

.side-bar__links.active p {
  color: red;
}

.side-bar__separator {
  border: none;
  border-bottom: 1px solid #0005;
  margin: 15px 0;
}

.filters {
  position: fixed;
  left: 250px;
  top: 60px;
  width: calc(100% - 250px);
  height: 60px;
  background-color: #fff;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filters__filter-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #f0f0f0;
  border: 1px solid #dbdbdb;
  text-transform: capitalize;
  margin-right: 10px;
  color: #242424;
  font-size: 14px;
  cursor: pointer;
}

.filters__filter-btn.active {
  color: #fff;
  background-color: #242424;
}

.video-container {
  width: calc(100% - 250px);
  margin-top: 120px;
  margin-left: 250px;
  padding: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (25%)[4];
      grid-template-columns: repeat(4, 25%);
  grid-gap: 20px 5px;
  overflow-x: hidden;
}

.video-container__video {
  min-height: 250px;
  height: auto;
}

.video-container__thumbnail {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-container__vid-content {
  width: 100%;
  height: 100px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.video-container__channel-avatar {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.video-container__video-title {
  width: 100%;
  height: 40px;
  overflow: hidden;
}

.video-container__channel-name {
  font-size: 14px;
  margin: 2px 0;
  color: #979797;
}
/*# sourceMappingURL=style.min.css.map */