#cookie_note {
    display: none;
    position: fixed;
    z-index: 100;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_note p {
    margin: 0;
    font-size: 0.7rem;
    text-align: left;
    color: black;
}

#cookie_note .btn-sm {
    display: block;
    margin: 0 auto;
	padding: 10px 30px;
	position: fixed;
    margin: 15px;
	background-image: none;
}

.cookie_accept {
color: #000000;
    background-color: #e4ec54;
    border-style: none !important;
    border-radius: 12px;
    box-shadow: none !important;
    text-transform: uppercase;
    transition-duration: 0.2s;
    transition-property: background-color, color, border-color, box-shadow, opacity, transform;
    transition-timing-function: ease-in-out; 
	    width: 120px;
    height: 30px;
    border-radius: 0px;
}

#cookie_note.show {
    display: flex;
    width: 80%;
}

    .cookie-popup {
        display: none; /* Скрыто по умолчанию */
        position: fixed;
        bottom: 0;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        z-index: 1000;
    }

    .cookie-popup.show {
        display: block; /* Показать при наличии класса show */
    }