
/* Add the mandatory start after the field label */
div.required label.control-label::after {
    content: " *";
    color: red;
}

div.required .download label.control-label::after,
div.required .upload label.control-label::after{
    content: "";
}

/* Add the notsafe start after the field label */
label.notsafe::after {
    content: " *";
    color: blue;
}

/* Change field labels to bold */
label.control-label {
    font-weight: bold;
}

/* SELECT */

/* Change the style for disabled drop down list options */
select option:disabled{
	color:silver;
	cursor: not-allowed;
}

/* Change the style for readonly drop down list options */
select option.readonly{
	cursor: default !important;
}

/* TAB PANE */

/* Make the tab pane full width */
.tabbable-custom{
	margin-left:-20px;
	margin-right:-20px;
}

.portlet .portlet .tabbable-custom {
    margin-left: -15px;
    margin-right: -15px;
}

/* Remove the borders of the tab pane */
.tabbable-custom > .tab-content{
	border-left: 0px;
	border-right: 0px;
	border-radius: 0;
}

/* Add some margin to the tabs*/
.tabbable-custom > .nav-tabs{
	margin-left:20px;
}

/* Update the margin for row in the tab-pane */
.tab-pane > .row {
    margin-right: 0px;
    margin-left: 0px;
}

/* Change the z-index when there is an icon on the left and a button on the right 
	to bring the icon on the top when the field get the focus */
.input-icon > i{
	z-index: 4;
}

/* FORM BORDERED / TAB PANE */

.form-bordered .tabbable-custom {
    margin-left: 0px;
    margin-right: 0px;
	margin-bottom:0px
}

/* Remove the borders of the tab pane */
.form-bordered .tabbable-custom > .tab-content{
	padding-left:0px;
	padding-right:0px;
}

.form-bordered .tabbable-custom .form-group{
	padding-left: 5px;
}

.form-bordered .row {
    margin-left: 0px;
    margin-right: 0px;
}

/* FORM STRIPED  */

.form .form-horizontal.form-bordered.form-row-stripped .row:nth-child(2n) {
    background-color: #fcfcfc;
}

/* CHECKBOX/RADIO LIST*/

.mt-checkbox-list, .mt-radio-list{
	padding:0px;
}

.mt-checkbox:last-child, .mt-checkbox:last-child{
	margin-bottom:0px;
}
