﻿/*#region HTML & BODY*/

html {
    height: 100%;
}

body {
    font-family: Helvetica, San-Serif, '\\"Trebuchet MS\\"', Verdana;
    height: 100%;
}

/*#endregion HTML & BODY*/

/*#region LOG IN*/

.svg-container {
    position: relative;
}

    .svg-container svg {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        fill: #E95E27;
    }

.logout-hover {
    height: 32px;
    width: 32px;
    margin: auto;
}

.menu-icon {
    height: 40px;
    width: 40px;
    margin: auto;
}

.check-detalle {
    width: 25px;
    height: 25px;
    margin-right: 20px;
    float: left;
    display: inline-block;
}

.info-icon {
    width: 24px;
    height: 24px;
    margin: auto;
}

.radiobutton_orange {
    width: 22px;
    height: 22px;
    margin: auto;
}

.ticketing_correct_client {
    width: 200px;
    height: 200px;
    margin: auto;
}

.logout-hover .logout-open {
    display: none;
}

.logout-hover:hover .logout-closed,
.logout-hover:active .logout-closed {
    display: none
}

.logout-hover:hover .logout-open,
.logout-hover:active .logout-open {
    display: block
}

.container {
    margin-top: 8%;
}

    .container .logo-login {
        text-align: center;
        margin-right: 30px;
    }

    .container .divLogin {
        background-color: white;
        border-radius: 5px;
        padding: 30px;
        -webkit-box-shadow: 5px 7px 12px -2px rgba(179,179,179,1);
        -moz-box-shadow: 5px 7px 12px -2px rgba(179,179,179,1);
        box-shadow: 5px 7px 12px -2px rgba(179,179,179,1);
    }

        .container .divLogin .flecha-left {
            width: 0px;
            height: 0px;
            border-bottom: 15px solid transparent;
            border-top: 15px solid transparent;
            border-right: 25px solid #FFFFFF;
            font-size: 0px;
            line-height: 0px;
            position: absolute;
            margin-left: -50px;
        }

        .container .divLogin .input-login {
            border-radius: 10px;
            font-size: 18px;
            border: none;
            padding-left: 40px;
            height: 50px;
        }

        .container .divLogin p {
            font-size: 15px;
            color: #999999;
            font-weight: bold;
            text-align: center;
            margin-bottom: -10px;
        }

            .container .divLogin p a {
                color: #337ab7;
            }

        .container .divLogin #user-input-login {
            background: url("images/user-input.png") no-repeat center right 25px;
            background-color: #FAE5D2;
        }

        .container .divLogin #pass-input-login {
            background: url("images/lock-input.png") no-repeat center right 25px;
            background-color: #FAE5D2;
        }

        .container .divLogin .btn-login {
            width: 100%;
            border-radius: 10px;
            padding-top: 13px;
            padding-bottom: 13px;
            font-size: 17px;
            color: white;
            font-weight: bold;
            border: none;
            background-color: #E95E27;
            outline: none;
        }

            .container .divLogin .btn-login:hover {
                background-color: #d35400;
            }

        .container .divLogin .input-validation-error {
            background-color: #FAD1D1 !important;
            border: 2px solid red;
            margin-bottom: 5px;
        }

        .container .divLogin .field-validation-error {
            color: red;
            font-weight: bold;
        }

@media (max-width: 767px) {
    .documentacionGIO {
        display: none;
    }

    .container {
        margin-top: 0;
    }

        .container hr {
            margin-bottom: 0;
        }

        .container .divLogin {
            box-shadow: none;
            border-radius: 0;
        }
}

/*#endregion LOG IN*/

/*#region MENU LATERAL*/

#menuSection {
    width: 250px;
}

