.cookie {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
}

.cookie .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
    background-color: #faf9f5;
    padding: 15px 20px;
    box-shadow: -2px 2px 10px 1px rgba(163, 168, 179, .71);
}

.cookie .container p {
    width: 100%;
    font-size: 14px;
    margin-bottom: 0;
    padding-left: 7px;
    margin-right: 20px;
}

.cookie .container p a {
	text-decoration: underline;
}

.cookie .container p a:hover {
	text-decoration: none;
}

.cookie .container .button__fill_curve {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 7px 30px 5px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    border: none;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 500;
    text-transform: uppercase;
    height: 50px;
    letter-spacing: .01em;
    -webkit-transition: all .35s ease-out;
    -o-transition: all .35s ease-out;
    transition: all .35s ease-out;
    color: #8b6e5c;
    background-color: #d5b59e;
	min-width: 150px;
}

.cookie .container .button__fill_curve:hover {
    color: #9c7f6d;
    background-color: #e6c6af;
}