/**
* All of the CSS for your public-facing functionality should be
* included in this file.
*/
.d-block{
	display: block!important;
	width: 100%;
}

/* FORM Cute styles */
.numrot_form_content{
	position: relative;
}

.numrot_form_content .flex-row{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-content: center;
}
.numrot_form_content .allow-format{
	font-size: 13px;
	font-weight: 100;
	color: gray;
}
.numrot_form_content .flex-row .nt-col{
	width: 98%;
	position: relative;
}
.numrot_form_content .flex-row .nt-col div{
	overflow: hidden;
	position: relative;
}
.numrot_form_content .flex-row .nt-col input, 
.numrot_form_content .flex-row .nt-col select,
.numrot_form_content .flex-row .nt-col textarea{
	width: 100%;
}
.numrot_form_content .flex-row button.send{
	background-color: #000000;
	color: #ffffff;
	cursor: pointer;
	border-width: 0;
	border-style: solid;
	text-decoration: none;
	position: relative;
	display: inline-block;
	overflow: hidden;
	z-index: 1;
	padding: .6em 20px;
	height: 2.8em;
	border-radius: 0;
	line-height: 1.6em;
	font-weight: 700;
	margin: 10px auto;
}

.numrot_form_content .flex-row .nt-col.double{
	display: flex;
	justify-content: space-between;
}
.numrot_form_content .flex-row .nt-col.double div{
	width: 48%;
}
/* Form Error */
.numrot_form_content .flex-row .nt-col .error{
	border-color: red;
}

.numrot_form_content .flex-row .nt-col .message-error{
	position: absolute;
	bottom: 0;
	margin: 0;
	right: 0;
	font-size: 13px;
	padding: 2px 5px;
	background: red;
	color: white;
	border-radius: 8px 0 0 0;
}

@media screen and (max-width: 764px) {
	.numrot_form_content .flex-row .nt-col.double{
		flex-direction: column;
	}
	.numrot_form_content .flex-row .nt-col.double div{
		width: 100%;
	}
	.numrot_form_content .flex-row button.send{
		margin: 10px 0;
	}
}

/* Loading Styles */
.loading{
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.8);
	z-index: -1;
	opacity: 0;
	transition: 500ms opacity;
}
.loading.active{
	z-index: 999;
	opacity: 1;
}
.loading .svg-img.disable{
	display: none;
}
.loading .response{
	text-shadow: 2px 2px 8px rgba(0,0,0,.5);
}
.loading .response.active{
	background: #4caf50;
}
.loading .response.fail{
	background: rgb(192, 10, 10)
	color: white;
	padding: 15px;
}