:root {
    --color-accent: #312e81;
    --color-text: #475569;
    --color-select: #eef2ff;
    --color-elements: #4338ca;
    --color-green:#2f963e;
}


html, body{
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}


h1, h2, h3 {
        font-family: 'Inter', sans-serif;
    /*font-family: 'Manrope', sans-serif;*/
    font-weight: 700;

}


.menu{
    width: 250px;
    min-width: 250px;
    background: #fff;
    height: 100%;
    border-right:1px solid rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.appContent{
    width: 100svw;
    width: 100vw;
    height: 100svh;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: flex;
}

.sectionContent{
    background: #f8fafc;
    height: 100%;
    flex-grow: 1;
    min-width: 0;

}

.menuSection{
    padding: 10px;
    border-bottom:1px solid rgba(0, 0, 0, .1);
}

.menuNav{
    flex-grow: 1;
    margin-top: 20px;
    gap: 7px;
    display: flex;
    flex-direction: column;
}

.menuLogo{
    display: flex;
    align-items: center;
    padding: 20px 0px;
    padding-left: 0px !important;
    justify-content: center;
        flex-direction: column;
}

.menuLogo>svg, .menuLogo>img{
    width: 50%;

}

.menuLogo>span{
    color:#475569; 
    font-size: 0.75em;
    width: 80%;
    text-align: center;
    margin-top: 10px;

}

.menuNavItem{
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #475569;
    height: 50px;
    padding-left: 10px;

}

.lucide-dna{
    color: #475569;   
}

.menu>div{
    padding-left: 20px;
}

.menuNavItemIcon{
    margin-right: 10px;
}

.menuNavItemIcon>svg{width: 20px;}

.menuNavActive{
    color: #4338ca;
    background: #eef2ff;
    font-weight: 600;
    border-radius: 11px;
}

.menuNavActive>.menuNavItemIcon>svg{
    color: #4338ca;  
}

.widgetLogOut{
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 10px;
    border-radius: 20px;
    margin: 20px 0px;
}

.widgetLogOutAva{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: var(--color-elements);
    border-radius: 50px;
    box-sizing: border-box;
    min-width: 40px;
    color: #fff;
}

.widgetLogOutText{
    flex-grow: 1;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    min-width: 0; 
    overflow: hidden;
}

.widgetLogOutText>span:first-child{
    font-weight: 600;
}
.widgetLogOutText>span:last-child{
    font-size: 0.8em;
    color: #475569;
}

.widgetLogOutText span {
    white-space: nowrap;      /* Запрещаем перенос на новую строку */
    overflow: hidden;         /* Скрываем всё, что не влезает */
    text-overflow: ellipsis;  /* Добавляем троеточие (...) */
    display: block;           /* Чтобы span вел себя как блок */
}

.widgetLogOutIcon{
    cursor: pointer;
    margin-left: 10px;
}

.widgetLogOutIcon>svg{
    color: #475569; 
}


/*---------------start--------------*/

.sectionContainer{
    width: 100%;
    height: 100%;
    padding: 20px 40px;
    max-height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
}


.sectionContainer[data-section="start"]{
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 750px;
    margin: auto;
    text-align: center;
    box-sizing: border-box;
}


.startHeadText{
    color: var(--color-accent);
}

.startDescText{
    display: block;
    font-size: 1em;
    color: var(--color-text);
}

.startUploadBox{
    margin-top: 40px;
    width: 100%;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);;
}

.uploadBoxFile{
    min-height: 250px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 20px 0px;
}

.uploadBoxIcon{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-select);
    border-radius: 50px;
}

.uploadBoxIcon>svg{
    width: 70%;
    color: var(--color-elements);
}

.uploadBoxText{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.uploadBoxText>span:first-child{
    font-size: 1.125em;
    font-weight: 600;
}

.uploadBoxText>span:last-child{
    margin-top: 10px;
    font-size: 0.8em;
    color: var(--color-text);
}


.buttonUpload{
    margin-top: 40px;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    box-sizing: border-box;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}


.buttonUploadIcon>svg{
    width: 15px;
    color: #fff;
    display: block;
}

.buttonUploadIcon{
    display: flex;
    align-items: center;
    justify-content: center;
}


#fileResume{
    opacity: 0;  
    cursor: pointer;
    z-index: 1;
    position: absolute;
}



.widgetProgress{
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 20px;
    margin-top: 20px;
    background: #312E81;
    color: #fff;
    background: linear-gradient(90deg, rgba(49, 46, 129, 1) 1%, rgba(0, 0, 0, 1) 100%);
}

.progressContainer{
    display: flex;
    align-items: center;
    width: 100%;
}

.progressInfoBox{
    flex-grow: 1;
    min-width: 0;
}

