:root {
    --i-color-dark: #44546F;
    --i-color-blue: #0769DA;
    --i-color-light: #E9F1FB;
    --i-color-selected: #BFD4F6;
    --i-color-selected-border: #A9C5F2;
    --i-color-action: #9966cc;
    --i-color-action-border: #7d52b3;
    --i-color-action-bg: #663399;
    --i-color-action-strong: #4b2670;
    --i-color-bg: #F8F5F0;
    --i-color-danger: #BF616A;
    --i-color-alert: #FEF0F0;
    --i-color-primary: #0769DA;
    --i-color-info: #5B90BF;
    --i-color-success: #A3BE8C;
    --i-color-success-text: #2b7a3a;
    --i-color-success-bg: #E9F3DB;
    /*--i-color-success-bg: #e6f4ea;*/
    --i-color-warning: #EBCB8B;
    --i-color-warning-border: #e7c175;
    --i-color-warning-bg: #e3b760;
    --i-color-warning-strong: #deaa41;
    --i-color-inverse: #F89625;
    --i-color-highlight: #008B8B;
    --i-color-white: #FFFFFF;
    --i-color-gray: #AFAFAF;
}

.form-control-200 {
    height: 200px;
    overflow-y: auto;
    padding: 12px;
}

.readonly-radio {
    pointer-events: none;   /* fully read-only */
    appearance: radio;      /* Chrome + modern browsers */
    -webkit-appearance: radio;
}

.custom-identity-inline {
    display: inline-block;
}

.custom-identity-inline-inner {
    display: flex;
    align-items: flex-start;  /* ✅ top aligned */
}

.custom-identity-inline-img {
    margin-right: 8px;
    flex-shrink: 0;
}

.custom-identity-inline-text {
    line-height: 1.2;
}

.bg-main {
    background-color: var(--i-color-white) !important;
    height: 100vh;
}

.mt-0  { margin-top: 0   !important; }
.mt-4  { margin-top: 4px !important; }
.mt-6  { margin-top: 6px !important; }
.mt-8  { margin-top: 8px !important; }
.mt-10 { margin-top:10px !important; }
.mt-12 { margin-top:12px !important; }
.mt-16 { margin-top:16px !important; }
.mt-20 { margin-top:20px !important; }
.mt-24 { margin-top:24px !important; }

.mb-0  { margin-bottom: 0   !important; }
.mb-4  { margin-bottom: 4px !important; }
.mb-6  { margin-bottom: 6px !important; }
.mb-8  { margin-bottom: 8px !important; }
.mb-10 { margin-bottom:10px !important; }
.mb-12 { margin-bottom:12px !important; }
.mb-16 { margin-bottom:16px !important; }
.mb-20 { margin-bottom:20px !important; }
.mb-24 { margin-bottom:24px !important; }

.badge-signaled {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -24px;
    font-size: 75%;
    z-index: 10;
}

.form-selector {
    padding: 0 15px;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
    margin-top: 12px;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* keeps it responsive */
}

.video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Position the right sidebar */
#right-nav-container.right-nav {
    position: fixed;
    top: 56px;
    right: 0;
    width: 60px;
    height: 100%;
    background: var(--i-color-light);
    z-index: 1000;
    padding-top: 8px; /* adjust if needed for header */
}

/* Adjust main content to make space */
#content.content-container {
    margin-right: 60px; /* match the sidebar width */
}

/* Optional: match style with left sidebar */
#right-nav-container .nav > li > a {
    padding: 10px 15px;
    color: #333;
}

#right-nav-container .nav > li > a:hover {
    background-color: #eee;
    text-decoration: none;
}


/* General transition for drawer effect */
/*.drawer-panel {*/
/*    transition: all 0.3s ease-in-out;*/
/*}*/

/* On small screens, make it overlay */
@media (max-width: 767px) {
    .drawer-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        z-index: 1050;
        background: #f5f5f5;
        padding: 15px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    }

    .drawer-panel.open {
        right: 0;
    }
}

/* On larger screens: toggle visibility via hidden class */
@media (min-width: 768px) {
    .drawer-panel.hidden-desktop {
        display: none !important;
    }

    /* Allow mainContent to expand full width when drawer hidden */
    .main-expanded {
        width: 100% !important;
    }
}

@media (min-width: 768px) {
    .app > .main-container > .nav-container.nav-fixed {
        top: 54px
    }
}

@media screen {
    .print-only {
        display: none !important;
    }
}
@media print {
    .print-only {
        display: block !important;
    }
}

.bling-indicator {
    position: absolute;
    top: 16px;
    right: -2px;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    border: 1px solid white; /* optional: for better contrast */
}

.modal-xl {
    width: 95%;
    max-width: 95%;
    height: 95%;
    margin: 2.5% auto;
}

.modal-xl .modal-content {
    height: 100%;
    overflow-y: auto;
}

.img-obscured img {
    filter: blur(2px) grayscale(25%);
    border: 1px solid black;
}
.text-obscured {
    color: var(--i-color-dark);
    background-color: var(--i-color-dark);
}

.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

