#components-reconnect-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

#components-reconnect-modal.components-reconnect-show,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-rejected {
    display: flex;
}

#components-reconnect-modal .components-messages {
    color: #f0f0f0;
    margin: auto;
    text-align: center;
}
#components-reconnect-modal button {
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 8px;
    padding: 14px 24px;
    border: none;
    background-color: var(--mud-palette-primary);
    color: white;
}
#components-reconnect-modal button:active {
    background-color: darkblue;
}
#components-reconnect-modal .components-messages h2 {
    color: white;
}

#components-reconnect-modal .components-messages a {
    color: white;
    text-decoration: none;
    border-bottom: 1px dotted white;
}

#components-reconnect-modal .components-reconnecting,
#components-reconnect-modal .components-failed,
#components-reconnect-modal .components-rejected {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnecting,
#components-reconnect-modal.components-reconnect-failed .components-failed,
#components-reconnect-modal.components-reconnect-rejected .components-rejected {
    display: block;
}

/* Clases Genericas*/
/* Para botones al pie de pagina*/
.section-bottom-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: inherit;
    border-radius: inherit;
}

.section-bottom-actions-2 {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

.gray-border {
    border: 1px solid lightgray;
}

.admin-fixed-table {
    height: calc(100vh - 150px);
    width: 100%;
    overflow-y: scroll;
}
.container {
    height: 100%;
    display: flex;
    flex-direction: column;
}



/*Clases para el perfil y el legajo*/

.item-special-border {
    border-bottom-left-radius: 76px;
    border-bottom-right-radius: 76px;
    padding-bottom: 80px;
}

.icon-special {
    height: auto;
    width: auto;
    position: relative;
    bottom: -30px;
    color: gray;
}

.item-top {
    color: white;
    position: absolute;
    top: 0px;
    width: 100%;
    bottom: 275px;
}

.item-top-background {
    background-image: url(../assets/HeaderBackgroundLight.jpg);
    background-color: darkblue;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.item-top-border {
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
}

.item-above {
    position: absolute;
    top: 330px;
    height: 40vh;
}

.item-above-max-fixed {
    max-height: 350px;
}

.borderless {
    border-width: 0px;
    border: none;
    border-color: transparent;
}

.borderless:focus {
    outline: none;
}

.resize-badge {
    transform: scale(2,2);
}

.noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noSelect:focus {
    outline: none !important;
}
.pointer-link {
    cursor: pointer;
}