#leftSection {
    font-family: Helvetica, San-Serif, '\\"Trebuchet MS\\"', Verdana;
    background-color: white;
    float: left;
    width: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    margin-left: -255px;
    height: 100%;
    position: absolute;
    z-index: 101;
}

    #leftSection #logo-header-menu {
        background: url("/Content/images/logo-medium.png") no-repeat;
        background-position: 50%;
        background-size: 160px;
        height: 150px;
        margin-bottom: 16px;
        border-bottom: 1px solid #ddd;
    }

    #leftSection #cerrar-menu #cerrar-icon {
        float: right;
        margin-right: 10px;
        margin-top: 0px;
        font-size: 30px;
        border-radius: 20px;
        cursor: pointer;
        color: #4B5C68;
    }

        #leftSection #cerrar-menu #cerrar-icon:hover {
            color: #E95E27;
        }

    #leftSection .parpadeo {
        margin-left: 30px;
    }

    #leftSection #menuSection ul.menu {
        margin-bottom: 0px;
    }

.menuSelected {
    background-color: #ddd;
}

.ui-accordion .ui-accordion-content ul li a {
    padding: 5px 0px !important;
    padding-left: 35px !important;
}

/*#endregion MENU LATERAL*/

/*#region HEADER*/

.header {
    background-color: white;
    width: 100%; /* Establecemos que el header abarque el 100% del documento */
    overflow: hidden; /* Eliminamos errores de float */
    margin-bottom: 20px;
    margin-top: 0;
    color: #E95E27;
    box-shadow: 0px 0px 10px grey;
    position: relative;
    z-index: 1;
}

    .header .parpadeo {
        float: right;
        width: 23px !important;
        margin-top: 14px;
    }

    .header .wrapper-header {
        width: 965px;
        max-width: 1300px; /* Aqui le decimos que el ancho máximo sera de 1000px */
        margin: auto; /* Centramos los elementos */
        overflow: hidden; /* Eliminamos errores de float */
        font-size: 14px;
    }

        .header .wrapper-header #menu-icon {
            height: 65px;
            width: 40px;
            cursor: pointer;
            display: inline-block;
            vertical-align: middle;
            margin-top: 7px;
            font-weight: bold;
        }

            .header .wrapper-header #menu-icon img {
                width: 40px;
            }

        /*.header .wrapper-header #titulo{
    display: inline-block;
    font-size:30px;
    color:white;
    vertical-align:top;
    margin-top:10px;
}*/

        .header .wrapper-header #logo-header {
            text-align: center;
            padding: 15px 0;
        }

        .header .wrapper-header #logout-icon {
            text-align: center;
            margin-top: 10px;
            cursor: pointer;
        }

            .header .wrapper-header #logout-icon span {
                margin-left: -7px;
                font-weight: bold;
            }

        .header .wrapper-header #cerrar-sesion {
            border: 1px solid black;
            margin-bottom: 0px;
        }

            .header .wrapper-header #cerrar-sesion p {
                margin-bottom: 0px;
                text-align: center;
            }

#menu-icon .notificacion {
    height: 30px;
    left: 33px;
    top: 28px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    Z-INDEX: 2;
}

/*#endregion HEADER*/

/*#region CONTENIDO*/


a:visited {
    color: #337ab7;
}

#contenido {
    min-height: 100%;
    position: relative;
    margin-top: -105px;
    padding-top: 110px;
    padding-bottom: 80px;
}

#mainSection { /*Para controladores a parte*/
    background-color: transparent;
}

#contenido #mainSection {
    margin: 0 auto;
    float: none;
    background-color: transparent !important;
}

    #contenido #mainSection legend {
        width: auto;
        border: 0;
    }

#capa-negra-content {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: grey;
    opacity: 0.5;
    filter: alpha(opacity=50); /* For IE8 and earlier */
    display: none;
    z-index: 100;
}

/*#endregion CONTENIDO*/

/*#region HOME*/

.barra-notificaciones {
    margin-top: 0;
    position: fixed;
    width: 300px;
    height: 100%;
    background-color: #4B5C68;
    right: 0;
    top: 0px;
    padding-top: 83px;
    box-shadow: -10px 0px 15px -10px #8C8C8C;
    overflow-y: auto;
}

    .barra-notificaciones h2 {
        color: white;
        font-weight: bold;
        text-align: center;
    }

    .barra-notificaciones .divNotificacion {
        width: 85%;
        margin: 0 auto;
        color: white;
        font-size: 14px;
        text-align: justify;
        padding: 15px 0;
        border-bottom: 1px solid white;
        background-color: #4B5C68;
    }

        .barra-notificaciones .divNotificacion h3 {
            color: white;
            margin: 0;
            font-weight: bold;
            margin-bottom: 15px
        }

    .barra-notificaciones .notificacion-no-exist {
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        color: white;
    }

