
.nt-formcell{position: relative;}

.nt-label-carousel,.nt-label-checkbox,.nt-label-display,.nt-label-file,.nt-label-gallery,.nt-label-gauge,
.nt-label-image,.nt-label-map,.nt-label-media,.nt-label-radio,.nt-label-tree,.nt-label-webcam,.nt-label-youtube
{
    border: var(--label-border);
    padding: var(--label-padding);
    margin-bottom: var(--label-margin); 
	border-radius: var(--entry-radius);
}
.nt-label-radio.nt-radio-div-ver,.nt-label-radio.nt-radio-div-buttons-ver{
	display: inline-block;
}

.nt-floating-label {
	position: absolute;
	pointer-events: none;
	transition: 0.2s ease all;
	top: var(--label-floating-top);
	left: var(--label-floating-left);	
	color: var(--label-floating-color);
	font-style:var(--label-floating-font-style);
}
.nt-floating-label.nt-entry-required{
	color: var(--label-floating-label-required);
}
.nt-fixed-label,.nt-formcell .nt-label-entry:focus ~ .nt-floating-label,
.nt-formcell .nt-label-entry:not(:placeholder-shown)~ .nt-floating-label{
	position: absolute;
	pointer-events: none;
	opacity: 1;
	top: var(--label-fixed-top);
	left: var(--label-fixed-left);	
	height:var(--label-fixed-height);
	font-size: var(--label-fixed-font-size);
	color: var(--label-fixed-color);
	background: var(--label-fixed-background);
	padding:var(--label-fixed-padding);
	font-style:var(--label-fixed-font-style);
}
.nt-label-carousel ~ .nt-fixed-label{
	top: var(--label-carousel-top);
	left: var(--label-carousel-left);
}