

.searchbar-search-icon-div {
    margin-left: 20px;
    width: 35px;
    height: 35px;
    transition: 0.3s background-color;
}

.homepage-header-right-icon {
    width: 18px;
    height: 18px;
    cursor: pointer;
    padding: 0.5em;
}

.homepage-header-right-icon:hover {
    background-color: #EBEBEB;
    border-radius: 3px;
}

.searchbar-search-icon-div img {
    transition: 0.1s opacity;
}

.searchbar-search-icon-div.active,
.searchbar-search-icon-div:hover {
    background-color: #EBEBEB;
    border-radius: 3px;
}
.searchbar-search-icon-div.active img,
.searchbar-search-icon-div:active img {
    opacity: 58%;
}

.searchbar-input-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.homepage-header-right-wrapper .searchbar-input-wrapper {
    justify-content: flex-end;
}

.searchbar-input-div{
    max-height: 15vh;
    overflow-y: auto;
    padding-bottom: 0.4em;
}

.searchbar-input-align{
    display: flex;
    flex-direction: row;
}

.searchbar-input{
    border: none;
    outline: none;
    padding: 0.7em 0.7em 0.4em 10px;
    background-color: transparent;
    font-size: 17px;
    width: 19vw;
}

.homepage-head-input-border-line {
    border-bottom: 2px solid black !important;
}

.searchdoc-name-dropdown-div {
    margin-top: 60px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 11px 20px 0px #0000001A;
    position: absolute;
    width: 337px;
    max-height: 13.3em;
    overflow-y: scroll;
    overflow-y: overlay;
    z-index: 1;
    border: 1px solid #DEDEDE;
 }

.searchdoc-dropdown-option {
    font-size: 14px;
    padding: 0 1em;
    height: 66px;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    border-radius: 3px;
}

.searchdoc-dropdown-left {
    width: 90px;
    height: 50px;
    object-fit: cover;
}

.searchdoc-dropdown-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 3em;
    width: 66%;
}

.searchdoc-dropdown-top-right {
    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 15px;
}

.searchdoc-dropdown-bottom-right {
    font-size: 14px;
    color: #A2A2A2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.searchdoc-dropdown-date {
    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.searchdoc-dropdown-users {
    display: flex;
    flex-direction: row;
}

.searchdoc-dropdown-user {
    width: 19px;
    height: 19px;
    margin-left: 2px;
    margin-bottom: 2px;
}

.searchdoc-dropdown-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.searchdoc-dropdown-extra-user {
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2A2A2A;
    color: white;
    font-size: 10px;
    border-radius: 100%;
    margin-left: 2px;
}


@media screen and (max-width: 1100px){
    .searchbar-input-wrapper{
        width: 40%;
        margin-right: 3em;
    }
    .searchbar-input {
        width: 25vw;
    }
}

@media screen and (max-width: 900px){
    .searchbar-input-wrapper{
        width: 50%;
        margin-right: 1em;
    }
}

@media screen and (max-width: 750px){
    .searchbar-input-wrapper{
        display: none;
    }
}