
.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;
    }
}

.product-cards-container a {
    text-decoration: none;
}

.scizu-slideshow-container {
    height: 840px;
    margin-top: 24px;
}

@media screen and (min-width: 664px) {
    .scizu-slideshow-container {
        height: 580px;
        margin-top: 32px;
    }
}

.slides-container {
    /* remove scrollbar width */
    width: calc(100dvw - (100dvw - 100%));
}

.slide {
    /* remove scrollbar width */
    width: calc(100dvw - (100dvw - 100%));
}

.slide-inner {
    margin: auto;
    padding: 0 1rem;
}

.slide-single-card {
    background-color: #fff;
    border: 1px solid gray;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin: 16px;
    max-width: 500px;
    min-height: 300px;
    padding: 16px;
    text-decoration: none;
    -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: 664px) {
    .slide-single-card {
        margin-left: auto;
        margin-right: auto;
        padding: 32px;
    }
}

.product-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    margin-top: 32px;
    min-height: 300px;
}

@media screen and (min-width: 664px) {
    .product-cards-container {
        flex-direction: row;
        margin-left: 32px;
        margin-right: 32px;
    }
}

@media screen and (min-width: 768px) {
    .product-cards-container {
        flex-direction: row;
        margin-left: 50px;
        margin-right: 50px;
    }
}

.product-card {
    background-color: #fff;
    border: 1px solid gray;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin: 10px;
    min-height: 300px;
    padding: 16px;
    text-decoration: none;
    -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: 664px) {
    .product-card {
        width: 45%;
    }
}

.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: 768px) {
    .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;
}

.button-bar {
    background-color: white;
    bottom: 0;
    border-top: 1px solid gray;
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
    left: 0;
    padding: 16px;
    position: fixed;
    width: 100%;
}

@media screen and (min-width: 664px) {
    .button-bar {
        background-color: unset;
        border-top: none;
        bottom: unset;
        left: unset;
        position: relative;
    }
}

.btn-back {
    max-width: 200px;
}

.btn-continue {
    max-width: 300px;
}