@charset "UTF-8";
progress,sub,sup
{
	vertical-align:baseline
}

button,hr,input
{
	overflow:visible;
	font-family: "Open Sans"
}

[type=checkbox],[type=radio],legend
{
	box-sizing:border-box;
	padding:0
}
svg {
  display: inline;
  width: 24px;
  height: 18px;
}
html
{
	font-family:sans-serif;
	line-height:1.15;
	-ms-text-size-adjust:100%;
	-webkit-text-size-adjust:100%
}

body
{
	margin:0;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	font-family: "Open Sans", sans-serif;
}

article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary
{
	display:block
}
audio,canvas,progress,video
{
	display:inline-block
}

audio:not([controls])
{
	display:none;
	height:0
}

[hidden],template
{
	display:none
}

a
{
	background-color:transparent;
	-webkit-text-decoration-skip:objects
}

a:active,a:hover
{
	outline-width:0
}
*, :after, :before {
    box-sizing: border-box;
}
html {
    color: #231f20;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    letter-spacing: .01em;
    line-height: 1.7;
}
.layout__main{
    margin: 0 auto;
    max-width: 1466px;
    padding: 0 50px;
}
header {
    height: 118px;
    background-color: #292828;
    border-bottom: 15px solid #E9E9E9;
}

header .layout__main {
    display: flex;
    align-items: center;
    height: 100%;
}
.logo{
	display: inline-block;
}
.logo--centered {
    margin: 0 auto;
}
.header__right {
    display: flex;
    align-items: center;
    gap: 120px;
    margin-left: auto;
}

.header__button {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: opacity 0.2s;
}

.header__button:hover {
    opacity: 0.8;
}

.header__button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(228, 85, 20, 1);
    border-radius: 50%;
}
.header__button-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
}

.header__button-icon svg {
    color: white;
}

.header__button--logout .header__button-text {
    display: none;
}
main{
	flex: 1;
	font-family: "Open Sans"
}
footer{
	
}
.footer__top{
	height: 118px;
	background-color: #ECECEC;
}
.footer__copyright{
	background-color: #ffffff;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 10.6562px;
	line-height: 16px;
	color: #AEADAD;
}
.auth-container {
    background: #FFFFFF;
	border: 1.13982px solid #F9F9F9;
	border-radius: 3.41945px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 75px;
    width: 100%;
    max-width: 655px;
    margin: 0 auto 75px;
}
h1{
	font-weight: 400;
	font-size: 28px;
	line-height: 28px;
	color: #000000;
	text-align: center;
}
.indx-page h1{
	margin-top: 70px;
	margin-bottom: 48px;
}
.auth-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-title {
	font-weight: 400;
	font-size: 28px;
	line-height: 28px;
	display: block;
	align-items: center;
	color: #000000;
	margin-bottom: 17px;
}

.register-link {
	font-weight: 600;
	font-size: 16px;
	line-height: 23px;
	text-align: center;
	text-decoration: none;
	color: #DD4E1B;
	border-bottom: 1px dotted #DD4E1B
}

.role-selector {
    display: flex;
    gap: 19px;
    margin-bottom: 20px;
}

.role-btn {
    flex: 1;
    padding: 10px;
    background: #FFFFFF;
	border: 2px solid #ECECEC;
	border-radius: 3.41945px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
	font-size: 16px;
	line-height: 23px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.role-btn img{
	margin-right: 10px;
}
.role-btn.active {
    background: linear-gradient(180deg, #FFFFFF 0%, #EEEEEE 100%);
	border: 2px solid #F76600;
	border-radius: 3.41945px;
	color: #000000;
	text-decoration: underline;
}

.phone-input {
    width: 100%;
    padding: 16px 30px;
    background: #FFFFFF;
	border: 2px solid #ECECEC;
	border-radius: 3.41945px;
    box-sizing: border-box;
    margin-bottom: 20px;
    font-weight: 600;
	font-size: 16px;
	line-height: 23px;
	color: #919090;
	outline:none;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, #F76600 0%, #D94B1F 100%);
	border-top: 1.13982px solid #F76600;
	border-radius: 2.27963px;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-weight: 400;
	font-size: 20px;
	line-height: 28px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-btn:hover {
    background-color: #0055aa;
}
.register-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
}

.register-email {
    color: #DD4E1B;
    text-decoration: none;
    font-weight: 600;
}

#register-form {
    display: none;
}

/* Стиль для SVG стрелки (если нужно изменить цвет) */
.register-link svg {
	transform: rotate(180deg);
}
.register-link svg path {
    fill: #DD4E1B;
}
/* Форма SMS */
#sms-form {
    display: none;
}

.sms-info-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #919090;
    text-align: center;
    margin-bottom: 30px;
}

