@charset "UTF-8";

#tx_cookies_showPermanent {
    display: none;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1040; /* higher than z-index of Bootstrap header */
}

#tx_cookies {
    position: relative;
    top: 0; /* oder bottom:0;*/
    width: auto;
    z-index: 9999;
    -webkit-box-shadow: 0px 1px 20px 0px #4e4e4e;
    -moz-box-shadow: 0px 1px 20px 0px #4e4e4e;
    box-shadow: 0px 1px 20px 0px #4e4e4e;
}

#tx_cookies_inner {
    position: relative;
    background: #111111;
    padding: 15px;
    border: 1px solid #111111;
    color: #FFF;
}

a.moreLink {
    font-weight: bold;
}

#tx_cookies input[type="checkbox"] {
    float: left;
    margin-right: 3px;
}
#tx_cookies button,
#tx_cookies input[type="submit"] {
    border: 0;
    cursor: pointer;
    border: 2px solid #FFF;
    color: #FFF;
}
#tx_cookies #tx_cookies_close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 99;
    color: #FFF;
    display: none;
}

#tx_cookies .button {
    padding-top: 0.875rem;
    padding-right: 1.75rem;
    padding-bottom: 0.9375rem;
    padding-left: 1.75rem;
    font-size: 0.8125rem;
}
#tx_cookies .grid-container {
    padding-right: .9375rem;
    padding-left: .9375rem;
    max-width: 90rem;
    margin: 0 auto;
}

.typo3-messages {
    display: none;
}

@media screen and (max-width: 1024px) {
    #tx_cookies {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    #tx_cookies {
        position: relative;
    }
}


/* animation slideUp*/
/*

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(66px);
        transform: translateY(66px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideUp {
    0% {
        -webkit-transform: translateY(66px);
        -ms-transform: translateY(66px);
        transform: translateY(66px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

#tx_cookies_inner,
#tx_cookies,
#tx_cookies_close {
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
    -o-animation-duration: 0.8s;
    -webkit-animation-name: slideUp;
    animation-name: slideUp;
}
*/

/* animation slideDown*/

@-webkit-keyframes slideDown {
    0% {
        margin-top: -66px;
    }
    100% {
        margin-top: 0;
    }
}
@keyframes slideDown {
    0% {
        margin-top: -66px;
    }
    100% {
        margin-top: 0px;
    }
}
@-webkit-keyframes growDown {
    0% {
        height: 0;
    }
    100% {
        height: 66px;
    }
}
@keyframes growDown {
    0% {
        height: 0;
    }
    100% {
        height: 66px;
    }
}

#tx_cookies_inner {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-name: slideDown;
    animation-name: slideDown;
}

#tx_cookies_inner_wrapper {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-name: growDown;
    animation-name: growDown;
}