.container-top {
    margin: 12px 0 24px;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

 .input-icon-left {
     position: relative;
 }

.input-icon-left i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

#custom-search-bar .input-group {
    display: flex;
    align-items: flex-start;
}
#custom-search-bar .input-group-btn,
#custom-search-bar .form-control {
    margin: 0;
    vertical-align: top;
}

.input-icon-left input {
    padding-left: 30px !important; /* Leave space for icon */
}

#custom-identity-flex {
    display: flex;
    align-items: self-start;
    margin-left: 12px;
    gap: 12px;
}

.scramble-text-wrapper {
    position: relative;
    display: inline-block;
}

.scramble-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  background: lightgray;
}

.scramble-text-watermark {
    color: rgba(200, 0, 0, 0.3);
    font-size: 2.5em;
}

.debug-header {
    padding: 10px;
    background-color: var(--i-color-danger);
}

.side-list-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    gap: 10px;
    background-color: var(--i-color-light);
}

.side-list-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.side-list-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.side-list-title {
    white-space: normal;
    word-break: break-word;
}

.side-list-right {
    margin-left: auto;
    white-space: nowrap;
    font-size: 90%;
    color: #666;
}

.side-list-item.selected {
    font-weight: bold;
}

.side-list-item.complete {
    color: var(--i-color-success-text);
    background-color: var(--i-color-success-bg);
}

.side-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--i-color-primary);
}
.side-list-item.complete::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--i-color-success);
}

.card-shadow-vertical {
    display: flex;
    flex-direction: row;
    position: relative;
}

.progressbar-vertical {
    width: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.progress-segment {
    width: 100%;
}

.iservport-brand {
    max-height: 48px;
    margin-top: -8px;
}

.custom-list-header {
    margin: 12px 0px 24px;
}

.overflow-table-container {
    overflow-x: auto;
    max-width: 100%;
    white-space: nowrap; /* Prevents text from wrapping */
}

.sticky-col {
    position: sticky;
    left: 0;
    background-color: white; /* Ensures it doesn’t blend with other content */
    z-index: 2; /* Keeps it above other cells */
    border-right: 1px solid #ccc; /* Optional, for visual separation */
}

input, textarea, select {
    background-color: white !important;
    color: black; /* Ajuste para garantir contraste */
    /*-webkit-appearance: none; !* Remove estilos padrão no Safari *!*/
    /*-moz-appearance: none;*/
    /*appearance: none;*/
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: white !important;
    color: black !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    box-shadow: 0 0 0px 1000px white inset !important;
}

select {
    background-color: white !important;
    color: black; /* Ajuste para garantir contraste */
    -webkit-appearance: none; /* Remove estilos padrão no Safari */
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #ccc; /* Define uma borda sutil */
    padding: 8px; /* Garante espaçamento interno adequado */
}

select:focus {
    outline: none;
    border-color: #007bff; /* Realce ao focar no elemento */
}

option {
    background-color: white;
    color: black;
}

.form-control {
    background-color: white !important;
}

.form-control option {
    background-color: white;
}
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border: 2px solid #007bff;
    border-radius: 50%;
    background-color: white;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

input[type="radio"]:checked {
    background-color: white;
    border-color: #007bff;
}

input[type="radio"]:checked::after {
    content: "✔"; /* Unicode checkmark */
    font-size: 16px;
    color: #007bff;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -60%);
}

.edit-link {
    color: var(--i-color-primary);
    text-decoration: none;
    cursor: pointer;
    background-color: var(--i-color-light);
    padding: 0 8px;
    border: 1px solid var(--i-color-primary);
    border-radius: 12px;
}

.tl-icon .progress {
    margin-bottom: 0 !important;
}

img.img20_20 {
    width: 20px;
    height: 20px;
}

img.img16_16 {
    width: 16px;
    height: 16px;
}

img.img12_12 {
    width: 12px;
    height: 12px;
}

#content-document-display img {
    height: auto;
}

p.break-word {
    height: 3em;
    color: #44546F;
    overflow: hidden;
    word-break: break-word; /* Breaks words if necessary */
}

.video-overlay {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-icon {
    width: 30px;
    height: 30px;
    filter: invert(1); /* Makes the icon white */
}

.filter-container-section {
    display: flex;
    align-items: center;
}

.filter-container-btn {
    margin-left: auto;
}

.thin-box {
    border: 1px solid lightgray !important;
    border-radius: 3px;
    padding: 4px 15px !important;
}

.clickable {
    cursor: pointer;
    margin: 8px;
}

.filter-container-caption {
    flex-grow: 1; /* Allows the details to take up available space */
}

.filter-container-item {
    padding: 0 10px 0 10px !important;
}

.filter-container-confirm {
    background-color: var(--i-color-alert);
}

.filter-container-icon {
    margin-right: 10px;
    padding-top: 4px;
    font-size: 12px;
    color: var(--i-color-blue);
}

.flag-icon {
    margin-left: 4px;
    color: yellow;
    font-size: inherit;
    overflow: hidden;
    white-space: nowrap;
}

.check-date-alert-box {
    border:  1px solid var(--i-color-blue);
    padding: 4px;
    margin-bottom: 12px;

}

/* General container styling */
.print-container {
    display: block;
    width: 100%;
}

/* Print headers to appear at the top of each print page */
.print-header {
    display: block;
    width: 100%;
    background-color: #f8f9fa; /* Example background color to match alert styles */
    border-bottom: 1px solid #ddd;
    padding: 10px;
    page-break-before: always; /* Forces the header to start on a new page */
}

/* Header repeats for each page */
@media print {
    .print-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #f8f9fa; /* Must match the screen version */
        padding: 10px;
        height: auto;
    }
    .print-content {
        margin-top: 60px; /* Adjust to prevent content overlapping header */
    }
}

