/*Inicio Estilos añadidos por Luis*/

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: spinner-grow .75s linear infinite;
    margin: 0 auto;
}

@keyframes spinner-grow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem;
}
.custom-container {
    max-width: calc(100% - 20px);
    overflow: auto;
}
.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
.wp-header-end {
    margin: -2px 0 3rem 0;
}
/*overlay*/
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner {
    background: url('/wp-admin/images/spinner.gif') no-repeat;
    background-size: auto;
    background-size: 30px 30px;
    display: inline-block;
    float: right;
    vertical-align: middle;
    opacity: .7;
    width: 30px;
    height: 30px;
    margin: 4px 10px 0;
}
.action_search_rf:disabled {
    width: 180px !important;
}
/*Fin de estilos añadidos por Luis*/