.home-container {
    margin: 0;
    margin-bottom: 20px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

    .home-container .opcionPadre {
        background-color: #4B5C68;
        color: white;
        height: 90px;
        margin-top: 15px;
        margin-bottom: 15px;
        opacity: 0.7;
        border-radius: 5px;
        cursor: pointer;
        -webkit-box-shadow: 0px 0px 13px 0px rgba(97,97,97,1);
        -moz-box-shadow: 0px 0px 13px 0px rgba(97,97,97,1);
        box-shadow: 0px 0px 13px 0px rgba(97,97,97,1);
    }

    .home-container img {
        margin-top: 15px;
    }

@media (max-width: 767px) {
    .barra-notificaciones {
        display: none;
    }

    #contenido {
        padding-right: 0px !important;
    }
}

/*#endregion HOME*/

/*#region ITEMS CONTAINER*/

.items-container {
    background-color: #bdc3c7;
    min-height: 350px;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 25px solid #bdc3c7;
    margin: 0 auto;
    position: relative;
}

.content-items {
    width: 250px;
    margin: 0 auto;
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    min-height: 220px;
    vertical-align: top;
}

    .content-items div {
        width: 150px;
        height: 150px;
        border: 5px solid white;
        border-radius: 100px;
        margin: 0 auto;
    }

        .content-items div img {
            width: 100px;
            position: relative;
            margin-left: 50%;
            left: -50px;
            margin-top: 50%;
            top: -50px;
        }

    .content-items h2 {
        font-weight: bold;
    }

    .content-items span {
        font-size: 15px;
    }
/*#endregion ITEMS CONTAINER*/

/*#region FOOTER*/

footer {
    position: relative;
    clear: both;
    margin-top: -45px;
    height: 55px;
}

@media (max-width: 767px) {
    .barra-notificaciones {
        display: none;
    }

    footer {
        margin-left: 0px !important;
    }
}

/*#endregion FOOTER*/

/*#region ACUSE DE RECIBO*/

#acudeReciboDiv {
    width: 400px;
    background-color: white;
    margin: 0 auto;
    padding: 20px 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 7px grey
}

    #acudeReciboDiv #t_acuse {
        margin: 0 auto;
    }

    #acudeReciboDiv button img {
        float: left;
        margin-right: 15px;
        width: 25px;
    }

/*#endregion ACUSE DE RECIBO*/

/*#region CONTROL GASTO*/

.infoCtrlGasto div {
    border: 1px solid #4E5F6A;
    background-color: white;
    border-radius: 4px;
}

.filtroCtrlGas {
    height: 100px;
    margin-bottom: 15px;
}

/*#endregion CONTROL GASTO*/

/*#region ERROR PAGES*/

/*#errorSection{
    position: absolute;
    width:100%;
    top: 0;
    min-height: 100%;
}
#errorSection .errorDiv{
    text-align:center;
    margin-top: 120px;
    font-family:Impact, sans-serif;
    width:70%;
    margin-left:15%;
    padding:15px 15px 30px 15px;
}
#errorSection .errorDiv .errorH1{
    font-size:100px;
}
#errorSection .errorDiv .errorH2{
    font-size:30px;
    margin-bottom:20px;
}
#errorSection .errorDiv .errorH2 a{
    color:#E95E27;
}
#errorSection .errorDiv .errorH3{
    font-size:20px;
    margin-top:50px;
}*/

/*#endregion ERROR PAGES*/

/*#region GENERAL*/

.card-detalle {
    /*box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);*/
    font-family: 'Segoe UI Light', Calibri, sans-serif;
}

    .card-detalle h1 {
        font-size: 35px;
        margin-bottom: 14px;
    }

    .card-detalle h2 {
        font-size: 28px;
        margin-top: 5px;
        width: 250px;
        margin-right: 50px;
        float: left;
        line-height: 34px;
    }

    .card-detalle h3 {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 24px;
        color: black;
    }

    .card-detalle .moduleLine {
        border-color: #4E5F6A;
        border-style: solid;
        border-width: 1px 0px 0px 0px;
        clear: both;
    }

    .card-detalle ul {
        overflow: hidden;
        margin-bottom: 30px;
        float: left;
    }

        .card-detalle ul li {
            display: block;
        }

            .card-detalle ul li label {
                color: #E95E27;
            }

            .card-detalle ul li img.detalle-item {
                width: 25px;
                margin-right: 20px;
                float: left;
            }

