:host {
    display: block;
    bottom: 0;

    width: 100%;
    z-index: 2;
    pointer-events: none;
}
.status-bar {
    background-color: var(--color-grape);
    overflow-y: hidden;
}

button {
    color: white;
    padding: 0.5rem;
    background-color: var(--color-dark-grape);
    text-transform: uppercase;
    border: none;
    letter-spacing: 1px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}
.summary-button svg {
    transition: all ease 0.3s;
}

.summary-button.active {
    background-color: var(--color-grape);
    outline: 1px solid white;
}

.summary-button.active svg {
    transform: rotate(-180deg);
}

.wrapper {
    color: white;
}

.price-wrapper .price {
    font-size: var(--font-size-heading-h5);
    font-weight: 600;
}
.price-wrapper .delivery-info {
    font-size: 0.875em;
    font-weight: 300;
}

.continue-button-wrapper {
    margin-left: auto;
    width: 100%;
}
.continue-button-wrapper button {
    width: 100%;
    background-color: transparent;
    outline: 2px solid white;
    cursor: not-allowed;
}

.continue-button-wrapper button.active {
    width: 100%;
    background-color: white;
    color: black;
    outline: 0;
    cursor: pointer;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    button {
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
    }
}
