.header {
    height: 55px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
input.search-bar:focus {
    outline-width: 0;
}
.left-sect {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.menu-icon {
    height: 25px;
    visibility: hidden;
}
.logo-icon {
    height: 22px;
    
}

.mid-sect {
    
    flex: 1;
    margin-left: 70px;
    margin-right: 40px;
    max-width: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
} 
.search-bar {
 flex: 1;
 height: 36px;
 padding-left: 12px;
 font-size: 16px;
 border-width: 1px;
 border-style: solid;
 border-radius: 20px 0px 0px 20px;
 border-color: rgb(192, 192, 192);
 box-shadow: 1px 2px 3px rgba(0, 0,0, .15);
 width: 0;
}
.search-bar::placeholder {
font-family: Roboto, Arial;
font-size: 16px;
}
.old-search {
height: 40px;
width: 65px;
font-family: Roboto, Arial;

position: relative;
border-width: 1px;
 border-style: solid;
border-radius: 0px 20px 20px 0px;
border-color: rgb(192, 192, 192);
margin-right: 12px;
box-shadow: 1px 2px 3px rgba(0, 0,0, .15);
margin-left: -1px;
}
.search-icon {
    width: 25px;
    margin-top: 5px;
}
.voice-search {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height:40px;
    width: 40px;
    border: none;
    border-radius: 20px;
   
}
.voice-icon {
    width: 25px;
    
}
.old-search .tooltips,
.voice-search .tooltips,
.create .tooltips,
.notifications .tooltips,
.apps .tooltips {
    position: absolute;
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
    color: white;
    background-color: rgb(75, 74, 74);
    border-radius: 3px;
    bottom: -30px;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 2px;
    padding-bottom: 2px; 
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    white-space: nowrap;
}
.old-search:hover .tooltips,
.voice-search:hover .tooltips,
.create:hover .tooltips,
.notifications:hover .tooltips,
.apps:hover .tooltips {
    opacity: .8;
}

.right-sect {
    
    width: 170px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-right: 30px;
    flex-shrink: 0;
}
.create,.notifications,.apps {
    position: relative;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    }
.note-count {
    display: inline-block;
    color: white;
    background-color: rgb(207, 29, 29);
    font-family: Roboto, Arial;
    font-size: 12px;
    padding-left: 2px; 
    padding-top: 2px;
    padding-right: 2px;
    padding-bottom: 1px;
    width: 15px;
    height: 15px;
    border-radius: 10px;
    position: absolute;
    top: -3px;
    right:  -3px;


    text-align: center;
}

.account {
    width: 40px;
    
}
.create-icon {
    width: 100%;
}
.note-icon {
    width: 100%;
}
.apps-icon {
    width: 100%;
} 
.acct-icon {
    width: 100%;
    border-radius: 20px;
}