/****** DSGVO Popup ******/
#cookie-consent{
    position: fixed;
    background-color: #fff;
    color: #575756;
    width: calc(100vw - 40px);
    padding: 20px;
    text-align: center;
    display: none;
    box-sizing:border-box;
    animation: cookieAnimation .6s forwards ease-out;
    z-index: 1551;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 20px;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.2);
}
#cookie-consent h2 {
    font-family: "Ubuntu","Times New Roman",monospace;
    position: relative;
    font-size: 34px;
}
#cookie-consent h2.cookie-icon{
    padding-bottom: 90px;
}
#cookie-consent h2.cookie-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: calc(50% - 35px);
    width: 70px;
    height: 70px;
    background-image: url("/online/web/theme/files/icon-cookie.svg");
    background-size: contain;
}
@media screen and (min-width: 1024px) {
    #cookie-consent{
        width:50vw;
    }
}
#cookie-consent .icon-close{
    background-image: url("/online/web/theme/files/icon-close.svg");
    background-size: contain;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    position: absolute;
    right: -15px;
    top: -15px;
    background-color: #000;
    display: block;
    outline: 0;
    border: 0;
    transition: all .3s ease;
    cursor: pointer;
    overflow: hidden;
}
#cookie-consent .icon-close:hover{
    background-color: var(--specialColor);
}

#cookie-consent #cookie-consent-screen2{
    display: none;
    font-size: 16px;
}
@media screen and (min-width: 1024px) {
    #cookie-consent #cookie-consent-screen2{
        font-size: 16px;
    }
}
#cookie-consent label{
    position: relative;
    display: block;
    height: 30px;
}
#cookie-consent label input{
    display: none;
}
#cookie-consent label input + .cookie-slider{
    background-color: red;
}
#cookie-consent label input:checked + .cookie-slider{
    background-color: #2e9935;
}
#cookie-consent .disabled{
    background-color: #cbcbcb !important;
}
#cookie-consent label input + .cookie-slider::before{
    border-radius: 50%;
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 2px;
    top: 2px;
    transition: .4s;
    background-color: #fff;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,.24);
    display: block;
    box-sizing: content-box;
    transform: translateX(0);
    cursor: pointer;
}
#cookie-consent label input:checked + .cookie-slider::before{
    transform: translateX(20px);
}
#cookie-consent label input + .cookie-slider::after{
    position: absolute;
    content: attr(data-text-disabled);
    color: red;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
}
#cookie-consent label input:checked + .cookie-slider::after{
    content: attr(data-text-enable);
    color: #2e9935;
}
#cookie-consent .disabled::after{
    color: #b2b2b2 !important;
}
#cookie-consent  .cookie-round{
    border-radius: 34px;
    cursor: pointer;
    display: block;
    width: 50px;
    height: 30px;
    transition: .4s;
    margin:0;
    padding: 0;
    box-shadow: 1px 1px transparent;
    font-family: inherit;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    font-size: 100%;
    line-height: 1;
    color: #000;
    text-align: left;
    white-space: normal;
    position: relative;
}
#cookie-consent .cookie-box{
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    background-color: #fff;
    color: #000;
    padding: 5px 20px;
    box-sizing: border-box;

}
#cookie-consent .cookie-container{
    position: relative;
    flex-direction:column;
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #e3e3e3;
}
#cookie-consent .cookie-container:last-of-type{
    border-bottom: 0;
}
#cookie-consent .cookie-container .cookie-item-1{
    position: relative;
    flex: 0 0 calc(59%);
    text-align: left;
    margin-bottom: 10px;
}
#cookie-consent .cookie-container .cookie-item-2{
    position: relative;
    flex: 0 0 calc(41%);
    text-align: left;
}
@media screen and (min-width: 1024px) {
    #cookie-consent .cookie-container .cookie-item-1{
        margin-bottom: 0;
        margin-top: 4px;
    }
    #cookie-consent .cookie-container .cookie-item-2{
        margin-bottom: 0;
    }
    #cookie-consent .cookie-box{
        width: 480px;
    }
    #cookie-consent .cookie-container{
        flex-direction:row;
    }
}
#cookie-consent a{
    color: var(--mainBackground);
    text-decoration: underline;
}
#cookie-consent .standard-button{
    text-decoration: none;
    background-color: var(--mainBackground);
    color: var(--mainColor);
    box-shadow: none;
}
#cookie-consent button.standard-button{
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 0;
}
#cookie-consent button#dsgvo_accept,#cookie-consent button.save{
    background-color: #9c1006;
    color: #fff;
}
.cookie-confict{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    border: 0 solid #CCFF00;
}
.cookie-confict div{
    border: 1px dashed #fff;
    padding: 15px;
    border-radius: 0;
}
.cookie-confict strong{
    margin-bottom: 15px !important;
    font-weight: 700;
    display: block;
    font-size: 110%;
}
.cookie-confict iframe{
    border: 0;
}
@keyframes cookieAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}