.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-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(219, 217, 217);
  z-index: 100;
}

.left{
  display: flex;
  align-items: center;
}

.burger{
  height: 24px;
  margin-left: 24px;
  margin-right:24px;
  cursor:pointer;
}
.youtubelogo{
  height:20px;
  cursor:pointer;
}

.middle{
  
  flex:1;
  margin-left: 110px;
  margin-right: 80px;
  max-width: 450px;
  display: flex;
  align-items: center;
}
.search{
  flex: 1;
  height: 36px;
  padding-left: 10px;
  font-size: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(192, 192, 192);
  border-radius: 2px;
  box-shadow: inset 1px 2px 3px   rgba(0, 0, 0, 0.05);
  width: 0;
  
}



.search::placeholder {
  font-family: roboto,Arial;
  font-size: 16px;
}

.search-button{
  height:40px;
  width: 60px;
  background-color: rgb(245, 243, 243);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(182, 180, 180);
  margin-left: -1px;
  margin-right: 10px;
  
}

.search-button,
.voice-search,
.upload-icon,
.app-icon,
.bell-icon,
.mychannel-icon
{
  display:flex;
  justify-content: center;
  align-items: center;
  position:relative;
  cursor:pointer;
}

.search-button .tooltip 
,.voice-search .tooltip,
.upload-icon .tooltip,
.app-icon .tooltip,
.bell-icon .tooltip
{
  font-family: roboto,arial;
  position:absolute;
  background-color: grey;
  color:white;
  padding-left: 8px ;
  padding-top: 4px;
  padding-bottom:4px ;
  padding-right:8px ;
  border-radius: 2px;
  font-size: 12px;
  bottom:-30px;
  opacity: 0;
  transition: opacity 0.15s ;
  pointer-events: none;
  white-space: nowrap;
}

.search-button:hover .tooltip ,
 .voice-search:hover .tooltip ,
 .upload-icon:hover .tooltip,
 .app-icon:hover .tooltip,
 .bell-icon:hover .tooltip
{
  opacity: 1;
}

.searchicon{
  height: 25px;
}

.voice-search{
  height: 40px;
  width: 40px;
  border-radius: 20px;
  border: none;
  background-color: rgb(245, 243, 243);
}

.voiceicon{
  height:24px;

}
.right{
  width:200px;
  margin-right: 20px;
  display:flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.upload{
  height: 24px;
}

.app{
  height: 24px;
}

.bell{
  height: 24px;
}

.bell-notification{
  position: relative;
}

.notification-count{
  position: absolute;
  top:-2px;
  right:-5px;
  background-color: rgb(200, 0, 0);
  color: white;
 
  font-family: Roboto,Arial;
  font-size:10px;
  padding-left: 5px;
  padding-top: 2px;
  padding-bottom: 2px ;
  padding-right: 5px ;
  border-radius:10px;
}

.mychannel{
  height: 34px;
  border-radius: 16px;
}