

/* Start:/local/components/adv/form.result.new/templates/ecompilot/style.css?17641671875791*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/local/components/adv/form.result.new/templates/ecompilot/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/local/components/adv/form.result.new/templates/ecompilot/images/icon_warn.gif);
}

/* Попап успешной отправки формы - стилизация под E-comPilot */
.form-success-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	align-items: center;
	justify-content: center;
	font-family: 'Formular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-success-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(14, 17, 38, 0.75);
	backdrop-filter: blur(4px);
}

.form-success-popup-content {
	position: relative;
	background: #FFFFFF;
	padding: 60px 50px 50px;
	border-radius: 24px;
	max-width: 540px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(14, 17, 38, 0.25);
	z-index: 10001;
	animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupSlideIn {
	from {
		opacity: 0;
		transform: translateY(-30px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.form-success-popup-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 30px;
	background: linear-gradient(135deg, #F9C33D 0%, #F56376 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 56px;
	color: #FFFFFF;
	font-weight: 300;
	box-shadow: 0 10px 30px rgba(249, 195, 61, 0.3);
	animation: iconPulse 0.6s ease-out;
}

@keyframes iconPulse {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.form-success-popup-title {
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 16px;
	color: #0E1126;
	letter-spacing: -0.02em;
}

.form-success-popup-text {
	font-size: 17px;
	line-height: 1.6;
	color: #0E1126;
	opacity: 0.7;
	margin-bottom: 35px;
	font-weight: 400;
}

.form-success-popup-close {
	background: #0E1126;
	color: #FFFFFF;
	border: none;
	padding: 0 40px;
	height: 56px;
	line-height: 56px;
	border-radius: 99px;
	font-size: 17px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	font-family: 'Formular', sans-serif;
}

.form-success-popup-close:hover {
	background: #1a1d3a;
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(14, 17, 38, 0.25);
}

.form-success-popup-close:active {
	transform: scale(0.98);
}

/* Стилизация кнопки отправки формы под E-comPilot */
.btn-submit {
	background: #0E1126;
	color: #FFFFFF;
	padding: 0 40px;
	height: 56px;
	line-height: 56px;
	border-radius: 99px;
	border: none;
	font-size: 17px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	align-self: flex-start;
	font-family: 'Formular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	letter-spacing: -0.02em;
}

.btn-submit:hover:not(:disabled) {
	background: #1a1d3a;
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(14, 17, 38, 0.25);
}

.btn-submit:active:not(:disabled) {
	background: #0E1126;
	transform: scale(0.98);
}

.btn-submit:disabled,
.btn-submit.disabled {
	background: rgba(14, 17, 38, 0.4);
	cursor: not-allowed;
	opacity: 0.6;
	transform: none;
	box-shadow: none;
}

.btn-submit:disabled:hover,
.btn-submit.disabled:hover {
	transform: none;
	box-shadow: none;
}

/* Анимация для кнопки при отправке */
@keyframes buttonLoading {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}

.btn-submit[disabled] {
	animation: buttonLoading 1.5s ease-in-out infinite;
}

/* Стили для блока ошибок */
#formErrors {
	background: linear-gradient(135deg, rgba(245, 99, 118, 0.1) 0%, rgba(249, 195, 61, 0.1) 100%);
	border: 1px solid rgba(245, 99, 118, 0.3);
	border-radius: 16px;
	padding: 20px 24px;
	margin-bottom: 24px;
	font-size: 15px;
	line-height: 1.6;
	color: #0E1126;
	font-family: 'Formular', sans-serif;
	font-weight: 400;
}

#formErrors:empty {
	display: none !important;
}

/* Обертка для капчи с кнопкой обновления */
.captcha-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.captcha-image {
	height: 40px;
	width: 180px;
	border-radius: 4px;
	border: 1px solid rgba(14, 17, 38, 0.1);
}

/* Кнопка обновления капчи */
.captcha-refresh {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #FFFFFF;
	border: 1px solid rgba(14, 17, 38, 0.2);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: #0E1126;
	padding: 0;
	flex-shrink: 0;
}

.captcha-refresh:hover {
	background: #0E1126;
	color: #FFFFFF;
	border-color: #0E1126;
	transform: scale(1.05);
}

.captcha-refresh:active {
	transform: scale(0.95);
}

.captcha-refresh:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

.captcha-refresh svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

/* Анимация вращения при обновлении */
.captcha-refresh.rotating svg {
	animation: rotateIcon 0.5s ease-in-out;
}

@keyframes rotateIcon {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
/* End */
/* /local/components/adv/form.result.new/templates/ecompilot/style.css?17641671875791 */
