.header{
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    background-color: white;   
    border-bottom: solid 1px rgb(222, 222, 222);
    z-index: 100;
}
.left-portion{
   display: flex;
   align-items: center;
}
.middle-portion{
    flex: 1;
    margin-left: 70px;
    margin-right: 35px;
    max-width: 600px;
    display: flex;
    align-items: center;
   
}
.right-portion{
    margin-right: 20px;
    display: flex;
    align-items: center;
    width: 180px;
    justify-content: space-between;
    flex-shrink: 0;
}
.hamburger-menu{
    height: 24px;
    margin-left: 24px;
    margin-right: 24px;
    cursor: pointer;
}
.youtube-logo{
    height: 20px;
    cursor: pointer;
}
.search-icon{
    height: 39px;
    width: 66px;
    border: solid 1px rgb(192, 192, 192);    
    box-shadow: inset 1px 2px 5px rgba(0 , 0, 0, 0.05);
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    background-color: rgb(247, 247, 247);
    margin-right: 10px;   
}

.search-icon, .voice-search, .container{
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-icon .tooltip,.voice-search .tooltip, .container .tooltip {
    position: absolute;
    padding: 4px 8px 4px 8px;
    background-color: grey;
    color: white;
    font-size: 11px;
    border-radius: 2px;
    bottom: -30px;
    opacity: 0;
    transition: 0.15s;
    pointer-events: none;
    white-space: nowrap;
    
}

.search-icon:hover .tooltip ,.voice-search:hover .tooltip , .container:hover .tooltip{
    opacity: 1;
}
.search-icon:hover{
    background: rgb(239, 239, 239);
}

.voice-search{
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: none;
    background-color: rgb(247, 247, 247);    
}

.Search-bar{
    height: 36px;
    flex: 1;
    font-size: 16px;    
    border: solid 1px rgb(192, 192, 192);   
    box-shadow: inset 1px 2px 5px rgba(0 , 0, 0, 0.05);
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    width: 0;
}
.Search-bar::placeholder{
    
    font-size: 16px;
    padding-left: 10px;
    
}
.search{
    height: 25px;
    margin-top: 4px;
    margin-left: -1px;    
}

.voice-search-icon, .uploads, .youtube-apps,.notifications{
   height: 24px;  
  }

.profile-pic{
    height: 32px;
    margin-top: 3px;
    width: 32px;
    border-radius: 24px;
    cursor: pointer;
}
.notification-container{
    position: relative;
}
.notification-count{
    position: absolute;
    top: -2px;
    right: -4px;
    background-color: rgb(200,0,0);
    color: white;
    padding: 2px 6px 2px 6px;   
    font-size: 11px;
    border-radius: 10px;
}
a{
    color: black;
    text-decoration: none;
}
/* hehehe*/
