@charset "utf-8";
#cookie {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    max-width: 500px;
    width: 100%;
    position: fixed;
    top: 50px;
    left: 50%;
    font-weight: 400;
    text-align: left;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 5000;
    background-color: var(--white);
    z-index: 1900;
    color: var(--greyMid2);
    padding: 20px;
    border-radius: 10px;
    overflow-y: auto;
}

#cookie .buttonContent,
#cookie .configContent {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#cookie .buttonContent {
    flex-direction: row;
}

#cookie .configContent {
    padding: 10px 0;
}

#cookie .configContent div.cookieConfig {
    font-size: 16px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 10px 0
}

#cookie .configContent div.cookieConfig a {
    font-size: 14px !important;
    color: var(--greyMid);
}

#cookie .cookieTitel {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#cookie .cookieTitel img {
    width: 50px;
    margin-right: 10px
}

#cookie label.nonactiv {
    color: var(--greyMid3)
}

#cookie label.checkbox input:checked~.checkmark {
    border: 1px;
    border-style: solid;
    border-color: var(--maincolor);
}

#cookie label.checkbox .checkmark {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: var(--white);
    border-radius: 5px;
}

#cookie label.checkbox .checkmark::after {
    content: "";
    display: none;
    position: absolute;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid var(--maincolor);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#cookie label.checkbox input:checked~.checkmark::after {
    display: block;
}

#cookieOverlay {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1800;
    opacity: 1;
    background-color: var(--black70);
}

#cookie p {
    margin-top: 0;
    font-size: 16px;
    text-align: justify;
}

#cookie p a {
    font-size: inherit
}

#cookie a.cookie:hover {
    text-decoration: none;
}

#cookie input[type="submit"] {
    height: 40px;
    font-size: 16px;
    border: 0;
    margin-top: 4px;
    padding: 0 15px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    width: 100% !important;
    max-width: 100% !important;
    cursor: pointer;
    border-radius: 5px
}

#cookie input[type="submit"]:first-child {
    background-color: var(--greyMid);
    color: var(--white);
    /*margin-right: 5px*/
}

#cookie input[type="submit"]:last-child {
    background-color: var(--greyMid);
    color: var(--white);
    /*margin-left: 5px*/
}

#cookie input[type="submit"]:first-child:hover,
#cookie input[type="submit"]:last-child:hover {
    background-color: var(--maincolor)
}

#cookie h2 {
    text-transform: uppercase;
    margin: 0;
    color: var(--greyMid);
    font-size: 28px;
    line-height: 28px;
}

#fingerprint {
    text-transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--greyMid);
    border-radius: 50%;
    position: fixed;
    z-index: 1700;
    right: 40px;
    bottom: 20px;
    transition: all 0.3s ease;
    transform: scale(1.0);
}

#fingerprint:hover {
    transform: scale(1.2);
    cursor: pointer;
}

#fingerprint img {
    width: 60%;
}

@media screen and (max-width: 1240px) {
    #fingerprint {
        right: 20px;
    }
}

@media screen and (max-width:500px) {
    #cookie {
        top: 0;
        border-radius: 0;
        padding: 15px;
        overflow-y: auto;
    }
    #fingerprint {
        width: 40px;
        height: 40px
    }
}

@media screen and (max-width: 400px) {
    #cookie .buttonContent,
    #cookie .configContent {
        flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        padding-top: 0
    }
    #cookie .configContent div.cookieConfig:first-child {
        margin-right: 0;
    }
    #cookie .configContent div.cookieConfig:last-child {
        margin-left: 0;
        margin-bottom: 10px
    }
    #cookie input[type="submit"] {
        flex: auto;
        margin: 5px 0 !important;
    }
}

@media screen and (max-height: 650px) {
    #cookie .cookieTitel h2 {
        font-size: 20px;
        line-height: 20px;
    }
    #cookie .cookieTitel img {
        width: 35px
    }
    #cookie p {
        font-size: 14px
    }
}