:root {
	--light-primary: #E9F0EC;
}

.rounded {
	border-radius: 4px !important;
}

.text-grey {
	color: #303532 !important;
}

.dropdown-toggle::after {
	display: none;
}

.border-grey {
	border-color:  var(--gray) !important;
}

.bg-light {
	background-color: #F8F8F8 !important;
}

.bg-light-primary {
	background-color: var(--light-primary);
}

.form-file-drag {
	border: 2px dashed var(--primary);
	border-radius: 10px;
	padding: 7px;
	min-height: 130px;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form-file-drag input {
	height: 100%;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	cursor: pointer;
}

.bg-light-grey {
	background-color: #E9F0EC !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus, .navbar-nav .nav-link.active {
    background: var(--primary);
    border-radius: 4px;
    transition: ease all 0.3s;
    color: #fff !important;
}

.navbar-light .navbar-nav .nav-link:hover > .text-primary, .navbar-light .navbar-nav .nav-link:focus > .text-primary, .navbar-nav .nav-link.active > .text-primary {
    color: #fff !important;
}

.form-check .form-check-input {
    border: solid 1.2px #b5b5b5 !important;
}

.--dark .form-check .form-check-input {
    border: solid 1.2px #fff !important;
}

/* Overide table */

table.table-items tr td {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

@media screen and  (max-width: 767px) {
    body {
        padding-top: 62px;
    }
    /* table.table-items tr td {
        display: block;
    } */
}

#helpdesk {
	position: fixed;
	z-index: 9999;
	bottom: 10px;
	right: 10px;
}

.setting-head {
	position: relative;
}


.setting-head.active {
	font-weight: bold !important;
}

.setting-head.active::after {
	content: '';
	height: 2px;
	width: 100%;
	display: block;
	position: absolute;
	background-color: var(--primary);
	left: 0;
	bottom: 0;
}

.form-password {
	position: relative;
}

.form-password button {
	position: absolute;
	bottom: 5px;
	font-size: 19px;
	right: 0px;
}


input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}