.szechenyi-layer.float {
    position: fixed;
    top: initial !important;
    bottom: 15px;
}

.szechenyi-layer {
    position: fixed;
    bottom: 20px;
    left: 0;
    display: block;
    box-shadow: 0 .625em 1.875em #000;
    z-index: 9999;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 300ms ease, transform 300ms ease;
}

.szechenyi-layer.float .close-layer {
    display: block;
}

.szechenyi-layer .close-layer {
    font-size: 33px;
    line-height: 1.1;
    position: absolute;
    top: -21px;
    right: -15px;
    /* display: none; */
    width: 40px;
    height: 40px;
    text-align: center;
    color: var(--primary-coral);
    border-radius: 40px;
    background-color: #fff;
    text-decoration: none;
}

/* Hidden state (fade + slide) */
.sze-hidden {
    opacity: 0;
    transform: translateX(-150px);
    pointer-events: none;
}

.szechenyi-layer img {
    display: block;
    height: 90px;
    width: auto;
}

/* Small screens: make it float fixed */
@media (max-width: 768px) {
    .szechenyi-layer {
        position: fixed;
        bottom: 15px;
        left: 10px;
    }

    .szechenyi-layer .close-layer {
        display: block;
    }
}
