#scrolling-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 20px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    animation: slideUpBanner 0.4s ease-out;
}

@media (max-width: 992px) {
    #scrolling-banner {
        display: none !important;
    }
}

@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.scrolling-banner__inner {
    max-width: 800px;
    width: 100%;
    min-height: 124px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.scrolling-banner__image {
    max-width: 138px;
    width: 100%;
    position: relative;
}

.scrolling-banner__image img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 172px;
    transform: translateY(36%);
    object-fit: contain;
    object-position: center;
}

.scrolling-banner__text  {
    max-width: 384px;
    width: 100%;
}

.scrolling-banner__text p {
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: #000;
    text-align: center;
    margin: 0;
}

.scrolling-banner__button {
    display: inline-block;
    max-width: 150px;
    width: 100%;
    padding: 14px 0;
    border-radius: 6px;
    color: #fff;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

@media (any-hover: hover){
    .scrolling-banner__button:hover {
        opacity: 0.9;
        box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
    }
}

.scrolling-banner__close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #7F7F7F;
    line-height: 1;
    padding: 4px;
}

@media (any-hover: hover){
    .scrolling-banner__close:hover {
        color: #000;
    }
}