/* Content styling to replace table rows */
.content-row {
    padding: 15px;
    margin-bottom: 10px;
    table-layout: fixed;
    page-break-inside: avoid;
}

.recording-container {
    height: 100vh; /* Full height while recording */
}

.idle-container {
    height: auto; /* Auto height when not recording */
}

.drop-area-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.drop-area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    color: white;
    font-size: 18px;
}

.drop-area-overlay .spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: white;
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

.dot:nth-child(4) {
    animation-delay: 0.6s;
}

.dot:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.icon-resolution {
    margin: 4px 0 4px 2px;
    width: 16px;
    height: 16px;
}

.breadcrumb>li+li:before {
    content: "> ";
    padding: 0 5px;
    color: inherit;
}

.highlighted {
    background-color: var(--i-color-light);
    border-left: 5px solid  var(--i-color-blue);
}

.drop-area {
    width: 100%;
    height: 120px;
    border: 2px dashed #ccc;
    text-align: center;
    line-height: 120px;
    color: var(--i-color-dark);
    position: relative;
    cursor: pointer;
}

.drop-area.dragging {
    border-color: #0b85a1;
    background-color: rgba(11, 133, 161, 0.1);
    color: #0b85a1;
}

body{
    /*font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,'Fira Sans','Droid Sans','Helvetica Neue',sans-serif;*/
    font-family: 'Nunito', sans-serif;
	text-rendering:optimizeLegibility!important;
	-webkit-font-smoothing:antialiased!important;
	-moz-osx-font-smoothing:grayscale!important;
  	background-image: none;
  	height: -webkit-fill-available;
    line-height: 1.71429;
    letter-spacing: -0.005em;
    color: var(--i-color-dark);
}

.badge-light {
    color: #212529;
    background-color: #F8F5F0;
}

.badge-light[href]:hover, .badge-light[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #e8decd;
}

.badge-control {
    font-size: 50%;
    margin-left: -4px;
    vertical-align: text-top;
    margin-top: 4px;
}

.chat-window {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 5px;
}

.chat-input-group {
    margin-bottom: 10px;
}

.chat-messages {
    padding: 10px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.chat-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

.modal-title {
    display: flex;
    align-items: baseline;
}

.modal-title h4 {
    margin-right: 8px;
}

.modal-header .pull-right {
    margin-left: auto;
    margin-right: 0;
}

.froala-container {
    position: relative; /* Establishes a positioning context */
}

.froala-left-button {
    position: relative;
    right: -12px;
    bottom: 36px;
    z-index: 10;
}

.froala-wrapper-blue {
    box-shadow: none;
    width: 100%;
    padding: 6px 12px 20px;
    border: 1px dashed dodgerblue;
    background-color: aliceblue;
}

.froala-wrapper-sm-blue {
    box-shadow: none;
    width: 100%;
    padding: 6px 12px 20px;
    border: 1px dashed dodgerblue;
    background-color: aliceblue;
}

.time-table-activity {
    border-radius: 18px;
    margin-top: 8px;
    height: 18px !important;
}

.gantt-panel {
    color: var(--i-color-dark);
    font-family: inherit;
}

.gantt-toolbar .toolbar-button svg {
    fill: var(--i-color-dark);
}

.gantt-body {
    border-color: var(--i-color-light);
}

.gantt-toolbar {
    background-color: var(--i-color-light);
    color: var(--i-color-dark);
}

.table-panel {
    background-color: white;
}

.card-footer {
    color: #678;
}

html, body {
    height: 100%; /* Make sure the height of html and body is full to enable full-height containers */
    margin: 0;
    padding: 0;
}

.container-fluid, .row {
    min-height: 100%; /* Full height for the container and the row */
    margin-top: 2px;
}

.flex-row {
    display: flex; /* Establishes flex container */
    flex-wrap: nowrap; /* Prevents wrapping of items */
    height: 100%;
}

.flex-col {
    display: flex; /* Makes the columns flex containers for vertical alignment */
    flex-direction: column;
}

.gap-col {
    padding-top: 15px;
}

.full-height {
    height: 100vh; /* Full height for the first column */
}

.login-domain {
    position: absolute;
    right: 50px; /* Adjust based on padding of the input */
    top: 0;
    bottom: 0;
    height: 20px; /* Adjust based on the input height */
    margin: auto;
    color: gray;
    pointer-events: none; /* Makes the element non-interactive */
}

/* Style for custom checkbox when the form/input is disabled */
.disabled input[type="checkbox"] + label::before {
    content: '';
    display: inline-block;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    background-color: blue;
}

/* Optional: Adjust the appearance when checked */
.disabled input[type="checkbox"]:checked + label::before {
    background-color: darkblue;
}

/* Hide the native checkbox */
.disabled input[type="checkbox"] {
    display: none;
}

.fr-toolbar {
    position: static !important;
}

.fr-icon-save {
    text-align: center;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fr-icon-save:before {
    content: "\f0c7"; /* This is the Unicode for 'fas fa-save' in FontAwesome */
    font-family: 'FontAwesome'; /* Ensure this matches Froala's icon font family if they're using FontAwesome */
}

.fr-toolbar .fr-command.fr-btn.fr-icon-save:before {
    content: "\f0c7"; /* FontAwesome 4 Unicode for fa-save */
    font-family: FontAwesome;
}

/* Hide the overlay during normal browsing */
.print-overlay {
    display: none;
}

@media print {
    .print-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 1000;
        background: none;
        color: rgba(0, 0, 0, 0.2); /* Semi-transparent text for watermark effect */
        font-size: 40px;
        font-weight: 100;
        text-align: center;
        line-height: 100vh;
        transform: rotate(-45deg);
        transform-origin: 50% 50%;
        pointer-events: none;
    }
}

.fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    border-top: 1px solid #e7e7e7;
    padding: 10px 0;
    text-align: center;
}

