
.lel_filter-settings-header {
   /* background: var(--surface-color);*/
    padding: 0.5rem;
  /*  border-bottom: 1px solid #f0f0f0;*/
    text-align: center;
}

.lel_filter-form {
    width: 100%;
    /*padding-top: 20px;*/
    margin-top: 50px;
}

.lel_filter-form-group {
    width: 100%;
    margin-bottom: 1.75rem;
}
.lel_filter-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}


.lel_filter-loadAddictions_settings-section {
    /* padding: 1.5rem;*/
    border-bottom: 1px solid #f0f0f0;
}
.lel_filter-loadAddictions_settings-section:last-child {
    border-bottom: none;
}
.lel_filter-loadAddictions_section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    /*margin-bottom: 5px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lel_filter-loadAddictions_section-title i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.lel_filter-loadAddictions_interests-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: inherit;
    width: 100%;
    margin-top: 10px;
}
.lel_filter-loadAddictions_interests-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--primary-color);
    color: white;
}
.lel_filter-loadAddictions_interests-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.lel_filter-loadAddictions_selected-interests-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}
.lel_filter-loadAddictions_selected-interests-preview h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.lel_filter-loadAddictions_selected-interests-list {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}







/* Стили для кнопки отправки */
.lel_filter-btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
}
.lel_filter-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
}
.lel_filter-btn-submit:active {
    transform: translateY(0);
}
.lel_filter-btn-submit.loading {
    pointer-events: none;
    opacity: 0.9;
}
.lel_filter-btn-submit.loading .lel_filter-btn-text {
    opacity: 0;
}
.lel_filter-btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.lel_filter-btn-submit.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    transform: translateY(-2px);
}
.lel_filter-btn-submit.success .lel_filter-btn-icon {
    transform: scale(1.3);
    animation: heartbeat 0.5s ease-in-out;
}
.lel_filter-btn-icon {
    transition: all 0.3s ease;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1.3); }
}







.lel_filter-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lel_filter-section-title i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}


.lel_filter-slider-container {
 /*   position: relative;*/
  /*  margin: 2rem 0;*/
    padding: 0 20px;
}
.lel_filter-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.lel_filter-slider-track {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    position: relative;
    margin: 1rem 0;
    width: 100%;
}
.lel_filter-slider-range {
    position: absolute;
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
}
.lel_filter-slider-handle {
    width: 24px;
    height: 24px;
    background: var(--surface-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 2;
    transition: all 0.2s ease;
    margin-left: 0;
    margin-right: 0;
}
.lel_filter-slider-handle:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.lel_filter-slider-handle.active {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 6px 12px rgba(233, 30, 99, 0.4);
}
.lel_filter-slider-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.lel_filter-slider-value::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--primary-color);
}








.lel_filter-slider-container {
    margin-top: 10px;
}

.lel_filter-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.8rem;
    color: #666;
}

.lel_filter-slider-wrapper {
 /*   position: relative;*/
    padding: 10px 0;
}

.lel_filter-slider-track {
    position: relative;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    margin: 0 10px;
}

.lel_filter-slider-range {
    position: absolute;
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    z-index: 1;
}

.lel_filter-slider-handle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--surface-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    cursor: grab;
    z-index: 2;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.lel_filter-slider-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.1);
}

.lel_filter-slider-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
}

.lel_filter-slider-value::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--primary-color);
}