/* Custom Checkbox and Radio Buttons */
.animated-checkbox input[type="checkbox"] {
    display: none;
}

.animated-checkbox input[type="checkbox"] + .label-text {
    cursor: pointer !important;
    color: #009688;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.animated-checkbox input[type="checkbox"] + .label-text:before {
    content: "\2610";
    font-family: "FontAwesome";
    speak: none;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 2px;
    vertical-align: -2px;
}
.animated-checkbox input[type="checkbox"]:checked + .label-text {
    color: #ff0000;
    font-weight: bold;
}
.animated-checkbox input[type="checkbox"]:checked + .label-text:before {
    content: "\2611";
    color: #ff0000;
    -webkit-animation: tick 180ms ease-in;
    animation: tick 180ms ease-in;
}

.animated-checkbox input[type="checkbox"]:disabled + .label-text {
    cursor: not-allowed !important;
}

.animated-checkbox input[type="checkbox"]:disabled + .label-text:before {
    content: "";
    color: #ccc;
}

.animated-radio-button input[type="radio"] {
    display: none;
}

.animated-radio-button input[type="radio"] + .label-text {
    cursor: pointer !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.animated-radio-button input[type="radio"] + .label-text:before {
    content: "\25ce";
    font-family: "FontAwesome";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 2px;
    vertical-align: -2px;
}

.animated-radio-button input[type="radio"]:checked + .label-text:before {
    content: "\25c9";
    color: #009688;
    -webkit-animation: tick 180ms ease-in;
    animation: tick 180ms ease-in;
}

.animated-radio-button input[type="radio"]:disabled + .label-text {
    cursor: not-allowed !important;
}

.animated-radio-button input[type="radio"]:disabled + .label-text:before {
    content: "";
    color: #ccc;
}

.form-group .animated-radio-button{
    margin-top: 10px;
}
table{
    width: 100%;
}
.table > tbody > tr > td {
    vertical-align: top !important;
}
h5{
    margin-top: 0px;
}

.cargar-archivo .panel{
    margin-bottom: 0px;
}
.row-striped:nth-of-type(odd){
    background-color: #efefef;
}

.row-striped:nth-of-type(even){
    background-color: #ffffff;
}
.lista-archivos .panel-body {
    padding: 5px 0px;
}
.lista-archivos .panel {
    margin-bottom: 0px;
}

.card table{
    /*margin: 1px 5px !important;*/
}
.card-head header{
    line-height: 30px;
}



.correspondencia-btn-destinatario{
    margin-bottom: 0px; padding: 5px 0px 5px 0px !important;
}

.correspondencia-busca-destinatario {
    margin-bottom: 0px;
    border: 1px solid #ccc !important;
    padding: 5px 0px 0px 0px;
}
#vias{
    padding-top: 5px !important;
}


.alert-callout.alert-accent::before {
    background: #673ab7;
}


/**
 * @license Copyright (c) 2014-2021, CKSource - Frederico Knabben. All rights reserved.
 * This file is licensed under the terms of the MIT License (see LICENSE.md).
 */

:root {
    --ck-sample-base-spacing: 2em;
    --ck-sample-color-white: #fff;
    --ck-sample-color-green: #279863;
    --ck-sample-color-blue: #1a9aef;
    --ck-sample-container-width: 1285px;
    --ck-sample-sidebar-width: 350px;
    --ck-sample-editor-min-height: 400px;
    --ck-sample-editor-z-index: 10;
}

/* --------- EDITOR STYLES  ---------------------------------------------------------------------------------------- */

.editor__editable,
    /* Classic build. */
main .ck-editor[role='application'] .ck.ck-content,
    /* Decoupled document build. */
.ck.editor__editable[role='textbox'],
.ck.ck-editor__editable[role='textbox'],
    /* Inline & Balloon build. */
.ck.editor[role='textbox'] {
    width: 100%;
    background: #fff;
    font-size: 1em;
    line-height: 1.6em;
    min-height: var(--ck-sample-editor-min-height);
    padding: 1.5em 2em;
}