.froala-object-link {
    border: 1px solid var(--i-color-blue);
    border-radius: 8px;
    padding: 6px;
}

.froala-object-link:after {
    content: " \f08e";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.card-shadow {
    border-radius: 4px;
}

.card-no-border {
    border: none;
}

.progress {
    margin-bottom: 12px;
}

.well-rounded {
    min-height: 600px;
    border-radius: 10px;
}

html body {
    background-color: #F7F8FC;
}

.hotspot {
    position: relative;
    /* Set width and height according to your needs, and other styles */
}

.card-header h3 {
    margin-top: 0;
    color: var(--i-color-dark);
    font-weight: 500;
    margin-bottom: 24px
}

.hotspot::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    /* Adjust the left and top values to position the dot over your hotspot */
    left: 0px;
    top: 0px;
    transform: translate(-50%, -50%);
}


.top-logo {
    text-align: left !important;
    padding-left: 16px;
}

.top-logo-text {
    margin-left: 12px;
    font-weight: bold;
    color: var(--i-color-dark);
}

.transparent-button {
    background-color: transparent; /* Make the button background transparent */
    border: none; /* Remove border */
    color: inherit; /* Inherit text color from parent */
    cursor: pointer; /* Change cursor to pointer on hover */
    text-align: right; /* Align text to the right */
    float: right; /* Float the button to the right */
    font-size: 1em; /* Adjust the font size as needed */
}

/* Additional styling for the button on hover (optional) */
.transparent-button:hover {
    color: #007bff; /* Change color on hover, adjust as needed */
}

.scramble-overlay :is(p, img, h1, h2, h3, h4, ul, ol) {
    filter: blur(3px);
    opacity: 0.9;
    pointer-events: none;
    transition: all 0.3s ease;
}

.bottom-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background-color: #f0f4f6aa;
    display: none; /* Initially hidden */
}

.help-overlay-button {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 7em;
    height: 3em;
    border-radius: 2em;
    display: flex;
    align-items: center;
    padding: 0 1em;
}

.help-overlay-on {
    display: flex;
    position: fixed;
    top: 105px;
    right: 0;
    width: 16%;
    height: 65%;
    background-color: white;
    z-index: 1000;
    margin: 15px;
}

.symbol-container {
    display: inline-flex;
    align-items: center;
    padding: 6px;
    border: 2px solid #ddd;
    border-radius: 25px; /* This creates the oval shape */
    background-color: #f2f2f2;
}

.symbol-container .fa {
    font-size: 12px; /* Adjust size as needed */
    margin-right: 5px;
}

.symbol-container .fa-lock {
    color: #000;
}

.symbol-container .fa-users {
    color: #aaa;
}
.symbol-container .fa-user {
    color: #aaa;
}

.bg-help {
    background-color: #20253C;
    color: white;
}

.bg-lightblue {
    background-color: var(--i-color-light) !important;
}

/* Custom Help Box */
.help-box {
    flex: 1; /* This will make the help box fill the available height */
    display: flex;
    flex-direction: column;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    overflow: hidden;
    min-height: max-content;
}

.help-box-header {
    background-color: #343a40;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #dee2e6;
    font-weight: 500;
}

.help-box-body {
    background-color: #ffffff;
    padding: 1.25rem;
    overflow-y: scroll;
}

.help-box-footer {
    background-color: #f8f9fa;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #dee2e6;
}

/* Pagination */
.help-box-footer .pagination {
    margin: 0;
}

.help-box-footer .pagination li a {
    color: #343a40;
    border-radius: 0.25rem;
}

.help-box-footer .pagination li.active a {
    background-color: #343a40;
    color: #ffffff;
    border-color: #343a40;
}

.help-box-footer .pagination li.disabled a {
    color: #868e96;
}

.help-box-footer .pagination li a:hover {
    background-color: #e9ecef;
}