.form-control-input-personal, .filtroCtrl {
    width: 100%;
    height: 30px !important;
    padding: 3px 12px !important;
    font-size: 14px !important;
    line-height: 1.42857143;
    color: #555;
    background: white;
    background-image: none;
    border: 1px solid #ccc !important;
    border-radius: 2px;
    resize: none;
}

.form-control-div-personal {
    border: 1px solid #ccc !important;
    border-radius: 4px;
    background-color: #F8F8F8;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.SelectorAutocompleteClientes {
    width: 100%;
    height: 30px !important;
    font-size: 14px !important;
    line-height: 1.42857143;
    color: #555;
    background: white;
    background-image: none;
    border: 1px solid #ccc !important;
    border-radius: 2px;
    resize: none;
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    background-color: white !important;
}

.btnSelectorAutocomplete {
    background-color: #F26E3F;
    height: 30px !important;
    vertical-align: top;
}

.newTitleDiv {
    height: 60px;
    text-align: center;
    display: table;
    width: 100%;
    margin-bottom: 20px;
}

    .newTitleDiv .newTitleText {
        margin: 0;
        height: 100%;
        text-align: center;
        vertical-align: middle;
        display: table-cell;
        font-size: 25px;
        color: #4E5F6A;
        font-weight: bold;
    }

.TreeSelector {
    background: url(images/tree.gif) no-repeat 99% 5px !important;
}

.buttonCancel, .buttonFinish, .buttonNext, .buttonPrevious, .buttonFilter, .filterButton, .buttonExcel {
    padding: 6px 12px !important;
    margin-top: 2px !important;
    margin-bottom: 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.42857143 !important;
    text-align: center !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
    -ms-touch-action: manipulation !important;
    touch-action: manipulation !important;
    cursor: pointer !important;
    background-image: none !important;
    border: 1px solid transparent !important;
    border-radius: 4px !important;
    text-shadow: none !important;
}

.buttonFilter, .filterButton {
    /*background-color:#FF6600;*/
    background-color: #F26E3F;
    color: white;
}

    .buttonFilter:hover, .filterButton:hover {
        background-color: #d35400;
    }

    .filterButton:active, .filterButton:focus {
        background-color: #F26E3F;
    }

.pendientesButton {
    background-color: #F26E3F;
    padding: 0.5rem;
    display: inline-block;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    margin: 1rem 0 0.1rem 0.1rem;
}

    .pendientesButton p {
        text-align: center;
        color: white;
        font-weight: bold;
        font-size: 0.8rem;
        margin-bottom: 0px;
    }

    .pendientesButton:hover {
        background-color: #d35400;
    }

    .pendientesButton:active {
        background-color: #F26E3F;
    }

.buttonExcel {
    background-color: #207347;
    color: white;
}

    .buttonExcel:hover {
        background-color: #1B613B;
    }

.dvCtrlContainer {
    background: white !important;
    padding-right: 0px !important;
    box-shadow: none !important;
    border-radius: 2px !important;
}

input[type="text"], select {
    border-color: gainsboro;
}

.ui-dropdownchecklist-selector {
    background-color: white !important;
    height: 27px !important;
    border-radius: 2px !important;
}

.ComboBox {
    border-radius: 2px !important;
}

.ui-icon-triangle-1-e, .ui-icon-triangle-1-s {
    margin-top: 5px;
}

.ui-dropdownchecklist-text {
    margin-top: 4px;
    margin-left: 5px;
}

.label {
    color: black;
    font-size: 13px;
}

