.header{
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: white;
    border-bottom-style: solid;
    border-bottom-color: rgb(211, 211, 211);
    border-bottom-width: 1px;
    z-index: 100;
}
.left-section{
    display: flex;
    align-items: center;
}
.hamburger{
    height: 24px;
    margin-left: 24px;
    margin-right: 24px;
}
.youtube-logo{
    height: 20px;
}

.mid-section{
    flex: 1;
    margin-left: 60px;
    margin-right: 40px;
    max-width: 500px;
    display: flex;
    align-items: center;
}
.search-button{
    height: 40px;
    width: 66px;
    background-color: rgb(239, 239, 239);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(192, 187, 187);
    margin-left: -1px;
    margin-right: 10px;
}
.voice-search-button{
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 25px;
    background-color: rgb(239, 239, 239);
}
.search-box{
    flex: 1;
    height: 37px;
    font-size: 16px;
    padding-left: 10px;
    border-width: 1px;
    border-color: rgb(192, 187, 187);
    border-style: solid;
    border-radius: 2px;
    box-shadow: inset 1px 1px 2px rgba(0 , 0 , 0 ,.07 ) ;
    width: 0px;
}
.search-box::placeholder{
    font-family: Roboto , Arial;
    font-size: 16px;
}
.search-icon{
    height: 28px;
    margin-top: 4px;
}
.right-section{
    margin-right: 20px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.voice-search-photo{
    height: 25px;
    margin-top: 3px;
}
.upload-icon{
    height: 20px;
}
.youtube-apps{
    height: 20px;
}
.notification-icon{
    height: 20px;
}
.channel-image{
    height: 20px;
    border-radius: 10px;
}
.notification-image{
    position: relative;
}
.num-notification{
    position: absolute;
    background-color: red;
    color: white;
    top: -5px;
    left: 10px;
    bottom: 12px;
    right: -5px;

    font-size: 12px;
    padding: 2px 5px 2px 5px;
    border-radius: 10px;
    
    
    

}