@charset "UTF-8";

* {
    font-weight: 500;
}

.custom-header li {
	position: relative;
}
.custom-header > li > ul {
	display: none;
}

.custom-header a.nav-link {
    padding: 12px 14px; 
    font-weight: 500;
    color: black;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-header li .custom-nav-icon {
     width: 24px;
    height: 24px;
    margin-right: 6px;  
 } 

.custom-header > li > a.active:after,
.custom-header > li:hover > a:after {
    position: absolute;
    content: ''; 
    display: block;
    border: 2px solid #f5863a;
    width: calc(100% - 25px);
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%);
}

.custom-header > li:hover > ul {
	position: absolute;
    left: 0;
    background: white;
    padding: 0; 
    display: block;
    top: 45px;
    width: 100%;
  min-width: 240px;
    list-style: none;
    box-shadow: 3px 0px 10px rgba(0,0,0,0.35);
}


.custom-header > li > a > .icon {
	transition: all .2s ease;
}

.custom-header .icon-custom-size {
	width: 10px;
	height: 10px;
}

.custom-header > li:hover > a > .icon:not(.custom-nav-icon) {
    transform: rotate(180deg);
    transform-origin: 50% 50%;
    transition: all .2s ease;
}

.custom-header > li > ul > li ul {
	display: none;
}

.custom-header > li > ul > li:hover ul {
position: absolute; 
    left: 100%;
    background: white;
    padding: 0;
    display: block;
    top: 0;
    width: 100%;
    min-width: 240px;
    list-style: none;
    box-shadow: 3px 0px 10px rgba(0,0,0,0.35);
}

.custom-header > li ul li {
    padding: 4px 10px;
}

.custom-header > li ul li:hover {
    background: #ffc9a4;
}

.min-height-grid {
    min-height: 300px;
}
.was-validated .form-control:valid, 
.form-control.is-valid, .was-validated .form-select:valid:not([multiple]):not([size]), 
.was-validated .form-select:valid:not([multiple])[size="1"], 
.form-select.is-valid:not([multiple]):not([size]), 
.form-select.is-valid:not([multiple])[size="1"] {
    background-image: none;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label{
	color: currentColor;
}

.highlight{
	background-color: #ebf5ff;
}


.custom-header-notification-icon-count{
	border-radius:50%;
	width:18px;
	height:18px;
	font-size: 0.75em;
	text-align: center;
}


.global-spinner-overlay {
    position: fixed;
    background: rgba(255, 255, 255, .8);
    width: 100vw;
    height: 100vh;
    z-index: 99999;
}

.spinner-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
}
