﻿.cookie_container {
    /* z-index: 21474836 !important; */
    z-index: 9999 !important;
    position: fixed;
    right: 0;
    bottom: 0;
    top: unset;
    max-width: 300px;
    margin: 0;
    background-color: var(--footer-bg);
    color: white;
    padding-bottom: 8px;
    border-top-left-radius: 12px;
}

@media (max-width: 768px) {
    .cookie_container {
        max-width: 215px;
        bottom: 200px;
    }
}

.c_n_ {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
     
    font-size: 14px;
    line-height: 19px;
}

.info-hoder a {
    text-decoration: underline;
    color: var(--accent);
}

.close-button {
    display: block;
    margin-top: 0px;
    border: none;
    border-radius: 4px;
    background-color: #ff7e0f;
    color: white;
    font-size: 90%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
    top: 7px;
    right: 11px;
}

.info-hoder {
    text-align: left;
    padding-right: 41px;
    padding-left: 11px;
}


    .close-button:hover {
        background-color: #e66e0c;
    }
