.sidebar-cats_icon img {
    max-width: 30px;
    max-height: 30px;
    vertical-align: middle;
}

.topnotice_title {
 background: linear-gradient(to right, #000000, #49423d); 
  padding: 3px; /* Отступы для лучшего вида */
  font-size: 20px;
}

.header_configurator {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.header_configurator-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 6px;
    background-color: #0033ff;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.header_configurator-btn:hover {
    box-shadow: 0 4px 10px rgba(31, 92, 255, 0.25);
}

.header_configurator-btn i {
    margin-right: 8px;
}

.header_configurator-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.7) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: button-shine 6s infinite;
}

@keyframes button-shine {
    0% {
        left: -120%;
    }
    15% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}