.checkout-header.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 0px 12px;

    color: var(--primary-text);
    background-color: var(--sectionBG);
    border-bottom: 1px solid var(--primary-border);
}

.checkout-header.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
}

.checkout-header.logo {
    font-family: "super shape", sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    line-height: 100%;
    color: inherit;

    transition: all 0.25s cubic-bezier(0.00, 1.13, 0.00, 0.97);

}

.checkout-header.logo:hover {
    color: var(--primary-accent);
}

.checkout-header.icon {
    height: 14px;
}

.checkout.header.title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding-bottom: 24px;

    border-bottom: 1px solid var(--primary-border);
}

.checkout.header.title {
    width: 100%;
    text-align: start;
}

#checkout.section.content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;

    margin: 0px 12px;
}

.checkout.content.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--primary-border);
}

.checkout.content.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    max-height: none
}

@media only screen and (max-width: 767px) {
    .checkout.content.form {
        display: flex;
        flex-direction: column-reverse;
    }
}

.checkout.form.content-wrapper {
    width: 100%;
}

.checkout.form.express-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 100px;
    border: 1px solid var(--primary-border);
}

.checkout.form.express-title {
    display: flex;
    background-color: var(--sectionBG);
    font-size: 12px;
    padding: 4px 16px;
    margin-top: -36px;
    border-radius: 12px;
    border: 1px solid var(--primary-border);
}

.button.checkout.apple {
    width: 100%;
    background-color: var(--primary-text);
    color: var(--primary-text-alt);
}

.checkout.or-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.checkout.or-line {
    width: 100%;
    height: 1px;
    background-color: var(--primary-border);
}

.checkout.or-text {
    color: var(--primary-text);
}

.checkout.form.contact-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    gap: 12px;
}

.checkout.form.title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.checkout.form.title-wrapper.column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 24px;
}

.checkout.form.title {
    text-align: left;
}

.checkout.checkbox-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.checkout.checkbox-label {
    font-size: 14px;
    color: var(--secondary-text);
    font-style: italic;
}

.checkout.checkbox {
    width: 12px;
    height: 12px;
    border-radius: 99px;
    background-color: var(--toolbarBG);
    border: 1px solid var(--primary-border);
    outline: none;
}

.checkout.checkbox:checked {
    background-color: var(--primary-accent);
    border: 1px solid var(--primary-border);
}

.checkout.stripe.form.content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

.checkout.stripe.card-container {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: transparent;
    color: var(--primary-accent);
    outline: none;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid var(--primary-border);
}

.checkout.stripe.status {
    min-height: 18px;
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-text);
}

.checkout.stripe.status.error {
    color: var(--warning);
}

.checkout.stripe.status.success {
    color: var(--primary-accent);
}

.checkout.clear {
    color: var(--warning);
    cursor: pointer;
}

.checkout.input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: transparent;
    color: var(--primary-accent);
    outline: none;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid var(--primary-border);
    transition: all 0.25s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.checkout.input:focus {
    background-color: transparent;
    color: var(--primary-accent);
    border: 1px solid var(--primary-accent);
}

.checkout.form.address-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 24px;
    gap: 12px;
}

.checkout.input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
}

.checkout.input-split {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.button.prefer.checkout {
    width: 100%;
}

.checkout.summary.content-wrapper {
    width: 100%;
}

.cart.item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--primary-border);
}

.cart.item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.cart.item.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.cart.item.image {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--primary-border);
    background-color: var(--toolbarBG);
}

.cart.item.details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cart.item.name {
    text-align: left;
    font-weight: 400;
}

.cart.item.caption {
    text-align: left;
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-text);
}

.cart.item.price {
    white-space: nowrap;
    font-weight: 700;
}

.cart.item.empty {
    color: var(--secondary-text);
}

.cart.footer-wrapper {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: var(--toolbarBG);
    border-radius: 12px;
}

.cart.footer-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
}

.cart.footer-line.total {
    padding: 12px 0px;
    font-size: 18px;
    font-weight: 700;
    border-top: 1px solid var(--primary-border);
}

.checkout.form.method-wrapper {
    display: flex;
    flex-direction: column;

    padding: 0px 12px;
    margin-bottom: 24px;
    border-radius: 12px;

    border: 1px solid var(--primary-border);

}

.checkout.form.method-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0px 16px 12px;
    cursor: pointer;
}

.checkout.form.method-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkout.form.method-seperator {
    width: 100%;
    height: 1px;
    background-color: var(--primary-border);
}

.checkout.form.method-icon {
    width: 16px;
    height: 16px;
}

.checkout.form.method-icon.status {
    display: none;
    width: 16px;
    height: 16px;
    color: var(--primary-accent);
}

.checkout.form.method-icon.status.active {
    display: flex;
    width: 16px;
    height: 16px;
}

.checkout.form.method-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
}

.checkout.form.method-callout {
    display: none;
    font-size: 12px;
    color: var(--secondary-text);
}
