:root{
    --white: white;
    --black: black;
    --smokewhite: whitesmoke;
    --inputcolor: rgb(227, 239, 246);
    --blue: #047BD5;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--smokewhite);
    /* background-color: whitesmoke; */
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 15px;
    background-color: var(--white);
    color: var(--black);
}

.header_logo{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header i{
    padding: 0 7px;
    cursor: pointer;
}

.header_search form{
    /* border: 1px solid red; */
    height: 40px;
    padding: 0 10px;
    margin-left: -100px;
    background-color: rgb(227, 239, 246);
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

.header_search input{
    width: 700px;
    padding: 0 5px;
    background-color: var(--inputcolor);
    outline: none;
    border: none;
    font-size: 15px; 
}

.searchBtn{
    border: none;
    background-color: transparent;
    color: var(--black);
}

.header_menu{
    display: flex;
    /* justify-content: space-between; */
    margin-left: -100px;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.login_menu{
    display: flex;
    align-items: center;
    height: 40px;
}

.login_menu:hover{
    border-radius: 10px;
    background-color: var(--blue);
    color: black;
    
}

.cart_menu{
    display: flex;
    align-items: center;
    height: 40px;
} 

.seller_menu{
    display: flex;
    align-items: center;
    height: 40px;
}

.dropdown_menu{
    display: flex;
    align-items: center;
    height: 35px;
}

.dropdown_menu:hover{
    border: 1px solid lightgray;
    border-radius: 5px;
    background-color: var(--smokewhite);
}

._2j7a4R {
    color: #666;
    font-size: 15px;
    background-color: #f5f5f5;
    margin: 0 auto;
    text-align: left;
    padding: 25px;
    line-height: 1.5;
    display: block;
}
._2j7a4R a{
    text-decoration: none;
    color: gray;
    font-size: 13px;
}
a{
    text-decoration: none;
}

.footer-desktop{
    display: flex;
    justify-content: space-around;
    background-color: var(--black);
    /* grid-template-columns: repeat(6, 1fr); */
    padding: 40px 60px 0;
    width: 100vw;
    column-gap: 20px;
    
}
.list-header{
    color: #878787;
    font-size: 12px;
    margin-bottom: 12px;
    
}

ul{
    list-style-type: none;
}
li a{
    font-family: inter_semi_bold, fallback-inter_semi_bold, Arial, sans-serif;
    font-size: 12px;
    color: #fff;
    display: block;
    line-height: 18px;
    font-weight: bold;
    text-decoration: none;

}

#footer{
    display: flex;
    justify-content: center;  
}

.footer-desktop{
    padding-bottom: 10px;
}

.footer-wrapper{
    padding-top: 3em;
    padding: 1.5em 0 0;
}

.footer-links{
    border-bottom: 1px solid gray;
    border: none;
}

.footer-about{
    border-left: 1px solid #454d5e;
    padding-left: 32px;

}
.mail-details{
    margin-bottom: 16px;
}
.mail-details p{
    white-space: nowrap;
    color: #fff;
    font-size: 12px;
    /* line-height: 15px; */
}
.footer-social-links{
    display: flex;
    align-items: center;
}
.social-logos{
    margin-right: 16px;
}
.footer-address{
    font-size: 12px;
    white-space: nowrap;
}

.footer-address p{
    white-space: nowrap;
    color: #fff;
    font-size: 12px;
    /* line-height: 1.5px; */
}

.copyright{
    background-color: var(--black);
    border-top: 1px solid #878787;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 15px;
    height: 10vh;
    justify-content: center;

}

.mainBody{
    display: flex;
    justify-content: center;
    align-items: center;
}

.card{
    border: 1px solid gray;
    border-radius: 10px;
    width: 200px;
    margin-left: 15px;
}

.card img{
    width: 150px;
}

.secondary-menu{
    margin: 10px;
    background-color: whitesmoke;

}
.list-menu{
    display: flex;
    justify-content: space-evenly;
    padding: 0px 100px;
    align-items: center;
    border: 1px solid rgb(211, 211, 211);
    height: 100px;
    background-color: white;
}

.images{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.img{
    width: 50px;
}