.wpo-mstluczka-form {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 2.5rem;
	font-family: 'Roboto', sans-serif;
	background: #fff;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	position: relative;
	
	.nav-breadcrumb {
		width: 100%;
		margin: 0 auto 4rem;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		padding: 0 2rem;
	}
	
	.nav-tile {
		display: flex;
		align-items: center;
		position: relative;
		z-index: 2;
		background: #fff;
		padding: 0 10px;
		transition: all 0.2s ease;
		
		&.active {
			.circle {
				background: #1f338a;
				border-color: #1f338a;
				color: white;
			}
			
			.nav-text {
				color: #1f338a;
			}
			
			.nav-label {
				color: #1f338a;
			}
		}
	}
	
	.circle {
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 2px solid #E5E7EB;
		border-radius: 50%;
		margin-right: 15px;
		font-size: 18px;
		color: #333;
		background: #fff;
		transition: all 0.2s ease;
		font-weight: 400;
	}
	
	.nav-inner {
		display: flex;
		flex-direction: column;
	}
	
	.nav-label {
		font-size: 12px;
		font-weight: 400;
		color: #6B7280;
		margin-bottom: 2px;
	}
	
	.nav-text {
		font-size: 14px;
		font-weight: 400;
		color: #333;
		transition: color 0.2s ease;
	}
	
	.form-row {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 20px;
	}
	
	.form-col {
		display: flex;
		align-items: flex-start;
		flex: 1;
		position: relative;
		min-width: 280px;
		
		&.form-col-level-1 {
			gap: 10px;
		}
	}
	
	.form-col-left {
		flex-basis: 20%;
		
		&.form-col-lg {
			flex-basis: 50%;
		}
	}
	
	.form-col-right {
		flex: 1;
	}
	
	label {
		display: block;
		font-size: 16px;
		color: #374151;
		font-weight: 400;
		margin: 0;
		margin-top: 7px;
		
		&.error {
			color: red;
			font-size: 13px;
			text-align: right;
			font-weight: 500;
		}
	}
	
	.radio-group {
		display: flex;
		gap: 2rem;
		align-items: center;
	}
	
	.radio-label {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		cursor: pointer;
		font-weight: 400;
		color: #374151;
	}
	
	input, select {
		width: 100%;
		border: 1.5px solid #E5E7EB;
		border-radius: 8px;
		font-size: 15px;
		color: #1F2937;
		transition: all 0.2s ease;
		background-color: #fff;
		font-family: inherit;
		padding: 12px;
		height: 45px;
		
		&.error {
			border-color: #ee2e23!important;
			box-shadow: 0px 0px 1px 0px #ee2e23;
		}
		
		&:focus {
			outline: none;
			box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
			border-color: #f0f0f0!important;
		}
		
		&::placeholder {
			color: #6B7280;
		}
		
		&[type="radio"] {
			appearance: none;
			height: 20px!important;
			width: 20px!important;
			border: 1.5px solid #E5E7EB;
			border-radius: 50%;
			margin: 0;
			position: relative;
			cursor: pointer;
			
			&:checked {
				border-color: #1c3b8a;
				background-color: #1c3b8a;
				
				&::after {
					content: '';
					position: absolute;
					width: 0.5rem;
					height: 0.5rem;
					background: white;
					border-radius: 50%;
					top: 50%;
					left: 50%;
					transform: translate(-50%, -50%);
				}
			}
		}
	}
	
	.form-navigation {
		display: flex;
		width: 100%;
		justify-content: flex-end;
		gap: 15px;
	}
	
	.btn.submit {
		background-color: #1f338a;
		color: #fff;
		font-size: 15px;
		font-weight: 500;
		border-radius: 10px;
		padding: 12px 20px;
		border: 0px;
		margin-top: 20px;
		display: flex;
		justify-content: normal;
		gap: 20px;
		min-width: 100px;
		transition: all 0.2s ease;
		
		&:hover {
			background-color: #162661;
			transform: translateY(-1px);
		}
	}
	
	.step-section-title {
		font-size: 19px;
		margin-top: 24px;
		font-weight: 500;
		margin-bottom: 20px;
		color: #374151;
	}
	
	.wpo-loader {
		display: none;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		background-color: rgba(255, 255, 255, 0.6196078431);
		z-index: 9999999;
		width: 100vw;
		
		&.active {
			display: flex !important;
		}
		
		.wpo-loader-inner {
			border: 6px solid #337ab7;
			border-top: 6px solid rgba(8, 4, 57, 0.73);
			border-radius: 50%;
			width: 80px;
			height: 80px;
			animation: spin 1s linear infinite;
		}
	}
	
	@keyframes spin {
		0% {
			transform: rotate(0deg);
		}
		100% {
			transform: rotate(360deg);
		}
	}
	
	/* Responsive styles */
	@media screen and (max-width: 1024px) {
		padding: 2rem 1.5rem;
		margin: 1rem;
		
		.nav-breadcrumb {
			flex-direction: column;
			gap: 1.5rem;
			margin: 2rem auto 3rem;
			padding: 0;
		}
		
		.nav-tile {
			width: 100%;
			justify-content: flex-start;
			padding: 1rem;
			border-radius: 8px;
			box-shadow: 0 2px 4px rgba(0,0,0,0.05);
			background: #F8FAFC;
			border: 1px solid #E2E8F0;
		}
	}
	
	@media screen and (max-width: 1024px) {
		.form-col-level-1 {
			flex-direction: column!important;
		}
		
		.form-col-right {
			width: 100%;
		}
		
		.radio-group {
			display: flex;
			flex-direction: column;
			gap: 10px;
			align-items: flex-start;
			/*margin-top: 10px;*/
		}
		
		.radio-label {
			display: flex;
			align-items: center;
			gap: 0.75rem;
			cursor: pointer;
			font-weight: 400;
			color: #374151;
			/*padding: 8px 0;*/
			width: 100%;
			/*min-height: 44px;*/
		}
		
		.step-section-title {
			margin-top: 40px!important;
		}
	}
	
	@media screen and (max-width: 480px) {
		padding: 1.5rem;
		
		.form-col {
			min-width: 100%;
		}
		
		.radio-group {
			align-items: flex-start;
			gap: 1rem;
			flex-direction: column;
		}
		
		.radio-label {
			min-height: 48px;
			padding: 12px 0;
		}
		
		input[type="radio"] {
			height: 24px!important;
			width: 24px!important;
			border: 2px solid #E5E7EB;
			
			&:checked::after {
				width: 0.6rem;
				height: 0.6rem;
			}
		}
		
		.circle {
			width: 45px;
			height: 45px;
			font-size: 20px;
			margin-right: 15px;
		}
		
		.nav-label {
			font-size: 12px;
		}
		
		.nav-text {
			font-size: 16px;
		}
	}
	
	@media (max-width: 400px) {
		padding: 1.5rem 15px!important;
		
		.form-row label.error {
			position: absolute;
			left: 0;
			right: unset!important;
			bottom: -25px;
		}
		
		input::placeholder {
			display: none!important;
			color: transparent!important;
		}
	}
	
	.wpo-timer{
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 14px;
		color: #374151;
		position: absolute;
		margin-top: 20px;
		right: 40px;
		border: 1px solid;
		color: white;
		top: -10px;
		font-weight: initial;
		
		.timer-label {
			font-weight: 100;
			color: #374151;
			font-style: italic;
			font-size: 12px;
		}
		
		.timer-value {
			font-weight: 400;
			color: #1c3b8a;
			font-size: 13px;
		}
	}
}
