:root {
    --primary-color: #C323FF;
    --secondary-color: #3C0E31;
    --bs-secondary-rgb: #3C0E31;
    --focus-color: #3C0E31;
    --error-color: #FF2142;
    --success-color: #4CAF50;
    --text-color: #3C0E31;
    --purple: #c323ff; /* purple */
    --purple-light: #d565ff; /* purple-light */
    --pink: #ff21a1; /* pink */
    --pink-light: #ff63bd; /* pink-light */
    --blue-dark: #0082b2; /* blue-dark */
    --blue-light: #00ceff; /* blue-light */
    --mint: #a5ffc6; /* mint */
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

@font-face {
    font-family: 'Red Hat Display Medium';
    font-style: normal;
    font-weight: 500;
    src: local('Red Hat Display Medium'), url('../fonts/RedHatDisplayMedium.woff') format('woff');
}

@font-face {
    font-family: 'Red Hat Display Bold';
    font-style: normal;
    font-weight: 700;
    src: local('Red Hat Display Bold'), url('../fonts/RedHatDisplayBold.woff') format('woff');
}

@font-face {
    font-style: normal;
    font-weight: 800;
    font-family: 'Red Hat Display ExtraBold';
    src: local('Red Hat Display ExtraBold'), url('../fonts/RedHatDisplayExtraBold.woff') format('woff');
}

@font-face {
    font-style: normal;
    font-weight: 400;
    font-family: 'Passion One';
    src: local('Passion One'), url('../fonts/PassionOneMedium.woff') format('woff');
}

@font-face {
    font-style: normal;
    font-weight: 700;
    font-family: 'Passion One';
    src: local('Passion One'), url('../fonts/PassionOneBold.woff') format('woff');
}
/**/


/* --------------------------------------------------------------
STYLES 
-------------------------------------------------------------- */

html, body {
    font-family: 'Red Hat Display Medium', Times;
    color: var(--secondary-color);
    background-color: #FFFFFF;
    font-size: 0.95rem;
    padding: 0;
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-x: hidden
}

h1, h2, h3, h4 {
    font-family: 'Passion One', Courier;
    font-weight: 700;
}

p, h5, h6 {
    font-weight: 400;
}
a {
    color: var(--primary-color)
}
/* clamp (MIN FONT SIZE, PREFERRED FONT SIZE (13.0% of width) , MAX FONT SIZE) */

h1 {
    font-size: clamp(3.2rem, 11vw, 5.5rem);
    line-height: 1.15;
    font-weight: 700;
}

h2 {
    font-size: clamp(2.8rem, 9vw, 4.0rem);
    line-height: 1.2;
    font-weight: 700;
}

h3 {
    font-size: clamp(2.2rem, 7vw, 3.0rem);
    line-height: 1.25;
    font-weight: 700;
}

h4 {
    font-size: clamp(1.8rem, 5.5vw, 2.5rem);
    line-height: 1.3;
    font-weight: 500;
}

h5 {
    font-size: clamp(1.25rem, 4.5vw, 2.0rem);
    line-height: 1.35;
    font-weight: 500;
}

h6 {
    font-size: clamp(1.2rem, 3.5vw, 1.2rem);
    line-height: 1.4;
    font-weight: 500;
}

table, td, td, .table > :not(caption) > * > * {
    color: unset;
    background: unset;
    background-color: unset;
}

.txt-white,
.txt-white a,
.txt-white p,
.txt-white h1,
.txt-white h2,
.txt-white h3,
.txt-white h4,
.txt-white h5,
.txt-white h6,
a.txt-white,
p.txt-white,
h1.txt-white,
h2.txt-white,
h3.txt-white,
h4.txt-white,
h5.txt-white,
h6.txt-white {
    color: #FFFFFF;
}

.txt-secondary, .txt-secondary a, .txt-secondary p, .txt-secondary h1, .txt-secondary h2, .txt-secondary h3, .txt-secondary h4, .txt-secondary h5, .txt-secondary h6,
a.txt-secondary, p.txt-secondary, h1.txt-secondary, h2.txt-secondary, h3.txt-secondary, h4.txt-secondary, h5.txt-secondary, h6.txt-secondary h6 {
    color: var(--secondary-color);
}

a {
    text-decoration: none;
}
/*
main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: flex-start;
    width: 100%;
    background-color: #FFFFFF;
    margin: 0 auto;
}*/

.gradient-purple-pink {
    background: linear-gradient(45deg, var(--purple) 50%, var(--pink) 100%);
}

.gradient-purple-purple {
    background: linear-gradient(45deg, var(--purple) 50%, var(--purple-light) 100%);
}

.gradient-pink-pink {
    background: linear-gradient(45deg, var(--pink) 50%, var(--pink-light) 100%);
}

.gradient-purple-blue {
    background: linear-gradient(45deg, var(--purple) 50%, var(--blue-dark) 100%);
}

.gradient-blue {
    background: linear-gradient(45deg, var(--blue-light) 50%, var(--blue-dark) 100%);
}


/* Call to action */
.bg-trans {
    background-image: url("../img/awesim-bg-trans.svg");
    background-size: 50%;
    background-attachment: fixed;
}

.bg-purple {
    background-color: var(--purple);
}

.bg-pink {
    background-color: var(--pink);
}

.bg-blue-dark {
    background-color: var(--blue-dark);
}

.bg-blue-light {
    background-color: var(--blue-light);
}

.bg-mint {
    background-color: var(--mint);
}

.txt-secondary {
    color: var(--secondary-color) !important;
}

.txt-purple {
    color: var(--purple) !important;
}

.txt-pink {
    color: var(--pink) !important;
}

.txt-blue-dark {
    color: var(--blue-dark);
}

.txt-blue-light {
    color: var(--blue-light);
}

.txt-mint {
    color: var(--mint);
}

.txt-success {
    color: #3c763d !important;
}

.txt-info {
    color: #31708f !important;
}

.txt-warning {
    color: #8a6d3b !important;
}

.txt-danger {
    color: var(--error-color) !important;
}

.rand:before {
    content: 'R ';
}

/* NAV BAR 
------------------------------------------------------------------------------------------------------- */
.nav-link {
    text-transform: uppercase;
    color: var(--text-color);
    font-weight: 800;
}

    .nav-link:hover {
        color: var(--primary-color);
    }

.navbar-brand img {
    width: 150px;
}

@media (min-width: 992px) {
    .navbar .navbar-brand {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .navbar .navbar-toggler {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .navbar-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar-nav {
        width: 100%
    }

    .nav-link {
        width: 100%;
        border-bottom: 1px solid #cccccc
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        margin: -10px 10px 0 10px;
    }
}
/* ------------------------------------------------------------------------------------------------------- */

.social-icons a {
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.25);
    width: 36px;
    height: 36px;
    display: inline-block;
    align-content: center;
    text-align: center;
    border-radius: 999rem;
    margin: 2px;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

    .social-icons a:hover {
        color: #FFF;
        background-color: rgba(0, 0, 0, 0.55);
    }

.app-icons img {
    width: 150px;
    max-width: 150px;
    margin: 5px;
}

.btn {
    border-radius: 50rem;
    margin-bottom: 10px
}

.btn-primary {
    background-color: var(--primary-color);
    border-radius: 50rem;
    border: none;
}

    .btn-primary:hover, .btn-primary:focus {
        background-color: var(--secondary-color);
        border: none;
    }

.btn-secondary, .btn.active {
    background-color: var(--secondary-color);
    border-radius: 50rem;
    border: none;
}

    .btn-secondary:hover, .btn-secondary:focus {
        background-color: #FFFFFF;
        border: none;
        color: var(--secondary-color)
    }

.btn-white {
    background-color: #FFF;
    color: var(--primary-color) !important;
    border-radius: 50rem;
    border: none;
}

    .btn-white:hover, .btn-white:focus,
    a.btn-white:hover, a.btn-white:focus {
        color: #FFF !important;
        background-color: var(--secondary-color);
        border: none;
    }

.bg-primary {
    background-color: var(--primary-color) !important;
    color: #FFFFFF;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

    .bg-secondary .btn-white:hover {
        background: var(--primary-color) !important;
    }

footer h6 {
    margin: 0 0 15px 0;
}

footer p {
    margin: 0 0 5px 0;
}

footer a {
    color: var(--primary-color);
}

/* Team
-----------------------------------------------------------------*/

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 0.5rem;
    justify-content: space-between;
}

.team-card {
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    min-width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem;
    height: 100%; /* for equal height */
    transition: box-shadow 0.3s;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

    .team-card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        transform: scale(1.05);
    }

    .team-card img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid rgba(255, 255, 255, 0.3);
        margin: 5px 0 0 0;
    }

    /* Ensure consistent heights */
    .team-card .card-body {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        flex-grow: 1;
    }

    .team-card h4 {
        font-size: 18px;
        margin: 10px 0 0 0;
    }

    .team-card span {
        font-size: 12px !important;
        margin: 0 0 5px 0;
    }

/* Flip-card for team // NOT approved
    
-----------------------------------------------------------------*/

.flip-card {
    perspective: 1000px;
    max-width: 300px;
    height: 350px;
    margin: 0 auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

    .flip-card-inner.flipped {
        transform: rotateY(180deg);
    }

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
}

.flip-card-front {
    background: linear-gradient(45deg, var(--purple) 0%, var(--pink) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-back {
    background: linear-gradient(45deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.steps .step-number {
    display: block;
    width: 125px;
    height: 125px;
    line-height: 125px;
    border-radius: 100rem;
    border: 5px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    font-size: 50px;
    font-family: 'Passion One'
}

.flip-card .icons a {
    color: #fff;
    width: 50px;
    height: 50px;
    margin: 5px 5px;
    font-size: 20px;
    transition: transform 0.3s ease;
    border: 2px solid #FFF;
    border-radius: 999rem;
    padding: 10px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.25);
}

    .flip-card .icons a:hover {
        transform: scale(1.2);
    }
/* SCROLLING LOGOS */
.logo-carousel {
    width: 100%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .logo-carousel .logo-container {
        max-width: 800px;
        overflow: hidden;
        margin: 0 auto;
        mask-image: linear-gradient( to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0) );
    }

.logo-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.logo {
    flex: 0 0 auto;
    width: 150px;
    margin: 0 10px;
}

    .logo img {
        width: 100%;
        height: auto;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* How it works 5 columns
--------------------------------------------------------- */
/* Make carousel fill almost full screen height */
/* Base styles for home hero carousel */
.home-carousel {
    position: relative;
    height: 85vh;
    min-height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    background-attachment: fixed;
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}

.home-carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    backface-visibility: hidden;
    perspective: 1000px;
}

.leading {
    line-height: 100%;
    font-size: clamp(3.2rem, 13vw, 6.0rem);
}

.home-carousel-item .leading small {
    font-size: clamp(4rem, 13vw, 7rem);
    font-weight: 400;
    margin: 0 0 0 0
}

.home-carousel-item.active,
.home-carousel-item-next,
.home-carousel-item-prev {
    display: block;
}

.home-carousel-fade .home-carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease;
}

    .home-carousel-fade .home-carousel-item.active {
        opacity: 1;
        z-index: 1;
    }

.home-carousel .btn {
    padding: 12px 16px;
    font-size: 21px;
}
/* Overlap effect for the "how it works" section */
.how-it-works {
    /*height: 100vh;*/
    min-height: 500px;
    align-content: center;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

    .feature {
        width: 50%;
        padding-top: .25rem;
        padding-bottom: .25rem;
        align-items: stretch;
        display: flex;
        text-align: center;
    }

    .how-it-works img {
        padding: 0rem .5rem 0.5rem .5rem;
        width: 100px;
        margin: 0 auto
    }

.feature img {
    padding: 0rem .5rem 0.5rem .5rem;
    width: 100px;
    margin: 0 auto
}

.card {
    box-shadow: 0px 5px 10px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.how-it-works .feature .card {
    box-shadow: 0px 5px 5px rgba(0,0,0,0.10);
    border: 3px solid var(--mint);
    width: 100%;
    border-radius: 10px;
}
.border-mint {
    box-shadow: 0px 5px 5px rgba(0,0,0,0.10);
    border: 3px solid var(--mint);
    border-radius:10px;
}

.how-it-works .feature .card-body {
    flex-direction: column;
    display: flex;
}

.how-it-works .feature button {
    width: 100%;
    margin: auto 0 0 0;
}

.home-carousel img.number-one {
    max-width: 340px;
}

@media (max-width: 767.98px) {
    .home-carousel {
        height: auto;
        min-height: 500px;
    }

        .home-carousel img.number-one {
            max-width: 150px;
        }

    .how-it-works .feature {
        width: 50%;
        flex: auto;
    }

        .how-it-works .feature .card-body {
            padding: 8px;
        }
}
/* PAYMENTS */

.payment-section .payment-heading {
    font-size: clamp(2.7rem, 6vw, 4rem);
    line-height: 1.3;
    font-weight: 400;
}

.payment-section .phone-img {
    max-height: 350px;
}

.payment-section .feature-item h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 100%;
    color: var(--secondary-color);
    font-weight: 400;
    margin: 0 1.0rem 0 0;
}

.payment-section .feature-item div.icon {
    width: 85px;
    height: 85px;
    margin-right:10px;
}

    .payment-section .feature-item div.icon img {
        width:100%;
    }

.payment-section .feature-item h5 {
    font-size: clamp(1.5rem, 2.5vw, 1.3rem);
    font-weight: 400;
    font-family: 'Passion One';
    color: var(--secondary-color);
    margin: 0;
}
.rewards-section h5 {
    font-size: clamp(1.5rem, 2.5vw, 1.3rem);
    font-weight: 400;
    font-family: 'Passion One';
    color: var(--secondary-color);
    margin: 0;
}

.payment-section .feature-item p {
    margin: 0;
    font-weight: 700;
}

.payment-section .feature-item hr {
    border: 2px solid rgba(255, 255, 255, 0.95);
    padding: 0;
}


/* TESTIMONIALS */
.testimonials {
    width: 100%;
    position: relative;
    padding: 30px 10px;
    background: #f1f1f1
}

.swiper {
    width: 100%;
    position: relative;
    padding: 20px 0 25px 0;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 300px;
}

.swiper-slide {
    height: auto !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .swiper-slide .card {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active, .swiper-button-next, .swiper-button-prev {
    color: #fff;
    background: var(--pink);
}

.swiper-button-next, .swiper-button-prev {
    border-radius: 50rem;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 70%;
    transform: translateY(-70%);
    z-index: 10;
}

.swiper-button-next {
    right: -30px;
}

.swiper-button-prev {
    left: -30px;
}

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 30px;
    }

.swiper-slide .card {
    border-radius: 2rem !important;
    padding: 0.5rem !important;
    border: 0 !important;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25) !important;
}

.swiper-slide i.fa {
    color: var(--pink);
    font-size: calc(1.375rem + 1.5vw);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    box-shadow: 0 10px 10px rgba(0,0,0,0.25);
    border-bottom: 1px solid #ccc
}

    .contact .info-container {
        background-color: var(--mint);
        background: var(--mint);
        height: 100%;
        padding: 20px;
    }

    .contact .info-item {
        width: 100%;
        margin-bottom: 20px;
        padding: 20px;
        background-color: rgba(0,0,0,0.10);
    }

    .contact .info-item:hover {
        background-color: rgba(0,0,0,0.15);
    }

        .contact .info-item:last-child {
            margin-bottom: 0;
        }

        .contact .info-item i {
            font-size: 20px;
            background-color: rgba(255,255,255,0.5);
            width: 44px;
            height: 44px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            transition: all 0.3s ease-in-out;
            margin-right: 15px;
        }

        .contact .info-item h3 {
            font-size: 20px;
            padding: 0;
            font-size: 18px;
            font-weight: 300;
            margin-bottom: 5px;
        }

        .contact .info-item p {
            padding: 0;
            margin-bottom: 0;
            font-size: 14px;
        }

        .contact .info-item:hover i {
            background: #FFFFFF;
            color: var(--primary-color);
        }

.navbar-toggler {
    background: var(--mint);
    background-size: 55% !important;
    border-radius: 50rem;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
}

    .navbar-toggler:focus {
        border: unset;
        box-shadow: unset
    }
/* -- filter gallery
    --------------------------------------------------------------------------- */

.rewards-section ul li {
    margin:7px 0;
}

.rewards-section .rewards-heading {
    font-size: clamp(2.7rem, 6vw, 4.2rem);
    line-height: 100%;
    font-weight: 400;
}
.rewards-item {
    display: flex;
    align-items: flex-start;    
    margin: 7px 0 7px 0;
    min-height:80px;
}

/* Icon Column */
.rewards-icon {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    text-align: right;
}

    /* Icon Image */
    .rewards-icon img {
        width: 100%;
        height: auto;
        max-width: 65px;
    }

/* Content Column */
.rewards-content {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.rewards-content h5, .rewards-content p {
    margin: 0
}
@media (max-width: 768px) {
    .rewards-icon {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .rewards-content {
        flex: 0 0 75%;
        max-width: 75%;
        margin: 7px 0 10px 0
    }

}
/* -- filter gallery
    --------------------------------------------------------------------------- */

#showRewardItems {
    min-height: 400px
}

.filter {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    /*background-color: rgba(60, 14, 49, 0.95);*/
    background-color: rgba(165, 255, 198, 0.85);
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 0 0 10px 10px;
    padding: 10px 0;
    text-align:center;
}

.filter {
    margin-bottom: 10px;
}

    .filter:hover .overlay {
        opacity: 1;
    }

    .filter.active-overlay .overlay {
        opacity: 1;
    }

    .filter .card {
        border-radius: 12px;
        padding: 5px;
        border: 3px solid var(--mint);
    }

        .filter .card img {
            border-radius: 8px;
            height: 290px; 
            object-fit: cover;
        }
        @media (max-width: 767.98px) {
            .filter .card img {
                height: 160px;
            }
        }
.filter .card h5 {
    font-size: 19px;
    line-height: 19px;
    margin: 0;
    font-family: 'Passion One';
    color: var(--text-color);
}

    .filter .card p {
        margin: 0;
    }

    .filter .rand:before {
        content: "R";
        margin: 0;
    }

    .img-fluid.mobile {
        width: 100%;
        height: auto
    }


    @media (max-width: 991.98px) {
        .img-fluid.mobile {
            max-width: 370px;
        }
    }


    /* ---------------------------------------------------------------------- */
    /*  MONTHLY TABLES 
/* ---------------------------------------------------------------------- */

    .ls-pt-container {
        padding-right: 0;
        padding-left: 0;
        margin-right: auto;
        margin-left: auto;
    }

        .ls-pt-container * {
            position: relative;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .ls-pt-container ul {
            list-style: none;
        }

        .ls-pt-container .ls-column {
            float: left;
            width: 50%;
            text-align: center;
            border-right: 1px solid white;
            margin-bottom: 20px;
        }

            .ls-pt-container .ls-column:last-child {
                border-right: none;
            }

            .ls-pt-container .ls-column p {
                padding: 12px 5px 11px 5px;
                color: #FFFFFF;
            }

            .ls-pt-container .ls-column ul li {
                padding: 12px 10px;
                height: 80px;
                display: grid;
                background: rgba(0,0,0,0.01);
                border-top: 1px solid white;
            }

                .ls-pt-container .ls-column ul li:nth-child(odd) {
                    background: rgba(0,0,0,0.09);
                }

    /* Extra Small Devices, Phones */
    @media only screen and (min-width: 580px) {
        .ls-pt-container .ls-column {
            width: 25%;
        }
    }
    /* Small Devices, Tablets */
    @media only screen and (min-width: 768px) {
        .ls-pt-container .ls-column {
            width: calc(100% / 5);
        }

            .ls-pt-container .ls-column ul li {
                height: 110px;
            }
    }

    #rewardsDropdownContainer {
        display: none;
    }

    #rewardButtons {
        display: block;
    }

    @media (max-width: 768px) {
        #rewardsDropdownContainer {
            display: block;
        }

        #rewardButtons {
            display: none;
        }
    }