.ck.ck-editor__editable {
    background: #fff;
    border: 1px solid hsl(0, 0%, 70%);
    width: 100%;
}

.ck.ck-editor {
    /* To enable toolbar wrapping. */
    width: 100%;
    overflow-x: hidden;
}

/* Because of sidebar `position: relative`, Edge is overriding the outline of a focused editor. */
.ck.ck-editor__editable {
    position: relative;
    z-index: var(--ck-sample-editor-z-index);
}

/* --------- DECOUPLED (DOCUMENT) BUILD. ---------------------------------------------*/
body[data-editor='DecoupledDocumentEditor'] .document-editor__toolbar {
    width: 100%;
}

body[ data-editor='DecoupledDocumentEditor'] .collaboration-demo__editable,
body[ data-editor='DecoupledDocumentEditor'] .row-editor .editor {
    width: 21cm;
    /*height: 100%;*/
    min-height: 470px;
    padding: 1.75cm 1.5cm;
    margin: 2.5rem;
    border: 1px hsl( 0, 0%, 82.7% ) solid;
    background-color: var(--ck-sample-color-white);
    box-shadow: 0 0 5px hsla( 0, 0%, 0%, .1 );
}

body[ data-editor='DecoupledDocumentEditor'] .row-editor {
    display: flex;
    position: relative;
    justify-content: center;
    overflow-y: auto;
    background-color: #f2f2f2;
    border: 1px solid hsl(0, 0%, 77%);
    height: 500px;
}

body[data-editor='DecoupledDocumentEditor'] .sidebar {
    background: transparent;
    border: 0;
    box-shadow: none;
}

/* --------- COMMENTS & TRACK CHANGES FEATURE ---------------------------------------------------------------------- */
.sidebar {
    padding: 0 15px;
    position: relative;
    min-width: var(--ck-sample-sidebar-width);
    max-width: var(--ck-sample-sidebar-width);
    font-size: 20px;
    border: 1px solid hsl(0, 0%, 77%);
    background: hsl(0, 0%, 98%);
    border-left: 0;
    overflow: hidden;
    min-height: 100%;
    flex-grow: 1;
}

/* Do not inherit styles related to the editable editor content. See line 25.*/
.sidebar .ck-content[role='textbox'],
.ck.ck-annotation-wrapper .ck-content[role='textbox'] {
    min-height: unset;
    width: unset;
    padding: 0;
    background: transparent;
}

.sidebar.narrow {
    min-width: 60px;
    flex-grow: 0;
}

.sidebar.hidden {
    display: none !important;
}

#sidebar-display-toggle {
    position: absolute;
    z-index: 1;
    width: 30px;
    height: 30px;
    text-align: center;
    left: 15px;
    top: 30px;
    border: 0;
    padding: 0;
    color: hsl( 0, 0%, 50% );
    transition: 250ms ease color;
    background-color: transparent;
}

#sidebar-display-toggle:hover {
    color: hsl( 0, 0%, 30% );
    cursor: pointer;
}

#sidebar-display-toggle:focus,
#sidebar-display-toggle:active {
    outline: none;
    border: 1px solid #a9d29d;
}

#sidebar-display-toggle svg {
    fill: currentColor;
}

/* --------- COLLABORATION FEATURES (USERS) ------------------------------------------------------------------------ */
.row-presence {
    width: 100%;
    border: 1px solid hsl(0, 0%, 77%);
    border-bottom: 0;
    background: hsl(0, 0%, 98%);
    padding: var(--ck-spacing-small);

    /* Make `border-bottom` as `box-shadow` to not overlap with the editor border. */
    box-shadow: 0 1px 0 0 hsl(0, 0%, 77%);

    /* Make `z-index` bigger than `.editor` to properly display tooltips. */
    z-index: 20;
}

.ck.ck-presence-list {
    flex: 1;
    padding: 1.25rem .75rem;
}

.presence .ck.ck-presence-list__counter {
    order: 2;
    margin-left: var(--ck-spacing-large)
}

/* --------- REAL TIME COLLABORATION FEATURES (SHARE TOPBAR CONTAINER) --------------------------------------------- */
.collaboration-demo__row {
    display: flex;
    position: relative;
    justify-content: center;
    overflow-y: auto;
    background-color: #f2f2f2;
    border: 1px solid hsl(0, 0%, 77%);
}

