[x-cloak] {
    display: none !important;
}

/* Set the initial styles for the nav */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    z-index: 100;
    transform: translateX(-100%);
    /* Hide menu off-screen */
    transition: transform 0.3s ease;
    /* Smooth sliding */
}

#nav.show {
    transform: translateX(0);
    background-color: #ffffff;
}

#close-menu {
    position: fixed;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 101;
}

/* Ensure the hamburger is positioned top left */
.left-div {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    z-index: 102;
    font-size: 44px;
}

.close-sign {
    font-size: 55px;
}

.close-sign2 {
    display: none;
}

.hidden {
    display: none;
}

@media (min-width: 1200px) {
    .left-div {
        display: none;
    }

    #nav {
        transform: none;
        position: static;
        width: 25%;
        height: auto;
        z-index: auto;
    }
}

@media (max-width: 1024px) {
    .close-sign2 {
        display: block;
    }
}

.flash {
    animation: flash-color 1s infinite alternate;
}

@keyframes flash-color {
    0% {
        color: white;
    }

    100% {
        color: red;
    }
}

header {
    padding: 5px 5px 5px 0px;
    min-height: 72px;
    width: 100%;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
.back_to_top {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 2;
    width: 60px;
    height: 60px;
    font-size: 40px;
    text-align: center;
    line-height: 60px;
    color: #444;
    cursor: pointer;
    border-radius: 2px;
    display: none;
}

.back_to_top:hover {
}

.back_to_top-show {
    display: block;
}

/* Ne nyúljon a main.css-hez: inkább izolált, fix banner */
#clarityCookieBanner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    padding: 12px;
    box-sizing: border-box;
}
#clarityCookieBannerInner {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
    padding: 14px 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.ccb-text {
    flex: 1;
    min-width: 0;
}
.ccb-title {
    font-weight: 700;
    margin-bottom: 4px;
}
.ccb-desc {
    font-size: 14px;
    line-height: 1.35;
    color: #333;
}
.ccb-links {
    margin-top: 6px;
}
.ccb-link {
    font-size: 13px;
    color: #1f4b99;
    text-decoration: underline;
}

.ccb-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.ccb-btn {
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: #fff;
}
.ccb-btn--primary {
    background: #111;
    color: #fff;
    border-color: #111;
}
.ccb-btn--ghost {
    background: #fff;
    color: #111;
}

@media (max-width: 720px) {
    #clarityCookieBannerInner {
        flex-direction: column;
        align-items: stretch;
    }
    .ccb-actions {
        width: 100%;
    }
    .ccb-btn {
        width: 100%;
    }
}
