.header {
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #0f0f0f;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
}

.left-section {
    display: flex;
    align-items: center;
}

.hamburger-menu {
    padding: 10px 10px 10px 10px;
    border-radius: 50px;
    margin-top: 3px;
    margin-left: 13px;
    margin-right: 20px;
}

.hamburger-menu-icon {
    height: 15px;
}

.hamburger-menu:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 10%);
}

.hamburger-menu:active {
    background-color: rgba(255, 255, 255, 20%);
}

.youtube-logo {
    width: 93px;
    height: 20px;
}

.youtube-logo:hover {
    cursor: pointer;
}

.middle-section {
    display: flex;
    align-items: center;
    flex: 1;
    margin-left: 70px;
    margin-right: 35px;
    max-width: 600px;
}

.search {
    flex: 1;
    height: 36px;
    background-color: #121212;
    border: 1px solid #303030;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    padding-left: 15px;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 15px;
    width: 0;
}


.search-icon {
    height: 24px;
    padding-top: 2px;
}

.search-bar::placeholder {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 15px;
}

input.search::placeholder {
    color: rgb(153, 153, 153);
    
}

.search-button {
    height: 40px;
    width: 60px;
    border: 1px solid #303030;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background-color: #FFFFFF14;
    border-left: none;
}

.search-button:hover {
    cursor: pointer;
}

.voice-search-button {
    height: 40px;
    width: 40px;
    background-color: #272727;
    border: 0;
    border-radius: 50px;
    margin-left: 15px;
}

.voice-search-button:hover {
    background-color: rgba(255, 255, 255, 20%);
    transition: 0.1s;
}

.voice-search-button:active {
    background-color:rgba(255, 255, 255, 30%);
}

.voice-search-icon {
    height: 20px;
    padding-top: 3px;
}

.right-section {
    display: flex;
    align-items: center;
}

.channel-img-header {
    height: 32px;
    border-radius: 50px;
    margin-right: 30px;
    margin-left: 15px;
}

.channel-img-header:hover {
    cursor: pointer;
}

.create-button {
    display: flex;
    align-items: center;
    background-color: #272727;
    border: 0;
    color: white;
    font-weight: bold;
    font-size: 14px;
    font-family: "Roboto", Arial, sans-serif;
    border-radius: 50px;
    padding: 6px 15px 6px 15px;
}

.create-button:hover {
    background-color:rgba(255, 255, 255, 20%);
}

.create-button:active {
    background-color:rgba(255, 255, 255, 30%);
}

.create-icon {
    height: 24px;
    border: 0;
}

.notifications {
    position: relative;
    height: 40px;
    width: 40px;
    border: 0;
    border-radius: 50px;
    background-color: #0f0f0f;
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.notifications:hover {
    background-color:rgba(255, 255, 255, 20%);
}

.notifications-icon {
    height: 24px;
    margin-left: 8px;
}

.notifications-count {
    position: absolute;
    background-color: rgb(225, 0, 45);
    border-radius: 50px;
    padding: 0px 3px 0px 3px;
    color: white;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 12px;
    right: 5px;
    top: 5px;
}

.lower-section {
    position: fixed;
    flex-direction: row;
    color: white;
    top: 50px;
    left: 80px;
    z-index: 100;
    background-color: #0f0f0f;
}

.filters {
    display: flex;
    align-items: center;
    padding: 0 24px 0 24px;
    width: 1905px;
    height: 60px;
}

.filter {
    font-family: "Roboto", Arial, sans-serif;
    margin-right: 10px;
    font-size: 14px;
    background-color: #272727;
    padding: 7px 12px 7px 12px;
    border-radius: 10px;
}

.filter:hover {
    cursor: pointer;
}

.filter:active {
    background-color: rgba(255, 255, 255, 20%);
}

#all-filter {
    background-color: white;
    color: black;
}

@media (max-width: 480px) {
    .hamburger-menu {
    margin-left: 13px;
    margin-right: 0px;
}
    .header {
    justify-content: start;       
}
    .lower-section {
    left: 5px;
}
    button.voice-search-button {
    display: none;
}
    .search {
    display: none;
}
    .search-button {
    border-radius: 50px;
    padding: 0;
    background-color: #0f0f0f;
    border: 0;
    width: 30px;
    height: 30px;
} 
    .notifications {
    display: none;
}
    .create-button {
    margin-right: -10px;
}
    .youtube-logo {
    margin-right: -55px;
}
    .middle-section {
        width: 30px;
    }
}
