/*Диалоговая форма*/
.fblock_dialogForm {
	position: fixed;
    left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background-color: White;
	opacity: 0.95;
	z-index: 2000;
	display: none;
}

.dialogForm {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px; /* или 450px по вашему требованию */
    border: 1px solid #e5e5e5;
    background-color: white;
    height: auto;
    color: black;
    text-align: left;
    border-radius: 0;
    z-index: 2001;
    display: none;
}

.dialogForm .header {
	position: absolute;
    background-color: #f5f5f5;
    margin-top: 0px;
    margin-left: 0px;
    padding-left: 5px;
    color: Black;
    font-size: 15px;
    width: calc(100% - 20px);
    padding: 10px;
    border-radius: 0px 3px 0px 0px;
	text-align: center;
}

.dialogForm .close {
	position: absolute;
    right: 15px;
    font-size: 16px;
    top: 10px;
    color: Black;
    cursor: pointer;
	z-index: 2003;
}

.dialogForm .text {
	padding: 15px;
    padding-top: 50px;
    text-align: center;
    line-height: 2;
}

.dialogForm textarea {
	border-radius: 0px;
    border: 1px Solid silver;
}

.dialogForm input {
	background-color: White;
	border: 1px solid #D3D3D3;
	padding: 10px;
	padding-left: 10px;
	font-family: VekaLight;
	font-size: 20px;
	margin: 0px;
	color: Black;
	width: calc(100% - 23px);
	height: 25px;
}

.dialogForm button {
	transition: 200ms ease-out;
	margin-top: 2px;
	padding-left: 10px;
	height: 48px;
	background-color: #ededed;
	color: Black;
	border: 0px;
	font-family: VekaRegular;
	cursor: pointer;
	text-transform: uppercase;
	min-width: 0px;
}

.dialogForm button:hover {
    background-color: #28a6ff;
}

@media screen and (max-width: 1215px) {
    .fblock_dialogForm {
		position: fixed;
		left: 0px;
		right: 0px;
		top: 0px;
		bottom: 0px;
		background-color: White;
		opacity: 0.95;
		z-index: 2000;
		display: none;
	}

	.dialogForm {
		position: fixed;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: calc(100% - 10px);
		max-width: 450px;
		border: 1px solid #e5e5e5;
		background-color: white;
		height: auto;
		color: black;
		text-align: left;
		border-radius: 0;
		z-index: 2001;
		display: none;
	}

	.dialogForm .header {
		position: absolute;
		background-color: #f5f5f5;
		margin-top: 0px;
		margin-left: 0px;
		padding-left: 5px;
		color: Black;
		font-size: 15px;
		width: calc(100% - 20px);
		padding: 10px;
		border-radius: 0px 3px 0px 0px;
		text-align: center;
	}

	.dialogForm .close {
		position: absolute;
		right: 15px;
		font-size: 16px;
		top: 10px;
		color: Black;
		cursor: pointer;
		z-index: 2003;
	}

	.dialogForm .text {
		padding: 15px;
		padding-top: 50px;
		text-align: center;
		line-height: 2;
	}

	.dialogForm input {
		background-color: White;
        border: 1px solid #D3D3D3;
        padding: 10px;
        padding-left: 10px;
        font-family: VekaLight;
        font-size: 20px;
        margin: 0px;
        color: Black;
        width: calc(100% - 23px);
        height: 25px;
	}

	.dialogForm button {
		transition: 200ms ease-out;
		margin-top: 2px;
		padding-left: 10px;
		height: 48px;
		background-color: #ededed;
		color: Black;
		border: 0px;
		font-family: VekaRegular;
		cursor: pointer;
		text-transform: uppercase;
		min-width: 0px;
	}

	.dialogForm button:hover {
		border-color: #4a94d1;
		background-color: #e9f2f9;
	}
}