*{
    padding:0;
    margin:0;
}
.CookieDiv{
    z-index:15000;
    position: fixed;
    bottom:10px;
    left:10px;
    width:450px;
    height:100px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 0px 15px rgba(210, 210, 210, 0.95);
    border-radius: 15px;
    overflow:hidden;
    animation-name: CookieDivDisplayOpen;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    padding-right:5px;
    padding-top:4px;
    display:none;
}
@keyframes CookieDivDisplayOpen {
    from{
        margin-bottom:-50%;
    }
    70%{
        margin-bottom:10px;
    }
    to{
        margin-bottom:0%;
    }
}
.CookieTopDiv{
    position: relative;
    width: 100%;
    top: 0px;
    height:60px;
    display: flex;
    justify-content: center;    
    align-items: center;  
    font-size: 20px;
    padding-left: 3px;
}
.CookieBottomDiv{
    position: relative;
    width: 100%;
    top: 0px;
    height:40px;
    display: flex;
    justify-content: end;    
    align-items: flex-end;  
}
.CookieBottomDiv button{
    position: relative;
    font-size: 20px;
    text-align: center;
    background-color: rgba(210, 210, 210, 0);
    border-style:none;
    padding-top:5px;
    padding-right:0px;
    padding-bottom:5px;
    padding-left:10px;
    border-radius: 10px;
    transition: 0.2s linear;
    cursor: pointer;
    color:#B7C9F0;
    margin-bottom: 5px;
    margin-right: 0px;
}
.CookieBottomDiv button:hover{
    background-color: rgba(210, 222, 249, 0.30);
}
@media (max-width:1000px){
    .CookieDiv{
    width:calc(100% - 20px);
}
}