.cookiebanner{
    position:fixed;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: 0 0 2em rgba(5,0,31,0.15);
    border-radius: 2px;
    width:40%;
    max-width: 900px;
    min-height: 30%;
    bottom: 50px;
    right: 50px;
    background-color:#e1e1e1;
    padding:15px;
    transition: all 0.5s ease-in;
    font-size: 12px;
    z-index: 999;
}
#cookietext{
    text-align: center;
}
.cookiebanner h3{
    margin-bottom:25px;
}
.cookie{
    margin-bottom:10px;  
}
.cookiedescription{
    display: none;
    max-height: 0px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.cookie p{
    margin-bottom:5px;
}
.cookiebuttons{
    display: flex;
    justify-content: right;
    padding-right: 20px;
}
.cookiebutton{
    border: none;
    border-radius: 6px;
    box-shadow: 0 0 2em rgba(75, 45, 0, 0.15);
    width: 120px;
    height: 40px;
    margin: 10px;
}
.cookietype{
    margin-bottom:15px;
    display: flex;
    justify-content: space-between;
    padding-right: 25px;
}
.cookiecheckbox{
    display:block;
}
.expand{
    display: block;
    width:20px;
    height:20px;
    align-items: bottom;
}
.expanddown{
    background-color: #000000;
    width:11px;
    height: 1.5px;
    transform: translate(0px,10px)rotate(50deg);
    transition: all 0.3s ease;
}
.expandup{
    background-color: #000000;
    width:11px;
    height: 1.5px;
    transform: translate(7px,8px)rotate(-50deg);
    transition: all 0.3s ease;
}

@media screen and (max-width : 600px){
    .cookiebanner{
        width: 100%;
        right:0;
        bottom: 0;
        margin: 0;
    }
    
}

.expanddowntoggle{
    transform: translate(0px,10px) rotate(-50deg);
    transition: all 0.3s ease;
}

.expanduptoggle{
    transform: translate(7px,8px) rotate(50deg);
    transition: all 0.3s ease;
}

.visibility{
    display: block;
    transition: all 0.3s ease;
}
