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

.display-flex {
    display: flex;
}

.header {
    min-width: 100%;
    color: var(--font-color);
    display: flex;
    align-items: center;
    background-color: var(--sand-bg);
    padding: 20px 50px;
}

.header-logo{
    width: 150px;
}

.header > * {
    color: black;
}

.header-center-items {
    flex: 1;
}

.header-search-input {
    height: 35px;
    width: 300px;
    text-align: left;
}

.search-button-input, .shopping-cart-button-input{
    display: none;
}

.search-button-label, .shopping-cart-button-label {
    background-color: var(--button-color);
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.header-right-items {
    height: 35px;
    /* border: 1px #eaeaea solid; */
}

.shopping-bag-container, .wishlist-container{
    height: 100%;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1), -10px -10px -10px var(--font-color);
}

.shopping-bag-container {
    gap: 10px;
    background-color: white;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopping-bag-container > img, .wishlist-container > img{
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.cart-items-count {
    background-color: gray;
    border-radius: 15px;
    color: white;
    padding: 0px 6px;
}

.cart-items-price {
    white-space: nowrap;
}

.wishlist-container {
    /* border-left: 2px solid #dee2e6; */
    padding-right: 5px;
}

.wishlist-items-count {
    align-items: top;
    justify-content: top;
    height: 40px;
}

.header-images {
    background-repeat: no-repeat;
    background-size: cover;
}


@media (width <= 780px) {
    .header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .header-right-items {
        align-items: unset;
        justify-content: unset;
        margin-right: unset;
        width: 335px;
    }

    .shopping-bag-container {
        flex: 1;
        justify-content: left;
    }

}


.cart-dropdown-item-name: hover{
    color: var(--button-color);
}
.cart-dropdown-item-price{
    white-space: nowrap;
}
.cart-to-checkout-container{
    border-top: 1px solid black;
    padding-top: 11px;
    margin-top: 8px;
    display:flex;
    align-items: center;
}
.cart-to-checkout{
}
.cart-dropdown-item-image-container{
    min-width: 50px;
    min-height: 50px;
    text-align: center;
    background-color: #0000000d;
}
.cart-dropdown-item-image{
    max-width: 50px;
    max-height: 50px;
}
.header-right-items{
    position: relative;
}
.cart-dropdown-item-remove{
    cursor: pointer;
    color: red;
    position: absolute;
    right: 0px;
    top:0px;
    font-size: 16px;
    line-height: 0;
}
.cart-dropdown-item{
    display: flex;
    flex-direction: row;
    gap: 10px;
    position: relative;
    padding-right: 18px;
}
#asdshopping_bag_container:hover>.cart-dropdown{
    display: flex;
}
.cart-dropdown {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.3);
    padding: 10px;
    z-index: 99;
    flex-direction: column;
    gap: 5px;
    top: 100%;
    right: 0px;
    background-color: #fdfdfd;
    max-width: Max(330px, 100%);
    width: 100vw;
    max-height: 300px;
    overflow-y: scroll;
}

#cart-dropdown-items-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* overflow-y: scroll;
    max-height: 300px;
    padding: 10px;
    padding-right:14px; */
}