.cart_count_container {
    width: 62px;
    height: 62px;
    position: fixed;
    bottom: -100px;
    right: 110px;
    z-index: 200;
    background: var(--color_golden);
    border-radius: 4px;
    transition: ease-in-out .3s;

    display: flex;
    justify-content: center;
    align-items: center;
}
.cart_count_container.active {
    bottom: 20px;
}

.cart_count{
    position: absolute;
    top: -10px;
    right: -6px;
    background: var(--color_red);
    padding: 0px 4px;
    z-index: 200;
    color: var(--color_white);
    border-radius: 4px;
}

.cart_icon {
    width: 80%;
    height: 80%;
    filter: invert(100%);
}