nav{
    width: 100%;
    height: 100px;
    display: flex;
}

.burguer-menu{    
    display: none;
    align-items: center;
}

.burguer-menu i{
    font-size: 40px;
    color: #444854;
}

.content{
    width: 100%;
    height: 100%;
    margin: 0 7.5%;
}

.logo{
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img{
    width: 200px;
}

.menu{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;    
}

.menu ul li{
    margin-left: 30px
}

.menu ul li a{        
    color: #444854;       
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins';   
    -webkit-transition: all .2s ease;
}

.menu ul li a:hover{
    color: #739a4c;
    border-bottom: 3px solid #739a4c;
}

.menu ul li a.active{
    color: #739a4c;
    border-bottom: 3px solid #739a4c;
}

.cart{
    width: 15%;
    display: flex;
    position: relative;
    align-items: center;    
    justify-content: flex-end;
}
.cart-image{
    position: relative;
}

.cart div.items{
    z-index: 2;
    top: -8px;
    right: -6px;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    font-size: 12px;
    position: absolute;
    border-radius: 100%;
    background: #f68e20;
    align-items: center;
    justify-content: center;  
    font-family: 'Poppins';  
}

.cart img{    
    top: 3px;
    right: 5px;
    width: 28px;
    position: relative;    
}

.cart-content{
    display: flex;
    margin-left: 7px;
    flex-direction: column;
}

.cart-content .text{
    font-weight: 300;
    font-family: 'Poppins';
    border-bottom: 1px solid #444854;
}

.cart-content .value{
    font-size: 13px;
    text-align: end;
    font-family: 'Poppins';
}

.details{
    position: absolute;
    z-index: 5;
    transform: scale(0);
    top: 70px;
    width: 350px;
    background-color: white;
    padding-bottom: 10px;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,.3);
}

.cart:hover .details{
    transform: scale(1);
}

.details .tools{
    display: flex;
    justify-content:space-between;
}

.details .view-cart{
    color: white;
    text-decoration: none;
    background-color: #f68e20;
    padding: 7px 0px;
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 13px;
    width: 95%;
    text-align: center;
    margin-left: 2.5%;
}


.details .checkout{
    color: white;
    text-decoration: none;
    padding: 7px 44px;
    background-color: #444854;
    margin-right: 10px;
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 13px;
}
.details .preview{
    color: white;
    text-decoration: none;
    padding: 7px 44px;
    background-color: #444854;
    margin-right: 10px;
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 13px;
}

.subtotal{
    display: flex;
    margin: 20px 10px;
    font-family: 'Poppins';
    font-weight: 600;
    color: #444854;
    justify-content: space-between;
}

.card-products{
    margin: 10px;
    max-height: 400px;
    overflow-y: scroll;
}

.card-products li{
    width: 100%; 
    display: flex;       
    align-items: center;
    border-bottom: 2px solid #eeeeee;
    justify-content: space-between;
}

.card-products li img{
    top: 0px;
    right: 0;
    width: 100px;
    height: 100px;
    margin: 15px 0 15px 0px;
    position: relative;
}


.card-products li >div{
    display: flex;
    font-family: 'Poppins';
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    color: #444854;
}

.card-product li div{
    font-weight: 900;
    color: #444854;
}

.card-products li >div span{
    font-weight: 600;
    color: #444854;
}

.card-products li a{
    
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.card-products li a.close img{
    width: 13px;
    margin: 0;
}

.mobile-menu{
    top: 0;
    z-index: 6;
    width: 100%;
    left: -100%;
    height: 100vh;    
    position: fixed;        
    background: rgba(0,0,0,0);    
    -webkit-transition: all .5s ease;
}

.mobile-menu .menu-content{
    width: 80%;
    min-width: 250px;
    max-width: 350px;
    height: 100%;
    position: relative;
    box-shadow: 5px 5px 10px rgba(0,0,0,.5);
    background-color: white;
}

.mobile-menu .menu-content img{
    width: 150px;
    margin-top: 20px;
    margin-left: 40px;
}

.mobile-menu .menu-list{
    margin-top: 40px;
    margin-left: 40px;
}

.mobile-menu .menu-list > div{    
    width: 90%;
    height: 50px;    
    display: flex;    
}

.mobile-menu .menu-list div a{    
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    font-family: 'Poppins';
    text-decoration: none;
    color: black;
    font-weight: 600;
}

.close-btn img{
    position: absolute;
    right: 10px;
    top: 0px;
    cursor: pointer;
    width: 25px!important;
}

.burguer-menu input[type="checkbox"]{
    display: none;
}

@media(max-width:1100px){
    .content{
        margin: 0 20px;
    }
}

@media(max-width:700px){

    .details{
        width: 310px;
    }
    .logo{
        width: 33%;        
    }    
    
    .logo img{
        width: 100%;
        min-width: 120px;
    }
    .cart{        
        width: 33%;
    }
    .cart div.items{
        width: 11px;
        height: 11px;
        padding: 1px;
        font-size: 9px;
        top: -4px;
        right: -4px;
        display: flex;
        font-family: 'Poppins';
        justify-content: center;
        align-items: center;
    }
    .cart img{
        width: 18px;
    }
    .cart-content .text{
        font-size: 12px;
    }
    .cart-content .value{
        font-size: 10px;
    }
    .burguer-menu{
        display: flex;
        width: 33%;        
        border: none;
        background-color: transparent;
        cursor: pointer;
        outline: none;
    }
    .menu{
        display: none;
    }
    .cart-content{
        display: none;
    }

}