.sms-code-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.sms-code-input {
    width: 60px;
    height: 78.24px;
    background: linear-gradient(180deg, #F7F7F7 0%, #EEEEEE 100%);
	border-radius: 4.8642px;
	border: none;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    outline: none;
	font-weight: 600;
	font-size: 23.6653px;
	line-height: 32px;
	color: #333333;
}

.sms-code-input.filled {
    background: linear-gradient(180deg, #F76600 0%, #D94B1F 100%);
    color: white;
    border-color: #F76600;
}

.sms-back-btn {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 0;
    margin: 0 auto 10px;
}

.sms-back-btn svg {
    margin-right: 5px;
    transform: rotate(180deg);
}

.sms-resend-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    color: #DD4E1B;
    text-decoration: none;
}

.sms-loader {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #F76600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Таймер и кнопка повторной отправки */
#sms-timer-container {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #919090;
    display: block;
}

#sms-resend-link {
    display: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    color: #DD4E1B;
    text-decoration: none;
}
.sms-buttons-container{
	text-align: center;
}

.asc-title {
    font-weight: 400;
    font-size: 25px;
    line-height: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(247, 102, 0, 1);
    margin-bottom: 20px;
    color: #000000;
    text-align: left;
}

/* Стили для карточки АСЦ */
.asc-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.asc-left-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.asc-info-container {
    border: 2px solid #ECECEC;
    border-radius: 3px;
    padding: 20px;
    background: #FFFFFF;
}
.asc-map-block {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.asc-buttons {
    display: flex;
    gap: 15px;
}

.asc-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.asc-info-item i {
    margin-right: 10px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
}
.asc-info-item i.icon-phone{
	width: 19px;
    height: 19px;
	background: url(/images/asc/phone.svg) center center no-repeat;
}
.asc-info-item i.icon-building{
	width: 22px;
    height: 22px;
	background: url(/images/asc/name.svg) center center no-repeat;
}
.asc-info-item i.icon-location{
	width: 17px;
	height: 23px;
	background: url(/images/asc/point.svg) center center no-repeat;
}
.asc-info-item i.icon-email{
	width: 22px;
    height: 22px;
	background: url(/images/asc/email.svg) center center no-repeat;
}
.btn-gradient {
    background: linear-gradient(180deg, #F76600 0%, #D94B1F 100%);
    border-top: 1px solid #F76600;
    border-bottom: none;
    border-right: none;
    border-left: none;
    border-radius: 2px;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s;
    white-space: nowrap;
}
.btn-gradient.small {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    padding: 11.6px 21px;
}
.asc-left-block .btn-gradient {
    width: 100%;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    padding: 16px 20px;
}
.btn-gradient:hover {
    opacity: 0.9;
}

/* Стили для таблицы сотрудников */
.employees-table {
    overflow: hidden;
    margin-bottom: 40px;
}

.table-header {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: #919090;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.table-col {
    flex: 1;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}
.table-col.actions {
    gap: 10px;
}

.icon-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    color: #333333;
    background: #FFFFFF;
    border: 1.5px solid #F76600;
    border-radius: 2.29064px;
    padding: 11.2px 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    line-height: 19px;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: #fdf5f0;
}

.placeholder-block {
    padding: 30px;
    text-align: center;
    border: 1px dashed #ccc;
    border-radius: 8px;
    color: #777;
    margin-bottom: 40px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .table-row {
        flex-direction: column;
        padding: 15px;
    }
    
    .table-col {
        width: 100%;
        padding: 8px 0;
    }
    
    .table-col.actions {
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .asc-buttons {
        flex-direction: column;
    }
}
/* Стили для таблицы заявок */
.warranty-table {
    overflow: hidden;
    margin-bottom: 20px;
}
.warranty-table .table-row{
    border:none;
    height: 72px;
}
.warranty-table .product-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 4em; 
    line-height: 1.5em;
}
.warranty-table .table-body {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}
/* Стили статусов заявок */
.table-row.status-pending {
    background-color: rgba(255, 251, 7, 0.1);
}

.table-row.status-approved {
    background-color: rgba(106, 244, 0, 0.1);
}

.table-row.status-rejected {
    background-color: rgba(255, 72, 0, 0.08);
}

.table-row.status-draft {
    background-color: rgba(244, 244, 244, 0.94);
}

.show-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.btn-show-warr{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 71.63%, rgba(238, 238, 238, 0.84) 100%);
    border: 2px solid rgba(145, 144, 144, 0.21);
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    padding: 7.9px 12px;
    white-space: nowrap;
    line-height: 24px;
    color: #333333;
    cursor: pointer;
}
.asc-warranty-section{
	margin-bottom: 50px;
}
/* Адаптивность для таблицы */
@media (max-width: 768px) {
    .table-header {
        display: none;
    }
    
    .table-row {
        flex-direction: column;
        padding: 15px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .table-col {
        width: 100%;
        padding: 8px 0;
        position: relative;
        padding-left: 50%;
    }
    
    .table-col::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        font-weight: bold;
        text-align: right;
    }
    
    .table-col.actions {
        justify-content: flex-start;
        margin-top: 10px;
        padding-left: 0;
    }
    
    .table-col.actions::before {
        display: none;
    }
    
    /* Добавляем data-label для мобильной версии */
    .table-col:nth-child(1)::before { content: "№ заказа-наряда"; }
    .table-col:nth-child(2)::before { content: "Изделие"; }
    .table-col:nth-child(3)::before { content: "Дата"; }
    .table-col:nth-child(4)::before { content: "Статус"; }
}
.request-page h1{
	margin-bottom: 49px;
}
.breadcrumbs {
    color: #777;
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

/* Форма */
.form-layout {
    display: flex;
    gap: 30px;
}

.left-block {
    flex: 1;
    position: relative;
    padding-left: 30px;
}

.right-block {
    flex: 1;
}

/* Прогресс-бар */
.progress-track {
    position: relative;
    padding-right: 30px;
    margin-left: -30px;
}
.form-section .progress-track {
    margin-left: 0;
}
.progress-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    z-index: 1;
}

