.cookieConsentContainer {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 375px;
    height: auto;
    background-color: #FFFFFF;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding: 15px;
    display: none;
    text-align: center;
    z-index: 100000;
}
.cookieConsentContainer h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}
.cookieConsentContainer p {
    font-size: 1.1rem;
}
.cookieConsentContainer #cookie-accept {
    display: block;
    width: 100%;
    background-color: var(--mainColor);
    padding: 10px;
    border-radius: 7px;
    font-size: 1.25rem;
    cursor: pointer;
    margin-bottom: 15px;
}
.cookieConsentContainer #cookie-accept:hover {
    background-color: #944fa9;
}

/* cookie list */
.cookieConsentContainer ul {
    display: inline-block;
    margin: 10px 0 15px 0;
    padding: 0;
    list-style: none;
}
.cookieConsentContainer ul li {
    font-size: 1.2rem;
    position: relative;
}
.cookieConsentContainer ul li input {
    opacity: 0;
    position: absolute;
}

/* fancy checkbox */
.cookie-checkmark ul li label {
    cursor: pointer;
}
.cookieConsentContainer ul li {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1.2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.cookieConsentContainer ul li input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.cookieConsentContainer .cookie-checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 5px;
}
.cookieConsentContainer ul li input:checked ~ .cookie-checkmark {
    background-color: #d7d7d7;
}
.cookie-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.cookieConsentContainer ul li input:checked ~ .cookie-checkmark:after {
    display: block;
}
.cookieConsentContainer ul li .cookie-checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #a4a4a4;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* cookie links */
#cookie-links {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center
}
#cookie-links a, #cookie-links p {
    color: #a4a4a4;
    font-weight: 100;
    transition: color .2s ease-in-out;
}
#cookie-links p {
    margin: 0 7px;
}
#cookie-links a:hover {
    color: var(--mainColor);
}

@media only screen and (max-width: 375px) {
    .cookieConsentContainer {
        width: 100%;
    }
    .cookieConsentContainer h3 {
        font-size: 1.4rem;
    }
}