.pagination-top li a {
    border-radius: 5px !important;
    color: inherit !important;
    background-color: var(--i-color-light) !important;
}

@media (min-width: 768px) {

    .app.nav-collapsed-min #nav-container {
        width: 60px;
        /*margin-left: -10px;*/
    }
}

.menuSvg {
    height: 32px;
    padding: 6px;
    margin-right: 8px;
    /*background-color: var(--i-color-light);*/
    border-radius: 8px;
    filter: none;
    transition: filter 0.3s;
}
.list-condensed {
    border-left: 1px solid lightgray;
    margin-left: 10px;
}

.list-condensed li {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 6px 0;
}

.list-condensed li span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-stacked li {
    flex-direction: column;
}

.list-stacked li img {
    margin-bottom: 4px;
    max-height: 36px;
}

.help-content {
    background-color: #fff; /* White background for the help content */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.callout {
    border-radius: 0px;
}

.callout-desc {
    position: relative;
    background-color: #F0F4F6;
    border-color: var(--i-color-light);
    padding: 15px 40px 15px 15px;
}

.callout-sm {
    margin: 12px 0;
    padding: 12px;
}

.callout-P {
    margin: 10px 0;
    position: relative;
    background-color: #F0F4F6;
    border-color: #EBCB8B;
    padding: 10px;
}

.callout-T {
    margin: 10px 0;
    position: relative;
    background-color: #FFDEAD;
    border-color: var(--i-color-blue);
    padding: 10px;
}

.callout-ongoing {
    margin: 10px 0;
    position: relative;
    background-color: #FFDEAD;
    border-color: var(--i-color-blue);
    padding: 10px;
}

.callout-overdue {
    margin: 10px 0;
    position: relative;
    color: #712b29;
    background-color: #f7dddc;
    border-color: #f4cfce;
    padding: 10px;
}

.callout-D {
    margin: 10px 0;
    position: relative;
    background-color: #F0F4F6;
    border-color: #7A8C6B;
    padding: 10px;
}

.menuIcon:hover {
    color: #EBCB8B;
}

.pageFooter1:after {
    content: counter(page) '/' counter(pages);
    counter-increment: page;
}

table.print-container {
    page-break-after:always;
}
thead.print-header {
    display:table-header-group;
}
@media print
{
    .app>.header-container.header-fixed+.main-container {
        padding-top: 0;
    }
    .no-print, .no-print *
    {
        display: none !important;
    }
}

.login-splash {
    margin-top: 3em;
}

.navbar-fixed-top {
    background-color: inherit;
}

.iserv-filter-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.iserv-home-logo {
    max-height: 8em;
}

.iserv-bg-orange {
    background-color: #F89521;
}

.iserv-orange {
    color: #F89521;
}

.iserv-bg-blue {
    background-color: #2D5F84;
}

.iserv-blue {
    color: #2D5F84;
}

.iserv-certificate {
    background-color: white;
    width: -webkit-fill-available;
    height: 36em;
    border: 2px solid gray;
}

.iserv-certificate-page {
    padding: 1em 4em;
}

.iserv-certificate-logo {
    background-color: seashell;
    border-left: solid 3px lavender;
    height: 30em;
}

.iserv-certificate-logo-img {
    margin-bottom: 9em;
}

.iserv-identity-top {
    vertical-align: top;
    margin-left: 6px;
}

#ng-app {
    background-color: #FFF;
}
.modal-backdrop {
    z-index: 1020!important;
}

.page-top .pager {
    margin: 0;
}

.page-top .pager li>a {
    border-radius: 0;
}

.page-top .pager li>a:hover {
    color: var(--i-color-blue);
    background-color: transparent;
    text-decoration:none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 2px solid var(--i-color-blue);
}

.vrr
{   border-right: 1px inset;
    border-color: #ebeff5;
}
.text-very-high {
  color: red; /* red */
}
.text-high {
  color: #e69137; /* california */
}
.text-medium {
  color: #f1c332; /* saffron */
}
.text-low {
  color: #acc979; /* capper */
}
.text-very-low {
  color: #57bc8a; /* silver tree */
}

.text-to-see {
  color: #3852a4; /* blue3 */
}
.text-to-do {
  color: var(--i-color-dark); /* blue 2 */
}
.text-doing {
  color: var(--i-color-blue)
}
.text-done {
  color: #366897; /* violet 2 */
}
.text-closed {
  color: #573852a4; /* violet 1 */
}

.red-dot {
  color: red;
  position: relative;
  top: -1.2em;
  left: -0.5em;
  font-size: 70%;
}

@media screen and (min-width:480px) {
	#unauth .container-small {
		margin: 50px auto 100px;
		width: 390px
	}
}

