@charset "UTF-8";
/* CSS Document */

.cookie-consent { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 999999; max-width: 900px; margin: 0 auto; padding: 22px; background: #ffffff; border-radius: 10px; box-shadow: 0 5px 30px rgba(0, 0, 0, 0.20); font-family: Arial, sans-serif; } .cookie-consent-content { display: flex; align-items: center; justify-content: space-between; gap: 25px; } .cookie-consent strong { display: block; margin-bottom: 8px; font-size: 18px; } .cookie-consent p { margin: 0; color: #555; font-size: 14px; line-height: 1.5; } .cookie-consent-buttons { display: flex; gap: 10px; flex-shrink: 0; } .cookie-consent button { padding: 11px 20px; border-radius: 5px; cursor: pointer; font-size: 14px; font-weight: 600; } #cookie-accept { border: 0; background: #1a73e8; color: #ffffff; } #cookie-essential { border: 1px solid #ccc; background: #f5f5f5; color: #333; } @media (max-width: 700px) { .cookie-consent-content { flex-direction: column; align-items: stretch; } .cookie-consent-buttons { flex-direction: column; } .cookie-consent button { width: 100%; } }


/* ========================================== COOKIE SETTINGS FLOATING BUTTON ========================================== */ #cookie-settings-button { position: fixed; left: 20px; bottom: 20px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; padding: 0; border: none; border-radius: 50%; background: #222; color: #fff; cursor: pointer; z-index: 999999; box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25); transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; } /* Hover */ #cookie-settings-button:hover { transform: scale(1.08); background: #000; box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35); } /* Keyboard accessibility */ #cookie-settings-button:focus { outline: 3px solid rgba(0, 123, 255, 0.45); outline-offset: 3px; } /* Mobile */ @media (max-width: 600px) { #cookie-settings-button { right: 15px; bottom: 15px; width: 44px; height: 44px; } #cookie-settings-button svg { width: 21px; height: 21px; } }


/* ==========================================
   COOKIE SETTINGS BUTTON
========================================== */

#cookie-settings-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999998;

    width: 50px;
    height: 50px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: #222222 !important;
    color: #ffffff !important;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

#cookie-settings-button:hover {
    background: #000000;

    transform: scale(1.07);

    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.30);
}

#cookie-settings-button:focus {
    outline: 3px solid rgba(0, 0, 0, 0.20);
    outline-offset: 3px;
}

.cookie-settings-icon {
    font-size: 23px;
    line-height: 1;
}


/* =========================================================
   POPUP BACKGROUND / OVERLAY
========================================================= */

#cookie-settings-overlay {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.60);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    z-index: 999999;

    animation: cookieOverlayFade 0.25s ease;
}


/* =========================================================
   COOKIE POPUP
========================================================= */

#cookie-settings-popup {
    position: relative;

    width: 100%;
    max-width: 540px;

    max-height: calc(100vh - 40px);

    background: #ffffff;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.30);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #222222;

    animation: cookiePopupSlide 0.25s ease;
}


/* =========================================================
   POPUP HEADER
========================================================= */

.cookie-popup-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding: 28px 30px 24px;

    border-bottom: 1px solid #e8e8e8;
}

.cookie-popup-header h2 {
    margin: 0 0 7px;

    font-size: 24px;

    line-height: 1.25;

    font-weight: 600;

    color: #1f1f1f;
}

.cookie-popup-header p {
    margin: 0;

    font-size: 14px;

    line-height: 1.5;

    color: #707070;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.cookie-popup-close {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: transparent;

    color: #777777;

    font-size: 29px;

    line-height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.cookie-popup-close:hover {
    background: #f1f1f1;

    color: #111111;
}

.cookie-popup-close:focus {
    outline: 2px solid #555555;
    outline-offset: 2px;
}


/* =========================================================
   COOKIE OPTIONS AREA
========================================================= */

.cookie-popup-content {
    padding: 5px 30px;
}


/* =========================================================
   INDIVIDUAL COOKIE OPTION
========================================================= */

.cookie-option {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 22px 0;

    border-bottom: 1px solid #eeeeee;
}

.cookie-option:last-child {
    border-bottom: none;
}


/* =========================================================
   COOKIE TEXT
========================================================= */

.cookie-option-text {
    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 6px;
}

.cookie-option-text strong {
    display: block;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 600;

    color: #222222;
}

.cookie-option-text span {
    display: block;

    font-size: 13px;

    line-height: 1.55;

    color: #707070;
}


/* =========================================================
   SWITCH
========================================================= */

.cookie-switch {
    position: relative;

    display: block;

    width: 50px;
    height: 28px;

    flex: 0 0 50px;
}

.cookie-switch input {
    position: absolute;

    opacity: 0;

    width: 0;
    height: 0;
}


/* Switch background */

.cookie-slider {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: #cccccc;

    border-radius: 30px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}


/* Switch circle */

.cookie-slider:before {
    content: "";

    position: absolute;

    width: 22px;
    height: 22px;

    left: 3px;
    top: 3px;

    background: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease;
}


/* ON state */

.cookie-switch input:checked + .cookie-slider {
    background: #222222;
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(22px);
}


/* Disabled necessary cookies */

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.65;

    cursor: not-allowed;
}


