﻿/* Cookies Consent Notice by Fineshop */

.cookieConsentdiv {
    position: fixed;
    right: 0;
    left: 0;
    bottom: -250px;
    z-index: 50;
    width: 100%;
    max-width: 950px;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    background: rgb(1 5 14 / 80%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: ckUp 0.5s forwards;
    animation-delay: 0.5s;
    -webkit-animation: ckUp 0.5s forwards;
    -webkit-animation-delay: 0.5s;
    height: max-content;
    border-radius: 10px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
}

@media screen and (min-width:768px) {
    .cookieConsentdiv {
        animation: ckdeskUp 1s forwards;
        animation-delay: 0.5s;
        -webkit-animation: ckdeskUp 0.5s forwards;
        -webkit-animation-delay: 0.5;
        border-radius: 10px;
    }
}

.cookieConsentdiv .ckCont svg {
    width: 50px;
    height: 50px;
    fill: #ccc;
    stroke: #ccc;
    stroke-width: 0.5;
}

.ckCont h2 {
    margin: 0;
    color: #ccc;
    font-size: 1.0rem;
    font-weight: 800;
    font-family: inherit
}

.ckCont p {
    margin: 10px 0;
    line-height: 1.7em;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: inherit
}

.cookieConsentdiv .btn {
    display: inline-flex;
    align-items: center;
    margin: 5px;
    padding: 5px 15px;
    outline: 0;
    border: 0;
    border-radius: 2px;
    line-height: 20px;
    font-size: 13px;
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    margin-left: 8px;
}

    .cookieConsentdiv .btn:hover {
        opacity: .8;
        transform: scale(0.97)
    }

    .cookieConsentdiv .btn.decline {
        color: #fff;
        margin-left: 8px;
        background-color: #C8102E;
        border: 0px solid #767676
    }

        .cookieConsentdiv .btn.decline:hover {
            border-color: #482dff
        }

#cookieConsentdiv .accept {
    border: 0px solid #767676
}

/*Animation Handy*/
@-webkit-keyframes ckUp {
    100% {
        bottom: 0
    }
}

@keyframes ckUp {
    100% {
        bottom: 0
    }
}

/*Animation Desktop*/
@-webkit-keyframes ckdeskUp {
    100% {
        bottom: 40%
    }
}

@keyframes ckdeskUp {
    100% {
        bottom: 40%
    }
}

#pageOverlay {
    position: fixed; /* Über den Inhalt legen */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Halbtransparentes Schwarz */
    z-index: 100; /* Stellen Sie sicher, dass es über allen anderen Inhalten liegt */
}

.cookieConsentdiv {
    z-index: 999;
}
