:root {
    --cookie-button-shadow: 0px 0px 15px 3px rgba(252, 137, 0, 0.5);
    --cookie-main-color: rgb(252, 137, 0);
}

.footer-template-container #footer-cookie-note {
    display: none !important;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    position: fixed;
    z-index: 99999;
    bottom: 15px;
    transform: translateX(5%);
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    background-color: white;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

.footer-template-container #footer-cookie-note p {
    margin: 0;
    font-size: 0.9rem;
    text-align: left;
    color: black;
}

.footer-template-container #footer-cookie-note a {
    color: var(--cookie-main-color);
}

.footer-template-container #footer-cookie-note.show {
    display: flex !important;
}

.footer-template-container .footer-cookie-accept {
    font-weight: bold;
    color: white;
    background-color: var(--cookie-main-color);
    border: 0;
    border-radius: 20px;
    padding: 10px 20px;
    transition: all 0.6s ease;
}

.footer-template-container .footer-cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: var(--cookie-button-shadow);
}

@media (max-width: 1280px) {
    .footer-template-container #footer-cookie-note {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .footer-template-container #footer-cookie-note {
        flex-direction: column;
    }

    .footer-template-container .footer-cookie-accept {
        width: 50%;
    }
}
