.ncForm
{
    width: 100%;
}
.ncFieldct
{
    clear: both;
    overflow: hidden;
    margin-top: 10px;
}
.ncFieldct label
{
    float: left;
    text-align: right;
    width: 30%;
    margin-right: 20px;
    font-weight: normal;
    margin-top: 5px;
}
.ncField
{
    float: right;
    width: 65%;
}
.ncField input, .ncField select
{
    border: solid 1px #BBBBBB;
    padding: 4px;
    border-radius: 4px;
}
.ncField .k-invalid, .ncField .k-invalid
{
    background-color:#F2DCDC;
    border-color:#990000;
}
.ncSendZone
{
    margin-top: 30px;
    text-align: center;
    clear: both;
    height: 50px;
}
.ncpopoutf
{
	z-index: 999;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;				
	background-color: #666666;
	color: #aaaaaa;
	opacity: .8;
    filter: alpha(opacity = 50);
}
.ncpopf
{
    width: 300px;
    height: 200px;
	position: absolute;
	color: #000000;
	background-color: #ffffff;
	top: 50%;
    z-index: 10000;
    border-radius:15px;
    padding:15px;
    text-align:center;
    padding-top:60px;
	left: 50%;
	margin-top: -100px;
	margin-left: -150px;
/* Styles spécifiques pour les cases à cocher */
.ncFieldct.tpboolean {
    display: flex;
    align-items: center;
}

.ncFieldct.tpboolean label {
    order: 2;
    margin-left: 10px;
    width: auto;
}

.ncFieldct.tpboolean .ncField {
    order: 1;
    width: auto;
}

.ncFieldct.tpboolean input[type='checkbox'] {
    margin-right: 10px;
}