/***********************/
/* NAV / NAVBAR        */
/***********************/
.nav-tabs .nav-link{
    color: black;
}

.navbar-brand img, .navbar-brand svg{
    margin-right: 16px;
}

nav li{
    padding-left: 0px;
}

nav ul img, nav ul svg{
    padding-right: 10px;
    height: 24px;
}

/***********************/
/* BTN                 */
/***********************/

.btn{
    min-height: 40px;
    min-width: 40px;
    margin: 2px;
    border-radius: 0px;
    height: max-content;
}

.btn img, .btn svg{
    height: 24px;
}

.btn-primary {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #82CD2B;
    --bs-btn-border-color: #82CD2B;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #5c941c;
    --bs-btn-hover-border-color: #5c941c;
    --bs-btn-focus-shadow-rgb: 33,33,33;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #5c941c;
    --bs-btn-active-border-color: #5c941c;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #a0b885;
    --bs-btn-disabled-border-color: #a0b885;
}

.btn-primary img, .btn-primary svg{
    filter: invert(1);
}


.btn-secondary img, .btn-secondary svg{
    filter: invert(1);
}

.btn-outline-secondary img, .btn-outline-secondary svg{
    filter: invert(0.4);
}

.btn-light{
    background-color: #e0e1e1;
    color: black;
    border: #e0e1e1;
}

.btn-link img, .btn-link svg{
    filter: invert(0.5);
}

.btn-danger img, .btn-danger svg{
    filter: invert(1);
}

.btn-success{
    background-color: #6abd2d;
    border-color: #6abd2d;
  }

.active>.page-link, .page-link.active{
    background-color: #6c757d;
    color: white;
    border: #6c757d;
}

.btn-group .btn{
    margin: 0px;
}

.input-group img, .input-group svg{
    height: 24px;
}

table .input-group img, table .input-group svg{
    height: 20px;
}

table .btn{
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-padding-y: 0.20rem;
}

/***********************/
/* PAGINATION          */
/***********************/

.pagination {
    --bs-pagination-color: #000;
    --bs-pagination-bg: #e0e1e1;
}

/***********************/
/* TABLE               */
/***********************/

table thead{
    position: sticky;
    top: 0px;
}

thead tr{
    background-color: #fff;
}

.table>:not(caption)>*>*{padding:.1rem .1rem;}
  
/***********************/
/* FORM                */
/***********************/

.form-control{
    background: none;
    border-top: none;
    border-left: rgba(255, 255, 255, 0.0) 5px solid;
    border-right: none;
    border-radius: 0px;
    border-bottom: 1px #ddd solid;
    padding: .1rem .15rem;
}

.form-control:focus, .form-select:focus, .form-check-input:focus{
    border-top: none;
    border-left: #82CD2B solid 5px;
    border-right: none;
    outline: 0;
    box-shadow: none;
}

.form-check-input:checked{
    background-color: #333;
    border-color: #333;
    columns: #fff;
}

.form-control:disabled{
    background-color: unset;
    border-bottom: none;
}

::placeholder{
    font-style: italic;
    font-size:small;
}

.alert ul{
    margin-bottom: 0px;
}


/***********************/
/* ALERT               */
/***********************/

.alert{
    border-radius: 0px;
}
@media (max-width: 800px) {
    .alert{
        padding: 0.5rem;
    }
}


.alert-light{
    border-left: 5px #ccc solid;
}

.alert-warning{
    border-left: 5px #ffc107 solid;
}


/***********************/
/* BREADCRUMB          */
/***********************/
.breadcrumb {
    margin-top: 10px;
    margin-left: 5px;
	border-radius: 5px;
    font-size: 24px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    overflow: hidden;
}

.breadcrumb .breadcrumb-item{
    background: #e9e9e9;
    padding: 0 10px 0 40px;
    position: relative;
}

.breadcrumb .breadcrumb-item:first-child {
	padding-left: 20px;
	border-radius: 5px 0 0 5px; 
}

.breadcrumb .breadcrumb-item:after{
	content: '';
	position: absolute;
	top: 0; 
	right: -18px;
	width: 36px; 
	height: 36px;
	transform: scale(0.707) rotate(45deg);
	z-index: 1;
	
    box-shadow: 
		2px -2px 0 2px rgba(182, 182, 182, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
    
	border-radius: 0 5px 0 50px;
}

.breadcrumb .breadcrumb-item:last-child {
	padding-right: 20px;
	border-radius: 0 5px 5px 0;
    content: none;
}

.breadcrumb .breadcrumb-item a {
	text-decoration: none;
	font-size: 20px;
	line-height: 36px;
    color: #111;
}


.breadcrumb .breadcrumb-item, .breadcrumb .breadcrumb-item:after {
	background: white;
	color: black;
	transition: all 0.5s;
}
.breadcrumb .breadcrumb-item:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
    content: none;
}

.breadcrumb .breadcrumb-item:hover, .breadcrumb .breadcrumb-item.active, 
.breadcrumb .breadcrumb-item:hover:after, .breadcrumb .breadcrumb-item.active:after{
	background: #6abd2d;
    color: #fff;
    a{
        color: #fff;
    }
}
