#headerbar {
    background-color: #1A4958;
    width: 100%;
    height: 56px;
    position: fixed;
    top: 0;
    z-index: 4;
    padding: 12px 0;
    box-sizing: border-box;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
}
#header {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header_right {
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto;
}

#header_username a,
.conf_help_icons_container {
    display: flex;
    align-items: center;
    gap: 9px;
}

.user-img-box {
    border-radius: 50%;
    overflow: hidden;
    width: 28px;
    height: 28px;
}

img.user-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#notifications,
#starred_notif {
    position: relative;
}

.options-header-right-item,
#notificationsicon,
#notif_star_icon {
    cursor: pointer;
    padding: 8px;
    border-radius: 9px;
    position: relative;
}

.options-header-right-item:hover,
#notificationsicon:hover,
#notif_star_icon:hover {
    background-color: var(--background-hover-btn-header);
}

.options-header-right-item i,
#notificationsicon i,
#notif_star_icon i {
    font-size: 22px;
    color: #fff;
}

.user-img i {
    font-size: 28px;
    color: #fff;
}

.option_icons_container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 16px;
}


#header_username span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90px;
    font-weight: 700;
}

#header_username a {
    color: #FFF;
    float: left;
}

#header_middle {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 16px;
    justify-content: center;
}

.notifications-icons-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

#notifications span,
#starred_notif span {
    margin: 0 !important;
    background: var(--rojo-tokko);
    border-radius: 8px;
    color: #FFF !important;
    min-width: 24px;
    height: 17px;
    box-sizing: border-box;
    text-align: center;
    font-family: var(--fuente-tokko);
    font-style: normal;
    font-weight: 700 !important;
    line-height: 13px !important;
    font-size: 11px !important;
    display: grid;
    place-items: center;
    padding: 2px 5px;
    position: absolute;
    top: 0px;
    left: 18px;
}

#notifications:hover span,
#starred_notif:hover span {
    background-color: var(--rojo-tokko-hover);
}

#header_username:hover span,
#header_username:hover a,
#header_username:hover .user-img i {
    color: var(--background-hover-btn-header);
    text-decoration: none;
}

#searchbox {
    background-color: #FFF;
    width: calc(100% - 150px);
    border-radius: 8px;
    position: relative;
    max-width: 850px;
    display: flex;
    align-items: center;
}

#searchconfig-box {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-right: 8px;
}

.searchconfig-btn {
    padding: 5px;
    border-radius: 6px;
    cursor: pointer;
}

.searchconfig-btn i {
    font-size: 14px;
    color: var(--gris-4);
}

.searchconfig-btn:hover {
    background-color: var(--background-hover-menu);
}

.searchconfig-btn.searchconfig-active {
    background-color: var(--background-hover-btn-header);
}

.searchconfig-btn.searchconfig-active i {
    color: var(--gris-8)
}

#searchicon {
    margin-left: 8px;
    height: 30px;
    width: 30px;
    display: grid;
    place-items: center;
}

#searchicon i {
    font-size: 14px;
    color: var(--gris-3);
}

#searchbox input,
#searchbox input::placeholder {
    font-family: var(--fuente-tokko);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--gris-3);
    width: 100%;
    border: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;

}

#loadimg_search {
    display: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: rotation 1s linear infinite;
    background: linear-gradient(white, white), conic-gradient(#878c9b, #ffffff);
    background-origin: border-box;
    background-clip: content-box, border-box;
    position: absolute;
    top: 5px;
    right: 118px;
}

@keyframes rotation {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.cont-serchbox-input-filters {
    width: 100%;
    display: flex;
    align-items: center;
}

#cont-serchbox-results {
    position: absolute;
    width: 100%;
    top: 30px;
}

.searchcontact {
    border-top: 1px solid #EFF3F5;
    box-sizing: border-box;
    padding: 8px 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.searchprofiledata {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2px;
}

.searchprofilepic img {
    width: 72px;
    height: 48px;
    border-radius: 6px;
    background: #dee1e2;
}

.searchprofilepic-rounded img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dee1e2;
}

