/* NAVBAR */
.navbar-brand .logo{
    width: 30px; 
    height: auto;
    margin-left: 30px;
}
/* CART */
.icon-cart{
    position: relative;
}
.icon-cart span{
    /* display: flex; */
    position: absolute;
    background-color: red;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    top: 45%;
    right: -10px;
}
/* CHECKOT THING */
.cart-item{
    border: 1px solid grey;
}
.order{
    border: 1px solid grey;
}
.close i{
    font-size: 1.5rem;
}
.close i:hover{
    color: red;
}
/* FOOTER */
footer {
    background-color: black;
    text-align: center;
    padding: 30px;
    color: white;
    margin-top: 90px;
}

#footer-top {
    padding: 20px;
    width: 60%;
    margin: auto
}

#footer-socials-wrapper {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.footer-social {
    display: flex;
    place-items: center
}

.footer-social span {
    margin-left: 20px;
    font-size: 16px;
}

#footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    border-top: 1px solid white;
    padding-top: 30px;
    margin-top: 20px;
}

#footer-bottom ul {
    list-style: none;
    display: flex;
}

#footer-bottom a {
    margin-right: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease-in-out;
}

#footer-bottom a:hover {
    color: rgb(65, 105, 225);
}