﻿.promotional__banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-content: center;
    height: 80px;
    background-color: #333436;
}
.promotional__banner--content {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}
@media(min-width: 768px) {
    .promotional__banner {
        height: 100px;
    }
}
.promotional__banner--hidden {
    display: none;
}
.promotional__banner-image {
    height: 100%;
}
.promotional__banner-image--mobile {
    display: block;
}
.promotional__banner-image--desktop {
    display: none;
}

.promotional__banner-image--mobile .promotional__banner-image {
    width: 100%;
    max-height: 60px;
}
.promotional__banner-image--desktop .promotional__banner-image {
    max-height: 80px;
}

@media(min-width: 768px) {
    .promotional__banner-image--mobile {
        display: none;
    }
    .promotional__banner-image--desktop {
        display: block;
    }
}

.promotional__banner--active {
    padding-bottom: 110px;
}

/* Add these styles to your CSS file or in a <style> tag */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.promotional__banner {
    animation: slideUp 1s ease-out;
}
    .promotional__banner .close-button {
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: #f60;
        color: white;
        border: none;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        font-size: 20px;
        line-height: 25px;
    }
        @media(min-width: 768px) {
            .promotional__banner .close-button {
                position: absolute;
                top: 10px;
                right: 10px;
                background-color: #f60;
                color: white;
                border: none;
                border-radius: 50%;
                width: 30px;
                height: 30px;
                text-align: center;
                vertical-align: middle;
                cursor: pointer;
                font-size: 20px;
                line-height: 30px;
            }
        }

        
