* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* body::-webkit-scrollbar {
    display: none;
} */

#navbar {
    z-index: 100;
    position: fixed;
    margin-bottom: 15px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 4px;
    top: 0;
    width: 100%;
    height: 12vh;
    padding: 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#navbar>div {
    position: relative;
    font-size: larger;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
#navbar>div>i{
    padding: 15px;
}
.fa-xmark{
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
}
#navbar>div>i:hover{
    background-color: #ebebeb;
    border-radius: 50%;
    cursor: pointer;
}
.fa-xmark:hover{
    background-color: #eb9300;
}
#navbar>div>img {
    height: 8vh;
    margin-left: 15px;
    cursor: pointer;
}

#cartEmptyPopup{
    border-radius: 5px;
    position: absolute;
    font-size: 90%;
    top: 15;
    right: 0;
    display: none;
    align-items: center;
    justify-content: space-evenly;
    background-color: #ffa000;
    color: white;
    width: 250%;
    height: 120%;
    z-index: 20;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    animation-duration: .3s;
}


@keyframes showCartEmptyPopup {
    from {
        margin-right: -200%;}
    to {
        margin-right: 0%;}
}
@keyframes hideCartEmptyPopup {
    from {
        margin-right: 0%;}
    to {
        margin-right: -250%;}
}

#logoutPopup{
    cursor: pointer;
    background-color: white;
    width: 100%;
    border: 5px solid white;
    height: 100%;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    font-family: roboto;
    font-weight: 500;
    top: 90%;
    right: 0;
    display: none;
    align-items: center;
    justify-content: space-evenly;
    z-index: 200;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#logoutPopup:hover{
    background-color: #ebebeb;
}