.top-bar-right{padding: 11px 0 0 0; font-size: 18px;}
.top-bar-right a:hover{color: #000;}
.title-bar{padding: 1rem;}


/*Обработка всплывашки про куки*/

.cookie-notice {
    position: fixed;
    bottom: -100px; 
    left: 0;
    right: 0;
    /*background: rgba(0, 0, 0, 0.9);*/
        background-color: #e6e6e6;
    color: #000;
    padding: 15px;
    z-index: 9999;
    transition: bottom 0.3s ease-in-out;
    border-top:1px solid #000
}

.cookie-notice.show {
    bottom: 0;
}

.cookie-notice {
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999999999;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.cookie-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-notice__close {
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.cookie-notice__close:hover {
    opacity: 0.7;
}


.cookie-notice__buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-notice__accept {
    background: #4CAF50;
        background: #767676;
    color: #fefefe;
    /*color: white;*/
    border: none;
    padding: 8px 16px;
    /*border-radius: 4px;*/
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-notice__accept:hover {
    /*background: #45a049;*/
    background: #595858;    
    
}

@media (max-width: 768px) {
    .cookie-notice__content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cookie-notice__close {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}