@media screen and (min-width:768px) {
	.container {
		padding: 0
	}
	.navbar a.logo {
		float: left
	}
	.navbar .top-nav {
		float: right;
		margin: 0
	}
	.navbar .top-nav>li:last-child {
		padding-right: 0
	}
	.site-grid .site-item {
		width: 229px;
		height: 242px;
		margin: 0 0 20px 20px;
		float: left
	}
	.site-grid .site-item:nth-child(3n+1) {
		margin-left: 0
	}
	.tutorials .has-icon {
		width: 33.33%
	}
	.footer {
		text-align: center
	}
	.footer .logo {
		float: left
	}
	.footer ul {
		float: left;
		margin: 2px 0 0 10px;
		padding: 0
	}
	.footer ul li {
		padding: 7px 12px
	}
	.footer ul li.bullet {
		display: inline-block
	}
	.footer iframe {
		float: right;
		margin: 5px 0 0 20px
	}
	#unauth .container-small {
		margin: 50px auto 100px;
		width: 490px
	}
	#unauth .footer ul {
		float: none;
		margin: 0
	}
	#unauth .footer .rights {
		clear: both;
		padding-top: 10px
	}
}

@media screen and (min-width:992px) {
	#unauth .container-small {
		margin: 50px auto 100px
	}
	.site-grid .site-item {
		margin: 0 0 24px 20px;
		width: 300px
	}
	.menus {
		float: left;
		width: 240px
	}

	.main-content {
		width: 700px;
		min-height: 452px;
		float: right;
	}
	.main-content .plan.well h3 {
        font-size: 14px;
    }
}
@media ( min-width :1200px) {
	#unauth .container-small {
		margin: 50px auto 100px
	}
	.main-content {
		width: 930px
	}
	.site-grid .site-item {
		width: 376px
	}
}

#unauth .well-big form .field {
	padding-top: 10px;
}

form .field {
	padding: 0 0 30px;
}

/**
 * Estilos para o fundo (background) em eventos
 *
 * late -> danger background f2dede (red)
 * warn -> warning background fcf8e3 (yellow)
 * none -> default background d7d7d7 (light grey)
 */

.iserv-info-section {
	background-color: aliceblue;
}

.iserv-icon-danger {
	background-color: #f2dede;
}

.iserv-icon-warning {
	background-color: #fcf8e3;
}

.iserv-icon-default {
	background-color: #f7f7f9;
}


/**
 * Estilos para adaptar bootstrap 
 */
.i-align-top {
	margin-top: 0;
}

/* Sidebar N */
#sidebar-n {
  /* Search input */
}
#sidebar-n #search {
  margin: 5px 10px 10px;
  z-index: 1;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
#sidebar-n #search input[type=text],
#sidebar-n #search button {
  background-color: transparent;
}
#sidebar-n #search input[type=text] {
  font-size: 12px;
  line-height: 18px;
  border-radius: 4px 0 0 4px;
  padding: 7px 10px 6px;
  border: 0;
  width: 150px;
}
#sidebar-n #search button {
  border: 0;
  margin-top: -10px;
  padding: 4px 10px 4px;
  border-radius: 0 4px 4px 0;
}
#sidebar-n #search button i {
  font-size: 12px;
  margin-top: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  #sidebar-n #search {
    display: none;
  }
}
#sidebar-n > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 240px;
}
#sidebar-n > ul > li {
  display: block;
  position: relative;
}
#sidebar-n > ul > li > a {
  padding: 10px 0 10px 15px;
  display: block;
  color: #AAAAAA;
  font-family: 'Signika Negative', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
#sidebar-n > ul > li > a > i {
  margin-right: 10px;
}
#sidebar-n > ul > li > a > .label {
  margin: 2px 20px 0 0;
  float: right;
  padding: 3px 5px 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) inset, 0 1px 0 rgba(255, 255, 255, 0.2);
}
#sidebar-n > ul > li > a .arrow {
  float: right;
  margin: 5px 20px 0 -10px;
  font-size: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#sidebar-n > ul > li.active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) inset;
}
#sidebar-n > ul > li.open > a .arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
#sidebar-n > ul > li.open ul {
  display: block !important;
}
#sidebar-n > ul ul {
  display: none;
  margin: 0;
  padding: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset;
  position: relative;
  list-style: none;
}
#sidebar-n > ul ul li a {
  padding: 10px 0 10px 25px;
  display: block;
  color: #777777;
  position: relative;
}
#sidebar-n > ul ul li:first-child a {
  border-top: 0;
}
#sidebar-n > ul ul li:last-child a {
  border-bottom: 0;
}
#sidebar-n > ul ul li.active a:before,
#sidebar-n > ul ul li.active a:after {
  font-family: 'FontAwesome', serif;
  content: "\f101";
  display: block;
  position: absolute;
  top: 11px;
  left: 10px;
}
.flat #sidebar-n ul {
  margin-top: 0;
}
.flat #sidebar-n ul li a {
  text-shadow: none;
}
#sidebar-n {
  display: block;
  float: left;
  position: relative;
  z-index: 16;
  width: 240px;
}
#sidebar-n > ul > li.active > a {
  background: url("../img/menu-active.png") no-repeat scroll right center transparent !important;
}
@media (max-width: 767px) {
  #sidebar-n {
    float: none;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
  }
  #sidebar-n > a {
    padding: 7px 20px 7px 15px;
    box-shadow: 0 1px 0 #666666;
    margin-bottom: 1px;
    display: block !important;
    text-transform: uppercase;
    color: #eeeeee;
    font-size: 10px;
  }
  #sidebar-n > a > i {
    margin-right: 10px;
  }
  #sidebar-n > ul {
    margin: -2px 0 0 !important;
    width: 100% !important;
  }
  #sidebar-n > ul > li > a > span {
    display: inline !important;
  }
  #sidebar-n > ul > li.active > a {
    background: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #sidebar-n,
  #sidebar-n > ul {
    width: 43px;
  }
  #sidebar-n > ul {
    margin-top: -1px;
  }
  #sidebar-n > ul > li > a > span {
    display: none;
  }
  #sidebar-n > ul > li.open.submenu a {
    border-bottom: none !important;
  }
  #sidebar-n > ul ul {
    display: none;
    position: absolute;
    left: 50px;
    top: 0;
    min-width: 150px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    list-style: none;
  }
  #sidebar-n > ul ul:before {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    content: "";
    display: inline-block;
    left: -6px;
    position: absolute;
    top: 12px;
  }
  #sidebar-n > ul ul:after {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    content: "";
    display: inline-block;
    left: -5px;
    position: absolute;
    top: 13px;
  }
  #sidebar-n > ul ul li a {
    white-space: nowrap;
    padding: 10px 25px;
  }
  #sidebar-n .arrow {
    display: none;
  }
  .flat #sidebar-n > ul {
    margin-top: 0;
  }
  .flat #sidebar-n > ul ul {
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  #sidebar-n li.submenu > ul {
    display: none;
  }
}