.ui-datepicker-trigger {
    margin-right: 6px;
    margin-top: 6px;
    float: right;
    z-index: 90;
}
/*#ControladorMensajeriaCliente .ui-datepicker-trigger, #ControladorServiciosCertificados .ui-datepicker-trigger{
    position:absolute;
}*/
.swMain div.actionBar {
    display: block;
    position: relative;
    clear: both;
    margin: 3px 0 0 0 !important;
    border: 1px solid #CCC;
    padding: 5px 0px !important;
    color: #5A5655;
    background-color: #F8F8F8;
    height: 50px !important;
    width: 990px;
    text-align: left;
    overflow: auto;
    z-index: 88;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    left: 0;
}

.swMain .msgBox {
    position: relative;
    display: none;
    float: left;
    margin: 1px 0 0 10px !important;
    padding: 5px;
    border: 1px solid #FFD700;
    background-color: #FFFFDD;
    font: normal 12px Verdana, Arial, Helvetica, sans-serif;
    color: #5A5655;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    z-index: 999;
    min-width: 200px;
}

#contenido #mainSection .ui-jqgrid-bdiv {
    height: 400px !important;
}

.stepContainer #step-3 {
    overflow-x: hidden !important;
}

/*#endregion GENERAL*/

/*#region DMR*/

.dmr {
    height: 100%;
}

.dmr-document-title {
    margin-bottom: 12px !important;
    margin-left: 10px;
    display: inline-block;
}

    .dmr-document-title img {
        margin-right: 10px;
        vertical-align: middle;
    }

#contenido-dmr {
    height: calc(100% - 150px);
}

.dmr-content {
    min-width: 685px;
    width: calc(100% - 320px);
    margin: 10px 10px 0;
    float: left;
}

    .dmr-content.full {
        width: 100%;
        max-width: 100%;
        margin: 10px 0 0;
    }

    .dmr-content #previewFrame {
        width: 100%;
        height: 756px;
    }

    .dmr-content.full #previewFrame {
        width: 100%;
        height: calc(100vh - 200px);
    }

.show-hide-icon {
    cursor: pointer;
    float: left;
    margin: 10px 7px 0;
}

.dmr-nav {
    min-width: 300px;
    width: 300px;
    height: calc(100vh - 150px);
    overflow-x: hidden;
    overflow-y: auto;
    display: inline-block;
    margin-top: 8px;
    float: left;
}

#divTableDMR {
    height: calc(100% - 91px);
    overflow-y: auto;
    width: 100%;
}

.tituloDoc {
    font-size: 16px;
}

.dmr-nav ul li {
    width: 100%;
}

.dmr-nav ul .bandejaActiva {
    background-color: lightgrey;
    opacity: 1;
}

.dmr-nav ul li:hover, .dmr-navLiHover {
    background-color: lightgrey;
}

.dmr-nav ul li a {
    display: block;
    cursor: pointer;
    padding: 13px 30px;
    font-size: 17px;
    font-weight: bold;
    white-space: nowrap;
}

    .dmr-nav ul li a:active {
        color: #337ab7;
    }

.dmr-pdf-container {
    float: left;
    width: 68%;
}

.dmr-right-container {
    float: right;
    padding-left: 10px;
    font-size: 15px;
    width: 32%;
}

    .dmr-right-container h2 {
        margin-bottom: 5px !important;
        color: #000;
        font-size: 15px;
        margin-top: 0;
        font-weight: bold;
    }

    .dmr-right-container ul {
        list-style-type: none;
    }

        .dmr-right-container ul a {
            text-decoration: none;
            color: #000000;
            cursor: pointer;
        }

.dmr-bottom-column {
    width: 33%;
    padding-top: 10px;
    padding-bottom: 60px;
    font-size: 12px;
    float: left;
}

    .dmr-bottom-column input[type=button] {
        float: right;
        margin-right: 20px;
    }

    .dmr-bottom-column .list {
        max-height: 200px;
        overflow-y: auto;
        margin-left: 20px;
        width: calc(100% - 45px);
    }

        .dmr-bottom-column .list div {
            margin: 0;
            margin-bottom: 10px;
        }

            .dmr-bottom-column .list div p {
                margin: 0;
            }

                .dmr-bottom-column .list div p b {
                    margin: 0px;
                }

            .dmr-bottom-column .list div span {
                margin-left: 5px;
            }

.dmr-content.full .dmr-bottom-column.right {
    margin-left: 20px;
}

