.acs-topbar{
    background-color: #f1f4f8;
    z-index: 1001;
}

.right-header-options a{
    transition: color 0.15s ease-in-out;
}

.right-header-options a:hover{
    color: var(--bs-black) !important;
}

.acs-topbar a {
    font-size: 13px;
    color: #111;
    text-decoration: none;
}

/* bottom */

.header-logo{
    display: inline-block;
    height: 40px;
    width: auto;
}

.acs-header {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    transition: top 0.3s ease, background 0.3s ease;
    z-index: 1000;
    background-color: #f8f9fa;
}

.acs-header.sticky {
    position: fixed;
    top: 0;
}

.acs-header-decoy {
    height: 0;
}

.acs-header a {
    font-size: 13px;
    color: #111;
    text-decoration: none;
}

.header-icons i{
    font-size: 22px;
}

.acs-header nav a {
    border-bottom: 2px solid transparent;
        transition: border-color 0.25s ease-in-out;
}

.acs-header nav a:hover {
    border-color: var(--bs-gray-700);
}

.global-search{
    background-color: var(--bs-gray-150);
    border: 1px solid var(--bs-gray-150);
}

.global-search .search-icon{
    font-size: 1.3em;
}

.global-search:hover{
    border: 1px solid var(--bs-gray-500);
}

.global-search:has(input:focus) {
    border: 1px solid var(--bs-gray-500);
}

.global-search input{
    color: black !important;
}

.global-search input::placeholder{
    color: var(--bs-gray-600);
}

.global-search-2{
    background-color: var(--bs-gray-100);
    border: 1px solid var(--bs-gray-400);
}







/* // floating input/select systeem */

.floating-input-wrapper {
    position: relative;
}

/* standaard input & select */
.floating-input {
    width: 100%;
    font-size: 16px;
    border: 2px solid #ccc;
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

/* label standaard */
.floating-input-wrapper label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    background: white;
    padding: 0 6px;
    font-size: 15px;
    color: #777;
    transition: 0.15s ease;
    pointer-events: none;
}

/* floating up behavior bij input */
.floating-input:focus + label,
.floating-input:not(:placeholder-shown) + label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: #444;
    transform: translateY(0%);
}


/* ====== SELECT FIX ====== */

/* label blijft in midden bij lege selectie */
select.floating-input:valid + label,
select.floating-input:focus + label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: #444;
    transform: translateY(0%);
}

/* label standaard in midden als geen waarde gekozen */
select.floating-input:invalid + label {
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
    font-size: 15px;
    color: #777;
}

/* validatie foutstijl */
.floating-input-wrapper.is-invalid .floating-input {
    border-color: #d93025;
}

.floating-input-wrapper.is-invalid label {
    color: #d93025;
}

.invalid-feedback {
    display: none;
    color: #d93025;
    font-size: 14px;
    margin-top: 6px;
}

.floating-input-wrapper.is-invalid .invalid-feedback {
    display: block;
}

select option{
    background-color: var(--bs-body-bg);
}

.tooltipicon{
    display: block;
    margin: 0;
    font-size: 9px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background-color: #444;
    transition: border-color 0.25s ease-in-out;
    color: white;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tooltipicon:hover{
    background-color: #111111;
}