.cookie_notice {
    position: fixed;
    z-index: 9999999;
    bottom: 0;
    left: 0;
    right: 0;
    color: #000000;
    background: #e0e0e0;
    border-top: 4px solid #ffffff;
}

.cookie_notice .container {
    display: flex;
    width: 70%;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
}

.cookie_notice .container .cookie_text {
    font-size: 14px;
}

.cookie_notice .container .cookie_text a {
    color: #000000;
    text-decoration: underline;
}

.cookie_notice .container .cookie_text a:hover {
    text-decoration: none;
}

.cookie_notice .container .cookie_btn {
    display: inline-block;
    margin-left: 20px;
    text-decoration: none;
    font-size: 13px;
    padding: 4px 12px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #000000;
}

@media screen and (max-width: 1200px) {
    .cookie_notice .container {
        width: 80%;
    }
}

@media screen and (max-width: 900px) {
    .cookie_notice .container {
        width: 100%;
    }
}