body img {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;  
}
/* Stylesheet: mystyle Modified On 2017-06-01 12:50:33 */
.cookie_notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    font-size: 14px;
    line-height: 1.5;
    animation: slideInUp 0.3s ease-out;
    border-top: 1px solid #e9ecef;
}

.cookie_notice .container {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.cookie_notice .container.pt-10 {
    padding-top: 0 !important;
    margin-bottom: 0;
}

.cookie_notice a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.cookie_notice a:hover {
    text-decoration: underline;
}

.cookie_notice .pt-10 {
    padding-top: 0 !important;
    margin-left: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

.cookie_notice .btn {
    background-color: #2B96CC;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie_notice .btn:hover {
    background-color: #2483b8;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(43, 150, 204, 0.2);
}

/* Анимация появления */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Анимация скрытия */
@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie_notice.hiding {
    animation: slideOutDown 0.3s ease-out forwards;
}

/* Адаптивность для Bootstrap 3 */
@media (max-width: 768px) {
    .cookie_notice .container {
        display: block;
        text-align: center;
    }
    
    .cookie_notice .pt-10 {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    
    .cookie_notice .btn {
        display: inline-block;
        padding: 10px 30px;
    }
    
    .cookie_notice {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .cookie_notice {
        font-size: 13px;
        padding: 15px 0;
    }
    
    .cookie_notice .btn {
        font-size: 13px;
        padding: 9px 25px;
    }
}
/* Stylesheet: cookie Modified On 2026-01-31 15:34:27 */