.dmr-bottom-column.left {
    float: left;
}

.dmr-bottom-column b {
    font-size: 15px;
    margin-left: 4px;
    padding-bottom: 5px;
}

.dmr-bottom-column p b {
    font-size: 12px;
}

.dmr-bottom-column textarea {
    resize: none;
    border-color: #4E5F6A;
    width: calc(100% - 20px);
    height: 90px;
}



.dmr-bottom-column div, .dmr-bottom-column table {
    width: 100%;
    margin-top: 5px;
}

#iconHideAnswers {
    margin-right: 7px;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    .dmr-pdf-container {
        width: calc(100% - 50px);
        margin-left: 25px;
    }

    .dmr-right-container {
        width: 100%;
    }

    .dmr-bottom-column,
    .dmr-right-container {
        float: left !important;
        margin-left: 25px !important;
        width: calc(100% - 25px) !important;
    }

    .dmr-content {
        min-width: 400px;
    }

    .dmr-nav {
        height: auto;
    }

    .dmr-bottom-column .list {
        max-height: initial !important;
    }
}

@media only screen and (max-width: 767px) {

    .dmr-content {
        width: calc(100% - 25px);
        max-width: 100%;
        margin-top: 80px;
    }

    .dmr-nav {
        width: 100%;
        margin-top: 20px;
        display: inline-block !important;
    }

    #iconHideAnswers {
        display: none;
    }
}

ol.breadcrumb {
    width: 100% !important;
    font-size: 16px;
    background-color: white;
    border-radius: 0;
    float: left;
    margin-bottom: 0;
}

#documentosBandeja {
    height: calc(100vh - 210px);
    background-color: #F4F4F4;
    border-left: 3px solid white;
    overflow-y: auto;
}

li.carpeta {
    margin-right: 20px;
    vertical-align: text-top;
}

    li.carpeta img,
    li.bandeja img {
        float: left;
        margin-right: 20px;
        vertical-align: text-top;
        margin-top: -5px;
    }

    li.carpeta.red a,
    li.bandeja.red a {
        color: red;
    }

#capaDMR {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}

.dmr-opciones {
    margin-bottom: 10px;
}

.dmr-content-table {
    border: 3px solid white;
}

    .dmr-content-table tr {
        cursor: pointer;
    }

        .dmr-content-table tr:hover {
            background-color: lightgrey;
        }

        .dmr-content-table tr td {
            margin: 0 !important;
            padding: 5px 0px;
        }

        .dmr-content-table tr .filename a {
            font-size: 21px;
            text-decoration: none;
        }

            .dmr-content-table tr .filename a:hover {
                text-decoration: underline;
            }

    .dmr-content-table .dmr-content-options {
        text-align: center;
        list-style-type: none;
        margin-bottom: 0;
        display: none;
    }

        .dmr-content-table .dmr-content-options li {
            display: inline;
            margin: 0 10px 0 0;
        }

#footer-dmr {
    background-color: #eee;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    position: fixed;
    bottom: 0;
    padding: 7px;
    height: 60px;
}

.dmr-mover-documentos .list-group-item.active {
    background-color: #FED66D !important;
    border-color: #FED66D !important;
    color: black;
    font-weight: bold;
}

#paginador-dmr .active a {
    background-color: #FF6600 !important;
    border-color: #FF6600 !important;
    color: white !important;
}

#paginador-dmr li a {
    color: #FF6600 !important;
}

#iterator-dmr {
    display: inline-block;
    float: right;
}

#iterator-dmr a {
    color: #FF6600 !important;
    text-decoration: none;
}

#iterator-dmr span {
    font-size: 16px;
}

.divDraggableMoverDoc {
    width: 170px;
    box-shadow: 0px 3px 5px grey;
    border: 1px solid grey;
    background-color: white;
    text-align: center;
    padding: 5px 0px;
    font-weight: bold;
    font-style: italic;
}

@media (max-width: 1160px) {
    #previewFrame {
        height: 500px !important;
    }
    /*#documentView {
        width: 55%;
    }*/
}

/*#endregion DMR*/


