
.hinweis-cookies {
    background: rgba(255,255,255,0.97);
    border-top: 1px rgba(31,33,30,0.11) solid;
    width: auto;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
    padding: 25px 70px 25px 62px;
    display: none;
}

.hinweis-cookies > div {
    display: flex;
}

.hinweis-cookies h2 {
    width: 230px;
    flex: 0 0 auto;
    font-size: 21px;
    font-weight: 400;
    color: #000;
}

.hinweis-cookies p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.385;
    color: rgba(0,0,0,0.6);
    text-align: justify;
    flex: 1;
    width: 100%;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin: 0;
    padding: 0 44px 0 0;
}

.hinweis-cookies p a {
    color: rgba(0,0,0,0.6);
    text-decoration: underline;
}

.hinweis-cookies p a:hover {
    color: rgba(0,0,0,0.9);
}

.agreed-btn {
    background: #333333;
    border-radius: 3px;
    font-size: 15px;
    line-height:28px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    width: 158px;
    height: 38px;
    padding: 5px 0;
    margin-top: 3px;
}

.agreed-btn:hover {
    color: #fff;
}

.h-close {
    width: 40px;
    height: 35px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.h-close:before,
.h-close:after {
    content: '';
    background: #b2b2b2;
    width: 16px;
    height: 2px;
    position: absolute;
    left: 10px;
    top: 18px;
}

.h-close:before {
    transform: rotate(-45deg);
}

.h-close:after {
    transform: rotate(45deg);
}

@media (max-width: 1100px) {
    .hinweis-cookies {
        padding-left: 30px;
        padding-right: 50px;
    }
    
    .hinweis-cookies h2 {
        width: 210px;
    }
    
    .hinweis-cookies p {
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .hinweis-cookies {
        padding: 20px 15px;
    }
    
    .hinweis-cookies > div {
        display: block;
    }
    
    .hinweis-cookies h2 {
        font-size: 16px;
        width: auto;
        margin-bottom: 8px;
        padding-bottom: 0;
    }
    
    .hinweis-cookies p {
        font-size: 12px;
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .agreed-btn {
        display: inline-block;
        font-size: 13px;
        width: 130px;
        height: 30px;
        padding: 0;
    }
}