﻿.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    color: #fff;
    padding: 1rem;
    z-index: 2147483647; /* max top-most value */
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

    .cookie-consent > p {
        font-size: 1rem;
        margin-bottom: 0px !important;
    }
    .cookie-consent > a {
        font-size:1.1rem;
    }
    .cookie-consent h6 {
        color:#17d927;
       
    }
    .cookie-consent > button {
        font-size:1.1rem;
    }

.cookie-consent-text {
    font-size: 0.8rem;
    margin-bottom: 0px !important;
}
.cookie-consent-text a {
    font-size:0.86rem;
}

@media(min-width:992px){
    .cookie-consent-text {
        font-size:1rem;
    }
    .cookie-consent-text {
        font-size:1rem;
    }
    .cookie-consent > p {
        font-size: 1rem;
    }
    .cookie-consent  a {
        font-size:1.1rem;
    }
    .cookie-consent h6 {
        font-size: 20px;
    }
    .cookie-consent > button {
        font-size:1.3rem;
    }
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent.hiding {
    transform: translateY(100%);
}

.cookie-settings {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

    .cookie-settings.show {
        max-height: 350px;
        display: block;
    }

.form-check-input:checked {
    background-color: #5cb874;
    border-color: #ffffff;
}

.btn-accept-cookies, .btn-reject-all-cookies, .btn-cookie-settings {
    padding: 8px 40px 8px 40px !important;
    font-weight: 500 !important;
}

.btn-cookie-settings {
    padding: 8px 5px 8px 5px !important;
}

.overlay {
    position: relative;
    backdrop-filter:blur(4px);
    box-shadow:10px 20px 10px grey;
    filter:blur(4px);
    height: 100vh;
    width: 100vw;
    z-index: 2147483000;
    pointer-events: none;
    margin:0px !important;
    overflow:hidden;
}
