.cookie_notice {
    position: fixed;
    z-index: 9999999;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    background: #0B3F37;
    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: 15px;
}

.cookie_notice .container .cookie_text a {
    color: white;
    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: 10px 45px;
    border: 0;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #FF6B00;
    cursor: pointer;
}

.cookie_notice .container .cookie_btn:hover {
    background-color: #c55301;
}

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

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