/*ui-btn-primary ui-btn-success*/
#header .header-request {
    position: relative;
    order: 3;
    width: 200px;
}

#header .header-personal {
    width: unset;
    max-width: unset;
}

#tooltipMenu {
    position: fixed;
    top: 30%;
    left: 45%;
    z-index: 1000;

    min-width: 230px;
    padding: 10px;
    display: none;

    border-radius: 10px;

    background-color: white;
    box-shadow: inset 0 0 4px 0 rgb(0 0 0 / 10%);
}

#tooltipMenu.open {
    display: flex;
    flex-direction: column;
}

#tooltipMenu button {
    min-height: 50px;
    font-size: 16px;
    color: #212529;
    background: none;
    border: none;
}

#tooltipMenu button:hover,
#tooltipMenu button:focus {
    color: #000000;
    background-color: #ededed;
    outline: none;
    box-shadow: none;
}

#targetTooltipButton {
    color: white;
    background-color: #3bc8f5;
    transition: all 0.3s linear;
}

#targetTooltipButton:hover,
#targetTooltipButton:focus {
    background-color: #3eddff;
    outline: none;
}

.overlay-sd_button {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
}