/*pop up*/
@keyframes opac{from{opacity:0} to{opacity:1}}
.ndkw-popup {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999;
    -webkit-overflow-scrolling: touch;
    outline: none;
    transition: opacity 0.15s linear;
    /*opacity: 0;*/
    visibility: hidden;
    background: #00000096;
    padding: 5% 0;
}
.ndkw-popup.active {
    opacity: 1;
    visibility: visible;
    overflow-x: hidden;
    overflow-y: auto;
   animation: opac .5s;
}
.ndkw-popup.active .overlay {
   width: 100%;
   height: 100%;
}
.overlay {
  background-color: rgba(34, 34, 34, 0);
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   margin: auto;
   width: 0;
   height: 0;

}
.main-popup {
	max-width: 850px;
	padding: 40px;
	margin: 0 auto;
	position: relative;
	background-color: #fff;
	border-radius: 20px;
}
.popup-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.close-popup {
	cursor: pointer;
}
.btn-times.close-popup {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: #DAD5D5B2;
	color: #fff;
	border-radius: 100%;
	width: 24px;
	height: 24px;
	text-align: center;
	line-height: 24px;
	font-size: 14px;
	cursor: pointer;
}
.popup-head h2 {
	color: #C30419;
	font-size: 24px;
	font-weight: 900;
	line-height: 40px;
	margin: 0;
	text-transform: uppercase;
	flex: 1;
	padding-left: 120px;
	text-align: right;
}
.popup-content {
	text-align: center;
	margin-bottom: 40px;
	color: #626262;
}
.popup-form label{
	display: block;
	margin-bottom: 16px;
}
.popup-form .form-input input{
	padding-left: 20px;
	background-color: #FAF7EB;
}
.popup-form textarea{
	background-color: #FAF7EB;
}
.popup-form textarea:focus-visible {
	border-color: rgba(195, 4, 25, 0.40);
	outline: unset;
}
.popup-form textarea:hover,
.popup-form textarea:focus,
.popup-form input:hover,
.popup-form input:focus{
	background-color: #FCFAF6;
	border-color: rgba(195, 4, 25, 0.40) !important;
}
.popup-form textarea:focus::placeholder, 
.popup-form input:focus::placeholder {
  color: transparent;
}
.col-btn{
	margin-top: 30px;
	text-align: center;
}
button.btn-style {
	padding: 15px 30px;
	display: inline-flex;
	margin: 0 auto;
	cursor: pointer;
}
@media only screen and (max-width: 900px) {
	.main-popup {
		padding: 40px 20px 20px;
		margin: 0 10px;
	}
	.popup-head {
		justify-content: center;
		margin-bottom: 20px;
		text-align: center;
	}
	.popup-head img {
		max-width: 150px;
	}
	.popup-head h2 {
		font-size: 22px;
	}
	.popup-content {
		margin-bottom: 20px;
	}
	.popup-form label {
		margin-bottom: 10px;
	}
	/**/
	.popup-head h2{
		flex: unset;
		width: 100%;
		padding-left: 0;
		text-align: center;
		margin: 10px 0;
		line-height: 1.5;
	}

}