@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(font/poppins_400_latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

body{
    margin: 0;
    padding: 0;
    background-color: #1d2634;
    color: #9e9ea4;
    font-family: 'Poppins', sans-serif;
}

.material-icons-outlined {
    vertical-align: middle;
    line-height: 1px;
    font-size: 35px;
}

div#banner {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #15ad29;
  width: 100%;
}

.banner-content {
  width: 800px;
  margin: 0 auto;
  padding: 0px;
  border: 1px solid #000;
  text-align: center;
  color: #000;
}

.header {
  grid-area: header;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 0 0px;
  box-shadow: 0 6px 7px -39x rgba(0,0,0,0.35);
}

#sidebar {
    grid-area: sidebar;
    height: 100%;
    background-color: #263043;
    overflow-y: auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    display: flex;
    flex-direction: column;
}
.sidebar-list {
    padding: 0;
    margin-top: 15px;
    list-style-type: none;
    flex: 1;
}

.sidebar-list-item:hover {
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}
.active{
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown{
    display: none;
    position: absolute;
    right: 10px;
    /* change background color */
    background-color: grey;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 10px;
    z-index: 1;
}
  
.active-menu{
    display: block;
}

.header-right{
    font-size: 18px;
}
  
.header-right:hover {
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.centered-video {
    text-align: center;
    align-items: center;
    padding: 0% 10%;
}

.input_select .video_select{
    width: 200px;
    height: 30px;
    font-size: 18px;
}

.main-title {
    display: flex;
    justify-content: space-between;
}