#cookiebar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 25px;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    background-color: #18274a;
}

#cookiebar-content {
    flex-shrink: 1;
    flex-grow: 1;
    color: #ffffff;
}

#cookiebar-operation {
    display: flex;
    margin-left: 50px;
    flex-shrink: 0;
    flex-grow: 0;
    text-align: center;
}

#cookiebar-reject {
}


#cookiebar-accept {
    margin-left: 20px;
}

.cookiebar-btn {
    padding: 12px 10px;
    cursor: pointer;
    transition: 300ms;
    min-width: 125px;
    background-color: #495A6B;
    border-color: #495A6B;
    color: #ffffff;
    font-weight: 600;
}
.cookiebar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .15);
}

@media (max-width: 640px) {
    #cookiebar {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
    }

    #cookiebar-content {
        text-align: center;
    }
    #cookiebar-operation {
        margin-left: 0;
        margin-top: 20px;
    }
}
