
/* checkbox style*/

.form-check{
	padding-top: 0.6em !important;
}
.form-check label {
	padding-left: 0.4em !important;
}

input[type='checkbox'] {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeSpeed;
	width: 1.4em;
    height: 1.4em;
	margin: 0;
	display: block;
	float: left;
	position: relative;
	cursor: pointer;
	border-radius: .2em;
}

input[type='checkbox']:after {
	content: "";
	vertical-align: middle;
	text-align: center;
	position: absolute;
	cursor: pointer;
	width: 1.48em;
    height: 1.39em;

}

input[type='checkbox']:checked:after {
	border-radius: .2em;
	background: #556ee6;
	content: '\2714';
	color:#fff;
	left: 0;
    top: 0;
	font-size: 0.9em;
	line-height: 1.4;

}

input[type='checkbox']:disabled:checked:after {
	border-radius: .2em;
	content: '\2714';
	color:#fff;
	left: 0;
    top: 0;
	font-size: 0.9em;
	line-height: 1.5;

}

input[type='radio'] {
	width: 1.3em;
    height: 1.3em;
	border-radius: .2em;
}

input[type='checkbox']:disabled {
	opacity: 0.8;
}

.form-check-input:disabled {
	pointer-events: none;
	-webkit-filter: none;
			filter: none;
	opacity: 0.8;
}

.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
	opacity: 0.8;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e2e3e4 !important;
    opacity: 0.8 !important;;
}
.form-select:disabled {
    color: #74788d;
    background-color: #f8f9fb
}

/* TOOLTIP BTN ICON*/
.tooltip-icon {
    position: relative;
    display: inline-block;
}

.tooltip-icon .tooltip-text {
    visibility: hidden;
    min-width: 90px;
    background-color: #002c61;
    font-size: 1em;
    font-weight: 450;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 3.7px;
    position: absolute;
    z-index: 9999;
    top: 118%;
    left: 95%;
    margin-left: -60px;
}

.tooltip-icon .tooltip-text::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -3px;
    border-width: 3px;
    border-style: solid;
    border-color: transparent transparent #002c61 transparent;
    z-index: 9999;
}

.tooltip-icon:hover .tooltip-text {
    visibility: visible;
}

button:disabled {
    opacity: .6;
	cursor: default;
	cursor: none;
}
