.data-input,
.data-input *,
.data-input img.calendar-icon{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.data-input__errors{

}
.data-input__note{

}
.data-input__form-control{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 15px;
}
.data-input__control-label{
	width: 100%;
}
.data-input__control-field{
	width: 100%;
	position: relative;
}
.data-input__control-field input[type="text"]{
	width: 100%;
	height: 33px;
    background: #f2f2f2;
    padding: 0 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #333;
    vertical-align: top;
    font-family: Arial, Helvetica, sans-serif;
}

.data-input__control-field .calendar-icon{
	position: absolute;
	right: 1px;
	top: 1px;
	width: 31px;
	height: 31px;
	border: 1px solid transparent;
}
.data-input__dropdown{
	max-height: 300px;
	overflow: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	list-style: none;
	background: #fff;
	border: 1px solid #ccc;
	z-index: 2;
}
.data-input__dropdown li{
	cursor: pointer;
	padding: 7px;
}
.data-input__dropdown li:hover{
	background: #f2f2f2;
}
.data-input__dropdown li[data-entity="empty"]{
	background: #fff;
	cursor: default;
}
.loading{
    position: relative;
}
.loading:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff url(images/double_ring.svg) center no-repeat;
    z-index: 1000;
    opacity: .8;
}
.hide{
	display: none;
}
.text-center{
	text-align: center;
}
.form-required 
{
	color: red;
}
.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(images/icon_warn.gif);
}
.data-input__meters-title,
.data-input__meters-oldval{
	padding-bottom: 5px;
}
.data-input__meters-newval{
	display: flex;
	width: 100%;
	align-items: center;
	padding-bottom: 15px;
}
.data-input__meters label{
	padding-right: 15px;
	width: 80%;
}
@media screen and (min-width: 720px){
	.data-input__form-control{
		flex-wrap: nowrap;
	}
	.data-input__control-label{
		width: 50%;
		padding-right: 20px;
		min-width: 280px;
	}
	.data-input__control-field{
		width: 50%;
	}
	.data-input__meters label{
		width: 60%;
		white-space: nowrap;
	}
}