.progress-line.base {
    background: #ddd; /* серая линия всегда */
    height: 100%;
}
.progress-line.completed {
    background: rgba(247, 102, 0, 1); /* оранжевая */
    height: 0; /* будет задаваться через JS */
}
.progress-step {
    position: absolute;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #ddd;
    left: -5px;
    z-index: 2;
    transform: translateY(-50%);
    transition: background 0.3s ease;
}

.progress-step.active {
    background: rgba(247, 102, 0, 1);
}

.progress-step.completed {
    background: rgba(247, 102, 0, 1);
}
.left-block .progress-step.completed:last-child::after{
	display: var(--line-display, block);
}
/* Поля формы */
.form-section {
    position: relative;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
#form-fields{
    text-align: center;
}
.form-block {
    margin-bottom: 40px;
    text-align: left;
}
.form-layout-column {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 30px;
}
.left-block {
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.form-group input, .form-section input {
    flex: 1;
}

.form-group label, .form-section label {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: #000000;
    width: 230px;
}

.form-group input, .form-section input {
    height: 55px;
    background: #FFFFFF;
    border: 2px solid #ECECEC;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #333333;
    outline: none;
    padding: 0 28px;
}

/* Блок с фото */
.product-image {
    position: relative;
    margin-bottom: 20px;
    background: #FFFFFF;
    border: 2px solid #ECECEC;
    border-radius: 3px;
}

.image-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .form-layout {
        flex-direction: column;
    }
    
    .progress-line {
        left: -20px;
    }
    
    .progress-step {
        left: -4px;
    }
}
/* Добавленные стили для нового блока */
.full-width {
    width: 100%;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    width: auto;
    cursor: pointer;
}

.search-results {
    margin-top: 10px;
    border: 1px solid #ECECEC;
    border-radius: 3px;
    padding: 10px;
    background: white;
    max-height: 200px;
    overflow-y: auto;
}

.search-results .part-item {
    padding: 8px;
    cursor: pointer;
}

.search-results .part-item:hover {
    background: #f5f5f5;
}
.request-page textarea {
    width: 100%;
    height: 92px;
    padding: 18px 32px;
    border: 2px solid #ECECEC;
    border-radius: 3px;
    resize: none;
    font-family: inherit;
    font-weight: 400;
	font-size: 16px;
	line-height: 20px;
    outline: none;
    flex: 1;
}
.part-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ECECEC;
}

.part-row:last-child {
    border-bottom: none;
}

.part-name {
    flex: 1;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
}

