body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #a2d2a5;
    max-width: 54rem;
    margin: 0 auto;
}

form {
    max-width: 25rem;
    margin: 0 auto;
}

table, th, td {
  border: 1px solid lightgrey;
  margin: 0 auto;
}

textarea {
    height: 13rem;
    width: 100%
}

button {
    background: #2f7e20;
    border-radius: 6px;
    color: #000000;
    border: none;
    padding: 5px;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    width: 100%;
    overflow: hidden;
}

select {
    border-radius: 7px;
    background: #ffffff73;
}

#buy-now {
    max-width: 20rem;
    margin: 0 auto;
}

#cart-info {
    position: fixed;
    top: 10px;
    right: 10px;
}

#banner_title {
    font-size: 3rem;
    font-family: 'Brush Script MT', cursive;
    text-align: center;
    margin-bottom: 0;
}

#description {
    padding: 0 1rem;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.product-card {
    border: 1px solid #ccc;
    padding: 1rem;
    width: 40%;
    text-align: center;
    margin: 3px auto;
}

.product-card img {
    width: 100%;
    height: auto;
}

.carousel-images img {
    display: none;
}

.carousel-images img.active {
    display: block;
}

.carousel-images {
    position: relative;
}

.previous_arrow {
    position: absolute;
    top: 33%;
    left: 10px;
    filter: drop-shadow(2px 0px 1px white);
}

.next_arrow {
    position: absolute;
    top: 33%;
    right: 10px;
    filter: drop-shadow(-2px 0px 1px white);
}

.left_side_img {
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.right_side_img {
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
}

.swipe_box {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.cart_img {
    max-height: 7rem;
    max-widht: 7rem;
}

.hidden {
    display: none;
}

.label {
    margin-bottom: 0;
}

.filter-box {
    width: 100%;
}

#banner_img {
    max-width: 100%;
}

@media only screen and (min-width: 800px) {
    .product-card {
        border: 1px solid #ccc;
        padding: 1rem;
        width: 12rem;
        text-align: center;
        margin: 3px auto;
    }
}