body[ data-editor='InlineEditor'] .collaboration-demo__row {
    border: 0;
}

.collaboration-demo__container {
    max-width: var(--ck-sample-container-width);
    margin: 0 auto;
    padding: 1.25rem;
}

.presence, .collaboration-demo__row {
    transition: .2s opacity;
}

.collaboration-demo__topbar {
    background: #fff;
    border: 1px solid var(--ck-color-toolbar-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
}

.collaboration-demo__topbar .btn {
    margin-right: 1em;
    outline-offset: 2px;
    outline-width: 2px;
    background-color: var( --ck-sample-color-blue );
}

.collaboration-demo__topbar .btn:focus,
.collaboration-demo__topbar .btn:hover {
    border-color: var( --ck-sample-color-blue );
}

.collaboration-demo__share {
    display: flex;
    align-items: center;
    padding: 1.25rem .75rem
}

.collaboration-demo__share-description p {
    margin: 0;
    font-weight: bold;
    font-size: 0.9em;
}

.collaboration-demo__share input {
    height: auto;
    font-size: 0.9em;
    min-width: 220px;
    margin: 0 10px;
    border-radius: 4px;
    border: 1px solid var(--ck-color-toolbar-border)
}

.collaboration-demo__share button,
.collaboration-demo__share input {
    height: 40px;
    padding: 5px 10px;
}

.collaboration-demo__share button {
    position: relative;
}

.collaboration-demo__share button:focus {
    outline: none;
}

.collaboration-demo__share button[data-tooltip]::before,
.collaboration-demo__share button[data-tooltip]::after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all .15s cubic-bezier(.5,1,.25,1);
    z-index: 1;
}

.collaboration-demo__share button[data-tooltip]::before {
    content: attr(data-tooltip);
    padding: 5px 15px;
    border-radius: 3px;
    background: #111;
    color: #fff;
    text-align: center;
    font-size: 11px;
    top: 100%;
    left: 50%;
    margin-top: 5px;
    transform: translateX(-50%);
}

.collaboration-demo__share button[data-tooltip]::after {
    content: '';
    border: 5px solid transparent;
    width: 0;
    font-size: 0;
    line-height: 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 5px solid #111;
    border-top: none;
}

.collaboration-demo__share button[data-tooltip]:hover:before,
.collaboration-demo__share button[data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}

.collaboration-demo--ready {
    overflow: visible;
    height: auto;
}

.collaboration-demo--ready .presence,
.collaboration-demo--ready .collaboration-demo__row {
    opacity: 1;
}

/* --------- PAGINATION FEATURE ------------------------------------------------------------------------------------ */

/* Pagination view line must be stacked at least at the same level as the editor,
   otherwise it will be hidden underneath. */
.ck.ck-pagination-view-line {
    z-index: var(--ck-sample-editor-z-index);
}





#snippet-autosave-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--ck-color-toolbar-background);
    border: 1px solid var(--ck-color-toolbar-border);
    padding: 10px;
    border-radius: var(--ck-border-radius);
    /*margin-top: -1.5em;*/
    margin-bottom: 0px;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#snippet-autosave-status_spinner {
    display: flex;
    align-items: center;
    position: relative;
}

#snippet-autosave-status_spinner-label {
    position: relative;
}

#snippet-autosave-status_spinner-label::after {
    content: 'Grabado automáticamente!';
    color: green;
    display: inline-block;
    margin-right: var(--ck-spacing-medium);
}

/* During "Saving" display spinner and change content of label. */
#snippet-autosave-status.busy #snippet-autosave-status_spinner-label::after {
    content: 'Grabando...';
    color: red;
}

#snippet-autosave-status.busy #snippet-autosave-status_spinner-loader {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border-top: 3px solid hsl(0, 0%, 70%);
    border-right: 2px solid transparent;
    animation: autosave-status-spinner 1s linear infinite;
}

#snippet-autosave-status,
#snippet-autosave-server {
    display: flex;
    align-items: center;
}