.progressCompleteBox{
    margin-left: 20px;
    margin-right: 20px;
}


.progressInfoTitleBox{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}


.progressInfoTitleImage{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3a3893;
    border-radius: 7px;
}

.progressInfoTitleImage>svg{
    width: 70%;
    color: #a5b4fc;
}

.progressInfoTitle{
    /*font-family: 'Manrope', sans-serif;*/
    font-size: 1.3em;
    font-weight: 600; 
}


.progressInfoTitlePercent{
    font-size: 0.75em;
    background: rgba(121, 85, 247, 0.7);
    padding: 3px 10px;
    border-radius: 5px;
}

.progressInfoDescBox{
    max-width: 70%;
    font-size: 0.9em;
    color: #fff;
    line-height: 1.2;
    opacity: 0.7;
}

.progressInfoProgressBox{
    max-width: 500px;
    margin-top: 20px;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
}

.progressInfoLine{
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    height: 7px;
    background: #334155;
}

.progressInfoLineFill{
    width: 20%;
    height: 100%;
    background: #2f963e;
}

.progressComplete{
    background: #2f963e;
    color: #fff;
    display: flex;
    gap: 10px;
    padding: 10px 30px;
    box-sizing: border-box;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    font-size: 0.9em;
}



.userResumeInfo{
    display: flex;
    margin-top: 40px;
    flex-direction: column;
}

.userResumeInfoTitle>.titleText{
    font-size: 2em;
    font-weight: 600;
}

.userResumeInfoTitle>.titleTextDesc{
    color: var(--color-text);
    font-size: 0.9em;
    margin-top: 5px;
}


.userResumeWidget, .inputVacancyContainer{
    background: #fff;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 15px;
    min-height: 50px;
    min-width: 250px;
    border: 1px solid #e5e7eb;
    flex: 1;
    min-width: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);

}

.userResumeWidget[data-type="summary"]{
    /*min-width: 60%;*/
    min-width: 100%;
}

.userResumeWidget[data-type="performance"]{
    min-width: 40%;   
}

.userResumeWidget[data-type="price"]{
    min-width: 100%;   
}


