@import url('open.iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: system-ui, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden;
}

.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;
}

:root {
    /*--animate-duration: 800ms;*/
    --animate-delay: 1.5s;
    --dxbl-list-box-item-selected-bg: #335CAD !important;
    --dxbl-list-box-item-selected-hover-bg: #335CAD !important;
}


@keyframes fade-in {
    from {
        opacity:0%;
        top: -60px;
    }

    to {
        top: 0px;
        opacity: 100%;
    }
}

@keyframes fade-out {
    from {
        top: 0px;
        opacity: 100%;
    }

    to {
        top: -60px;
        opacity: 0%;
        display:none;
    }
}


div.template {
}

div.background-parent {
    /*position: relative;*/
    width: 100%;
    height: 600px;
    position:relative;
    display: flex;
}


.spinner {
    border:16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 55%;
    position: absolute;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.img-home {
    width:100%;
    height:100%;
    object-fit: cover;
}

.div-home {
    width: 100%;
    height: calc(100vh - 115px);
}

.div-home-mod {
    width: 100%;
    height: calc(100vh - 185px);
}


.dxbl-popup.Grilla-archivo {
    width: 750px !important;
    max-width: 750px !important;
}

.dxbl-popup.Grilla-archivo {
    width: 100% !important;
}

.Grilla-archivo {
    width: 750px !important;
}



.navbar.header-navbar {
    display: flex;
    flex-grow: 0;
    flex-wrap: nowrap;
    border: none;
    background-color: whitesmoke;
    border-radius: 0;
    height: 2.8rem;
    min-height: 2.8rem;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
    justify-content: flex-start;
    width: 100%;
}

.header-navbar .navbar-toggler {
    outline: none;
    border-radius: 0;
    padding-left: .75rem;
    padding-right: .75rem;
    color: whitesmoke;
    box-shadow: none;
    align-self: stretch;
}

    .header-navbar .navbar-toggler .navbar-toggler-icon {
        /*background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    background-color: transparent !important;*/
        /*  height: 2rem;
    width: 2rem;*/
        font-size: 1.75rem;
    }

.title {
    font-size: 1.1rem;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 200px;
}

.separator {
    flex-grow: 1;
}

.login-icon {
    /*display: block;*/
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.2rem;
    height: 2.2rem;
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.05);
    border-color: dimgray;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 0.5rem;
    cursor: pointer;
}

    .login-icon:hover {
        background: #335CAD;
        color: whitesmoke;
    }

@media (max-width: 320px) {
    .title {
        font-size: 1rem;
        width: 200px !important;
    }
}

@media (max-width: 575.98px) {
    .title {
        font-size: 1rem;
        width: 200px;
    }
}

.fa-spin-hover:hover {
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.fa-fade-hover:hover {
    -webkit-animation-delay: var(--fa-animation-delay,0s);
    animation-delay: var(--fa-animation-delay,0s);
    -webkit-animation-direction: var(--fa-animation-direction,normal);
    animation-direction: var(--fa-animation-direction,normal);
    -webkit-animation-duration: var(--fa-animation-duration,1s);
    animation-duration: var(--fa-animation-duration,1s);
    -webkit-animation-name: fa-fade;
    animation-name: fa-fade;
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count,infinite);
    animation-iteration-count: var(--fa-animation-iteration-count,infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));
    animation-timing-function: var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));
}

.fa-flip-hover:hover {
    -webkit-animation-name: fa-flip;
    animation-name: fa-flip;
    -webkit-animation-delay: var(--fa-animation-delay,0s);
    animation-delay: var(--fa-animation-delay,0s);
    -webkit-animation-direction: var(--fa-animation-direction,normal);
    animation-direction: var(--fa-animation-direction,normal);
    -webkit-animation-duration: var(--fa-animation-duration,2s);
    animation-duration: var(--fa-animation-duration,2s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count,infinite);
    animation-iteration-count: var(--fa-animation-iteration-count,infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing,ease-in-out);
    animation-timing-function: var(--fa-animation-timing,ease-in-out);
}

.label-perfil {
    font-size: .8rem;
}

.span-perfil {
    font-size: .7rem;
}

.imagen_perfil {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.rds-img-header {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rds-img-div-header {
    width: 36px;
    height: 36px;
    display: none;
}

.img-header {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.img-div-header {
    width: 200px;
    height: 40px;
}

.page {
    height: 100%;
    overflow: hidden;
    background-color: inherit;
}

::deep .page-layout,
::deep .page-layout > .dx-gridlayout-root,
::deep .layout-item {
    background-color: inherit;
}

::deep .content {
    padding: 0.30rem 0 0 0;
    overflow: auto;
}

@media (max-width: 699.98px) {
    ::deep .page-layout > .dx-gridlayout-root {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}

::deep .fit-width {
    max-width: 100%;
}

::deep .mw-1100 {
    /*max-width: 1100px;*/
}
/*
.divB {
    display:flex;
    align-items: center;
    justify-content: center;
}*/