
.body {
    color: #f7f7f2;
}

.title-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 12px;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .title-container {
        text-align: unset;
    }
}

.slides-container {
    overflow: hidden;
    position: relative;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

@keyframes slide-in-from-right {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

@keyframes slide-in-from-left {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
}

.slide.slide-enter-forward {
    animation: slide-in-from-right 0.35s ease;
}

.slide.slide-enter-backward {
    animation: slide-in-from-left 0.35s ease;
}

.slide-inner {
    margin: auto;
    padding: 0 1rem;
}

/*
@media screen and (min-width: 992px) {

    .slides-container {
        width: 990px;
    }

    .slide {
        width: 900px;
    }
}*/

.product-cards-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    min-height: 300px;
}

@media screen and (min-width: 992px) {
    .product-cards-container {
        flex-direction: row;
    }
}

.product-card {
    background-color: #fff;
    border: 1px solid gray;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 16px;
    -webkit-box-shadow: 10px 10px 35px -23px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 35px -23px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 35px -23px rgba(0,0,0,0.75);
}

@media screen and (min-width: 992px) {
    .product-card {
        width: 33%;
    }
}

.product-card.selected {
    border: 2px solid rgb(230, 230, 0);
}

.product-card-title {
    border-bottom: 1px solid gray;
    color: rgb(30, 48, 80);
    display: block;
    margin-bottom: 24px;
    padding-bottom: 20px;
    text-align: center;
    width:100%;
}

.product-card-price-row {
    display: flex;
    height: 50px;
    justify-content: space-evenly;
    margin-bottom: 20px;
    width:100%;
}

input.product-price-input {
    color: rgb(13, 110, 253);
    font-size: 1.75rem;
    font-weight: 500;
    margin-top: -8px;
    margin-bottom: 8px;
    text-align: right;
    width: 100px;
}

.product-bullet-list {
    border-bottom: 1px solid lightblue;
    color: #282828;
    margin-bottom: 24px;
    padding-bottom: 20px;
}

@media screen and (min-width: 992px) {
    .product-bullet-list {
        margin-bottom: 28px;
    }
}

.product-description {
    color: #282828;
}

.product-purchase-button {
    padding: .5rem 1rem;
    font-size: 1.5rem;
    border-radius: .3rem;
}

.form-bottom-input-container {
    margin-bottom: 30px;
}

.btn-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

@media screen and (min-width: 450px) {
    .btn-row {
        flex-direction: row-reverse;
        justify-content: center;
    }
}

.btn-row .usa-button,
.btn-row .btn {
    font-size: 1rem;
    line-height: 1.25;
    padding: .5rem 1.25rem;
    margin: 0;
    min-width: 120px;
}


.usa-button:visited {
    color: #fff;
}
@media (min-width: 30em) {
    .usa-button {
        width: auto;
    }
}
.usa-button {
    font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 1.46rem;
    line-height: .9;
    color: #fff;
    background-color: #005ea2;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-items: center;
    border: 0;
    border-radius: .25rem;
    cursor: pointer;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    margin-right: .5rem;
    padding: 1rem 1.5rem;
    text-align: center;
    text-decoration: none;
}