

/* Start:/local/components/bitrix/menu/templates/personal/style.css?17810342161850*/
#personalMenuWrap {
	position: sticky;
	top: 0;
	-z-index: 100;

	display: flex;
	align-items: center;
	gap: 8px;

	padding: 10px 12px;

	-background: rgba(255,255,255,0.75);
	-backdrop-filter: blur(12px);

	-border-bottom: 1px solid #e2e8f0;
	border-radius: 16px;
	margin-bottom: 15px;
	
}

/* SCROLL AREA */
#personalMenu {
	display: flex;
	gap: 10px;
	flex: 1;

	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;

	scroll-snap-type: x proximity;

	scrollbar-width: none;
}
#personalMenu::-webkit-scrollbar {
	display: none;
}

/* PILLS */
.navItem {
	flex: 0 0 auto;

	padding: 10px 14px;
	border-radius: 999px;

	font-size: 14px;
	font-weight: 500;

	text-decoration: none;

	color: #334155;
	background: #f1f5f9;

	white-space: nowrap;

	transition: all .18s ease;
}

.navItem:hover {
	background: #e2e8f0;
	color: #0f172a;
}

.navItem.is-active {
	background: #2f7d6b;
	color: #fff;
	box-shadow: 0 8px 24px rgba(47,125,107,0.25);
}

/* ARROWS — Stripe style overlay */
.navArrow {
	width: 36px;
	height: 36px;

	border-radius: 12px;
	border: 1px solid #e2e8f0;

	background: #fff;

	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 18px;

	transition: .15s ease;

	user-select: none;
}

/* hover */
.navArrow:hover {
	background: #f8fafc;
}

/* hidden state (soft fade, NOT display:none) */
.navArrow.hidden {
	opacity: 0;
	pointer-events: none;
	transform: scale(0.95);
}

/* MOBILE: НЕ убираем стрелки полностью */
@media (max-width: 768px) {

	.navArrow {
		width: 32px;
		height: 32px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		background: rgba(255,255,255,0.9);
		backdrop-filter: blur(8px);
	}

	.navArrowLeft {
		left: 6px;
	}

	.navArrowRight {
		right: 6px;
	}

	#personalMenuWrap {
		position: sticky;
	}
}
/* End */


/* Start:/local/components/bitrix/form.result.new/templates/twoColumns_custom/style.css?17871488109295*/
/* =========================
   BASE WRAPPER
========================= */

