@charset "UTF-8";

body {
    color: #333333; /* rgb 51,51,51 */
    font-family: 'Source Sans Pro', sans-serif;
    padding: 0 !important;
    margin: 0 !important;

    /* direction: "ltr"; */
    font-size: 11pt;
    overflow: hidden;
    height: 100%;
}

html,
body {
    overscroll-behavior-x: none;
}

p {
    margin: 20px 0;
}

label {
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
}

[placeholder] {
    text-overflow: ellipsis;
}

::-webkit-input-placeholder {
    font-style: italic;
}

:-moz-placeholder {
    font-style: italic;
}

::-moz-placeholder {
    font-style: italic;
}

:-ms-input-placeholder {
    font-style: italic;
}

.ellipsis,
.tooltip-ellipsis .tooltip-inner {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.break {
    word-break: break-word;
}

.topBar-wrapper {
    height: 40px;
    width: 100%;
    background-color: rgb(61, 70, 83);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.page-content {
    margin-top: 0;
    padding: 0;
    background-color: #ffffff;
}

.page-content-wrapper .page-content {
    margin: 0;
    height: 100%;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

.borderless {
    border: 0 !important;
}

.page-on-load {
    background: #fefefe;
}

.page-on-load .page-header,
.page-on-load .page-container,
.page-on-load .page-footer,
.page-on-load > .clearfix {
    display: none;
    transition: all 2s;
}

[class^="fa-"]:not(.fa-stack),
[class^="glyphicon-"],
[class^="icon-"],
[class*=" fa-"]:not(.fa-stack),
[class*=" glyphicon-"],
[class*=" icon-"] {
    /* display: inline-block; */
    *margin-right: 0.3em;
    line-height: 14px;
    -webkit-font-smoothing: antialiased;
}

li [class^="fa-"],
li [class^="glyphicon-"],
li [class^="icon-"],
li [class*=" fa-"],
li [class*=" glyphicon-"],
li [class*=" icon-"] {
    /* display: inline-block; */
    width: 1.25em;
    text-align: center;
}

li [class^="glyphicon-"],
li [class*=" glyphicon-"] {
    top: 2px;
}

li [class^="icon-"],
li [class*=" icon-"] {
    top: 1px;
    position: relative;
}

.btn {
    outline: none !important;
    box-shadow: none !important;
}

.btn:hover {
    transition: all 0.3s;
}

.btn:not(.btn-sm):not(.btn-lg) {
    line-height: 1.44;
}

.css-debug,
.css-debug * {
    outline: 1px dotted red;
}
/*
.dropdown-menu {
    left: -4px;
    position: absolute;
    z-index: 1000;
    display: none;
    float: left;
    list-style: none;
    text-shadow: none;
    padding: 0px;
    background-color: #ffffff;
    margin: 10px 0px 0px 0px;
    border: 1px solid #eee;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.dropdown-menu>li>a {
    padding: 8px 16px;
    color: #6e6e6e;
    text-decoration: none;
    display: block;
    clear: both;
    font-weight: 300;
    line-height: 18px;
    white-space: nowrap;
}

.dropdown-menu>li:hover>a,
.dropdown-menu>li.active>a,
.dropdown-menu>li.active:hover>a {
    text-decoration: none;
    background-image: none;
    background-color: #f6f6f6;
    color: #555;
    filter: none;
}

.dropdown-menu>li:first-child:hover>a {
    border-radius: 4px 4px 0px 0px;
}

.dropdown-menu>li:last-child:hover>a {
    border-radius: 0px 0px 4px 4px;
}

.dropdown>.dropdown-menu,
.dropdown-toggle>.dropdown-menu,
.btn-group>.dropdown-menu {
    margin-top: 10px;
} */

.form-control {
    outline: none !important;
    box-shadow: none !important;
}

.input-group-addon > i {
    color: #c5cdda;
}

.loading-messageSession,
.loading-message {
    display: inline-block;
    min-width: 125px;
    margin-left: -60px;
    padding: 10px;
    margin: 0 auto;
    color: #000000 !important;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
}

.loading-messageSession > span,
.loading-message > span {
    line-height: 20px;
    vertical-align: middle;
}

.page-spinner-bar {
    position: fixed;
    z-index: 10051;
    width: 100px;
    top: 40%;
    left: 50%;
    margin-left: -55px;
    text-align: center;
}

.page-spinner-bar > div {
    margin: 0 5px;
    width: 18px;
    height: 18px;
    background: #eeeeee;
    border-radius: 100% !important;
    display: inline-block;
    -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
    animation: bounceDelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.page-spinner-bar .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.page-spinner-bar .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes bounceDelay {
    0%,
    80%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    40% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.modal {
    z-index: 10050;
    outline: none;
    overflow-y: auto !important;
}

.modal .modal-header {
    border-bottom: 1px solid #efefef;
}

.modal .modal-header h3 {
    font-weight: 300;
}

.modal .modal-header .close {
    margin-top: 0 !important;
}

.modal.draggable-modal .modal-header {
    cursor: move;
}

.modal .modal-dialog {
    z-index: 10051;
}

.modal > .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
}

.modal.in .page-loading {
    display: none;
}

.modal-open {
    overflow-y: auto !important;
}

.modal-open-noscroll {
    overflow-y: hidden !important;
}

.modal-backdrop {
    border: 0;
    outline: none;
}

.modal-backdrop,
.modal-backdrop.fade.in {
    background-color: #333333 !important;
}

body[ng-controller] .modal-backdrop {
    z-index: 10049 !important;
}

body[ng-controller] .modal {
    z-index: 10050 !important;
}

.panel {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.panel-group .panel {
    overflow: visible;
}

.panel .panel-body {
    font-size: 13px;
}

.panel .panel-title > a:hover {
    text-decoration: none;
}

.panel-heading {
    background: #eeeeee;
}

.panel-heading a {
    text-decoration: none;
}

.panel-heading a:active,
.panel-heading a:focus,
.panel-heading a:hover {
    text-decoration: none;
}

.table td,
.table th {
    font-size: 14px;
}

.ui-select-bootstrap .ui-select-toggle > .caret {
    position: absolute;
    height: 10px;
    top: 40%;
    right: 0;
    margin-top: 0;
    margin-right: 5px;
}

a {
    text-shadow: none;
    color: #333333;
    text-decoration: none;
}

a:hover {
    color: #333333;
}

a:focus,
a:hover,
a:active {
    color: 0;
    outline: 0;
}

.form-control {
    display: block;
    width: 100%;
    height: 30px;
    padding: 5px 10px;
    font-size: 11pt;
    line-height: 1.42857;
    color: #555555;
    background-color: transparent;
    background-image: none;
    border: 1px solid #c2cad8;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.btn:focus {
    color: #354d73;
}

.btn:hover {
    color: #354d73;
}

.table td,
.table th {
    font-size: 11px;
}

.linkArrow {
    opacity: 0.6;
}

.linkArrow:hover {
    opacity: 1;
}

#projectname {
    display: inline-block;
    color: #17375e;
}

#fallbackNoMessage,
#fallbackVersion,
#fallback {
    z-index: 1011;
    position: fixed;
    padding: 0;
    margin: 0;
    width: 30%;
    top: 40%;
    left: 35%;
    text-align: center;
    color: rgb(0, 0, 0);
    border: 0 none;
    cursor: wait;
    display: none;
}

html.fallback-no-message #fallbackNoMessage,
html.fallback-version #fallbackVersion,
html.fallback #fallback {
    display: block;
}

.fade-fallback {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.8;
    background-color: white;
    z-index: 10000;
}

.message-fallback {
    z-index: 10050;
    position: relative;
}

#fallbackSession {
    z-index: 999999999;
    position: fixed;
    padding: 0;
    margin: 0;
    width: 30%;
    top: 40%;
    left: 35%;
    text-align: center;
    color: rgb(0, 0, 0);
    border: 0 none;
    cursor: wait;
    display: none;
}

html.fallbackSession #fallbackSession {
    display: block;
}

