﻿.cookie-popup__container,
.cookie-popup__container-de {
    position: fixed;
    display: none;
    bottom: 0;
    flex-flow: row nowrap;
    justify-content: space-between;
    background-color: #1E1E1E;
    width: 100%;
    height: 60px;
    z-index: 999;
}
.cookie-popup__container.active {
    display: flex;
    align-items: center;
}

.cookie-popup__container span {
    font-size: 0.9rem;
    font-weight: 100;
    line-height: 18px;
}
.cookie-popup__container .ctcc-left-side {
    display: flex;
    /* justify-content: flex-start; */
    /* align-items: center; */
    padding: 0 15px;
    /* width: 90%; */
}
.cookie-popup__container .ctcc-right-side {
    padding: 0;
    width: 10%;
    min-width: 100px;
}
.cookie-popup__text {
    line-height: 18px;
}
.cookie-popup__container .ctcc-more-info-link {
    text-decoration: none;
    font-weight: 300;
    color: white;
    display: inline;
    cursor: pointer;
}
a.cookie-dismiss,
a.cookie-dismiss-de {
    width: 100%;
    display: block;
    text-align: center;
    background-color: var(--green-1);
    height: 60px;
    line-height: 60px;
    color: #2d2d2d !important;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
a.cookie-dismiss::selection {
    background: transparent;
}


@media screen and (max-width: 768px) {
    .cookie-popup__container span {
        font-size: 0.7rem;
    }
}
@media screen and (max-width: 480px){
    .cookie-popup__container-de{
        height: auto;
        padding: 3px;
    }
    a.cookie-dismiss-de {
        height: 90px;
        line-height: 90px;
    }
}