html,
body,
html * {
    font-family: 'Roboto', sans-serif;

}

.tooltip-custom {
    position: relative;
    display: inline-block;
}

.tooltip-custom .tooltip-text {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 4px 8px;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    /* arriba del botón */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.tooltip-custom:hover .tooltip-text {
    visibility: visible;
}

body {
    margin: 0;
    padding: 0;
    /* background: linear-gradient(to right, gray, black); */
    background: rgba(59, 58, 98, 0.9);
    /* background: rgba(0, 0, 0, 0.9); */
    /* opacity: 0.7; */
    height: 100%;
}

.logo-empresa {
    width: auto;
    /* height: 50%; */
    max-height: 100px;
    /* justify-content: center; */
}

.divLogin {
    max-width: 310px;
    min-width: 310px;
}

.color_font_table {
    color: black;
}