.payment-portal-overlay{
    position:fixed;
    background-color: rgba(0, 0, 0, 0.3);
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index: 90002;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .payment-portal-iframe{
    position: relative;
    border-radius: 1rem;
    height: 515px;
    width: 320px;
  }

  .horizontal-scroll-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 15px;
    padding: 20px;
    scrollbar-width: thin;
}
.scroll-item {
    flex: 0 0 auto;
    width: 200px;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}
.scroll-container {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
}

.store-banner-container {
    align-items: center;
    width: 100%;
    margin: 0 auto;
    border-radius: 0.5em;
    box-shadow: 0 2em 4em rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.store-banner-background-image {
    width: 100%;
    height: auto;
    display: block;
}

.store-banner-background-image-mobile {
    width: 100%;
    height: auto;
    display: none;
    padding: 5%;
}



/*  ------- Reactive Sizing -------  */

/* Mobile Screen */
@media screen and (max-width: 790px) {
    .payment-portal-iframe{
        position: relative;
        border-radius: 1rem;
        height: 500px;
        width: 320px;
    }
    .store-banner-background-image {
        display: none;
    }
    .store-banner-background-image-mobile {
        display: block;
    }
}

/* Small Screen */
@media screen and (min-width: 791px) and (max-width: 1049px) {
    .payment-portal-iframe{
        position: relative;
        border-radius: 1rem;
        height: 320px;
        width: 500px;
    }
    .activities-banner-background-image {
        display: none;
    }
    .activities-banner-background-image-mobile {
        display: block;
    }
}

/* Medium Screen */
@media screen and (min-width: 1050px) and (max-width: 1280px) {
    .payment-portal-iframe{
        position: relative;
        border-radius: 1rem;
        height: 500px;
        width: 750px;
    } 
}

/* Large Screen */
@media screen and (min-width: 1281px) and (max-width: 1600px) {
    .payment-portal-iframe{
        position: relative;
        border-radius: 1rem;
        height: 650px;
        width: 900px;
    } 
}

/* X-Large Screen */
@media screen and (min-width: 1601px) {
    .payment-portal-iframe{
        position: relative;
        border-radius: 1rem;
        height: 650px;
        width: 900px;
    } 
}