/* ------------------------------------------------------------------------------ */
/* COOKIES POPUP */
/* ------------------------------------------------------------------------------ */

.cookies-popup { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background-color: #000; color: #fff; z-index: 100000; border-top-left-radius: 20px; border-top-right-radius: 20px; }

.cookies-popup-content { display: flex; justify-content: flex-end; align-items: center; padding: 20px; font-size: 12px; position: relative; z-index: 100001; gap: 20px;}

.cookies-popup-content a { color: #15ef43; text-decoration: none; margin-right: 15px; }

.cookies-popup-content a:hover { color: #15ef43; text-decoration: underline;}

.cookies-text {width:100%; font-size: 12px; line-height: 1.25; }

.cookies-text a { color: #15ef43!important; }

#agree-cookies { background-color: #15ef43; color: #000; padding: 10px 20px; border: none; cursor: pointer; min-width: 100px; font-size: 12px; border-radius: 3px; }

#agree-cookies:hover { background-color: #fff; color: #000; }

#disagree-cookies { background-color: #15ef43; color: #000; padding: 10px 20px; border: none; cursor: pointer; min-width: 100px; font-size: 12px; border-radius: 3px; }

#disagree-cookies:hover { background-color: #fff; color: #000; }

@media screen and (max-width: 768px) { .cookies-popup-content { display: flex; flex-direction: column; align-items: flex-start; } }

.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.5); z-index: 10000; pointer-events: auto; }
