.single-product-acf
{
    margin-bottom: 10px;
    border-bottom: 1px solid #efefef;
    position: relative;
}
.rewards-carousel
{
    display: flex;
    flex-direction: row;
    align-items: start;
    flex-wrap: nowrap;
    overflow: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.rewards-carousel::-webkit-scrollbar
{
    display: none;
}
.rewards-nav-buttons
{
    position: absolute;
    bottom: 50%;
    transform: translateY(100%);
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 1;
}
.rewards-nav-buttons button
{
    color: white;
    background-color: #2c2c2c;
    border: none;
    padding: 5px;
    border-radius: 50%!important;
    aspect-ratio: 1;
}
.rewards-nav-buttons button:hover
{  
    color: white;
    background-color: #000;
    border: none;
}
.rewards-nav-buttons button.inactive
{
    opacity: 0;
    pointer-events: none;
    cursor: default;

}
.rewards-smoke-margins
{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: calc(100% - 29px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    pointer-events: none;
}
.rewards-smoke-left
{
    width: 40px;
    background: linear-gradient(0.25turn, #f8f8f8, #f8f8f87a, #f8f8f800);
}
.rewards-smoke-right
{
    width: 40px;
    background: linear-gradient(0.75turn, #f8f8f8, #f8f8f87a, #f8f8f800);
}

.rewards-title
{
    margin-bottom: 0px;
    font-family: "Poppins", Jost;
    font-size: 18px;
    font-weight: 500;
}
.reward-item
{
    width: 150px;
    min-width: 150px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;

    scroll-snap-align: start;
}
.reward-image
{
    /* padding: 10px; */
    height: 100px;
    object-fit: contain;
}
.reward-title
{
    text-align: center;
    font-size: 14.5px;
    font-family: "Inter", "Arial", "Halvetica", sans-serif;
    font-weight: 500;
    color: #777;
    padding: 0px 5px;
}

@media screen and (max-width: 767px)
{
    .rewards-nav-buttons
    {
        display: none;
    }
    .reward-image
    {
        height: 80px;
    }
}