﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
/*
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }*/

/********* A partir de Aquí es Css Personalizado **********/

/*Estilo para fielset de los formularios*/
fieldset.fieldset_apartados {
    border: 2px solid #1b6ec2;
    padding: 10px;
    -webkit-box-shadow: 5px 5px 5px 0px #767676;
    box-shadow: 5px 5px 5px 0px #767676;
    min-width: 100%;
    max-width: 100%;
}

.fieldset_botones {
    border: 2px solid #1b6ec2;
    border-top: 0px;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 5px 0px #767676;
    box-shadow: 0px 0px 5px 0px #767676;
    /*margin: 20px 0;*/
    min-width: 100%;
    max-width: 100%;
}

legend {
    padding: 0 10px;
    font-weight: bold;
    font-size: 20px;
    border: 2px solid #1b6ec2;
}
/*Fin Estilo para fielset de los formularios*/

/*Estilo para los títulos de los formularios*/
.titulo-formulario {
    background-color: #1b6ec2;
    color: #fff;
    top: 0px;
    padding: 10px;
    margin-bottom: 0px;
}
/*Estilo para los títulos de los formularios*/

/*Estilo para Typehead*/
.blazored-typeahead {
}

.blazored-typeahead__controls {
    position: relative;
    cursor: text;
    display: flex;
}

.blazored-typeahead__input {
    width: 100%;
    border: 1px solid #bfbfbf;
    padding: .5rem;
}

.blazored-typeahead__input-hidden {
    display: none;
}

.invalid {
    border-color: red !important;
}


.blazored-typeahead__input-mask-wrapper {
    display: flex;
    width: 100%;
}

.blazored-typeahead__input-mask {
    flex: 1;
    border-radius: 5px 0 0 5px;
    border-top: 1px solid #bfbfbf;
    border-bottom: 1px solid #bfbfbf;
    padding: .5rem;
    border-left: 1px solid #bfbfbf;
}

.blazored-typeahead__clear {
    width: 40px;
    display: flex;
    border-top: 1px solid #bfbfbf;
    padding: .5rem;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #bfbfbf;
    border-right: 1px solid #bfbfbf;
    cursor: pointer;
}

.blazored-typeahead__input__icon {
    width: 40px;
    display: flex;
    border-radius: 0 5px 5px 0;
    border-top: 1px solid #bfbfbf;
    border-left: 0;
    border-right: 1px solid #bfbfbf;
    border-bottom: 1px solid #bfbfbf;
    padding: .5rem;
    cursor: pointer;
    background: none;
}

    .blazored-typeahead__input__icon:hover {
        background-color: #f5f5f5;
    }


.blazored-typeahead__results {
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    padding-top: .5rem;
    min-height: 2rem;
    max-height: 30rem;
    overflow-y: auto;
}

.blazored-typeahead__result,
.blazored-typeahead__notfound,
.blazored-typeahead__results-footer {
    padding: .5rem;
}

    .blazored-typeahead__result-selected, .blazored-typeahead__result:hover, .blazored-typeahead__result:focus {
        outline: -webkit-focus-ring-color auto 1px;
        background-color: #f5f5f5;
        cursor: pointer;
    }

.blazored-typeahead__loader {
    width: 24px;
    height: 24px;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}
/*Fin de Estilo par Typehead*/

/*Estilo para los chechbox animados*/
/* toggle switches with bootstrap default colors */
.custom-control-input-success:checked ~ .custom-control-label::before {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

.custom-control-input-danger:checked ~ .custom-control-label::before {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.custom-control-input-warning:checked ~ .custom-control-label::before {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
}

.custom-control-input-info:checked ~ .custom-control-label::before {
    background-color: #17a2b8 !important;
    border-color: #17a2b8 !important;
}


/* Large toggl switches */
.custom-switch-lg .custom-control-label::before {
    left: -2.25rem;
    width: 3rem;
    border-radius: 1.5rem;
}

.custom-switch-lg .custom-control-label::after {
    top: calc(.25rem + 3px);
    left: calc(-2.25rem + 4px);
    width: calc(1.5rem - 6px);
    height: calc(1.5rem - 6px);
    border-radius: 1.5rem;
}

.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(1.4rem);
}

.custom-switch-lg .custom-control-label::before {
    height: 1.5rem;
}

.custom-switch-lg .custom-control-label {
    padding-left: 1.5rem;
    line-height: 1.7rem;
}
/*Fin Estilo para los chechbox animados*/

/*Estilo para Cambiar el texto del botón para cargar archivos*/
input#inputloadfile.custom-file-input {
    color: black;
}

/*Fin Estilo para Cambiar el texto del botón para cargar archivos*/
/*Se agrega z-index más alto para poder mostrar el Spinner correctamente*/
.sidebar {
    z-index: 1003;
}

.top-row {
    z-index: 1003 !important;
}
/*Fin Se agrega z-index más alto para poder mostrar el Spinner correctamente*/

/*Texto en Negrita*/
.Negrita {
    font-weight: bold;
}

/*Se sobreescribe el modal-dialog de bootstrap para que el escaneo se vea bien*/
.modal-dialog {
    margin-top: 7%;
}

/* Padding para dejar libre el icono del menu*/
.init {
    padding-left: 50px;
}

/*Estilos para los input*/
.mud-input-control.Right > .mud-input-control-input-container > .mud-input > .mud-input-root {
    text-align: right;
}

.mud-input-control.Negrita > .mud-input-control-input-container > .mud-input-label-inputcontrol {
    font-weight: bold;
}

/*Estilos para los tabs*/
.e-tab-header .e-toolbar-items {
    background: #9faed8 !important;
}

/*Estilos para los grid de syncfusion*/
.e-grid .e-rowcell.e-selectionbackground  {
    background-color: #82c5ff !important;
}

.e-grid.CustomGridContent .e-rowcell.e-selectionbackground {
    font-weight: bold !important;
}

.e-grid.CustomGridHeader .e-headertext {
    font-weight: bold !important;
    font-size: 15px !important;
    color: black !important;
}

.e-unboundcelldiv button .e-icons
{
    color: #ffffff !important;
}
/*Color de fondo del encabezado*/
.e-grid.CustomGridHeader .e-gridheader .e-columnheader .e-headercell {
    background-color: #CACFD2;
}

.e-grid.CustomGridContent .e-rowcell {
    font-weight: bold;
    font-size: 12px;
}


/*Ajuste de sobreescritura css en el modal Export Setub de BoldReport*/
.e-widget .e-vscroll:not(.e-scroll-device) {
    padding: 0px !important;
}

#report-viewer_exportSetup {
    border-radius: 0px !important;
}
/*Fin Ajuste de sobreescritura css en el modal Export Setub de BoldReport*/