


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto,Arial,sans-serif;
}
/* .body{
    display: flex;
} */
.navbar{
    background-color: #2874f0;
    padding: 10px;
    display: flex;
}
.logo{
    display: flex;
    flex-direction: column;
    margin-left: 170px;

}
.logo a img{
    width: 80px;
    margin-bottom: 0;
    padding-bottom: 0;
}
.plus{
    color: gold;
    font-weight: bolder;
}
.logo p{
    font-size: 10px;
    color: white;
}
.logo p img{
    height: 10px;
}

.search{
    display: flex;
    width: 45%;
    flex-direction: row;
    justify-content: space-evenly;
    /* align-items: center; */
    /* margin-left: 20px; */
}
.searchbox{
    width: 70%;
    display: flex;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    border-radius: 2px;
    box-shadow: 0 0 5px 0.3;
}
.searchbox .searching{
    width: 80%;
    background-color: white;
    border:0;;
    margin-left: 15px;
    font-size: 16px;
}
.searchbox i{
    padding: 3px;
    color: #2874f0;
}
.search button{
    width: 20%;
    background-color: white;
    border: 0;
    color: #2874f0;
    font-size: 18px;
    font-weight: 520;
    border-radius: 2px;
    height: 35px;
    align-self: center;
}
.navs{
    width: 30%;
    display: flex;
    color: white;
    justify-content: space-evenly;
    align-items: center;
    font-weight: 600;
    margin-right: 150px;
    /* font-size: 18px; */
}
#more_items{
    background-color: #2874f0;
    color: white;
    border: 0;
}
.cart{
    display: flex;
}
.cart i{
    padding: 5px;
}
.cart p{
    align-self: center;
}
.header{
    display: flex;
    width: 85%;
    justify-content: space-evenly;
    margin-left: 115px;
}
.products{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 10px 20px;
}
.products a img{
    width: 64px;
    height: 64px;
}
.products p{
    font-size: 15px;
}
#dropdown{
    border: 0;
}
.products p:hover{
    color: #2874f0;
}
.products p select:hover{
    color: #2874f0;
    rotate: -180deg;
    transition: 0.3s ease-in-out;
}