/* v 2024-03-27 */

.cookie-consent {font-family: sans-serif;font-size: 14px;display: flex;position: fixed;top:0;bottom: 0;left: 0;right: 0;color: #111;z-index: 100000;background: rgba(0,0,0,0.4);backdrop-filter: blur(4px);justify-content: center;align-items: center;text-align: center;}
.cookie-consent__container {display: block;background: #fff;padding: 30px;box-shadow: 0 0 20px rgba(0,0,0,0.3);max-width: 90%;width: 520px;border-radius: 20px;}
.cookie-consent.hidden {display: none;}
.cookie-consent .content {line-height: 1.5;}
.cookie-consent .content .title {font-weight: 700;margin-bottom: 10px;}
.cookie-consent .content .text {}
.cookie-consent .content .text a {color: inherit;}
.cookie-consent .options {align-items: center;justify-content: center;display: flex;margin-top: 20px;}
.cookie-consent .options a {display: flex;margin: 0 0.5rem;transition: 0.3s all;}
.cookie-consent .options .consent-btn {background: #000;color: #fff;padding: 8px 16px;text-decoration: none;font-family: 'basebloomregular', sans-serif;text-transform: uppercase;border-radius: 17px;}
.cookie-consent .options .consent-btn:hover {background: #252525;color: #fff;}
.cookie-consent .options .consent-btn.consent-btn-decline {background: #000;color: #fff;}
.cookie-consent .options .consent-btn.consent-btn-decline:hover {background: #252525;color: #fff;}

@media screen and (max-width: 768px){
    .cookie-consent {flex-direction: column;}
    .cookie-consent .options {margin-top: 10px;}
    .cookie-consent .options a {margin-left: 0;margin-right: 0.5rem;}
}