.searchBar {
    width: 100%;
    height: 51px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    /*border: 1px solid rgb(63, 63, 63);*/
    border-radius: 8px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
    z-index: 900;
}

.searchBarInput {
    position: absolute !important;
    width: 100% !important;
    height: 51px !important;
    border: none !important;
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: inherit !important;
    box-sizing: border-box !important;
    padding: 0 8px !important;
    font-size: 15px !important;
    outline: none !important;

}

.iconSearchContainer {
    background: #c0c2c0;
    position: absolute;
    width: 16%;
    height: 51px;
    box-sizing: border-box;
    right: 0;
    border: none;
    /* border-left: 1px solid black; */
    border-top-right-radius: inherit;
    border-bottom-right-radius: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iconSearchContainer:hover {
    background: black;
    color: white;
    cursor: pointer;
}

#res {
    background: #ffffff;
    max-height: 500px;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box;
    /* border: 1px solid rgb(63, 63, 63); */
    border-radius: 8px;
    position: absolute;
    top: 61px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
    z-index: 9000;
}

#res .liEls {
    display: flex;
    border-radius: inherit;
    cursor: pointer;
    z-index: 9000000;
    padding: 20px 10px;
    background: #e96b561f;
}

#res .liEls:hover {
    background: white;
}

hr {
    margin: 0;
}

.desc p {
    font-size: 15px;
    line-height: 0;
}