
	#partner-widget {
		position: relative;
		max-width: 1280px;
		width: 100%;
		border-radius: 30px;
    z-index: 99;
	}


	.widget-loader {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		/* Идеальный центр */
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.95);
		padding: 30px;
		border-radius: 12px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
		z-index: 100;

		pointer-events: none;
    margin: 0 40px;

	}

	/* Сама форма виджета */
	.partner-widget-host {
		width: 100%;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.partner-widget-host.loaded {
		opacity: 1;
	}

	.widget-loader {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.9);
		padding: 40px;
		border-radius: 12px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
		min-width: 600px;
		z-index: 10;
	}

	.spinner {
		width: 50px;
		height: 50px;
		border: 5px solid #f3f3f3;
		border-top: 5px solid #000096;
		/* Твой фирменный синий */
		border-radius: 50%;
		animation: spin 1s linear infinite;
		margin-bottom: 15px;
	}

	@keyframes spin {
		0% {
			transform: rotate(0deg);
		}

		100% {
			transform: rotate(360deg);
		}
	}

	.partner-widget-host {
		opacity: 0;
		transition: opacity 0.5s ease;
	}

	.partner-widget-host.loaded {
		opacity: 1;
	}
