﻿/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

.cookieBanner .banner {
    position: fixed;
    width: 350px;
    z-index: 9999;
    background: var(--color1);
    bottom: 0;
    right: 50px;
    padding: 20px 20px 40px 20px;
    border-radius: 10px 10px 0 0;
    -webkit-box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
    box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
}

.cookieBanner h4 {
    font-family: 'Lato', sans-serif;
    font-size: 25px;
    font-weight: 900;
    margin: 0 0 20px 0;
}

.cookieBanner p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
}

.cookieBanner .cookieBtns {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.cookieBanner #readMorePopup, .cookieBanner #settingsPopup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

.cookieBanner .popupContent {
    width: 70vw;
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 9999;
    background: var(--color1);
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 20px 20px 40px 20px;
    border-radius: 10px;
    -webkit-box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
    box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
}

    .cookieBanner .popupContent h4 {
        text-align: center;
    }

.showCookieBanner {
    color: #111;
    text-align: center;
    width: 100%;
}

.cookieDescGroup {
    margin: 0 0 50px 0;
}

    .cookieDescGroup h5 {
        font-weight: 700;
    }

    .cookieDescGroup h6 {
        font-size: 14px;
        font-weight: 700;
    }

    .cookieDescGroup ul li {
        margin: 0 0 10px 0;
    }

.cookieName {
    font-weight: 600;
}

.cookiesShow {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.cookiesHide {
    display: none !important;
}


@media only screen and (max-width: 768px) {
    .cookieBanner .banner {
        position: fixed;
        width: 100%;
        bottom: 0;
        right: 0;
    }

    .cookieBanner .popupContent {
        width: 90vw;
        max-height: 90vh;
        height: 90vh;
        overflow-x: hidden;
        border-radius: 0;
    }

    .cookieDescGroup ul li {
        word-break: break-word;
    }

    .cookieBanner .popupContent h4 {
        margin-top: 40px;
    }
}
