.cookie {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #6ca438;
    text-align: center;
    padding: 10px 40px;
    max-height: 125px;
    transition: 0.2s;
    overflow: hidden;
}

.cookie p,
.cookie a {
    color: white;
    margin: 0;
    font-size: 16px;
}

.cookie p > a {
	font-weight: bold;
    text-decoration: none;
}

@media (max-width: 650px) {
    .cookie p,
    .cookie a {
    font-size: 14px;
    }
}

.cookie a {
    text-decoration: underline;
}

.cookie > a {
    position: absolute;
    right: 0px;
    top: 0px;
    margin-top: 5px;
    margin-right: 10px;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    background-color: transparent;
    transition: 0.3s;
}

.cookie > a:hover {
    background-color: rgba(1,1,1,0.2);
}

.cookie > a > i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cookie.red {
	background-color: #bd0000;
}