/* Content N */
#content-n {
  margin-left: 240px;
  margin-right: 0;
  margin-top: 0;
  position: relative;
  min-height: 500px;
  width: auto;
  -webkit-background-clip: padding-box;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
}
@media (max-width: 767px) {
  #content-n {
    margin-left: 0 !important;
    margin-top: 0;
    border-radius: 0;
    left: auto;
    z-index: 1;
    -webkit-transition: left 0.5s;
    transition: left 0.5s;
  }
  .fixed #content-n {
    padding-top: 67px;
  }
  .menu-open #content-n {
    left: 240px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #content-n {
    margin-left: 43px;
    margin-top: 38px;
  }
}
#content-n-header {
  background-color: #f6f6f6;
  border-top-left-radius: 8px;
  min-height: 92px;
  padding-top: 5px;
  width: 100%;
  margin-top: -38px;
  z-index: 20;
}
#content-n-header h1 {
  color: #555555;
  font-size: 28px;
  font-weight: normal;
  text-shadow: 0 1px 0 #ffffff;
  margin-left: 20px;
}
#content-n-header h1,
#content-n-header > .btn-group {
  margin-top: 25px;
}
#content-n-header > .btn-group {
  float: right;
  right: 20px;
  position: absolute;
  margin-top: -50px;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1) inset;
  background-color: rgba(0, 0, 0, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 5px;
}
#content-n-header > .btn-group .btn {
  line-height: 18px;
  font-size: 18px;
  padding: 12px 16px;
  color: rgba(0, 0, 0, 0.5);
  border-width: 0 1px 0 0;
  border-style: solid;
  border-color: #dddddd;
}
#content-n-header > .btn-group .btn:hover {
  color: rgba(0, 0, 0, 0.7);
}
#content-n-header > .btn-group .btn:last-child {
  border-width: 0;
}
#content-n-header > .btn-group .btn .label {
  font-size: 11px;
  line-height: 12px;
  position: absolute;
  top: 4px;
  right: 5px;
  padding: 2px 5px;
}
#content-n-header > .btn-group.colored {
  box-shadow: none;
  border: 0;
}
#content-n-header > .btn-group.colored .btn {
  border: 0;
  color: #ffffff;
}
#content-n-header > .btn-group.colored .btn:hover {
  color: #eeeeee;
}
.flat #content-n-header > .btn-group {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #dddddd;
}
#content-n-header .mini-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  top: 0;
  position: absolute;
  right: 0;
  border-left: 1px solid #ddd;
}
#content-n-header .mini-stats:before,
#content-n-header .mini-stats:after {
  content: " ";
  display: table;
}
#content-n-header .mini-stats:after {
  clear: both;
}
#content-n-header .mini-stats li {
  float: left;
  border-left: 1px solid #fff;
  border-right: 1px solid #ddd;
  padding-bottom: 6px;
}
#content-n-header .mini-stats li:last-child {
  border-right: 0;
}
#content-n-header .mini-stats .left {
  float: left;
  padding-top: 8px;
  padding-left: 15px;
}
#content-n-header .mini-stats .left span {
  display: block;
  margin-bottom: 4px;
}
#content-n-header .mini-stats .right {
  float: right;
  padding: 8px 15px 0 10px;
  font-size: 12px;
}
#content-n-header .mini-stats .right strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}
#content-n-header .mini-stats .sparkline_bar_good,
#content-n-header .mini-stats .sparkline_bar_neutral,
#content-n-header .mini-stats .sparkline_bar_bad {
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}
#content-n-header .mini-stats .sparkline_bar_good {
  color: #83bd67;
}
#content-n-header .mini-stats .sparkline_bar_neutral {
  color: #757575;
}
#content-n-header .mini-stats .sparkline_bar_bad {
  color: #55acd2;
}
#content-n-header.mini {
  min-height: 60px;
}
#content-n-header.mini h1,
#content-n-header.mini > .btn-group {
  margin-top: 10px;
}
@media (max-width: 400px) {
  #content-n-header .mini-stats li .left,
  #content-n-header .mini-stats li .right {
    float: none;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  #content-n-header {
    margin-top: 0;
    /*height: 140px; FIX iPhone: Makes header take up too much space/not enough, let it dictate (by h1 text length) */
    height: auto;
    /* FIX iPhone: allow h1, btn-group to set height*/
    text-align: center;
  }
  #content-n-header h1,
  #content-n-header .btn-group,
  #content-n-header .mini-stats {
    float: none;
    position: relative;
    /*FIX iPhone: let btn group go in document flow, not absolute. Prevents button/header from running into each other*/
  }
  #content-n-header h1 {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-top: 0;
    padding-top: 0 !important;
    width: 100%;
  }
  #content-n-header .btn-group {
    /*margin-top: 70px; FIX iPhone: Makes button group go needlessly far below the header. */
    margin: 10px 0;
    /* FIX iPhone: give equal margins (as below h1), still able to target with finger */
    left: 0;
    right: auto;
  }
  #content-n-header .mini-stats {
    margin-top: 18px;
    min-height: 60px;
    border-left: 0;
    border-top: 1px solid #e5e5e5;
  }
  #content-n-header .mini-stats.box-3 li {
    width: 33% !important;
  }
  #content-n-header .mini-stats li:first-child {
    border-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #content-n-header {
    border-top-left-radius: 0;
  }
}