/* warning */
.top-warning {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 40px;
    background: #ffffff;
    z-index: 3;
    text-align: center;
    font-size: 11pt;
}

.top-warning > div {
    width: 100%;
    height: 40px;
}

.top-warning img {
    height: 35px;
}

.top-warning img, .top-warning span {
    display: inline-block;
    vertical-align: middle;
}

.top-warning span {
    padding: 0 5px;
}

.top-warning + div {
    position: absolute;
    padding-top: 40px;
}

.top-warning + div #topBar,
.top-warning + div > top-bar {
    top: 40px !important;
}

.key-and-click:not(.pw-link) {
    text-decoration: none !important;
    color: unset !important;
}

/******************* clases globales ************************/


.centerY {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.centerX {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.center-xy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    max-width: 95%;
    text-overflow: ellipsis;
}

.verticalCenter {
    display: table;
    vertical-align: middle;
}

.verticalCenter > div {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
}

.unavailableFeature {
    display: none !important;
}

.tooltip-inner {
    border: solid 1px white;
    border-radius: 4px;
    background-color: white;
    max-width: 200px;
    color: black;
    text-align: center;
    font-size: 12px;
    font-weight: normal;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 3px 5px;
}

.tooltip.in {
    opacity: 1;
}

.tooltip.bottom .tooltip-inner {
    -moz-box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
}

.tooltip.bottom-left .tooltip-inner {
    -moz-box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
}

.tooltip.left-bottom .tooltip-inner {
    -moz-box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
}

.tooltip.top .tooltip-inner {
    -moz-box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 -3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
}

.tooltip.left .tooltip-inner {
    -moz-box-shadow: 0 -3px 4px -3px rgba(0, 0, 0, 0.25), 0 3px 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 -3px 4px -3px rgba(0, 0, 0, 0.25), 0 3px 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 -3px 4px -3px rgba(0, 0, 0, 0.25), 0 3px 4px -3px rgba(0, 0, 0, 0.25), -3px 0 4px -3px rgba(0, 0, 0, 0.25);
}

.tooltip.right .tooltip-inner {
    -moz-box-shadow: 0 -3px 4px -3px rgba(0, 0, 0, 0.25), 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 -3px 4px -3px rgba(0, 0, 0, 0.25), 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 -3px 4px -3px rgba(0, 0, 0, 0.25), 0 3px 4px -3px rgba(0, 0, 0, 0.25), 3px 0 4px -3px rgba(0, 0, 0, 0.25);
}

.tooltip.bottom .tooltip-arrow {
    top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #fefefe;
}

.tooltip.top .tooltip-arrow {
    bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #fefefe;
}

.tooltip.bottom-left .tooltip-arrow {
    border-width: 0 5px 5px;
    border-bottom-color: #fefefe;
}

.tooltip.bottom-right .tooltip-arrow {
    border-width: 0 5px 5px;
    border-bottom-color: #fefefe;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: -5px;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #fefefe;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: -5px;
    margin-top: -5px;
    border-width: 5px 5px 5px 0/*rtl:ignore*/;
    border-right-color: #fefefe/*rtl:ignore*/;
}

.tooltip.left-bottom .tooltip-arrow {
    top: 5px;
    right: 15px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #fefefe;
}

.tooltip-width-medium .tooltip-inner {
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 100px;
    max-width: 70%;
}

.line-separator {
    border-top: 1px solid rgb(230, 230, 230);
    height: 10px;
}

.vertical-line-separator {
    border-left: 2px solid rgb(230, 230, 230); ;
    height: 30px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.pw-flex {
    display: flex;
    flex-wrap: nowrap;
}

.label-message {
    white-space: normal;
}