#snippet-autosave-server_label,
#snippet-autosave-status_label {
    font-weight: bold;
    margin-right: var(--ck-spacing-medium);
}

#snippet-autosave + .ck.ck-editor .ck-editor__editable {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

#snippet-autosave-lag {
    padding: 4px;
}

#snippet-autosave-console {
    max-height: 300px;
    overflow: auto;
    white-space: normal;
    background: #2b2c26;
    transition: background-color 500ms;
}

#snippet-autosave-console.updated {
    background: green;
}

@keyframes autosave-status-spinner {
    to {
        transform: rotate( 360deg );
    }
}


.select2-results__group{
    font-weight: bold !important;
}


td.nur10, .nur10{background:url(../images/oficial_normal.png) no-repeat center;text-align:center;}
td.nur11, .nur11{background:url(../images/oficial_urgente.png) no-repeat center;text-align:center;}
td.nur00, .nur00{background:url(../images/copia_normal.png) no-repeat center;text-align:center;}
td.nur01, .nur01{background:url(../images/copia_urgente.png) no-repeat center;text-align:center;}

.bandeja{
    border-bottom: 1px solid #C0C3F7;
}

.form-group > label, .form-group .control-label,
.form-group .form-control ~ label,
.nav-tabs > li > a{
    opacity: 0.95;
    font-size: 13px;
    font-weight: normal;
}
.form-control{
    border: 1px solid #CCCCCC;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control{
    border: 1px dashed #CCCCCC;
}

.dropdown-menu {
    /*right: 0px;*/
    /*left: auto;*/
}


/*Start vertical Wizard*/

.verticalwiz {
    display: block;
    list-style: none;
    position: relative;
    width: 100%
}

.verticalwiz a:hover, .verticalwiz a:active, .verticalwiz a:focus {
    text-decoration: none
}

.verticalwiz li {
    display: block;
    height: 100%;
    min-height: 60px;
    max-width: 100%;
    width: 100%;
}

.verticalwiz li.complete .step {
    background: #0aa66e;
    padding: 1px 6px;
    border: 3px solid #55606E
}

.verticalwiz li .step i {
    font-size: 10px;
    font-weight: 400;
    position: relative;
    top: -1.5px
}

.verticalwiz li .step {
    background: #B2B5B9;
    color: #fff;
    display: inline;
    font-size: 15px;
    font-weight: 700;
    line-height: 12px;
    padding: 7px 13px;
    border: 3px solid transparent;
    border-radius: 50%;
    line-height: normal;
    position: relative;
    text-align: center;
    z-index: 2;
    transition: all .1s linear 0s
}

.verticalwiz li.active .step, .verticalwiz li.active.complete .step {
    background: #4CAF50;
    color: #fff;
    font-weight: 700;
    padding: 7px 13px;
    font-size: 15px;
    border-radius: 50%;
    border: 3px solid #7fe583
}


.verticalwiz li .title {
    display: inline;
    font-size: 13px;
    position: relative;
    top: 0;
}

.rightab {
    border: 1px solid #dedede;
    border-radius: 3px;
    padding: 30px;
    box-shadow: 1px 1px 11px #ccc;
    min-height: 320px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .verticalwiz li:before {
        transform: rotate(90deg) translateY(65px);
        max-width: 60%;
    }
}

@media (max-width: 991px) {
    .verticalwiz li {
        float: left;
        width: 25%;
        height: auto;
        min-height: inherit;
        margin-bottom: 20px;
        max-width: inherit;
        text-align: center;
    }

    .verticalwiz li:before {
        transform: none;
        max-width: inherit;
        position: absolute;
    }

    .verticalwiz li .title {
        margin-top: 10px;
        text-align: center;
        display: block;
    }
}

/*End vertical Wizard*/


#menubar.menubar-inverse::before {
    background: #02531b;
    background: linear-gradient(#02531b,#00732a) !important;
}

.menubar-pin .menubar-inverse .gui-controls > li.active:not(.gui-folder) > a {
    background-color: #02531b;
}

.bg-primary {
    background-color: #00732a !important;
}