.quantity-input {
    width: 40px;
    height: 25px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.part-remove {
    background: none;
    border: none;
    color: #ff0000;
    font-size: 18px;
    cursor: pointer;
    padding: 0 5px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .radio-group {
        flex-direction: column;
        gap: 5px;
    }
    
    .part-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .part-quantity {
        margin: 10px 0;
    }
}
/* Контейнер поля */
.parts-field .parts-block {
    border: 2px solid #ECECEC;
    border-radius: 3px;
    padding: 14px 17px;
    background: #fff;
    flex: 1;            
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Выбранные детали (чипы) */
#selected-parts {
    display: flex;
    flex-wrap: wrap;       /* переносятся на следующую строку */
    gap: 10px;
}

/* Чип детали */
.part-chip {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background: #FFFFFF;
    border: 2px solid #ECECEC;
    border-radius: 3px;
}
.part-chip .part-name {
    font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	margin-right: 21px;
    color: #000000;
    white-space: nowrap;
}

/* Переключатель количества */
.part-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ECECEC; /* цвет как у окантовки */
    background: #f5f5f5;
    border-radius: 3px;
    overflow: hidden;
}
.qty-btn {
    border: none;
    background: transparent;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    color: #666;
}
.qty-btn:hover { background: #e9e9e9; }
.qty-value {
    padding: 0 8px;
    font-size: 14px;
    user-select: none;     /* нельзя выделять/редактировать */
}

/* Крестик удаления (серый, как окантовка) */
.part-remove {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    color: #BDBDBD;        /* близко к #ECECEC, но видимее */
    line-height: 1;
}
.part-remove:hover { color: #ff4d4f; }

/* Обёртка поиска */
.parts-search-wrapper {
    position: relative;
    width: 100%;
}
/* Поле поиска — во всю ширину, с верхней рамкой */
#parts-search {
    width: 100%;
    height: 32px;
    border: 2px solid #ECECEC;
    font-size: 14px;
    padding: 0 10px;
    outline: none;
}

/* Выпадающий список — только для поля деталей */
.parts-results {
    position: absolute;
    top: 100%; left: 0; right: 0;
    border: 1px solid #ECECEC;
    border-top: none;
    border-radius: 0 0 3px 3px;
    background: #fff;
    z-index: 20;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.parts-results .part-item {
    padding: 8px 10px;
    cursor: pointer;
}
.parts-results .part-item:hover { background: #f5f5f5; }
.defect-field .defect-block {
  	display: flex;
  	align-items: flex-start;
  	gap: 15px;
  	border: 2px solid #ECECEC;
  	border-radius: 3px;
  	padding: 12px 17px;
  	background: #fff;
  	height: 96px;
  	flex: 1;
}

/* Опции радиокнопок (вертикально) */
.defect-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Каждая опция */
.defect-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

/* Скрываем оригинальное радио */
.defect-option input[type="radio"] {
  display: none;
}

/* Квадрат кастомного радио */
.custom-radio {
  width: 27px;
  height: 27px;
  border: 2px solid #ECECEC;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all 0.2s ease;
}

/* SVG-галочка при выборе */
.custom-radio::after {
  content: '';
  width: 22px;
  height: 21px;
  background: url('/images/asc/radiobtn.svg') no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Активное состояние */
.defect-option input[type="radio"]:checked + .custom-radio::after {
  opacity: 1;
}

/* Текст рядом */
.option-label {
  line-height: 1.2;
}

/* Блок с textarea справа */
.defect-details {
  flex: 1;
  border: 2px solid #ECECEC;
  border-radius: 3px;
  background: #fff;
}

.defect-details textarea {
  	width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    height: 59px;
    resize: none;
    padding: 10px 23px;
}
/* Стили для блока загрузки фото */
.photo-upload-group {
    margin-bottom: 20px;
    display: flex;
}

.photo-upload-group label {
    width: 230px;
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: #000000;
    margin-right: 20px;
    padding-top: 10px;
}

.photo-upload-container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.upload-square {
    height: 81.17px;
    width: 81.17px;
    background: #FFFFFF;
    border: 1.88764px solid #ECECEC;
    border-radius: 2.83146px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.upload-square:hover {
    border-color: #F76600;
}

.upload-plus {
    font-size: 24px;
    color: #777;
    font-weight: bold;
}

.photo-preview-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.preview-image-container {
    position: relative;
    height: 81.17px;
    width: 81.17px;
    flex-shrink: 0;
}
.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #ECECEC;
    border-radius: 3px;
}

.remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #ff4d4f;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Стили для слайдера */
.photo-slider-container {
    position: relative;
    width: 255px;
    margin-left: 20px;
    display: none;
}
.photo-slider-container:not(.hidden) {
    display: block;
}
.swiper-container {
    width: 300px;
    height: 100px;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    width: 81px;
    height: 81px;
    flex-shrink: 0;
    position: relative;
    margin-right: 15px;
}

/* Кастомные стрелки Swiper */
.swiper-button-prev,
.swiper-button-next {
    width: 23px;
    height: 81px;
    background: #ffffff;
    border: 1.88764px solid #ECECEC;
    color: rgba(145, 144, 144, 1);
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 77%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev {
    left: -25px;
    border-radius: 2.83146px;
}
.swiper-button-next {
    right: -25px;
    border-radius: 2.83146px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
    font-size: 0;
}

.swiper-button-prev::before {
    content: '<';
}

.swiper-button-next::before {
    content: '>';
}

.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Оповещения об ошибках */
.upload-error {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.upload-error.show {
    display: block;
}

/* Скрываем превью-ряд когда активен слайдер */
.photo-upload-container.show-slider .photo-preview-row {
    display: none;
}

.photo-upload-container.show-slider .photo-slider-container {
    display: block;
}
.btn-save-request{
    max-width: 892px;
    width: 100%;
    height: 57px;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    margin:0 auto;
}