.fidelity-promo-list {
    padding: 0;
    margin: 2rem 0;
    list-style: none;

    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;

    &>li {
        display: grid;
        grid-template-columns: 100px 200px 1fr 100px 200px;
        grid-gap: 1rem;
        align-items: center;

        & > img {
            max-width: 100%;
            max-height: 60px;
            grid-row: span 2;
        }

        & > p {
            margin-bottom: 0;

            & > a {
                padding-inline: 0;
            }
        }

        & > .application {
            grid-column: 1 / -1;
        }
    }

    &.product-list {

        &>li {
            grid-template-columns: 100px 200px 1fr 150px 100px 200px;
        }

        & .price {
            /* prevent price from breaking into multiple lines */
            white-space: nowrap;
        }
    }
}

#cart .checkout .btn-secondary {
    padding: 20px 0 !important;
}

#footer .btn-primary {
    background-color: #bd8b41;
    transform: translateX(10px); /* Remove padding from gutter */

    &:hover {
        background-color: #a67b3a;
    }
}

.bg-black {
    background-color: #000 !important;
}

.text-center {
    text-align: center !important;
}

.btn-gold {
    background-color: #bd8b41;

    &:hover {
        background-color: #a67b3a;
    }
    &:focus, &:active, &:active:focus {
        background-color: #a67b3a;
    }
    &:visited {
        background-color: #bd8b41;
    }
}