#heli-cookie-consent-banner {
    z-index: 99999999999999999;
}
.heli-cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    font-family: 'NarkisRegular', Fallback, sans-serif !important;
    font-size: 14px;
    line-height: 1.6;
}

.heli-cc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.heli-cc-close {
    position: absolute;
    top: -10px;
    left: 10px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.heli-cc-close:hover {
    opacity: 0.7;
}

.heli-cc-close svg {
    width: 14px;
    height: 14px;
}

.heli-cc-message {
    flex: 1;
    min-width: 250px;
    color: #ffffff;
    font-family: 'NarkisRegular', Fallback, sans-serif !important;
}

.heli-cc-message p {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: 'NarkisRegular', Fallback, sans-serif !important;
}

@media (max-width: 768px) {
    .heli-cc-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .heli-cc-button {
        width: 100%;
    }
}