.userResumeInfoWidgets{
    display: flex;
    margin-top: 20px;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.userResumeWidgetHead{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.userResumeWidgetTitle{
    font-size: 1.17em;
    font-weight: 600;
    color: var(--color-accent);

}

.userResumeWidgetIcon>svg{
    color: var(--color-accent);  
}


.resumeSummaryText{
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 0.95em;
    line-height: 1.5;
    border: 1px solid #eeeeee;
}


.resumeSummaryTags{
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    gap: 10px;
}

.resumeSummaryTag{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e7ff;
    box-sizing: border-box;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.85em;
    color: var(--color-elements);
}


.resumeSummaryAva{
    height: 100%;
    min-height: 270px;
    width: 250px;
    min-width: 200px;
    background: #6d28d9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
    padding-top: 10%;
    background-image: url('../image/bg.jpg');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.resumeSummaryContainer{
    display: flex;
    align-items: start;
    gap: 40px;
}

.resumeSummaryAvaDivider{
    width: 80%;
    height: 1px;
    background: #fff;
    opacity: 0.5;
    z-index: 5;
}

.resumeSummaryAvaTypeText{
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
    z-index: 5;
}

.resumeSummaryAvaTypeDesc{
    font-size: 0.7em;
    text-align: center;
    margin-top: 7px;
    opacity: 0.7;
    z-index: 5;
}


.resumeSummaryAvaBack{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}


#spiderChart{
    width: 100%;
    min-height: 265px;
}

.resumeSummaryText>span{
    color: var(--color-elements);
    font-weight: 600;
}


.resumeSummaryDomains{
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #d9d9d9;
}


.domainsTitle{
    text-transform: uppercase;
    font-size: 0.8em;
    margin-bottom: 10px;
    opacity: 0.5; 
}


.domainsItems{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.domainsItem{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border: 1px solid #c8c8c8;
    box-sizing: border-box;
    border-radius: 10px;
}

.domainsItemTop{
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85em;
}

.domainsItemIcon>svg{
    width: 12px;
    height: 12px;
}

.domainsItemBottom{
    width: 100%;
    height: 4px;
    background: #f1f5f9;
    margin-top: 3px;
    border-radius: 50px;
}


.domainsItemProgress{
    height: 100%;
    border-radius: 50px;
}

.domainsItem[type="Expert"] svg {
    color: var(--color-green);
    fill: var(--color-green);
}


.domainsItem[type="Expert"] .domainsItemProgress {
    background: var(--color-green);
    width: 88%;
}

.domainsItem[type="Expert"] .domainsItemIcon {
    position: relative;
    top: 1px;
}



.domainsItem[type="Senior"] svg {
    color:var(--color-elements);
    fill: var(--color-elements);
}


.domainsItem[type="Senior"] .domainsItemProgress {
    background: var(--color-elements);
    width: 70%;
}


.domainsItem[type="Middle"] svg {
    fill: #0ea5e9;
    color: #0ea5e9;
}


.domainsItem[type="Middle"] .domainsItemProgress {
    background: #0ea5e9;
    width: 40%;
}

.domainsItem[type="Junior"] svg {
    color: #e2e8f0;
    fill: #e2e8f0;
}


.domainsItem[type="Junior"] .domainsItemProgress {
    background: #e2e8f0;
    width: 10%;
}



.domainsItemAge{
    font-size: 0.7em;
    opacity: 0.5;
    position: relative;
    top: -2px;   
}



.performanceItems{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.performanceItem{
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #fafafa;
}


.performanceDivider{
    height: 100%;
    width: 1px;
    background: rgba(0, 0, 0, .05);
    margin: 0px 20px;
}


.userResumeWidgetContent{
    display: flex;
}


.performanceKeyText{
    font-size: 1.5em;
    font-weight: 600;
    color: var(--color-green);
}

.performanceKey{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 20%;
    max-width: 20%;
    min-width: 20%;
}

.performanceKeyDesc{
    display: flex;
    font-size: 0.8em;
    color: var(--color-text);
}

.performanceDesc{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.performanceDescTitle{
    font-weight: 600;
    font-size: 1.1em;
}

.performanceDescText{
    font-size: 0.9em;
    color: var(--color-text);
}


.priceLineContainer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.priceLineMetrics{
    display: flex;
    position: absolute;
    width: 100%;
    top: 20px;
}

.priceLine{
    width: 100%;
    height: 10px;
    background: #f1f5f9;
    border-radius: 50px;
    position: relative;
    margin-bottom: 20px;
}

.priceLineAi{
    background: #c7d2fe;
    height: 100%;
    border-radius: 50px;
    width: 40%;
    margin-left:30%;
    position: absolute;
}

.priceLineUser{
    background: rgba(5, 150, 105, 0.80);
    height: 20px;
    border-radius: 22px;
    width: 20%;
    margin-left: 40%;
    position: absolute;
    top: -8px;
    display: flex;
    justify-content: center;
    z-index: 5;
    font-size: 0.8em;
    align-items: center;
    color: #fff;
    border: 3px solid #fff;
}

.priceLineUserValue{
    position: absolute;
    top: 40px;
}


.priceLineNumb{
    display: flex;
    flex: 1;
    flex-grow: 1;
    width: 100%;
    justify-content: center;
    font-size: 0.7em;
    color: var(--color-text);
}

.priceLineNumb::after{
    content: '';
    width: 1px;
    height: 6px;
    background: #dadfe4;
    position: absolute;
    top: -7px;
}


.userResumeWidget[data-type="price"]>.userResumeWidgetContent{
    flex-direction: column;

}

.priceLegend{
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
}

.LegendText{
    font-size: 0.7em;
    color: var(--color-text); 
}

.LegendColor{
    height: 3px;
    width: 10px;
    border-radius: 50px;
}

.priceLegendAi>.LegendColor{
    background: #c7d2fe;
}
.priceLegendUser>.LegendColor{
    background: #059669;
}

.priceLegendAi, .priceLegendUser{
    display: flex;
    gap: 3px;
    align-items: center;
    justify-content: center;
}


.sectionHeadTitle{
    font-size: 2em;
    color: var(--color-accent);
    font-weight: 600;
}

.sectionHead{
    margin-top: 20px;
}

.sectionHeadDesc{
    font-size: 0.9em;
    color: var(--color-text);
    line-height: 1.3;
    margin-top: 5px;
}


.inputVacancyContainer{
    margin-top: 40px;
    padding: 0;
    margin-bottom: 70px;
}

.inputVacancyTabs{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f4f4f4;
}
.inputVacancyTab{
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 10px;
    justify-content: center;
    cursor: pointer;
    padding: 20px;
    box-sizing: border-box;
    color: var(--color-text);
}


.inputVacancyContent{
    padding: 20px;
}




.inputVacancyTab.tabActive{
    background: var(--color-select);
    color: var(--color-elements);
    font-weight: 600;
}

.inputVacancyTabs>.inputVacancyTab:first-child{
    border-radius: 10px 0px 0px 0px ;
}
.inputVacancyTabs>.inputVacancyTab:last-child{
    border-radius: 0px 10px 0px 0px ;
}

.inputVacancyElements{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


.inputVacancyUrlInput, .inputVacancyPasteInput{
    height: 50px;
    border: none;
    background: #f8fafc;
    font-size: 1.1em;
    padding-left: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    flex: 1;
}

.inputVacancyUrlInput::placeholder, .inputVacancyPasteInput::placeholder{
    opacity: 0.3;
    font-size: 1.05em;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.inputVacancyUrlInput:focus, .inputVacancyPasteInput:focus{
    outline: none; 
    border-color:var(--color-elements);
}


.inputVacancySubmit{
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    background: var(--color-elements);
    color: #fff;
    gap: 10px;
    font-size: 1.05em;
    box-shadow: 1px 1px var(--color-select);
}


.inputVacancyPasteInput{
    padding-top: 10px;
    height: 150px;
    width: 100%;
    flex-grow: 1;
    min-width: 100%;
    max-height: 200px;
    min-height: 50px;
}

.inputVacancy[data-type="paste"] .inputVacancySubmit{
    width: 100%;
    height: 50px;
}


.vacancyAnalysisLoader{
    display: flex;
    margin-top: 20px;
    background: var(--color-select);
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    gap:20px;
}


/* Основной контейнер */
.neural-spinner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;  /* 5rem (w-20) */
    height: 40px; /* 5rem (h-20) */
}

/* 1. Вращающееся кольцо */
.spinner-ring {
    position: absolute;
    inset: 0; /* top:0, right:0, bottom:0, left:0 */
    border-radius: 50%;
    border: 2px solid transparent;
    /* Цвета градиента кольца */
    border-top-color: var(--color-accent); /* Pink-500 */
    border-bottom-color: var(--color-elements); /* Purple-500 */
    animation: neural-spin 1s linear infinite;
}

/* 2. Пульсирующий фон под иконкой */
.spinner-bg-pulse {
    position: absolute;
    inset: 8px; /* inset-2 */
    border-radius: 50%;
    background-color: rgba(100, 85, 245, 0.1); /* Прозрачный фиолетовый */
    animation: neural-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* 3. Иконка мозга */
.brain-icon {
    width: 20px;  /* 2.5rem (w-10) */
    height: 20px; /* 2.5rem (h-10) */
    color: var(--color-accent); 

    position: relative;
    z-index: 10;
    
    /* Свойства SVG */
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    
    /* Медленная пульсация самой иконки */
    animation: neural-pulse-slow 3s ease-in-out infinite;
}

/* --- Анимации --- */

@keyframes neural-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes neural-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes neural-pulse-slow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.95); }
}


.analysisLoaderContent{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    gap: 7px;
}
.analysisLoaderText{
    display: flex;
    align-items: center;
}

.analysisLoaderTitle, .analysisLoaderPercent{

    font-size: 0.9em;
    font-weight: 600;
    color: var(--color-elements);
}

.analysisLoaderTitle{
    flex:1;
}

.analysisLoaderProgress{
    display: flex;
    width: 100%;
    background: #e2e8fb;
    height: 6px;
    border-radius: 50px;
}

.analysisLoaderBar{
    height: 100%;
    width: 22%;
    background:var(--color-elements);
    border-radius: 50px;
}


.vacancyAnalysisCompany{
    display: flex;
    margin-top: 20px;
    background: #fff;
    gap: 20px;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 15px;
    min-height: 50px;
    min-width: 250px;
    border: 1px solid #e5e7eb;
    flex: 1;
    min-width: 0;
    box-shadow: 0 5px 10px 0 rgba(6, 12, 137, .3);
    flex-direction: column;
    position: relative;
    overflow: hidden;
    /*margin-bottom: 60px;*/
}


.vacancyAnalysisCompany::after{
    content: '';
    width: 20%;
    height: 58%;
    position: absolute;
background: linear-gradient(26deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 45%, rgba(238, 242, 255, 1) 100%);
    right: 0;
    top: 0;
    z-index: 0;
    border-radius: 0px 0px 0px 1000px;
}

.vacancyCompanyTitleBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vacancyCompanyTitle{
    font-size: 1.7em;
    font-weight: 800;
}

.vacancyCompanyTitleDetails{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.9em;
}


.vacancyCompanyTags{
    display: flex;
    align-items: start;
    width: 100%;
    gap: 50px;
}

.vacancyCompanyTag{
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}


.vacancyCompanyTagItems{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.vacancyCompanyTagTitle{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.vacancyCompanyTitleDetails>div{
    padding: 5px 10px;
    box-sizing: border-box;
    background: #eef4fb;
    border-radius: 10px;
    color: var(--color-elements);
    font-size: 0.9em;
}


.vacancyCompanySummary{
    background: var(--color-select);
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    z-index: 1;
}

.vacancyCompanySummaryTitle, .vacancyCompanySummaryText{
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--color-text);
}

.vacancyCompanySummaryText{
    font-weight: 400; 
    margin-bottom: 0px;
    line-height: 1.3;
    color: #000;
}


.vacancyCompanyTagCaption{
    color: var(--color-text);
    font-size: 0.75em;
    text-transform: uppercase;
    font-weight: 600;
}

.vacancyCompanyTagIcon{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    box-sizing: border-box;
    border-radius: 50px;
}

.vacancyCompanyTagIcon>svg{
    width: 70%;
}


.vacancyCompanyTag[data-type="benifits"] .vacancyCompanyTagIcon{
    background: rgba(50, 150, 60, 0.1);
}

.vacancyCompanyTag[data-type="benifits"] svg{
    color: var(--color-green);
}


.vacancyCompanyTag[data-type="skill"] svg{
    color: var(--color-elements);
}

.vacancyCompanyTag[data-type="skill"] .vacancyCompanyTagIcon{
    background: var(--color-select);   
}


.vacancyCompanyTagItem{
    font-size: 0.8em;
    padding: 4px 8px;
    box-sizing: border-box;
    background: #f2f9ff;
    border-radius: 10px;
    color: var(--color-text);
}

.vacancyCompanyTag[data-type="benifits"] .vacancyCompanyTagItem{
    color: var(--color-green);
    background: rgba(50, 150, 60, 0.1);
}



.circlePercentColor{
    color: rgba(255, 255, 255, 0.1);
    stroke:#252437;
}


.circlePercentBack{
    color: #dfdfdf;
    /*stroke:var(--color-green);*/
    stroke: #fcd34d;;
}


.vacancyVerdictPercent{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.circlePercent{
    width: 130px;
    height: 130px;
}
.vacancyVerdictPercentProgress{
    display: flex;
    align-items: center;
    justify-content: center;
}

.vacancyVerdictPercentNumb{
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    position: absolute;
    font-size: 2.2em;
    font-weight: 900;
        font-family: 'Manrope', sans-serif;

}

.vacancyAnalysisVerdict{
    display: flex;

}


.vacancyAnalysisGroup{
    display: flex;
    margin-top: 40px;
    gap: 40px;
    box-sizing: border-box;
    /*justify-content: space-between;*/
}


.vacancyAnalysisVerdict{
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 20px;
    background: #312E81;
    color: #fff;
    background: linear-gradient(350deg, rgba(49, 46, 129, 1) 1%, rgba(0, 0, 0, 1) 100%);
    gap: 40px;

}

.vacancyVerdictSticker{
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 10px;
    background: rgba(250, 210, 80, 0.25);
    color: #fcd34d;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 700;
}

.vacancyVerdictContent{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
}


.vacancyVerdictTitle{
    font-size: 1.5em;
    font-weight: 600;
}


.vacancyVerdictDesc{
    font-size: 0.95em;
    line-height: 1.4;
    opacity: 0.7;
}



.vacancyAnalysisTemplate{
    background: #fff;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    min-width: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    flex: 1;
}

.vacancyAnalysisGroup>div:first-child{
    max-width: 57%;
}


.vacancyAnalysisHead{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}


.vacancyAnalysisData{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 5px;
}

.analysisPrice{
    display: flex;
    margin-bottom: 5px;
}

.analysisPriceBadgeAI{
    display: flex;
    align-items: center;
}

.analysisPriceLinePoints{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 10px;
}

.analysisPriceLineLegend{
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    font-size: 0.7em;
    color: var(--color-text);
}


.vacancyAnalysisHeadIcon{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vacancyAnalysisHeadIcon>svg {
    color: var(--color-accent);
    width: 100%;
}

.vacancyAnalysisHeadText{
    font-size: 1em;
    font-weight: 600;
    color: var(--color-accent);
}

.analysisPriceWhole{
    font-size: 2.2em;
    font-weight: 900;
    font-family: 'Manrope', sans-serif;
}

.analysisPriceFrom, .analysisPriceTo{
    display: flex;
    color: var(--color-green);
}

.analysisPriceDivider{
    display: flex;
    align-items: center;
    margin: 0px 15px;
}

.analysisPriceRanksKl, .analysisPriceRanksMl, .analysisPriceCurrency{
    margin-left: 5px;
    font-size: 1.7em;
    position: relative;
    font-weight: 900;
    font-family: 'Manrope', sans-serif;
    top: 3px;
}

.analysisPriceCurrency{
    margin-left: 0px;
}

.analysisPriceBadgeReal, .analysisPriceBadgeAI{
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 3px 7px;
    background: var(--color-select);
    font-size: 0.8em;
    border-radius: 50px;
    color: var(--color-text);
    gap: 3px;
}

.analysisPriceBadgeIcon>svg{
    width: 100%;
}

.analysisPriceBadgeIcon{
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analysisPriceLine{
    display: flex;
    margin-top: 20px;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.analysisPriceProgresBar{
    width: 100%;
    background: #f3f3f3;
    height: 10px;
    border-radius: 50px;
    position: relative;
}

.analysisPriceProgresMarket{
    position: absolute;
    height: 10px;
    width: 30%;
    margin-left:30%;
    background: #d1d9f2;
    /*border-radius: 50px;*/
}

.analysisPriceProgresOffer{
    position: absolute;
    height: 10px;
    width: 50%;
    margin-left:50%;
    background: rgba(5, 150, 105, 0.80);
    border-radius: 50px;
}

.analysisPriceProgresMarket::after{
    content: '';
    width: 1px;
    height: 20px;
    background: #000;
    display: block;
    top: -5px;
    position: relative;
    opacity: 0.1;
}


.analysisPriceProgresMarket::before{
    content: '';
    width: 1px;
    height: 20px;
    background: #000;
    display: block;
    top: -5px;
    position: absolute;
    opacity: 0.1;
    right: 0;
}


.analysisPriceLinePointColor{
    height: 10px;width: 10px;
    border-radius: 50px;

}


.analysisPriceLinePointColor[data-type="market"]{
    background: #d1d9f2;  
}

.analysisPriceLinePointColor[data-type="offer"]{
    background: rgba(5, 150, 105, 0.80);
}


.analysisPriceLinePoint{
    display: flex;
    align-items: center;
    gap: 5px;
}


.vacancyAnalysisGap {
    margin-top: 40px;
}


.vacancyAnalysisGap .vacancyAnalysisData{
    flex-direction: row;
    gap: 40px;
    box-sizing: border-box;
    padding-top: 15px;
}


.analysisGapMatchBox, .analysisGapPassBox{
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-grow: 1;
    min-width: 0;
    box-sizing: border-box;
}

.analysisGapMatch{
    background: rgba(248, 250, 252, 0.5);
    display: flex;
    flex-direction: column;
    max-width: 350px;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}


.analysisGapMatchHead, .analysisGapPassHead{
    display: flex;
    align-items: center;
    gap: 10px;
}

.analysisGapMatchItem, .analysisGapPassItemHead{
    display: flex;
    gap: 10px;
    align-items: center;
}

.analysisGapPassItem{
    display: flex;
    flex-direction: column;
    border:1px solid #e5e7eb;
    box-sizing: border-box;
    padding: 10px; 
    border-radius: 10px;
}

.analysisGapMatchList, .analysisGapPassList{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    box-sizing: border-box;
    gap: 10px;
}

.analysisGapPassList{
    gap:15px;
}


.analysisGapMatchHeadText, .analysisGapPassHeadText{
    color: var(--color-text);
    font-size: 0.75em;
    text-transform: uppercase;
    font-weight: 700;
}

.analysisGapMatchHeadIcon, .analysisGapPassHeadIcon{
    display: flex;
    width: 15px;
    height: 15px;
    align-items: center;
}

.analysisGapMatchHeadIcon>svg{
    color: var(--color-green);
}

.analysisGapPassHeadIcon>svg{
    opacity: 0.2;
}

.analysisGapMatchItemIcon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.analysisGapMatchItemIcon>svg{
    color: var(--color-green);    
}

.analysisGapMatchItemText{
    font-size: 0.95em;
    color: #334155;
}

.analysisGapPassItemHeadText{
    font-size: 0.95em;
    /*color: #334155;*/
    font-weight: 700;
    cursor: pointer;
}


.analysisGapMatchBox{
    flex-grow: 0;
    width: auto;
    min-width: 350px;
}

.analysisGapPassItemHead{

}

.analysisGapPassItemHeadIcon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    opacity: 0.2;
}


.analysisGapPassItemHeadGroup{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}


.analysisGapPassItemHeadLevel{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 7px;
    box-sizing: border-box;
    background: #f4f4f4;
    font-size: 0.6em;
    border-radius: 50px;
}



.analysisGapPassItemHeadLevel[data-type="hight"]{
    color: #b91c1c;
    background: #fee2e2;
}

.analysisGapPassItemHeadLevel[data-type="medium"]{
    color: #b45309;
    background: #fef3c7;
}


.analysisGapPassItemHeadLevel[data-type="low"]{
    color: #475569;
    background: #f1f5f9;
}




.analysisGapPassItemSpoiler{
    margin-left: 25px;
    font-size: 0.8em;
    border-top: 1px solid #e5e7eb;
    padding-top: 0px;
    margin-top: 0px;
    line-height: 1.3;
    color: var(--color-text);
    height: 0px;
    opacity: 0;
    transition: all 0.4s;
}

.GapPassItemSpoilerOpen{
    height: auto;
    opacity: 1;

    padding-top: 5px;
    margin-top: 8px;
}

.vacancyAnalysisHeadDisc {
    display: flex;
    justify-content: end;
    font-size: 0.7em;
    color: var(--color-text);
    background: var(--color-select);
    box-sizing: border-box;
    padding: 3px 7px;
    border-radius: 10px;
}

.vacancyAnalysisGap .vacancyAnalysisHeadText{
    flex-grow: 1;
}


.analysisGrowLine, .analysisFailLine{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 5px;
}

.analysisGrowLineText, .analysisFailLineText{
    display: flex;
    align-items: center;
}

.analysisGrowLineTitle, .analysisFailLineTitle{
    font-size: 1.3em;
    font-weight: 700;
    flex-grow: 1;
}

.analysisGrowLineSteps, .analysisFailLineSteps{
    font-size: 0.9em;
    color: var(--color-text);
}

.analysisGrowLineBar, .analysisFailLineBar{
    width: 100%;
    height: 9px;
    margin: 10px 0px;
    gap: 2px;
    display: flex;
}

.analysisGrowLineBarStep, .analysisFailLineBarStep{
    flex-grow: 1;
    height: 100%;
    background: #f3f3f3;
    /*border-radius: 3px;*/
}


.analysisGrowLineBarStepColor, .analysisFailLineBarStepColor{
    height: 100%;
    width: 0;
    /*border-radius: 3px;*/
}

.analysisGrowLineBar>.analysisGrowLineBarStep:first-child>.analysisGrowLineBarStepColor{
    border-radius:3px 0px 0px 3px;
}

.analysisFailLineBar>.analysisFailLineBarStep:first-child>.analysisFailLineBarStepColor{
    border-radius:3px 0px 0px 3px;
}


.analysisGrowLineBar>.analysisGrowLineBarStep:first-child{
    border-radius:3px 0px 0px 3px;
}

.analysisFailLineBar>.analysisFailLineBarStep:first-child{
    border-radius:3px 0px 0px 3px;
}


.analysisGrowLineBar>.analysisGrowLineBarStep:last-child>.analysisGrowLineBarStepColor{
    border-radius:0px 3px 3px 0px;
}

.analysisFailLineBar>.analysisFailLineBarStep:last-child>.analysisFailLineBarStepColor{
    border-radius:0px 3px 3px 0px;
}


.analysisGrowLineBar>.analysisGrowLineBarStep:last-child{
    border-radius:0px 3px 3px 0px;
}

.analysisFailLineBar>.analysisFailLineBarStep:last-child{
    border-radius:0px 3px 3px 0px;
}


.analysisGrowLineBarStep[data-step="1"]>.analysisGrowLineBarStepColor{
    background: linear-gradient(90deg, #38bdf8, #3ca6f4);
    width: 100%;
}
.analysisGrowLineBarStep[data-step="2"]>.analysisGrowLineBarStepColor{
    background: linear-gradient(90deg, #3ca6f4, #428ef1);
    width: 100%;
}
.analysisGrowLineBarStep[data-step="3"]>.analysisGrowLineBarStepColor{
    background: linear-gradient(90deg, #428ef1, #4576ec);
    width: 27%;
}
.analysisGrowLineBarStep[data-step="4"]>.analysisGrowLineBarStepColor{
    background: linear-gradient(90deg, #4576ec, #4a5ee9);
}
.analysisGrowLineBarStep[data-step="5"]>.analysisGrowLineBarStepColor{
    background: linear-gradient(90deg, #4a5ee9, #4f47e5);
}


.analysisFailLineBarStep[data-step="1"]>.analysisFailLineBarStepColor{
    background: linear-gradient(90deg, #fde047, #fbb534);
    width: 100%;
}

.analysisFailLineBarStep[data-step="2"]>.analysisFailLineBarStepColor{
    background: linear-gradient(90deg, #fbb534, #fa8a20);
    width: 100%;
}


.analysisFailLineBarStep[data-step="3"]>.analysisFailLineBarStepColor{
    background: linear-gradient(90deg, #fa8a20, #f36419);
    width: 100%;
}

.analysisFailLineBarStep[data-step="4"]>.analysisFailLineBarStepColor{
    background: linear-gradient(90deg, #f36419, #e84620);
    width: 100%;
}

.analysisFailLineBarStep[data-step="5"]>.analysisFailLineBarStepColor{
    background: linear-gradient(90deg, #e84620, #dc2625);
    width: 100%;
}



.analysisGrowDesc, .analysisFailDesc{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 10px;
    background: var(--color-select);
    margin-top: 5px;
}

.analysisGrowDescTitle, .analysisGrowDescText, .analysisFailDescTitle, .analysisFailDescText{
    font-size: 0.8em;
}
.analysisGrowDescText, .analysisFailDescText{
    line-height: 1.3;
    color: var(--color-text);
}

.analysisGrowDescTitle, .analysisFailDescTitle{
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 5px;

}


.vacancyAnalysisProfit {
    margin-top: 40px;
    margin-bottom: 20px;
}


.analysisProfitList{
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    gap: 20px;
}

.analysisProfitItem{
    width: 23%;
    display: flex;
    gap:10px;

    background: rgba(248, 250, 252, 0.5);
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #f1f5f9;

}


.analysisProfitItemTitle{
    font-size: 0.95em;
    font-weight: 700;
}


.analysisProfitItemDesc{
    font-size: 0.8em;
    line-height: 1.3;
    color: var(--color-text);
    margin-top: 10px;
}


.analysisProfitItemIcon>svg{
    color: var(--color-green);
}





.auth-container {
    width: 100vw;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
}

/* Карточка (белая плашка) */
.auth-box {
    background: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Мягкая тень */
    border: 1px solid #e5e7eb;
}

/* Логотип */
.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.auth-logo img {
    width: 70px;
    
}

/* Заголовки (Вход / Регистрация) */
.auth-header {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
}

/* Поля ввода */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
    box-sizing: border-box; /* Чтобы padding не ломал ширину */
    background-color: #f9fafb;
}

.input-field:focus {
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Кнопка */
.btn-primary {
    width: 100%;
    padding: 12px;
    background-color: var(--color-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-primary:disabled {
    background-color: #93c5fd;
    cursor: wait;
}

/* Подвал (ссылки переключения) */
.auth-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.auth-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Блок ошибки */
.auth-error {
    background-color: #fef2f2;
    color: #991b1b;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #fee2e2;
}


.filePreviewCard{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:20px;
}

.fileInfoBox{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 15px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #ececec;
}

.fileIcon{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.fileIcon>svg{
    width: 80%;
    height: 80%;
    color: var(--color-elements);
}


.fileDetails{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    flex-grow: 1;  
    min-width: 0;
}

.fileInfo{
    display: flex;
    width: 100%;
    min-width: 0;
}

.fileName{
    font-size: 1.2em;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.fileDetailsTop{
    display: flex;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    min-width: 0;
}

.fileDetailsBottom{
    font-size: 0.9em;
    color: var(--color-text);
}


.fileRemove{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
}

.fileRemove>svg{
    width: 30px;
    height: 30px;

}

.btnPrimaryAction {
    border:none;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    gap: 10px;
    padding: 15px 15px;
    box-sizing: border-box;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    font-weight: 600;
}

.btnPrimaryAction >svg{
    transform: rotate(90deg);
}



#uploadLoading {
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:10px;
    background: white;
    border-radius: 10px; 
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.uploadLoadingIcon {
    position: relative;
    width: 90px;
    height: 90px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef2ff; 
    margin-bottom: 20px; 
    z-index: 10;
}

.uploadLoadingIcon::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #e0e7ff; 
    border-radius: 50%;
    z-index: -1;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* SVG иконка внутри */
.uploadLoadingIcon svg {
    width: 40px; 
    height: 40px;
    color: #4f46e5; 
}


/* --- Анимации --- */

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes loading-bar {
    0% { left: -40%; }
    100% { left: 100%; }
}

@keyframes spin-slow {
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 3s linear infinite;
}

/* Фоновые пузыри (опционально, для красоты) */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    z-index: 0;
    mix-blend-mode: multiply;
}
.blob-1 { top: -20px; left: -20px; width: 20px; height: 20px; background: #e9d5ff; animation: float 7s infinite; }
.blob-2 { top: 20px; right: -20px; width: 20px; height: 20px; background: #c7d2fe; animation: float 7s infinite 2s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}



.uploadLoadingContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px; 
    z-index: 10;
    width: 100%;
}

.uploadLoadingTitle {
    font-size: 1.3em;
    font-weight: 700;
    color: #1e293b; 
    margin-bottom: 20px;
    display: block;
}

.uploadLoadingDesc {
    color: #64748b; /* text-slate-500 */
    font-size: 1em;
    display: block;
}

.uploadLoadingBar {
    width: 100%;
    height: 10px; /* h-3 */
    background-color: #f1f5f9; /* bg-slate-100 */
    border-radius: 9999px; /* rounded-full */
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    z-index: 10;
}

.uploadLoadingBarLine {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Бегущий градиент (Runner) */
.uploadLoadingRunner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%; /* Длина "змейки" */
    background: linear-gradient(90deg, transparent, #6366f1, #ec4899, transparent);
    filter: blur(2px);
    animation: loading-bar 1.5s infinite linear;
}