.cookie-container {
    font-size: 14px;
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(21,21,21,.9);
    color: #f5f6fa;
    padding: 5px 0 15px 0;
    transition: 400ms;
    z-index: 9999999;
}

.cookie-container.active {
    bottom: 0;
}

.cookie-container span{
    top: 14px;
    position: relative;
}

.cookie-container a {
    color: #f5f6fa;
    text-decoration: underline!important;
}

.cookie-btn {
    border: 0;
    color: #000;
    background: #ffec0b;
    border: 2px solid #ffec0b;
    margin-top: 12px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.cookie-btn:hover {
    color: #ffec0b;
    background: #000;
    border: 2px solid #ffec0b;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}