﻿
.bf-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

    .bf-banner:hover {
        background-color: #1a1a1a;
    }

.bf-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bf-highlight {
    color: #fff;
    font-weight: 800;
    background-color: #D0A43A;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

.bf-icon {
    color: #D0A43A;
    font-weight: 800;
    font-size: 25px;
    /*width: 24px;
    height: 24px;
    fill: #D0A43A;*/
    animation: pulse 1s infinite;
}

body > form, #headerElm, body > .cta-graphics {
    margin-top: 60px !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .bf-content {
        font-size: 14px;
        gap: 10px;
    }

    .bf-highlight {
        display: inline-block;
        margin-top: 2px;
    }

    .bf-banner {
        height: auto;
        padding: 10px 0;
    }
    body > form, #headerElm, body > .cta-graphics {
        margin-top: 48px !important;
    }
}

.cta-graphics.bfriday.right {
    background-image: url('/themes/default/images/bf/bf_pravy.jpg');
}
.cta-graphics.bfriday.left {
    background-image: url('/themes/default/images/bf/bf_levy.jpg');
}
