#quick_cart {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: unset;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

#quick_cart .close {
    background-color: var(--color-mono-9);
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    z-index: -1;
    cursor: pointer;
    transition: 500ms;
}

#quick_cart .content {
    position: absolute;
    background-color: var(--color-mono-1);
    width: 450px;
    max-width: 100%;
    height: 100%;
    right: -450px;
    top: var(--global--admin-bar--height);
    padding: 20px;
    box-sizing: border-box;
    overflow: auto;
    transition: 300ms;
}

#quick_cart .image {
    max-width: 280px;
    max-height: 280px;
    vertical-align: middle;
}

#quick_cart .attributes {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    grid-gap: 15px;
    margin: 0;
    max-width: 330px;
    margin: auto;
}

#quick_cart .attributes > * {
    margin: 0;
}

#quick_cart .attributes > dt {
    font-weight: var(--font-weight-bold);
}

#quick_cart .attributes > dd {
    text-align: right;
}

#quick_cart .actions {
    display: grid;
    grid-gap: 20px;
    max-width: 270px;
    margin: auto;
}

#quick_cart .actions button {
    width: 100%;
}

#quick_cart .content > * {
    margin-bottom: 50px;
}

#quick_cart.open .content {
    right: 0;
}

#quick_cart.open .close {
    opacity: 0.6;
}

#quick_cart.open {
    pointer-events: auto;
}

.continue_shop_container {
    display: none;
}

@media screen and (max-width: 450px) {
    .continue_shop_container {
        display: block;
    }
}