﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #676a6c;
    background-color: #d2d6de;
    line-height: 1.5;
    margin: 0px;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('glyphicons-halflings-regular.eot');
    src: url('glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('glyphicons-halflings-regular.woff2') format('woff2'), url('glyphicons-halflings-regular.woff') format('woff'), url('glyphicons-halflings-regular.ttf') format('truetype'), url('glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.grd-row:before {
    display: table;
    content: " ";
}

.grd-row:after {
    clear: both;
    display: table;
    content: " ";
}

.grd-col {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    float: left;
}

.frm-row {
    /*    margin-bottom: 15px;*/
}

.frm-control {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d2d6de;
    border-radius: 1px;
    color: inherit;
    display: block;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
    line-height: 1.5;
    font-size: 1.1em;
    margin: 0px;
}

    .frm-control:focus {
        border-color: #2376dc;
        box-shadow: 0 0 0 0 rgba(60, 141, 188, 1);
        outline: 0;
        animation: pulse-main 2s infinite;
    }

@keyframes pulse-main {
    0% {
        box-shadow: 0 0 0 0 rgba(60, 141, 188, 0.7);
    }

    90% {
        box-shadow: 0 0 0 4px rgba(60, 141, 188, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(60, 141, 188, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    90% {
        box-shadow: 0 0 0 4px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.frm-control[disabled] {
    cursor: not-allowed;
    background-color: #EEE;
}

.frm-label {
    font-weight: bold;
    color: #444;
    font-size: 0.9em;
    font-family: 'Poppins', sans-serif;
}

.btn {
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .375em .75em;
    font-size: 1em;
    line-height: 1.5;
    background-color: #3ca1ca;
    color: #fff;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
}

.btn-primary-2 {
    background-color: #3ca1ca;
}

.btn:focus {
    color: #fff;
    border-color: #366e8e;
    background-color: #366e8e;
    outline: 0;
}

.btn-success {
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .375em .75em;
    font-size: 1em;
    line-height: 1.5;
    background-color: #008d4c;
    color: #fff;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
}

.btn-success:focus {
    color: #fff;
    border-color: #767777;
    background-color: #1bb970;
    outline: 0;
}

.btn-warning {
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .375em .75em;
    font-size: 1em;
    line-height: 1.5;
    border-radius: 3px;
    background-color: #ffc107 !important;
    color: #fff;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
}

.btn-warning:focus {
    color: #fff;
    border-color: #E5B116;
    background-color: #E5B116;
    outline: 0;
}

.btn-danger {
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .375em .75em;
    font-size: 1em;
    line-height: 1.5;
    border-radius: 3px;
    background-color: #da3c3c !important;
    color: #fff;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
}

.btn-dangerfocus {
    color: #fff;
    border-color: #da3c3c;
    background-color: #f44d4d;
    outline: 0;
}

.btn-sm {
    padding: 2px 6px;
    font-size: 0.9EM;
    margin-bottom: 4px;
}

.nav {
    position: absolute;
    width: 100%;
    background-color: #2376dc;
    color: #fff;
    z-index: 100;
}

.nav-icon {
    height: 100px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.img {
    height: 64px;
    width: 64px;
}

.ico {
    display: inline-block;
    height: 16px;
    width: 16px;
}

.clickable {
    cursor: pointer;
}

.tbl {
    font-size: 0.9EM;
    width: 100%;
    border-collapse: collapse;
}

    .tbl > thead > tr > th {
        text-align: center;
        border-bottom: 1px solid #DDDDDD;
        line-height: 1.42857;
        padding: 8px;
        vertical-align: top;
    }

    .tbl > tbody > tr > td {
        text-align: center;
        border-bottom: 1px solid #DDDDDD;
        line-height: 1.42857;
        padding: 8px;
        vertical-align: top;
    }

.tbl-border {
    font-size: 0.9EM;
    width: 100%;
    border-collapse: collapse;
}

    .tbl-border > thead > tr > th {
        text-align: center;
        border: 1px solid #DDDDDD;
        line-height: 1.42857;
        padding: 8px;
        vertical-align: top;
    }

    .tbl-border > thead > tr > th > input {
        width: 100%;
    }

    .tbl-border > tbody > tr > td {
        text-align: center;
        border: 1px solid #DDDDDD;
        line-height: 1.42857;
        padding: 8px;
        vertical-align: middle;
    }

    .tbl-border > tfoot > tr > td {
        background: #367fa9;
        color: white;
        text-align: center;
        border: 1px solid #367fa9;
        line-height: 1.42857;
        padding: 8px;
        vertical-align: top;
        font-weight: bold;
        font-size: 1.1EM;
    }

.state-error > .frm-control {
    border-color: #f00;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 1);
    outline: 0;
    animation: pulse-red 2s infinite;
}
/*#region Core*/
[w-template] {
    display: none;
}
/*#endregion Core*/

/*#region Datepicker*/
.datepicker {
    position: absolute;
    background: #fff;
    width: 218px;
    padding: 5px;
    border: 1px solid black;
    border-radius: 0px 8px 8px 8px;
    background-color: #2376dc;
    color: #fff;
    line-height: 1.4EM;
    z-index: 999;
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
}

    .datepicker .normal {
        border: 1px solid transparent;
        cursor: pointer;
    }

    .datepicker table {
        border-spacing: 0px;
        text-align: center;
    }

    .datepicker tbody {
        background-color: #fff;
        color: black;
    }

    .datepicker .other {
        color: gray;
    }

    .datepicker .selected {
        border: 1px solid #2376dc;
    }
/*#endregion Datepicker*/

/*#region Autocomplete*/
.auto-complete {
    position: absolute;
    background: #fff;
    overflow-x: auto;
    border: 1px solid black;
    border-radius: 0px 8px 8px 8px;
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    z-index: 5000;
}

    .auto-complete div {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 3px 10px;
    }

    .auto-complete .bold {
        font-weight: bold;
    }

    .auto-complete .selected {
        background-color: #2376dc;
        color: #fff;
    }
/*#endregion Autocomplete*/

/*#region Modal*/
.modal {
    position: fixed !important;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    overflow-y: auto;
    z-index: 2000;
    background-color: rgba(0,0,0,.3);
    animation-name: fadeInOpacity;
    animation-duration: .3s;
}

    .modal .content {
        position: relative;
        margin: 30px auto 0px auto;
        width: 600px;
        border-radius: 5px;
        -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
        box-shadow: 0 5px 15px rgba(0,0,0,.5);
        animation-name: fadeInMargin;
        animation-duration: .2s;
        animation-delay: .1s;
        animation-fill-mode: forwards;
        background-color: #0c577b;
    }

    .modal .sm {
        width: 400px;
    }

    .modal .content .body {
        background-color: #fff;
        color: black;
        min-height: 80px;
        padding: 8px 16px;
    }

    .modal .content .title {
        min-height: 32px;
        color: #fff;
        border-bottom: 1px solid #a0a0a0;
        font-size: 1.1em;
        padding: 8px 16px;
    }

    .modal .content .footer {
        min-height: 32px;
        border-top: 1px solid #a0a0a0;
        padding: 8px 16px;
        background-color: #fff;
        text-align: right;
        border-radius: 0px 0px 5px 5px;
    }

@keyframes fadeInMargin {
    0% {
        margin-top: 0px;
    }

    100% {
        margin-top: 30px;
    }
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/*#endregion Modal*/

/*#region Wait*/
.view-wait {
    position: relative;
}

    .view-wait * {
        visibility: hidden;
    }

    .view-wait:before {
        position: absolute;
        display: block !important;
        content: '';
        width: 40px;
        height: 40px;
        margin-top: -20px;
        margin-left: -20px;
        top: 10%;
        left: 50%;
        background-color: #2376dc;
        border-radius: 100%;
        animation: sk-scaleout 1.0s infinite ease-in-out;
    }

    .view-wait:after {
        position: absolute;
        visibility: visible !important;
        color: #2376dc;
        content: 'Cargando...';
        margin-top: 20px;
        margin-left: -2.3em;
        top: 10%;
        left: 50%;
        font-size: 0.9em;
    }

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}
/*#endregion Wait*/

/*region For*/
.w-for-page {
    margin-top: 12px;
    width: 100%;
    text-align: right;
}

    .w-for-page div {
        display: inline-block;
    }

        .w-for-page div div {
            cursor: pointer;
            padding: 7px;
            border: 1px solid #676a6c;
            margin-left: -1px;
        }

    .w-for-page .selected {
        background-color: #2376dc;
        color: #fff;
    }
/*endregion For*/

.gph {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gph-asterisk:before {
    content: "\002a";
}

.gph-plus:before {
    content: "\002b";
}

.gph-euro:before {
    content: "\20ac";
}

.gph-minus:before {
    content: "\2212";
}

.gph-cloud:before {
    content: "\2601";
}

.gph-envelope:before {
    content: "\2709";
}

.gph-pencil:before {
    content: "\270f";
}

.gph-glass:before {
    content: "\e001";
}

.gph-music:before {
    content: "\e002";
}

.gph-search:before {
    content: "\e003";
}

.gph-heart:before {
    content: "\e005";
}

.gph-star:before {
    content: "\e006";
}

.gph-star-empty:before {
    content: "\e007";
}

.gph-user:before {
    content: "\e008";
}

.gph-film:before {
    content: "\e009";
}

.gph-th-large:before {
    content: "\e010";
}

.gph-th:before {
    content: "\e011";
}

.gph-th-list:before {
    content: "\e012";
}

.gph-ok:before {
    content: "\e013";
}

.gph-remove:before {
    content: "\e014";
}

.gph-zoom-in:before {
    content: "\e015";
}

.gph-zoom-out:before {
    content: "\e016";
}

.gph-off:before {
    content: "\e017";
}

.gph-signal:before {
    content: "\e018";
}

.gph-cog:before {
    content: "\e019";
}

.gph-trash:before {
    content: "\e020";
}

.gph-home:before {
    content: "\e021";
}

.gph-file:before {
    content: "\e022";
}

.gph-time:before {
    content: "\e023";
}

.gph-road:before {
    content: "\e024";
}

.gph-download-alt:before {
    content: "\e025";
}

.gph-download:before {
    content: "\e026";
}

.gph-upload:before {
    content: "\e027";
}

.gph-inbox:before {
    content: "\e028";
}

.gph-play-circle:before {
    content: "\e029";
}

.gph-repeat:before {
    content: "\e030";
}

.gph-refresh:before {
    content: "\e031";
}

.gph-list-alt:before {
    content: "\e032";
}

.gph-lock:before {
    content: "\e033";
}

.gph-flag:before {
    content: "\e034";
}

.gph-headphones:before {
    content: "\e035";
}

.gph-volume-off:before {
    content: "\e036";
}

.gph-volume-down:before {
    content: "\e037";
}

.gph-volume-up:before {
    content: "\e038";
}

.gph-qrcode:before {
    content: "\e039";
}

.gph-barcode:before {
    content: "\e040";
}

.gph-tag:before {
    content: "\e041";
}

.gph-tags:before {
    content: "\e042";
}

.gph-book:before {
    content: "\e043";
}

.gph-bookmark:before {
    content: "\e044";
}

.gph-print:before {
    content: "\e045";
}

.gph-camera:before {
    content: "\e046";
}

.gph-font:before {
    content: "\e047";
}

.gph-bold:before {
    content: "\e048";
}

.gph-italic:before {
    content: "\e049";
}

.gph-text-height:before {
    content: "\e050";
}

.gph-text-width:before {
    content: "\e051";
}

.gph-align-left:before {
    content: "\e052";
}

.gph-align-center:before {
    content: "\e053";
}

.gph-align-right:before {
    content: "\e054";
}

.gph-align-justify:before {
    content: "\e055";
}

.gph-list:before {
    content: "\e056";
}

.gph-indent-left:before {
    content: "\e057";
}

.gph-indent-right:before {
    content: "\e058";
}

.gph-facetime-video:before {
    content: "\e059";
}

.gph-picture:before {
    content: "\e060";
}

.gph-map-marker:before {
    content: "\e062";
}

.gph-adjust:before {
    content: "\e063";
}

.gph-tint:before {
    content: "\e064";
}

.gph-edit:before {
    content: "\e065";
}

.gph-share:before {
    content: "\e066";
}

.gph-check:before {
    content: "\e067";
}

.gph-move:before {
    content: "\e068";
}

.gph-step-backward:before {
    content: "\e069";
}

.gph-fast-backward:before {
    content: "\e070";
}

.gph-backward:before {
    content: "\e071";
}

.gph-play:before {
    content: "\e072";
}

.gph-pause:before {
    content: "\e073";
}

.gph-stop:before {
    content: "\e074";
}

.gph-forward:before {
    content: "\e075";
}

.gph-fast-forward:before {
    content: "\e076";
}

.gph-step-forward:before {
    content: "\e077";
}

.gph-eject:before {
    content: "\e078";
}

.gph-chevron-left:before {
    content: "\e079";
}

.gph-chevron-right:before {
    content: "\e080";
}

.gph-plus-sign:before {
    content: "\e081";
}

.gph-minus-sign:before {
    content: "\e082";
}

.gph-remove-sign:before {
    content: "\e083";
}

.gph-ok-sign:before {
    content: "\e084";
}

.gph-question-sign:before {
    content: "\e085";
}

.gph-info-sign:before {
    content: "\e086";
}

.gph-screenshot:before {
    content: "\e087";
}

.gph-remove-circle:before {
    content: "\e088";
}

.gph-ok-circle:before {
    content: "\e089";
}

.gph-ban-circle:before {
    content: "\e090";
}

.gph-arrow-left:before {
    content: "\e091";
}

.gph-arrow-right:before {
    content: "\e092";
}

.gph-arrow-up:before {
    content: "\e093";
}

.gph-arrow-down:before {
    content: "\e094";
}

.gph-share-alt:before {
    content: "\e095";
}

.gph-resize-full:before {
    content: "\e096";
}

.gph-resize-small:before {
    content: "\e097";
}

.gph-exclamation-sign:before {
    content: "\e101";
}

.gph-gift:before {
    content: "\e102";
}

.gph-leaf:before {
    content: "\e103";
}

.gph-fire:before {
    content: "\e104";
}

.gph-eye-open:before {
    content: "\e105";
}

.gph-eye-close:before {
    content: "\e106";
}

.gph-warning-sign:before {
    content: "\e107";
}

.gph-plane:before {
    content: "\e108";
}

.gph-calendar:before {
    content: "\e109";
}

.gph-random:before {
    content: "\e110";
}

.gph-comment:before {
    content: "\e111";
}

.gph-magnet:before {
    content: "\e112";
}

.gph-chevron-up:before {
    content: "\e113";
}

.gph-chevron-down:before {
    content: "\e114";
}

.gph-retweet:before {
    content: "\e115";
}

.gph-shopping-cart:before {
    content: "\e116";
}

.gph-folder-close:before {
    content: "\e117";
}

.gph-folder-open:before {
    content: "\e118";
}

.gph-resize-vertical:before {
    content: "\e119";
}

.gph-resize-horizontal:before {
    content: "\e120";
}

.gph-hdd:before {
    content: "\e121";
}

.gph-bullhorn:before {
    content: "\e122";
}

.gph-bell:before {
    content: "\e123";
}

.gph-certificate:before {
    content: "\e124";
}

.gph-thumbs-up:before {
    content: "\e125";
}

.gph-thumbs-down:before {
    content: "\e126";
}

.gph-hand-right:before {
    content: "\e127";
}

.gph-hand-left:before {
    content: "\e128";
}

.gph-hand-up:before {
    content: "\e129";
}

.gph-hand-down:before {
    content: "\e130";
}

.gph-circle-arrow-right:before {
    content: "\e131";
}

.gph-circle-arrow-left:before {
    content: "\e132";
}

.gph-circle-arrow-up:before {
    content: "\e133";
}

.gph-circle-arrow-down:before {
    content: "\e134";
}

.gph-globe:before {
    content: "\e135";
}

.gph-wrench:before {
    content: "\e136";
}

.gph-tasks:before {
    content: "\e137";
}

.gph-filter:before {
    content: "\e138";
}

.gph-briefcase:before {
    content: "\e139";
}

.gph-fullscreen:before {
    content: "\e140";
}

.gph-dashboard:before {
    content: "\e141";
}

.gph-paperclip:before {
    content: "\e142";
}

.gph-heart-empty:before {
    content: "\e143";
}

.gph-link:before {
    content: "\e144";
}

.gph-phone:before {
    content: "\e145";
}

.gph-pushpin:before {
    content: "\e146";
}

.gph-usd:before {
    content: "\e148";
}

.gph-gbp:before {
    content: "\e149";
}

.gph-sort:before {
    content: "\e150";
}

.gph-sort-by-alphabet:before {
    content: "\e151";
}

.gph-sort-by-alphabet-alt:before {
    content: "\e152";
}

.gph-sort-by-order:before {
    content: "\e153";
}

.gph-sort-by-order-alt:before {
    content: "\e154";
}

.gph-sort-by-attributes:before {
    content: "\e155";
}

.gph-sort-by-attributes-alt:before {
    content: "\e156";
}

.gph-unchecked:before {
    content: "\e157";
}

.gph-expand:before {
    content: "\e158";
}

.gph-collapse-down:before {
    content: "\e159";
}

.gph-collapse-up:before {
    content: "\e160";
}

.gph-log-in:before {
    content: "\e161";
}

.gph-flash:before {
    content: "\e162";
}

.gph-log-out:before {
    content: "\e163";
}

.gph-new-window:before {
    content: "\e164";
}

.gph-record:before {
    content: "\e165";
}

.gph-save:before {
    content: "\e166";
}

.gph-open:before {
    content: "\e167";
}

.gph-saved:before {
    content: "\e168";
}

.gph-import:before {
    content: "\e169";
}

.gph-export:before {
    content: "\e170";
}

.gph-send:before {
    content: "\e171";
}

.gph-floppy-disk:before {
    content: "\e172";
}

.gph-floppy-saved:before {
    content: "\e173";
}

.gph-floppy-remove:before {
    content: "\e174";
}

.gph-floppy-save:before {
    content: "\e175";
}

.gph-floppy-open:before {
    content: "\e176";
}

.gph-credit-card:before {
    content: "\e177";
}

.gph-transfer:before {
    content: "\e178";
}

.gph-cutlery:before {
    content: "\e179";
}

.gph-header:before {
    content: "\e180";
}

.gph-compressed:before {
    content: "\e181";
}

.gph-earphone:before {
    content: "\e182";
}

.gph-phone-alt:before {
    content: "\e183";
}

.gph-tower:before {
    content: "\e184";
}

.gph-stats:before {
    content: "\e185";
}

.gph-sd-video:before {
    content: "\e186";
}

.gph-hd-video:before {
    content: "\e187";
}

.gph-subtitles:before {
    content: "\e188";
}

.gph-sound-stereo:before {
    content: "\e189";
}

.gph-sound-dolby:before {
    content: "\e190";
}

.gph-sound-5-1:before {
    content: "\e191";
}

.gph-sound-6-1:before {
    content: "\e192";
}

.gph-sound-7-1:before {
    content: "\e193";
}

.gph-copyright-mark:before {
    content: "\e194";
}

.gph-registration-mark:before {
    content: "\e195";
}

.gph-cloud-download:before {
    content: "\e197";
}

.gph-cloud-upload:before {
    content: "\e198";
}

.gph-tree-conifer:before {
    content: "\e199";
}

.gph-tree-deciduous:before {
    content: "\e200";
}

.gph-cd:before {
    content: "\e201";
}

.gph-save-file:before {
    content: "\e202";
}

.gph-open-file:before {
    content: "\e203";
}

.gph-level-up:before {
    content: "\e204";
}

.gph-copy:before {
    content: "\e205";
}

.gph-paste:before {
    content: "\e206";
}

.gph-alert:before {
    content: "\e209";
}

.gph-equalizer:before {
    content: "\e210";
}

.gph-king:before {
    content: "\e211";
}

.gph-queen:before {
    content: "\e212";
}

.gph-pawn:before {
    content: "\e213";
}

.gph-bishop:before {
    content: "\e214";
}

.gph-knight:before {
    content: "\e215";
}

.gph-baby-formula:before {
    content: "\e216";
}

.gph-tent:before {
    content: "\26fa";
}

.gph-blackboard:before {
    content: "\e218";
}

.gph-bed:before {
    content: "\e219";
}

.gph-apple:before {
    content: "\f8ff";
}

.gph-erase:before {
    content: "\e221";
}

.gph-hourglass:before {
    content: "\231b";
}

.gph-lamp:before {
    content: "\e223";
}

.gph-duplicate:before {
    content: "\e224";
}

.gph-piggy-bank:before {
    content: "\e225";
}

.gph-scissors:before {
    content: "\e226";
}

.gph-bitcoin:before {
    content: "\e227";
}

.gph-btc:before {
    content: "\e227";
}

.gph-xbt:before {
    content: "\e227";
}

.gph-yen:before {
    content: "\00a5";
}

.gph-jpy:before {
    content: "\00a5";
}

.gph-ruble:before {
    content: "\20bd";
}

.gph-rub:before {
    content: "\20bd";
}

.gph-scale:before {
    content: "\e230";
}

.gph-ice-lolly:before {
    content: "\e231";
}

.gph-ice-lolly-tasted:before {
    content: "\e232";
}

.gph-education:before {
    content: "\e233";
}

.gph-option-horizontal:before {
    content: "\e234";
}

.gph-option-vertical:before {
    content: "\e235";
}

.gph-menu-hamburger:before {
    content: "\e236";
}

.gph-modal-window:before {
    content: "\e237";
}

.gph-oil:before {
    content: "\e238";
}

.gph-grain:before {
    content: "\e239";
}

.gph-sunglasses:before {
    content: "\e240";
}

.gph-text-size:before {
    content: "\e241";
}

.gph-text-color:before {
    content: "\e242";
}

.gph-text-background:before {
    content: "\e243";
}

.gph-object-align-top:before {
    content: "\e244";
}

.gph-object-align-bottom:before {
    content: "\e245";
}

.gph-object-align-horizontal:before {
    content: "\e246";
}

.gph-object-align-left:before {
    content: "\e247";
}

.gph-object-align-vertical:before {
    content: "\e248";
}

.gph-object-align-right:before {
    content: "\e249";
}

.gph-triangle-right:before {
    content: "\e250";
}

.gph-triangle-left:before {
    content: "\e251";
}

.gph-triangle-bottom:before {
    content: "\e252";
}

.gph-triangle-top:before {
    content: "\e253";
}

.gph-console:before {
    content: "\e254";
}

.gph-superscript:before {
    content: "\e255";
}

.gph-subscript:before {
    content: "\e256";
}

.gph-menu-left:before {
    content: "\e257";
}

.gph-menu-right:before {
    content: "\e258";
}

.gph-menu-down:before {
    content: "\e259";
}

.gph-menu-up:before {
    content: "\e260";
}

.tab {
    overflow: hidden;
    border-bottom: 1px solid #f4f4f4;
    background-color: white;
}

    .tab button {
        background-color: white;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 10px 12px;
        color: #2376dc
    }

.tab-active {
    background-color: #2376dc !important;
    color: white !important;
}

.no-mostrar {
    display: none !important;
}

.mostrar {
    display: block !important;
}

.spn-menu-item :hover {
    cursor: pointer !important;
}

.opcion-menu-seleccionado{
    font-weight: bold;
    color: white;
}

.tbl-responsiva {
    overflow-x: visible !important;
    min-height: .01% !important;
}

.enlace {
    color: #2376dc !important;
}

.enlace:hover {
    cursor: pointer;
    text-decoration: underline;
    font-size: 1.1EM;
}

.cerrarModal {
    float: right;
    font-size: 1.4EM;
    line-height: 1.1EM;
    cursor: pointer;
}

.modalWD > .body {
    clear: both;
}

.divColBotones {
    margin-top: 0;
}

@media (max-width: 768px) {
    .modalWD {
        width: 100% !important;
    }

    .title {
        border-bottom: none !important;
    }

    .divColBotones {
        margin-top: 0;
    }
}

@media (max-width: 575.98px) {
    .btnExpandido {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .divMultipleBotones .btn {
        margin-bottom: 10px;
    }

        .divMultipleBotones .btn :last-of-type {
            margin-bottom: 0;
        }
}

@media (min-width: 992px) {
    .divColBotones {
        margin-top: 20px;
    }
}

* {
    scrollbar-width: thin;
    scrollbar-color: #2376dc #D2D6DE;
}

    /* Works on Chrome/Edge/Safari */
    *::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    *::-webkit-scrollbar-track {
        background: #D2D6DE;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #2376dc;
        border-radius: 2em;
        border: 0.5px solid #2376dc;
    }

.alinear-centro {
    text-align: center;
}

.alinear-derecha {
    text-align: right;
}

.alinear-izquierda {
    text-align: left;
}

.alinar-vertical-centro {
    text-align: center;
    vertical-align: middle;
}

.cursorMano {
    cursor: pointer;
}

.negrita{
    font-weight: bold;
}

.negrita700{
    font-weight: 700;
}


.cursor {
    cursor: pointer;
}

.contenedorComunicado {
    position: fixed;
    bottom: 0px;
    padding-bottom: 10px;
    padding-left: 10px;
    font-size: 12px;
    left: 15px;
}

.comunicado {
    border-radius: 12px;
    background-color: #6239BD;
    color: #fff;
    padding: 4px;
}

.msgComunicado {
    border-radius: 12px;
    background-color: #6239BD;
    color: #fff;
    padding: 8px;
    width: 250px !important;
    text-align: justify;
    margin-bottom: 10px;
}

.noSeleccionable {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none;
}

.close {
    line-height: 0 !important;
    margin-top: 2px !important;
    font-size: 15px !important;
    opacity: 1 !important;
    color: #fff !important;
    display: block;
    text-align: right;
}

.enlaceMsg {
    font-weight: 500;
}

.enlaceMsg:hover {
    cursor:pointer;
    text-decoration: underline;
}

.contenedorPolitica {
    position: fixed;
    bottom: 2px;
    margin: 0px auto;
    width: 100%;
}

@media (max-width: 575.98px) {
    .contenedorPolitica {
        position: relative;
        bottom: 40px;
        background-color: red;
    }
}

.bloqueDataCabecera {
    text-align: center;
    background-color: #7AB4FF;
    padding: 4px;
    border-right: 3px #fff solid
}

.hrDivision {
    border: 0.1px #7AB4FF dashed;
    width: 100%;
    margin-bottom: 10px;
}

.fondoTotalPagina {
    background-color: rgb(255, 205, 66) !important;
    color: black !important;
    border-color: rgb(255, 205, 66) !important;
}

.fondoRptHeadUx {
    background-color: #2376dc !important;
    color: #fff !important;
}
table.tbl th {
    background-color: #7AB4FF;
}
table.tbl.tbl-border th {
    background-color: transparent;
}