.checkouts {
    height: auto;
    width: 100%;
}

/* chc: (c)heckouts (h)eader (c)ontainer */
.checkouts__chc {
    background-color: var(--wwhite);
    border-bottom: 1px solid var(--gray3);
}

/* ch: (c)heckouts (h)eader */
.chc__ch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: calc(66rem + 52rem);
    padding: 2.1rem 3.8rem;
}

/* cl: (c)heckouts (l)ogos */
.ch__cl > .contenedor-logos {
    display: flex;
}

/* cil: (c)heckouts (i)con (l)ink */
.ccl__cil {
    display: block;
}

    .ccl__cil > svg {
        display: block;
    }

        .ccl__cil > svg > path {
            fill: var(--bblue);
        }

/* cophcc: (c)heckouts (o)verview product (h)eader (c)ollapse (c)ontainer */
.checkouts__cophcc {
    display: none;
    background-color: var(--gray4);
    outline: 1px solid var(--gray3);
    height: auto;
    width: 100%;
}

/* cophc: (c)heckouts (o)verview product (h)eader (c)ollapse */
.cophcc__cophc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 57rem;
    margin: 0 auto;
    padding: 2.1rem;
}

/* cc: (c)heckouts (c)ontainer */
.checkouts__cc {
    display: grid;
    grid-template-columns: minmax(min-content, calc(50% + calc(calc(66rem - 52rem) / 2))) 1fr;
    width: 100%;
}

/* cpc: (c)heckouts (p)ayment (c)ontainer */
.cc__cpc {
    display: flex;
    align-items: flex-end;
    border-right: 1px solid var(--gray3);
    flex-direction: column;
    height: 100%;
}

/* copc: (c)heckouts (o)verview (p)roducts (c)ontainer */
.cc__copc {
    display: flex;
    position: sticky;
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    top: 0;
}

/* cpfc: (c)heckouts (p)ayment (f)orm (c)ontainer */
.cpc__cpfc {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
    height: 100%;
    max-width: 66rem;
    padding: 3.8rem;
    width: 100%;
}

/* cop: (c)heckouts (o)verview (p)roducts */
.copc__cop {
    position: sticky;
    height: auto;
    max-width: 52rem;
    padding: 3.8rem;
    top: 0;
    width: 100%;
}

.checkout-express
.ch__ccl {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media screen and (max-width: 999px) {
    .chc__ch {
        max-width: 57rem;
        padding: 2.1rem;
    }

    .checkouts__cophcc {
        display: block;
    }

    .checkouts__cc {
        display: flex;
        flex-direction: column-reverse;
    }

    .cc__cpc {
        display: block;
        border-right: none;
    }

    .cc__copc {
        display: block;
        border-bottom: 1px solid var(--gray3);
    }

    .cpc__cpfc {
        max-width: 57rem;
        margin: 0 auto;
        padding: 2.1rem;
    }

    .copc__cop {
        position: static;
        max-width: 57rem;
        margin: 0 auto;
        padding: 2.1rem;
    }
}

@media only screen and (max-width: 991px) {
    .item-logo-partner {
        display: none;
    }
}

@media only screen and (max-width: 580px) {
    .checkout-express
    .chc__ch {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 16px;
    }
}