#top-nav.navbar {
	margin-bottom: 0;
}


/* .list-group-item {
	border: none;
}
 */
.list-group-item:first-child, .list-group-item:last-child {
	border-radius: 0;
}

.footer-field {
    padding: 6px 15px;
}
.shaded-field {
    background-color: var(--i-color-light);
    min-height: 2.2em;
    padding: 6px 15px;
    margin-bottom: 4px;
    border-radius: 6px;
}
.no-bottom {
    margin-bottom: 0;
}

growl-notifications {
    position: fixed;
    top: 120px;
    right: 30px;
    z-index: 1000;
}

.growl-notifications-bottom {
    position: fixed;
    top: unset;
    bottom: 20px;
    left: 75px;
    z-index: 1000;
}

.growl-notifications-top-center {
    position: fixed;
    top: 56px;
    bottom: unset;
    left: 50%;  /* Center horizontally */
    transform: translateX(-50%);  /* Shift left by half its own width to center perfectly */
    width: 33.33%;  /* Set the width to one third */
    z-index: 1000;
}

growl-notifications growl-notification {
    background: var(--i-color-light);
    color: var(--i-color-dark);
    padding: 15px 30px;
    width: 640px;
    display: block;
    border-radius: 10px;
    margin-top: 15px;
}


.category-icon {
    height: 18px;
    vertical-align: top;
}

growl-notification a:hover {
    color: black;
    background-color: white;
}

growl-notification a img {
    margin-right: 10px;
}

growl-notification a:hover img {
    margin-right: 10px;
    background-color: black;
}

growl-notification.fading.ng-move{
    opacity: 0;
    -webkit-transition: 1s linear all; /* Safari/Chrome */
    transition: 1s linear all; /* All other modern browsers and IE10+ */
}

growl-notification.fading.ng-move.ng-move-active {
    opacity: 1;
}
growl-notification.fading.ng-leave {
    opacity: 1;
    -webkit-transition: 1s linear all; /* Safari/Chrome */
    transition: 1s linear all; /* All other modern browsers and IE10+ */
}

growl-notification.fading.ng-leave.ng-leave-active {
    opacity: 0;
}

.watermark {
    opacity: 0.1;
    position: absolute;
    top: 320px;
    left: 30px;
    z-index: 16384;
}
.watermark-img {
    width: 100%;
}

 .margin-top-clear {
     margin-top: 0;
 }
.list-top-aligned {
    list-style: none; /* remove default list style */
    margin: 0; /* remove default margin */
    padding: 0; /* remove default padding */
}
.list-top-aligned li {
    display: inline-block; /* display items as inline-blocks */
    float: left; /* float items to the left */
    vertical-align: top; /* align items to the top */
    margin-right: 10px; /* add some spacing between items (optional) */
}
.list-top-aligned:after {
    content: "";
    display: table;
    clear: both;
}
.progressbar-xs {
    height: 4px;
}
.progress-bar-dark {
    background-color: #737373;
}
.progress-bar-black {
    background-color: #000000;
}

.custom-pager pager li > a,
.custom-pager pager li > span {
    border-radius: 0 !important; /* Remove round corners */
    margin-right: 10px; /* Add a gap of 10px between buttons */
}

.custom-pager pager li:first-child > a,
.custom-pager pager li:first-child > span {
    margin-left: 0; /* Remove margin on the first button */
}
div#col-left, div#col-right {
    max-height: 100vh;          /* not available in Bootstrap */
    overflow-y: scroll;
}