
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    height: 56px;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    background-color: white;
    z-index: 100;;
}

.box-1 {
    display: flex;
    margin-left: 20px;
    width: 200px;
    justify-content: space-between;
    align-items: center;
}
.menu-but{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 20px;
    background-color: transparent;

}
.menu-but:hover{
    background-color: rgb(241, 241, 241);
    transition: background-color .2s;
    cursor: pointer;
}
.hamburger-menu{
    padding: 5px;
    padding-top: 7px;
    width: 35px;
}

.youtube-logo {
    margin-top: 3px;
    margin-right: 40px;
    width: 90px;
    cursor: pointer;
}

.box-2 {
    flex: 1;
    display: flex;
    margin-right: 160px;
    margin-left: 135px;
}

.search-bar-div {
    flex: 1;
    display: flex;
    position: relative;
}

.search-bar {
    flex: 1;
    width: 0;
    padding-left: 16px;
    height: 40px;
    border: 1px solid rgb(223, 220, 220);
    border-radius: 20px;
    outline-style:unset;
    font-size: 17px;
}

.search-bar::placeholder {
    font-size: 17px;
    color: rgb(161, 149, 149);
}

.search-icon-div {
    background-color: #f7f5f5;
    height: 38px;
    width: 65px;
    position: absolute;
    right: 1px;
    text-align: center;
    border-left: 1px solid rgba(206, 204, 204, 0.877);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: 1px;
}
.search-icon-div:hover{
    background-color: rgb(241, 239, 239);
    cursor: pointer;
}
.search-icon {
    margin-top: 6px;
    width: 26px;
}

.voice-search-div{
    margin-left: 18px;
    background-color: #f5f5f5;
    width: 40px;
    text-align: center;
    border-radius: 20px;
}
.voice-search-div:hover{
    background-color: rgb(233, 230, 230);
}
.voice-search-icon {
    padding-top: 9px;
    width: 24px;

}

.box-3 {
    width: 145px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 35px;
    padding-left: 5px;
    flex-shrink: 0;
}
.img1{
    width: 24px;
}
.upload{
    width: 40px;
    height: 40px;
    text-align: center;
    padding-top: 8px;
    padding-left: 2px;
    border-radius: 20px;
}
.upload:hover{
    background-color: rgb(235, 235, 235);
    cursor: pointer;
}
.notify{
    width: 40px;
    height: 40px;
    text-align: center;
    padding-top: 8px;
    border-radius: 20px;
    margin-right: 6px;
}
.notify:hover{
    background-color: rgb(235, 235, 235);
    cursor: pointer;
}
#profile{
    width: 32px;
    height: 32px;
    border-radius: 16px;
}