
/***OKNA*Окна***/

#progressbar {
  display: flex;
  align-items: center;
  height: 2em;
  width: 100%;
  min-width: 4em;
  border: solid 2px lightgray;
  position: relative;
  border-radius: 0px;
}
#progressbar > div {
	border-radius:0px;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(to bottom, var(--lightgreen), var(--green));
	transition: width .5s linear;
	z-index: -1;
}
#progressbar:after {
  content: attr(data-progress) '%';
  display: block;
  margin: auto;
}
/*Старые окна подтверждения и так далее*/
.block-field{
	overflow: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 770px;
	height: auto;
	max-height:100vh;
	max-width: 100%;
	margin: auto;
	border-radius: 3px;
	background-color: var(--white);
	color: var(--black);
	z-index: 92;
	font-family: "Open Sans", sans-serif;
	padding: 40px 14px 70px 16px;
}
.block-field h3{ /*Заголовок*/
	font-size: 36px;
	text-align: center;
	margin-bottom: 22px;
}
.block-field .info_left{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex; 
	-khtml-box-lines:single;
	-webkit-box-lines:single;
	-ms-flex-wrap:nowrap;
	-webkit-flex-wrap:nowrap;
	flex-wrap:nowrap;
	-webkit-box-pack:justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-box-align:end;
	-webkit-align-items:flex-end;
	align-items:flex-end;
	border-bottom: 2px solid #e6e6e6;
	margin-bottom: 5px;
	padding-bottom: 6px;
	font-size: 18px;
}
.info_right{
	color: var(--green) !important;
	line-height: 1;
	text-align: right;
}
.phone-call
{
	display: block;
	width: 180px;
	height: 43px;
	color: var(--green);
	background-color: var(--white);
	text-decoration: none;
	text-align: center;
	border-radius: 2px;
	line-height: 2.4;
	border: 1px solid var(--green);
}
.phone-call:hover{
	background-image: linear-gradient(to bottom, var(--lightgreen), var(--green));
	color: var(--white);
}

.block-field div,
.block-field input {
	box-sizing:border-box;
}
.block-field h1{
	color: var(--green);
	font-weight: 600;
	font-size: 24px;
	text-align: center;
	margin-bottom: 10px;
}

.block-field .input_text{
	-webkit-appearance:none;
	width:100%;
	padding:0 15px;
	height:40px;
	font-size:1.1em;
	border:none;
	border-radius:0;
	box-shadow:none;
	outline:none;
	box-sizing:border-box;
	-webkit-user-modify:read-write-plaintext-only
}

.block-field .block_border {
	border:1px solid var(--gray);
}

.modal {
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height: 100%;
	background:var(--white);
	z-index:2010;
	border-radius:5px;
	box-sizing:border-box;
	display:none;
}

.border {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex; 
	-khtml-box-lines:single;
	-webkit-box-lines:single;
	-ms-flex-wrap:nowrap;
	-webkit-flex-wrap:nowrap;
	flex-wrap:nowrap;
	-webkit-box-pack:justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-box-align:end;
	-webkit-align-items:flex-end;
	align-items:flex-end;
	cursor:pointer;
}

.exit, .cancel2, .ok, .cancelalertbtnno, .cancel {
	display: block;
	text-align: center;
	text-decoration: none;	
	max-width: 75%;
	width: auto;
	height: 60px;
	background-color: var(--white);
	/*background-image: linear-gradient(to bottom, var(--lightgreen), var(--green));*/
	color: var(--green);
	font-size: 16px;
	font-weight: 600;
	line-height: 55px;
	border-radius: 5px;
	margin: auto;
	border: 1px solid var(--green);
	cursor:pointer;
	padding: 0px 10px 0px 10px;
}
.exit:hover, .cancel2:hover,.ok:hover, .cancelalertbtnno:hover, .cancel:hover  {
	background-image: linear-gradient(to bottom, var(--lightgreen), var(--green));
	color: var(--white);
}
.modalntf-cls-btn {
	position: absolute;
	top: 24px;
	right: 26px;	
	width: 35px;
	height: 35px;
	background: url(../img/modal-cls-btn.png) 0 0 no-repeat;
	cursor: pointer;
}
.overlay {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:var(--black);
	opacity:0.5;
	z-index:1050;
	display:none;
}