/* COOKIE NOTICE */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    border-radius: 8px;
    z-index: 1000; 
    width: 500px;
    padding: 10px 50px;
    border: 1px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.cookie-notice .cookie-notice-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    text-align: center;
    padding: 20px;
    margin: auto;
}

.cookie-notice .cookie-notice-container .cookie-notice-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    margin: auto;
    background-color: #000;
}

.cookie-notice .cookie-notice-container .cookie-notice-title img {
    height: 70px;
    width: 70px;
}

.cookie-notice .cookie-notice-container .cookie-notice-title h3 {
    font-size: 30px;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

.cookie-notice .cookie-notice-container p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #fff;
    margin: auto;
}

.cookie-notice .cookie-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: auto;
    padding: .75rem 0;
}

.cookie-notice .cookie-cta-container .cookie-btn {
    width: 140px;
    border-radius: 8px;
    border: 1px solid #23ce6b;
    box-shadow:  rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
}

.cookie-notice .cookie-cta-container .cookie-btn:hover {
    cursor: pointer;
}

.cookie-notice .cookie-cta-container .cookie-btn p {
    color: #fff;
    font-family: Arial, sans-serif
}

.cookie-notice .cookie-cta-container .cookie-btn.cookie-accept {
    background-color: #23ce6b;
    letter-spacing: 1px;
}

.cookie-notice .cookie-cta-container .cookie-btn.cookie-accept p {
    font-size: 20px;
    color: #000;
}

.cookie-notice .cookie-cta-container .cookie-btn.cookie-reject {
    border: 1px solid #828387;
}

.cookie-notice .cookie-cta-container .cookie-btn.cookie-reject p {
    font-size: 14px;
    color: #828387;
}

@media (max-width: 768px) { 

    .cookie-notice {
        width: 100%;
        left: 0;
        transform: translate(0);
        padding: 5px;
        border-radius: 0;
    }
}