/* Add here all your CSS customizations */
.dominio {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}
/* Calculadora */
input[type=textfield] {
    width: 100%;
    padding: 3px 16px;
    font-size: 16px;
    margin: 8px 0;
    border: 1px solid silver;
    border-radius: 1px;
    text-align: left;
    color: #333;
    background: #ccc;
}
input[type=button], input[type=submit], input[type=reset] {
    background-color: #333;
    border: none;
    color: #fff;
    padding: 0px 0px;
    font-size: 16px;
    min-width: 22%;
    text-decoration: none;
    margin: 1% 1%;
    cursor: pointer;
}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
  background-color: #999;
  color:  #333;
}
.header-version-tim {
    position: absolute;
    right: 25px;
    top: 0;
    height: 60px;
    align-items: center;
}

.header-version-tim a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #777;
    font-size: 13px;
}

.header-version-tim a:hover {
    color: #0066cc;
}

.tim-version-name {
    font-weight: 600;
    color: #333;
}

.tim-version-number {
    color: #777;
}

.header-version-tim i {
    margin-left: 3px;
    color: #0066cc;
    font-size: 14px;
}
/* Sidebar de Management a toda la altura disponible */
@media only screen and (min-width: 768px) {
    html.fixed .sidebar-left > .nano {
        position: absolute;
        top: 50px;
        right: 0;
        bottom: 0;
        left: 0;
        height: auto;
    }
}