.cookie {
    display: flex;
    position: fixed;
    z-index: 200;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 90%;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    background-color: #fefefe;
    border: 1px #a0a0bb solid;
    z-index: 99999;
}

.cookie a,
.cookie .cookie_text {
    text-align: center;
}

.cookie .cookie_btn {
    cursor: pointer;
    margin: 0 0 0 20px;
    background-color: #1e73be;
    border: none;
    color: #fff;
    padding: 7px 14px;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: 600;
    white-space: nowrap;
}

.cookie a {
    text-decoration: underline;
}

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

@media (max-width: 1279px) {
    .cookie {
        gap: 10px;
        flex-direction: column;
    }
    .cookie .cookie_btn {
        margin-left: 0;
    }

}

@media (max-width: 767px) {
    .cookie {
        width: 95%;
        padding: 20px;
    }
}