/* Keyboard focus */

.cookie-switch input:focus-visible + .cookie-slider {
    outline: 2px solid #555555;
    outline-offset: 3px;
}


/* =========================================================
   POPUP FOOTER
========================================================= */

.cookie-popup-footer {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    padding: 22px 30px 26px;

    background: #f7f7f7;

    border-top: 1px solid #eeeeee;
}


/* =========================================================
   SAVE BUTTON
========================================================= */

.cookie-save-button {
    min-width: 160px;

    padding: 13px 22px;

    border: none;

    border-radius: 6px;

    background: #222222;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.2;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.cookie-save-button:hover {
    background: #000000;

    transform: translateY(-1px);

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.20);
}

.cookie-save-button:active {
    transform: translateY(0);
}

.cookie-save-button:focus {
    outline: 3px solid rgba(0, 0, 0, 0.20);

    outline-offset: 2px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes cookieOverlayFade {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes cookiePopupSlide {

    from {
        opacity: 0;

        transform:
            translateY(20px)
            scale(0.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    #cookie-settings-button {
        width: 48px;
        height: 48px;

        right: 16px;
        bottom: 16px;
    }

    .cookie-settings-icon {
        font-size: 21px;
    }


    #cookie-settings-overlay {
        padding: 15px;
    }


    #cookie-settings-popup {
        max-height: calc(100vh - 30px);

        border-radius: 12px;
    }


    .cookie-popup-header {
        padding: 22px 20px 18px;
    }


    .cookie-popup-header h2 {
        font-size: 21px;
    }


    .cookie-popup-header p {
        font-size: 13px;
    }


    .cookie-popup-content {
        padding: 2px 20px;
    }


    .cookie-option {
        gap: 15px;

        padding: 18px 0;
    }


    .cookie-option-text strong {
        font-size: 14px;
    }


    .cookie-option-text span {
        font-size: 12px;
    }


    .cookie-popup-footer {
        padding: 18px 20px 20px;
    }


    .cookie-save-button {
        width: 100%;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 380px) {

    .cookie-popup-header {
        padding: 20px 16px 16px;
    }

    .cookie-popup-content {
        padding: 0 16px;
    }

    .cookie-popup-footer {
        padding: 16px;
    }

    .cookie-option {
        gap: 10px;
    }

    .cookie-switch {
        width: 46px;
        flex-basis: 46px;
    }

    .cookie-switch input:checked + .cookie-slider:before {
        transform: translateX(18px);
    }

}

.cookie-consent-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    width: 180px;
}

.cookie-consent-buttons button {
    display: block;
    width: 100%;
    min-width: 180px;
    box-sizing: border-box;
    padding: 7px 18px;
    border: 1px solid #222;
    border-radius: 5px;
    background: #fff;
    color: #222;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

/* Allow All */
#cookie-accept {
    background: #0095c7;
    color: #fff;
}

#cookie-accept:hover {
    background: #000;
}

/* Cookie Settings */
#cookie-settings {
    background: #fff;
    color: #555;
	border-color: #ccc;
}

#cookie-settings:hover {
    background: #ccc;
	color:#222;
}

/* Deny */
#cookie-essential {
    background: transparent;
    color: #555;
    border-color: #ccc;
}

#cookie-essential:hover {
    background: #000;
    color: #fff;
}


/* Mobile */
@media (max-width: 600px) {

    .cookie-consent-buttons {
        width: 100%;
    }

    .cookie-consent-buttons button {
        width: 100%;
        min-width: 0;
    }

}