.tooltip-info-text-recogida {
    width: 250px;
    background-color: #E95E27;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 10;
    margin-top: 22px;
    right: 530px;
    visibility: hidden;
}

.tooltip-info-text-entrega {
    width: 250px;
    background-color: #E95E27;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 10;
    margin-top: 22px;
    right: 60px;
    visibility: hidden;
}

    .tooltip-info-text-recogida::after, .tooltip-info-text-entrega::after {
        content: " ";
        position: absolute;
        bottom: 100%;
        left: 50%; /* To the left of the tooltip */
        margin-left: 85px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent #E95E27 transparent;
    }

.tooltip-info-text-retorno {
    width: 440px;
    background-color: #E95E27;
    color: #fff;
    text-align: center;
    padding: 6px 2px;
    border-radius: 6px;
    position: absolute;
    z-index: 10;
    margin-top: -35px;
    left: 20px;
    visibility: hidden;
}

    .tooltip-info-text-retorno::after {
        content: " ";
        position: absolute;
        top: 100%;
        left: 50%; /* To the left of the tooltip */
        margin-left: -50px;
        border-width: 5px;
        border-style: solid;
        border-color: #E95E27 transparent transparent transparent;
    }

.tooltip-info-text, .tooltip-info-text-seguro {
    width: 440px;
    background-color: #E95E27;
    color: #fff;
    text-align: center;
    padding: 6px 2px;
    border-radius: 6px;
    position: absolute;
    z-index: 10;
    margin-top: -80px;
    left: 20px;
    visibility: hidden;
}

    .tooltip-info-text::after, .tooltip-info-text-seguro::after {
        content: " ";
        position: absolute;
        top: 100%;
        left: 32%; /* To the left of the tooltip */
        margin-left: -50px;
        border-width: 5px;
        border-style: solid;
        border-color: #E95E27 transparent transparent transparent;
    }

.tooltip-info-text-emailMultipleList {
    width: 160px;
    background-color: #E95E27;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 10;
    margin-top: -65px;
    margin-left: 372px;
    visibility: hidden;
}

    .tooltip-info-text-emailMultipleList::after {
        content: " ";
        position: absolute;
        bottom: 100%;
        left: 50%; /* To the left of the tooltip */
        margin-left: 0px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent #E95E27 transparent;
    }

.enlaceDMR {
    color: #337ab7;
    text-decoration: underline;
    cursor: pointer;
}

    .enlaceDMR:hover {
        color: #1c486d;
    }


/*DATPICKER DISABLE DATES HACK*/
.ui-state-disabled span.ui-state-default {
    color: red;
    font-style: italic;
}

.divFechaSolicitud {
    margin: 15px 32px;
}

    .divFechaSolicitud.gestion {
        margin-left: 10px;
    }

    .divFechaSolicitud strong {
        margin-right: 7px;
        font-size: 14px;
    }

    .divFechaSolicitud input[type="text"] {
        width: 80px;
    }

    .divFechaSolicitud .field-validation-valid {
        margin-left: 5px;
    }

.documentos-busqueda {
    height: calc(100vh - 275px);
    width: 100%;
    background-color: #F4F4F4;
    border-left: 3px solid white;
}

.accordion-container {
    height: 100%;
}

.accordion-section {
    background-color: transparent;
    max-height: calc(100vh - 370px);
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-bottom: 15px !important;
}

.blockUI.blockMsg.blockElement {
    top: calc(50vh - 180px) !important;
    left: calc(50% - 190px) !important;
}

.detalle-item .observacion-field {
    text-align: justify;
    margin-top: 0px;
    height: 70px;
    overflow-y: scroll;
    border: 2px solid #E95E27;
    padding: 0 15px 0 15px;
    border-radius: 5px;
}

    .detalle-item .observacion-field label {
        color: black;
    }

.MensajeSolicitud {
    text-align: justify;
    margin-top: 0px;
    height: 70px;
    overflow-y: scroll;
    border: 2px solid #E95E27;
    padding: 0 15px 0 15px;
    border-radius: 5px;
}

.menu-text-bienvenido {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #E95E27;
    text-align: center;
    padding: 0px 10px;
}

.step a {
    text-decoration: none;
}

.jqgrid-action {
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 1.5rem;
}