.customWebFormWrapper {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

/* =========================
   HEADER
========================= */

.webFormHeading {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.webFormDescription {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 20px;
}

/* =========================
   GRID LAYOUT
========================= */

.webFormItems {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.webFormItemsColumn {
    flex: 1 1 320px;
    min-width: 280px;
}

/* =========================
   FORM ITEM
========================= */

.webFormItem {
    margin-bottom: 16px;
}

.webFormItemCaption {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.webFormItemLabel {
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.webFormItemRequired {
    color: #2F7D6B;
}

/* =========================
   INPUTS
========================= */

.webFormItemField {
    position: relative;
}

.webFormItemField input:not([type="checkbox"]):not([type="radio"]),
.webFormItemField select,
.webFormItemField textarea {
    width: 100%;
    box-sizing: border-box;

    background: #F6F8FB;
    border: 1px solid #E2E8F0;
    border-radius: 12px;

    padding: 12px 14px;

    font-size: 14px;
    color: #0F172A;

    outline: none;
    transition: all 0.2s ease;
    font-weight: 300;
}

/* textarea */
.webFormItemField textarea {
    min-height: 120px;
    resize: vertical;
}

/* focus */
.webFormItemField input:focus,
.webFormItemField textarea:focus {
    border-color: #5A50C8;
    box-shadow: 0 0 0 3px rgba(90, 80, 200, 0.12);
    background: #FFFFFF;
}

/* =========================
   ERROR STATE (универсально)
========================= */

.webFormItemField.error input:not([type="checkbox"]):not([type="radio"]),
.webFormItemField.error textarea,
.webFormItemField.error select {
    border-color: #991B1B !important;
    background: #FFE5E5 !important;
    -box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.15) !important;
}

/* =========================
   RADIO
========================= */

.webFormItemFieldVariant {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

/* =========================
   PERSONAL INFO BLOCK
========================= */

.personalInfo {
    margin-top: 20px;
    padding: 12px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.personalInfoFieldWrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    -border: 1px solid #E2E8F0;
    border-radius: 12px;
    -background: #FFFFFF;
    transition: all 0.2s ease;
}

/* hover */
.personalInfoFieldWrap:hover {
    -border-color: #D6DBF5;
}

/* focus */
.personalInfoFieldWrap:focus-within {
    -border-color: #5A50C8;
    box-shadow: 0 0 0 3px rgba(90, 80, 200, 0.12);
}

/* error */
.personalInfoFieldWrap.error {
    border: 1px solid #991B1B !important;
    background: #FFE5E5;
}

/* label */
.personalInfoFieldWrap label {
    margin: 0;
    line-height: 1.5;
    cursor: pointer;
    color: #334155;
}

/* checkbox */
.personalInfoFieldWrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    cursor: pointer;
	-webkit-appearance: auto !important;
    accent-color: #2F7D6B;
}

/* =========================
   BUTTONS
========================= */

.webFormTools {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.sendWebFormDw {
    background: #2F7D6B;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.sendWebFormDw:hover {
    background: #276B5C;
}

.webFormTools input[type="reset"] {
    background: transparent;
    border: 1px solid #D6DBF5;
    color: #5A50C8;
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
	font-size: 16px;
}

.webFormTools input[type="reset"]:hover {
    background: #EEF2FF;
}

/* =========================
   ERRORS TEXT
========================= */

.webFormItemError {
    font-size: 12px;
    color: #991B1B;
    margin-top: 4px;
    display: none;
}

.webFormItemError.visible {
    display: block;
}

/* =========================
   GLOBAL ERROR
========================= */

.webFormError {
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #FFE5E5;
    color: #991B1B;
    display: none;
}

.webFormError.visible {
    display: block;
}

/* =========================
   MODAL SUCCESS
========================= */

.webFormMessage {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    background: rgba(11, 18, 32, 0.6);
    backdrop-filter: blur(6px);
}

.webFormMessageContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.webFormMessageMiddle {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    width: 420px;
    max-width: 90%;
    text-align: center;
}

.webFormMessageHeading {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 10px;
}

.webFormMessageDescription {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 16px;
}

.webFormMessageExit {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    background: #5A50C8;
    color: #fff;
    text-decoration: none;
}

.webFormMessageExit:hover {
    background: #4B42AA;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
	.sendWebFormDw {
		box-sizing: border-box;
	}
	.webFormItemsColumn {
		flex: 1 1 20px;
	}
    .webFormItems {
        flex-direction: column;
    }

    .customWebFormWrapper {
        padding: 16px;
    }

    .webFormTools {
        flex-direction: column;
        align-items: stretch;
    }
}

/* =========================
   SELECT ARROW
========================= */

.webFormItemField select {
    height: 52px;
    padding: 0 44px 0 16px;
    appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

/* =========================
   TRAP
========================= */

.webFormTrap {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* =========================
   LINKS
========================= */

.pilink {
    color: #5A50C8 !important;
}

/* =========================
   FILE UPLOAD FIELD
========================= */

.webFormItemField input[type="file"] {

    width: 100%;
    box-sizing: border-box;

    padding: 14px;

    background: #F6F8FB;

    border: 1px dashed #B7D9D1;
    border-radius: 14px;

    color: #334155;

    font-size: 14px;
    cursor: pointer;

    transition: all .25s ease;

}


/* кнопка выбора файла */

.webFormItemField input[type="file"]::file-selector-button {

    background: #5A50C8;

    color: #FFFFFF;

    border: none;

    padding: 10px 16px;

    margin-right: 14px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: background .2s ease;

}


.webFormItemField input[type="file"]::file-selector-button:hover {

    background: #4B42AA;

}


/* hover зоны */

.webFormItemField input[type="file"]:hover {

    background: #FFFFFF;

    border-color: #E2E8F0;

    box-shadow:
        0 0 0 3px rgba(90,80,200,.08);

}


/* focus */

.webFormItemField input[type="file"]:focus {

    outline: none;

    border-color: #E2E8F0;

    box-shadow:
        0 0 0 3px rgba(90,80,200,.12);

}


/* =========================
   FILE FIELD WRAPPER
========================= */


.webFormItem:has(input[type="file"]) 
.webFormItemField {

    position: relative;

}


/* подпись к загрузке */

.webFormItem:has(input[type="file"])
.webFormItemField::after {

    content:
    "Можно приложить документы, фото, скриншоты или другие материалы";

    display:block;

    margin-top:10px;

    color:#64748B;

    font-size:12px;

    line-height:1.5;

}


/* =========================
   SELECTED FILE STATE
========================= */


.webFormItem:has(input[type="file"].has-file)
.webFormItemField {

    border-radius:14px;

}


.webFormItem:has(input[type="file"].has-file)
input[type="file"] {

    background:#E6F4F1;

    border-color:#2F7D6B;

}


/* =========================
   MOBILE
========================= */


@media(max-width:768px){

    .webFormItemField input[type="file"] {

        padding:12px;

        font-size:13px;

    }


    .webFormItemField input[type="file"]::file-selector-button {

        width:100%;

        margin-right:0;

        margin-bottom:8px;

    }

}
/* End */


/* Start:/local/assets/css/sect_information_block.css?17801212353163*/
.prr-contact-widget{
	width:280px;
	position:relative;
}

.prr-contact-widget__inner{
	position:relative;
	padding:28px;
	border-radius:28px;

	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,.92) 0%,
			rgba(248,250,255,.96) 100%
		);

	border:1px solid rgba(95,108,255,.08);

	/*box-shadow:
		0 20px 60px rgba(17,24,39,.08),
		0 2px 10px rgba(17,24,39,.04);*/


	box-shadow: 
	  0 10px 20px #E2E8F0,
	  0 2px 10px #F6F8FB;

	backdrop-filter:blur(14px);

	overflow:hidden;
}

.prr-contact-widget__inner:before{
	content:"";
	position:absolute;
	top:-120px;
	right:-120px;

	width:220px;
	height:220px;

	background:
		radial-gradient(
			circle,
			rgba(95,108,255,.18) 0%,
			rgba(95,108,255,0) 72%
		);

	pointer-events:none;
}

.prr-contact-widget__badge{
	display:inline-flex;
	align-items:center;
	gap:8px;

	padding:8px 12px;

	border-radius:999px;

	background:rgba(95,108,255,.08);

	color:#5A50C8;

	font-size:12px;
	font-weight:600;
	letter-spacing:.02em;

	margin-bottom:18px;
}

.prr-contact-widget__badge i{
	width:15px;
	height:15px;
}

.prr-contact-widget__title{
	margin:0 0 12px;

	font-size:28px;
	line-height:1.08;
	font-weight:800;

	color:#0f172a;
}

.prr-contact-widget__text{
	font-size:14px;
	line-height:1.7;

	color:#64748b;

	margin-bottom:28px;
}

.prr-contact-widget__list{
	display:flex;
	flex-direction:column;
	gap:14px;
}

.prr-contact-widget__item{
	display:flex;
	align-items:flex-start;
	gap:14px;

	padding:14px;

	border-radius:18px;

	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,.9) 0%,
			rgba(245,247,255,.92) 100%
		);

	border:1px solid rgba(95,108,255,.08);

	transition:
		transform .25s ease,
		border-color .25s ease,
		box-shadow .25s ease;
}

.prr-contact-widget__item:hover{
	transform:translateY(-2px);

	border-color:rgba(95,108,255,.18);

	box-shadow:
		0 12px 28px rgba(95,108,255,.08);
}

.prr-contact-widget__icon{
	flex:0 0 42px;

	width:42px;
	height:42px;

	display:flex;
	align-items:center;
	justify-content:center;

	border-radius:14px;

	background:
		linear-gradient(
			135deg,
			#5A50C8 0%,
			#7c86ff 100%
		);

	color:#fff;

	box-shadow:
		0 10px 24px rgba(95,108,255,.22);
}

.prr-contact-widget__icon i{
	width:20px;
	height:20px;
}

.prr-contact-widget__content{
	font-size:14px;
	line-height:1.7;

	color:#0f172a;

	word-break:break-word;
}

.prr-contact-widget__content a{
	color:#5A50C8;
	text-decoration:none;

	transition:opacity .2s ease;
}

.prr-contact-widget__content a:hover{
	opacity:.72;
}

.prr-contact-widget__footer{
	margin-top:28px;
}

.prr-contact-widget__button{
	max-width:100%;

	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;

	padding:16px 18px;

	border-radius:18px;

	background:
		linear-gradient(
			135deg,
			#5A50C8 0%,
			#7480ff 100%
		);

	color:#fff;
	text-decoration:none;

	font-size:14px;
	font-weight:700;

	box-shadow:
		0 16px 40px rgba(95,108,255,.26);

	transition:
		transform .25s ease,
		box-shadow .25s ease;
}

.prr-contact-widget__button:hover{
	transform:translateY(-2px);

	box-shadow:
		0 22px 46px rgba(95,108,255,.34);
}

.prr-contact-widget__button i{
	width:18px;
	height:18px;
}
/* End */
/* /local/components/bitrix/menu/templates/personal/style.css?17810342161850 */
/* /local/components/bitrix/form.result.new/templates/twoColumns_custom/style.css?17871488109295 */
/* /local/assets/css/sect_information_block.css?17801212353163 */
