.worck-popup-overlay {
	z-index: 999999995;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba( 255, 255, 255, 0.62 );
	display: none;
}

	.worck-popup {
		z-index: 999999995;
		width: 740px;
		max-width: 92%;
		margin: 0 auto;
		box-shadow: var(--box-shadow);
		background: #fff;
		position: relative;
		border-radius: 30px;
		overflow: hidden;
	}

	.worck-popup-width-wide {
		width: 1180px;
		display: flex;
	}

		.worck-popup-banner {
			overflow: hidden;
		}

		.worck-popup-width-wide .worck-popup-banner {
			width: 40%;
			flex-shrink: 0;
		}

			.worck-popup-width-wide .worck-popup-banner img {
				height: 100%;
				object-fit: cover;
			}

		.worck-popup-main {
			padding: 40px;
			width: 100%;
			max-height: 90vh;
			overflow-y: auto;
		}

			.worck-popup-title {
				margin-bottom: 22px;
				margin-top: 0 !important;
			}

			.worck-popup-title:last-child {
				margin-bottom: 0 !important;
			}

			.worck-popup-subtitle {
				font-size: 17px;
				line-height: 27px;
				margin-bottom: 4px;
				margin-top: 0 !important;
				font-weight: 400;
			}

			.worck-popup-subtitle:last-child {
				margin-bottom: 0 !important;
			}

			.worck-popup-content {
				margin-bottom: 30px;
			}

			.worck-popup-content:last-child {
				margin-bottom: 0 !important;
			}

				.worck-popup-content p {
					margin: 0 0 20px 0;
				}

			.worck-popup-content-after {
				font-size: 15px;
				line-height: 1;
				color: #959595;
				text-decoration: underline;
			}

			.worck-popup-content-after:last-child {
				margin-bottom: 0 !important;
			}

		.worck-popup-close {
			position: absolute;
			right: 15px;
			top: 15px;
			width: 22px;
			height: 22px;
			font-size: 11px;
			text-align: center;
			cursor: pointer;
		}

			.worck-popup-close svg {
				fill: var(--headings-color);
			}

/**
 * Form
 */
 

.worck-popup-content {
	position: relative;
}

/*

.worck-popup-content input[type="text"],
.worck-popup-content input[type="email"] {
	background: #f5f5f5;
	border: 0;
	display: inline-block;
	line-height: 60px;
	color: #666666;
	font-size: 17px;
	padding: 0;
	width: 100%;
	border-radius: 0;
	padding: 0 30px;
}

.worck-popup-content input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	border: 0;
	display: inline-block;
	line-height: 60px;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	background: #e86059;
	padding: 0 25px;
	margin: 0;
	border-radius: 0;
	text-transform: uppercase;
}
	*/

@media only screen and (max-width: 1023px ) {
	
	.worck-popup-main {
		max-height: 80vh;
	}

}