html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* boton agregar*/
.btnNuevo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: steelblue;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 100px;
    right: 50px;
    color: white;
    font-size: 1.9em;
    z-index: 1000;
}

    .btnNuevo:hover {
        background-color: darkblue;
        border: 2px solid blue;
        color: white;
        font-size: 2.1em;
        font-weight: bold;
    }

    .btnNuevo .material-icons {
        font-size: 1em;
        padding: 0;
        margin: 0 0 0 -4px;
    }

.btnGuardarNomina {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: darkolivegreen;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 100px;
    right: 50px;
    color: white;
    font-size: 1.9em;
}

.btnGuardarNominahover {
    background-color: darkblue;
    border: 2px solid blue;
    color: white;
    font-size: 2.1em;
    font-weight: bold;
}

.btnGuardarNomina .material-icons {
    font-size: 1em;
    padding: 0;
    margin: 0 0 0 -4px;
}

.btnEditar {
    height: 35px;
    width: 50px;
    font-size: 16px;
}
.btnEliminar {
    height: 35px;
    width: 50px;
    font-size: 16px;
    margin-left:10px;
}

#esperando {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

    #esperando hr {
        border: 0;
        margin: 0;
        width: 40%;
        height: 40%;
        position: absolute;
        border-radius: 15%;
        animation: spin 2s ease infinite
    }

    #esperando :first-child {
        background: #00ff00;
        animation-delay: -1.5s
    }

    #esperando :nth-child(2) {
        background: #ff1493;
        animation-delay: -1s
    }

    #esperando :nth-child(3) {
        background: #ffff00;
        animation-delay: -0.5s
    }

    #esperando :last-child {
        background: #8673A1;
    }

@keyframes spin {
    0%,100% {
        transform: translate(0)
    }

    25% {
        transform: translate(160%)
    }

    50% {
        transform: translate(160%, 160%)
    }

    75% {
        transform: translate(0, 160%)
    }
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

.select2-container .select2-selection--single {
    height: 40px;
}

.form-switch .form-check-input {
    width: 50px;
    height: 25px;
}