#divAutoCompleteResults .selected {
    background-color: var(--gris-9);
}

#divAutoCompleteResults {
    box-sizing: border-box;
    overflow-y: auto;
    border-radius: 0px 0px 8px 8px;
    box-shadow: 8px 8px 16px rgba(77, 91, 100, 0.15);
}

.searchcontact:last-child {
    border-radius: 0px 0px 8px 8px !important;
}

.searchprofiledata-name {
    font-family: var(--fuente-tokko);
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--gris-1) !important;
}

.searchprofiledata-code {
    font-family: var(--fuente-tokko);
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: var(--gris-3) !important;
}

.serch_response_available_favourite,
.serch_response_not_available_favourite,
.serch_response_reserved_favourite {
    font-family: var(--fuente-tokko);
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #00B775;
}

.serch_response_available_favourite {
    color: #00B775;
}

.serch_response_not_available_favourite {
    color: #A71601;
}

.serch_response_reserved_favourite {
    color: #E97000;
}

#divAutoCompleteResults .searchprofile-op-box li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#divAutoCompleteResults .searchprofile-op-box {
    display: flex;
    align-items: start;
    justify-content: end;
    gap: 15px;
}

.search-op {
    font-family: var(--fuente-tokko);
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: var(--gris-1);
    white-space: nowrap;
}

.search-value {
    padding: 0;
    font-family: var(--fuente-tokko);
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: var(--gris-3);
}

#divAutoCompleteResults .autocomplete_contact_data {
    width: auto;
    text-align: right;
}

.searchpropfile-agent {
    font-family: var(--fuente-tokko);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--gris-1);
}

.searchprofile-date,
.serchactions-new-contact_text {
    font-family: var(--fuente-tokko);
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: var(--gris-3);
    white-space: nowrap;
}

.searchprofilepic i {
    font-size: 40px;
    color: var(--gris-6);
}

.searchprofilepic:last-child img {
    display: none;
}

.serchactions-new-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.serchactions-new-contact_btn i {
    color: white;
    font-size: 24px;
}

.serchactions-new-contact_btn {
    background: var(--rojo-tokko);
    border-radius: 50%;
    padding: 7px;
}

.serchactions-new-contact_serchresult,
.serchactions-more-results_text {
    font-family: var(--fuente-tokko);
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
}

.serchactions-new-contact_serchresult {
    color: var(--gris-1);
    margin-bottom: 2px;
}

.serchactions-more-results_text {
    color: var(--rojo-tokko);
}

.serchactions-more-results_results {
    font-family: var(--fuente-tokko);
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: var(--gris-3);
}

.serchactions-more-results {
    width: 100%;
    display: flex;
}

.rounded img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.contacts-group-badge {
    padding: 1px 6px;
    background: #ECF0FD;
    border-radius: 12px;
    font-family: var(--fuente-tokko);
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: #4268EF;
    margin-left: 10px;
}

.searchprofile-op-box div {
    min-width: 100px;
    text-align: right;
    white-space: nowrap;
}

#mobile-menu {
    float: left;
    padding: 10px;
    font-size: 20px;
    color: #fff;
    padding-left: 18px;
    cursor: pointer;
    display: none;
}

#mobile-menu i {
    color: #fff;
    transition: color 0.5s ease;
}

#mobile-menu:hover i {
    color: #861313;
}

#bglogotokko {
    display: block;
    margin-top: -3px;
    width: 200px;
    text-align: center;
    overflow: hidden;
}

#bglogotokko img {
    height: 26px;
}

@media(max-width: 1024px) {

    #header_username span,
    #bglogotokko {
        display: none;
    }

    #mobile-menu {
        display: block;
    }

    .header_width_overlay {
        z-index: 2 !important;
    }

    .notifications-container {
        left: -130px !important;
    }
}