@import url('open.iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html, body, #app {
    height: 100%;
    overflow: hidden;
}

#app {
    background-color: inherit;
}

.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;
    }

/*ESTE CODIGO ES PERSONALIZADO ABEL REYNOSO 2023-03-10*/

.bg-color-primary {
    background-color: #fd7e14 !important;  
}

.text-color-primary {
    color: #fd7e14 !important;
}

.products .row > div {
    margin-bottom: 1.5rem;
}

.products.theme-blazing-berry .product {
    background: white; /*#f9f8fc;*/
}

.products .product {
    cursor: pointer;
    display: block;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: 100%;
    margin: 0;
    text-decoration: none;
}

.header-navbar-footer {
    border-bottom: 3px solid red !important;
}

.modal-header {
    background: #003366 !important;
}

/*.modal-dialog {
    margin-top: 10% !important;
}*/

.modal-body {
    padding: 0 !important;
}

.modal-title {
    color: white !important;
}

ul, li {
    list-style: none;
}

i {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.footer-line {
    border-top: 1px solid silver !important;
    /*border-bottom: 1px solid silver !important;*/
}

/*este codigo bootstrap no lo esta asumiendo, asi que tuve que ponerle un height directo*/
.modal-dialog-scrollable .modal-content {
    /*max-height: 100%;*/
    height: 100% !important;
    overflow: hidden;
}

.modal-backdrop-opacity {
    /*opacity: 0.5 !important;*/
    /*background-color: hsla(220, 60%, 70%, 0.3) !important;*/
    background-color: rgba(0, 0, 0, 0.3) !important;
}

/*FIN CODIGO PERSONALIZADO*/