#cookie_note {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    /*width: 85%;*/
    transform: translateX(-50%);
    padding: 10px 20px 10px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 99;
}

#cookie_note p {
    margin: 0;
    text-align: center;
    color: white;
    /*width: 70%;*/
    font-size: 1rem;
	padding: 0;
	line-height: unset;
}

#cookie_note p a {
	color: white;
}

#cookie_note p a:hover {
	color: #106466;
}

.cookie_accept {
    /*width: 12%;*/
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #106466;
    border: 1px solid transparent;
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-left: 10px;
}

.cookie_accept:hover {
    color: #fff;
    background-color: #073031;
    border-color: #073031;
    cursor: pointer;
}

.cookie_accept:focus {
    color: #fff;
    background-color: #073031;
    border-color: #073031;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}


#cookie_note.show_cook {
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 575px) {
    .cookie_accept {
        width: 30%;
    }

    #cookie_note.show_cook {
        width: 90%;
    }

    #cookie_note.show_cook {
        flex-direction: column;
    }

    .cookie_accept {
        margin: 5px 0 0 0;
    }

    #cookie_note {
    padding: 10px;
}
