﻿
.sticky-buy.closed {
    transform: translateY(100%);
}

.sticky-buy {
    width: 100%;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    z-index: 100;
    transition: transform 250ms ease-in-out;
    background-color: white;
    padding: 10px;
}

    .sticky-buy .text-container,
    .sticky-buy .quantity-wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }


    .sticky-buy .quantity-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
        margin-bottom: 40px;
    }

        .sticky-buy .quantity-wrapper p {
            display: none;
            font-size: 24px;
            font-weight: 500;
            line-height: 28px;
        }

    .sticky-buy .download-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        width: 100%;
    }

        .sticky-buy .download-buttons a {
            height: 40px;
        }

        .sticky-buy .download-buttons svg {
            height: 40px;
        }

@media (min-width: 992px) {
    .sticky-buy {
        background-color: white;
        padding: 0 40px;
        max-width: 1600px;
    }

        .sticky-buy .text-container {
            padding: 17.5px 0 !important;
        }

        .sticky-buy .quantity-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            margin-bottom: 0;
        }

            .sticky-buy .quantity-wrapper p {
                display: block;
            }
        .sticky-buy .download-buttons {
            width: auto;
        }

            .sticky-buy .download-buttons a {
                height: 45px;
            }

            .sticky-buy .download-buttons svg {
                height: 45px;
            }

            
    .sticky-buy {
        border-top: solid 1px #F8F8F8;
    }
}


