.cookie-box{
    position: fixed;
    bottom:0;
    width: 100%;
    margin: 0;
    padding: 20px 60px 20px 40px;
    background: #fff;
    box-sizing: border-box;
    text-align: left;
    color: #333;
    line-height: 1.8;
    transform: translateY(100vh);
    box-shadow: 0 -3px 15px rgba(0,0,0,0.1);
    z-index:10;
    font-size: 13px;
}
.cookie-box p{
    margin: 0;
    padding: 0;
}
.cookie-box a{
    color: #333;
}
.cookie-box.show-box{
    animation-name: fadeUpAnimation;
    animation-duration:1s;
    animation-fill-mode:forwards;
}
.cookie-box.hide-box{
    animation-name: fadeDownAnimation;
    animation-duration:1s;
    animation-fill-mode:forwards;
}
button{
    position:absolute;;
    top:20px;
    right:20px;
    width:35px;
    height:35px;
    border: 1px solid #e7e7e7;
    margin:0 5px;
    padding: 8px 12px 7px;
    border: 1px solid #ccc;
    background-color: #58aec9;
    color: #fff;
    line-height: 1.2;
    box-sizing: border-box;
    cursor: pointer;
border-radius: 18px;
}

button.cookie-out{background-color: #999;}
button:hover{
    opacity: 0.8;
}

@keyframes fadeUpAnimation{
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeDownAnimation{
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(150px);
        display: none;
    }
}