@charset "UTF-8";
@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Regular-webfont.eot");
    src: url("../fonts/Roboto-Regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular-webfont.woff") format("woff"), url("../fonts/Roboto-Regular-webfont.ttf") format("truetype"), url("../fonts/Roboto-Regular-webfont.svg#RobotoRegular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Italic-webfont.eot");
    src: url("../fonts/Roboto-Italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Italic-webfont.woff") format("woff"), url("../fonts/Roboto-Italic-webfont.ttf") format("truetype"), url("../fonts/Roboto-Italic-webfont.svg#RobotoItalic") format("svg");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Medium-webfont.eot");
    src: url("../fonts/Roboto-Medium-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Medium-webfont.woff") format("woff"), url("../fonts/Roboto-Medium-webfont.ttf") format("truetype"), url("../fonts/Roboto-Medium-webfont.svg#RobotoBold") format("svg");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-MediumItalic-webfont.eot");
    src: url("../fonts/Roboto-MediumItalic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-MediumItalic-webfont.woff") format("woff"), url("../fonts/Roboto-MediumItalic-webfont.ttf") format("truetype"), url("../fonts/Roboto-MediumItalic-webfont.svg#RobotoBoldItalic") format("svg");
    font-weight: bold;
    font-style: italic;
}

h2, .h2 {
    display: block;
    font-weight: bold;
    color: #262626 !important;
    margin: 0.83em 0;
    font-size: 18px !important;
}

html, body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    font-size: 12px;
}

body {
    background-color: #f3f3f3;
    font-family: 'Roboto', sans-serif;
    color: #262626;
    display: flex;
}

#sidebar {
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    flex: 0 0 275px;
}

.sidebar-top {
    flex-shrink: 0;
    background-color: #333;
    color: white;
}

.selected-system {
    color: #ffffff;
    font-size: 20px;
    height: 70px;
    line-height: 70px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #262626;
}

.sidebar-navigation {
    flex-grow: 1;
    display: flex;
    height: 100px;
}

.sidebar-navigation li {
    cursor: pointer;
}

#site {
    display: flex;
    flex-direction: column;
    background-color: #f3f3f3;
    width: 100%;
    overflow: auto;
    justify-content: space-between;
}

header {
    display: inline-flex;
    flex-shrink: 0;
    background-color: #051e6e;
    color: #ffffff;
    z-index: 10;
    width: 100%;
    height: 70px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    justify-content: space-between;
    align-items: center;
}

#content {
    padding: 25px;
}

.main-menu-collapsed #content {
    padding-left: 25px;
}


.main-menu-collapsed #sidebar {
    display: none;
}

.card {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    margin-bottom: 10px;
}

.card.card--transparent {
    box-shadow: none !important;
    background-color: transparent;
}

.card.card--transparent .card-header {
    padding-top: 0;
}

.card.card--transparent .card-content {
    padding-bottom: 0;
}

.card .card-header {
    padding: 20px;
}

.card .card-header h2 {
    margin: 0;
    font-weight: normal;
    font-size: 18px;
}

.card .card-header small {
    color: #989898;
    font-size: 14px;
}

.card .card-content {
    padding: 0 20px 20px 20px;
}

.card .card-content.table-responsive-container {
    padding: 0 0 20px 0;
}

.card .card-content.card-content--no-header {
    padding: 20px;
}

.icon {
    display: inline-block;
    height: 1em;
    width: auto;
    text-decoration: none;
}

.icon img {
    display: block;
    height: 100%;
    width: auto;
}

.icon.icon-inline img {
    display: inline-block;
}

.icon.icon-inline .icon-label {
    display: inline-block;
}

.block-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.block-header h2 {
    margin: 0;
    margin-left: 20px;
    font-size: 20px;
    font-weight: normal;
}

.block-header .block-action {
    font-size: 20px;
    margin-right: 20px;
}

.block-header .block-action .form-control {
    padding: 0 5px;
}

a {
    color: #051e6e;
}

.dl-inline {
    margin: 5px 0;
}

.dl-inline dt, .dl-inline dd {
    display: inline-block;
}

.dl-inline dd {
    margin-left: 5px;
    margin-right: 15px;
}

body.error-page {
    background-color: #ffffff;
}

body.error-page .error-container {
    max-width: 768px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px;
}

body.error-page .error-container h1 {
    color: #051e6e;
}

body.error-page .error-container .text {
    margin-left: 25px;
    max-width: 480px;
    font-size: 14px;
}

body.error-page .error-container .image {
    margin-right: 25px;
    width: 250px;
}

body.error-page .error-container .bigger {
    font-size: 18px;
    color: #607D8B;
}

#systems {
    position: absolute;
    left: 0;
    top: 0;
    width: 275px;
    overflow-x: hidden;
    z-index: 10;
}

#systems a {
    overflow: hidden;
    display: block;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    height: 70px;
    line-height: 70px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #262626;
}

#systems a:not(:first-of-type) {
    background-color: #444444;
    display: none;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: right 20px center;
    background-image: url("../images/circle.svg");
    height: 50px;
    line-height: 50px;
}

#systems a:not(:first-of-type):hover {
    background-color: #262626;
    background-image: url("../images/circle-check.svg");
}

#systems:hover a:not(:first-of-type) {
    display: block;
}

.main-menu-collapsed header #systems {
    display: none;
}

header #logo img {
    height: 45px;
    width: 207px;
}

header #main-menu-button {
    display: block;
    width: 30px;
    height: 30px;
    opacity: 0.5;
    margin-left: 24px;
}

header #main-menu-button:hover {
    opacity: 1.0;
}

header #main-menu-button img {
    display: block;
    width: 100%;
    height: auto;
}

.main-menu-collapsed header #main-menu-button {
    opacity: 1.0;
    left: 25px;
}

.table {
    border-spacing: 0;
    width: 100%;
}

.table--expandable td:first-of-type {
    cursor: pointer;
    padding-left: 20px;
}

.table--expandable tbody tr {
    background-image: url("/images/caret-down.svg");
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: left 6px center;
}

.table--expandable tbody tr.expanded {
    background-image: url("/images/caret-up.svg");
}

.table--expandable tbody tr.no-submenu {
    background-image: none !important;
}

.table--expandable tbody tr[data-parent-id] {
    display: none;
}

.table th, .table td {
    padding: 10px 10px;
    white-space: nowrap;
}

.table td {
    border-top: 1px solid #f3f3f3;
}

.table.custom-border td {
    border-top: none;
}

.table td.no-border {
    border-top: none;
}

.table th {
    text-align: left;
    text-transform: uppercase;
    font-size: 12px;
}

.table th:last-of-type {
    text-align: right;
}

.table td:last-of-type {
    text-align: right;
}

.table tfoot td:last-of-type {
    text-align: left;
}

.table tbody {
    color: #444444;
}

.table .wrap {
    white-space: inherit;
}

.table.table-hover tbody tr:hover td {
    background-color: #f3f3f3;
}

.table .result-row td, .table .result-row th {
    border-top: 1px solid #cccccc;
    border-bottom: 3px double #cccccc;
}

.table.table-not-right-aligned th:last-of-type, .table.table-not-right-aligned td:last-of-type {
    text-align: inherit;
}

.table th.centered, .table td.centered {
    text-align: center !important;
}

.table-responsive-container {
    overflow: auto;
}

.table.custom-border tr.visual-break-after td {
    border-bottom: 5px #cccccc solid;
    padding-bottom: 20px;
}

.table.custom-border tr.normal-border td {
    border-bottom: 1px #cccccc solid;
    padding-bottom: 20px;
}

.toggle-data .toggle-data-label a {
    color: #051e6e;
}

.toggle-data .toggle-data-content {
    display: none;
}

.toggle-data.expanded .toggle-data-content {
    display: block;
}

.icon-expandable {
    display: inline-block;
}

.icon-expandable .not-visible {
    display: none;
}

.icon-expandable:hover .not-visible {
    display: block;
}

.state-label {
    color: #E91E63;
    background-image: url("../images/state-label--red.svg");
    background-position: left center;
    background-size: auto 1em;
    display: inline-block;
    padding-left: 40px;
    background-repeat: no-repeat;
}

.state-label.state-label--completed {
    background-image: url("../images/state-label--orange.svg");
    color: #EF6C00;
}

.state-label.state-label--validated, .state-label.state-label--done, .state-label.state-label--closed {
    background-image: url("../images/state-label--green.svg");
    color: #689F38;
}

.flash {
    background-color: #ffffff;
    animation-name: flash;
    animation-duration: 7s;
    animation-iteration-count: 1;
}

@keyframes flash {
    from {
        background-color: #ffef8f;
    }
    to {
        background-color: #ffffff;
    }
}

.ui-sortable-helper {
    background-color: #ffef8f;
}

.sortable {
    background-image: url("../images/sort.svg");
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: 15px 20px;
}

.version {
    color: #989898;
    margin-bottom: 12px;
    font-size: 10px;
    text-align: center;
}

.user-information {
    height: 150px;
    position: relative;
    background-size: 100%;
    background-repeat: no-repeat;
    font-size: 16px;
}

.user-information .user-information--name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 4px 20px;
}

.user-information .user-information--name .logout-button {
    float: right;
}

.message {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 10px 10px 40px;
    background-color: #757575;
    color: #ffffff;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 10px;
}

.message.message-info {
    background-color: #2196F3;
    background-image: url("../images/info.svg");
}

.message.message-warning {
    background-color: #EF6C00;
    background-image: url("../images/warning.svg");
}

.message.message-error {
    background-color: #F44336;
    background-image: url("../images/error.svg");
}

.message.message-success {
    background-color: #689F38;
    background-image: url("../images/success.svg");
}

.message a {
    color: #ffffff;
}

.cols-2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cols-2 > * {
    width: calc(50% - 5px);
    margin-right: 10px;
}

.cols-2 :nth-of-type(even) {
    margin-right: 0;
}

.cols-3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cols-3 > * {
    width: calc(33% - 5px);
    margin-right: 10px;
}

.cols-3 :nth-of-type(3n) {
    margin-right: 0;
}

.cols-4 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cols-4 > * {
    width: calc(25% - 10px);
    margin-right: 10px;
}

.cols-4 :nth-of-type(4n) {
    margin-right: 0;
}

.cols-6 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cols-6 > * {
    width: calc(16% - 5px);
    margin-right: 10px;
}

.cols-6 :nth-of-type(6n) {
    margin-right: 0;
}

.cols-12 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cols-12 > * {
    width: calc(8% - 10px);
    margin-right: 10px;
}

.cols-12 :nth-of-type(12n) {
    margin-right: 0;
}

.parameters {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

.parameters h3 {
    flex-basis: 100%;
}

.parameters .parameter.p-1-col {
    flex-basis: 100%;
}

.parameters .parameter.p-2-col {
    flex-basis: calc(50% - 15px);
}

.parameters .parameter.p-3-col {
    flex-basis: calc(33% - 15px);
}

.parameters .parameter.p-4-col {
    flex-basis: calc(25% - 15px);
}

.parameters .parameter.p-5-col {
    flex-basis: calc(20% - 15px);
}

.page-tabs {
    width: 80%;
    border-bottom: 2px solid #989898;
}

.page-tabs .page-tab, .page-tabs .page-tab-link {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    color: #262626;
    text-transform: uppercase;
    padding: 5px 10px;
    transition: all 0.1s ease;
}

.page-tabs .page-tab.active, .page-tabs .page-tab-link.active {
    color: #ffffff;
    background-color: #E91E63;
}

.page-tabs .page-tab:hover, .page-tabs .page-tab-link:hover {
    background-color: #989898;
    color: #ffffff;
}

.tab {
    height: 0;
    overflow: hidden;
}

.tab.active {
    height: auto;
}

.state-indicator {
    padding-left: 15px;
    background-image: url("../images/dot-purple.svg");
    background-size: 10px;
    background-position: left center;
    background-repeat: no-repeat;
}

.state-indicator--validated {
    background-image: url("../images/dot-green.svg");
}

.state-indicator--closed {
    background-image: url("../images/dot-green.svg");
}

.state-indicator--done {
    background-image: url("../images/dot-green.svg");
}

.state-indicator--training-completed {
    background-image: url("../images/dot-green.svg");
}

.state-indicator--central-control-log-completed {
    background-image: url("../images/dot-green.svg");
}

.state-indicator--completed {
    background-image: url("../images/dot-orange.svg");
}

.state-indicator--level-warning {
    background-image: url("../images/dot-orange.svg");
}

.state-indicator--level-alert {
    background-image: url("../images/dot-red.svg");
}

.state-indicator--level-ok {
    background-image: url("../images/dot-green.svg");
}

.clearfix:before, .clearfix:after {
    display: table;
    content: " ";
}

.clearfix:after {
    clear: both;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
}

.affix {
    position: fixed;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
    cursor: not-allowed;
}

input[type="file"] {
    display: block;
}

input[type="range"] {
    display: block;
    width: 100%;
}

select[multiple],
select[size] {
    height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555555;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    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;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999;
}

.form-control::-webkit-input-placeholder {
    color: #999;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control[disabled], .form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #eeeeee;
    opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed;
}

textarea.form-control {
    height: auto;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: 34px;
    }

    input[type="date"].input-sm,
    .input-group-sm input[type="date"],
    input[type="time"].input-sm,
    .input-group-sm
    input[type="time"],
    input[type="datetime-local"].input-sm,
    .input-group-sm
    input[type="datetime-local"],
    input[type="month"].input-sm,
    .input-group-sm
    input[type="month"] {
        line-height: 30px;
    }

    input[type="date"].input-lg,
    .input-group-lg input[type="date"],
    input[type="time"].input-lg,
    .input-group-lg
    input[type="time"],
    input[type="datetime-local"].input-lg,
    .input-group-lg
    input[type="datetime-local"],
    input[type="month"].input-lg,
    .input-group-lg
    input[type="month"] {
        line-height: 46px;
    }
}

.form-group {
    margin-bottom: 15px;
}

.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
    cursor: not-allowed;
}

.radio label,
.checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-top: 4px \9;
    margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
}

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
    cursor: not-allowed;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px;
}

.form-control-static {
    min-height: 34px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
}

.form-control-static.input-lg, .form-control-static.input-sm {
    padding-right: 0;
    padding-left: 0;
}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

select.input-sm {
    height: 30px;
    line-height: 30px;
}

textarea.input-sm,
select[multiple].input-sm {
    height: auto;
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
    height: auto;
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px;
}

select.input-lg {
    height: 46px;
    line-height: 46px;
}

textarea.input-lg,
select[multiple].input-lg {
    height: auto;
}

.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px;
}

.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
    height: auto;
}

.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.33333;
}

.has-feedback {
    position: relative;
}

.has-feedback .form-control {
    padding-right: 42.5px;
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px;
}

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
    color: #3c763d;
}

.has-success .form-control {
    border-color: #3c763d;
    -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);
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d;
}

.has-success .form-control-feedback {
    color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
    color: #8a6d3b;
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -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);
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #8a6d3b;
}

.has-warning .form-control-feedback {
    color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
    color: #a94442;
}

.has-error .form-control {
    border-color: #a94442;
    -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);
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: #a94442;
}

.has-error .form-control-feedback {
    color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
    top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .form-control-static {
        display: inline-block;
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }

    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
        width: auto;
    }

    .form-inline .input-group > .form-control {
        width: 100%;
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio label,
    .form-inline .checkbox label {
        padding-left: 0;
    }

    .form-inline .radio input[type="radio"],
    .form-inline .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0;
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px;
}

.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px;
}

.form-horizontal .form-group:before, .form-horizontal .form-group:after {
    display: table;
    content: " ";
}

.form-horizontal .form-group:after {
    clear: both;
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        padding-top: 7px;
        margin-bottom: 0;
        text-align: right;
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px;
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px;
    }
}

.btn, #form_training .vich-file a {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn:focus, #form_training .vich-file a:focus, .btn.focus, #form_training .vich-file a.focus, .btn:active:focus, #form_training .vich-file a:active:focus, .btn:active.focus, #form_training .vich-file a:active.focus, .btn.active:focus, #form_training .vich-file a.active:focus, .btn.active.focus, #form_training .vich-file a.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.btn:hover, #form_training .vich-file a:hover, .btn:focus, #form_training .vich-file a:focus, .btn.focus, #form_training .vich-file a.focus {
    color: #333;
    text-decoration: none;
}

.btn:active, #form_training .vich-file a:active, .btn.active, #form_training .vich-file a.active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled, #form_training .vich-file a.disabled, .btn[disabled], #form_training .vich-file a[disabled],
fieldset[disabled] .btn,
fieldset[disabled] #form_training .vich-file a,
#form_training .vich-file fieldset[disabled] a {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    opacity: 0.65;
    -webkit-box-shadow: none;
    box-shadow: none;
}

a.btn.disabled, #form_training .vich-file a.disabled,
fieldset[disabled] a.btn,
fieldset[disabled] #form_training .vich-file a,
#form_training .vich-file fieldset[disabled] a {
    pointer-events: none;
}

.btn-default, #form_training .vich-file a {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-default:focus, #form_training .vich-file a:focus, .btn-default.focus, #form_training .vich-file a.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c;
}

.btn-default:hover, #form_training .vich-file a:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-default:active, #form_training .vich-file a:active, .btn-default.active, #form_training .vich-file a.active,
.open > .btn-default.dropdown-toggle,
#form_training .vich-file .open > a.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    background-image: none;
    border-color: #adadad;
}

.btn-default:active:hover, #form_training .vich-file a:active:hover, .btn-default:active:focus, #form_training .vich-file a:active:focus, .btn-default:active.focus, #form_training .vich-file a:active.focus, .btn-default.active:hover, #form_training .vich-file a.active:hover, .btn-default.active:focus, #form_training .vich-file a.active:focus, .btn-default.active.focus, #form_training .vich-file a.active.focus,
.open > .btn-default.dropdown-toggle:hover,
#form_training .vich-file .open > a.dropdown-toggle:hover,
.open > .btn-default.dropdown-toggle:focus,
#form_training .vich-file .open > a.dropdown-toggle:focus,
.open > .btn-default.dropdown-toggle.focus,
#form_training .vich-file .open > a.dropdown-toggle.focus {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
}

.btn-default.disabled:hover, #form_training .vich-file a.disabled:hover, .btn-default.disabled:focus, #form_training .vich-file a.disabled:focus, .btn-default.disabled.focus, #form_training .vich-file a.disabled.focus, .btn-default[disabled]:hover, #form_training .vich-file a[disabled]:hover, .btn-default[disabled]:focus, #form_training .vich-file a[disabled]:focus, .btn-default[disabled].focus, #form_training .vich-file a[disabled].focus,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] #form_training .vich-file a:hover,
#form_training .vich-file fieldset[disabled] a:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] #form_training .vich-file a:focus,
#form_training .vich-file fieldset[disabled] a:focus,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] #form_training .vich-file a.focus,
#form_training .vich-file fieldset[disabled] a.focus {
    background-color: #fff;
    border-color: #ccc;
}

.btn-default .badge, #form_training .vich-file a .badge, .badge {
    color: #fff;
    background-color: #333;
    padding: .25em .4em;
    border-radius: .25rem;
}

.badge-success {
    background: #28a745;
    color: #fff;
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

.btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}

.btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}

.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #286090;
    background-image: none;
    border-color: #204d74;
}

.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
    color: #fff;
    background-color: #204d74;
    border-color: #122b40;
}

.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus {
    background-color: #337ab7;
    border-color: #2e6da4;
}

.btn-primary .badge {
    color: #337ab7;
    background-color: #fff;
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625;
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
}

.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    background-image: none;
    border-color: #398439;
}

.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
.open > .btn-success.dropdown-toggle:hover,
.open > .btn-success.dropdown-toggle:focus,
.open > .btn-success.dropdown-toggle.focus {
    color: #fff;
    background-color: #398439;
    border-color: #255625;
}

.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus {
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff;
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85;
}

.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc;
}

.btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    background-image: none;
    border-color: #269abc;
}

.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
.open > .btn-info.dropdown-toggle:hover,
.open > .btn-info.dropdown-toggle:focus,
.open > .btn-info.dropdown-toggle.focus {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85;
}

.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus {
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff;
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d;
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}

.btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    background-image: none;
    border-color: #d58512;
}

.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
.open > .btn-warning.dropdown-toggle:hover,
.open > .btn-warning.dropdown-toggle:focus,
.open > .btn-warning.dropdown-toggle.focus {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d;
}

.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff;
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}

.btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    background-image: none;
    border-color: #ac2925;
}

.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
.open > .btn-danger.dropdown-toggle:hover,
.open > .btn-danger.dropdown-toggle:focus,
.open > .btn-danger.dropdown-toggle.focus {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19;
}

.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff;
}

.btn-link {
    font-weight: 400;
    color: #337ab7;
    border-radius: 0;
}

.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent;
}

.btn-link:hover, .btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent;
}

.btn-link[disabled]:hover, .btn-link[disabled]:focus,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none;
}

.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.form-control {
    max-width: calc(100% - 2 * 12px);
    padding-top: 0;
    padding-bottom: 0;
}

select.form-control {
    max-width: 100%;
}

select.form-control:not([size]) {
    height: 36px;
}

textarea.form-control {
    min-height: 85px;
    padding-top: 6px;
    padding-bottom: 6px;
    white-space: pre-wrap;
}

.btn, #form_training .vich-file a {
    text-decoration: none;
}

.button-group > * {
    display: inline-block;
}

.state-group {
    max-width: 200px;
}

.meta-information {
    color: #989898;
    font-size: 12px;
    margin: 0;
}

.meta-information dt {
    display: inline-block;
}

.meta-information dd {
    display: inline-block;
    margin-left: 0;
    margin-right: 10px;
}

.parameter.parameter-with-description .form-group {
    margin-bottom: 5px;
}

.parameter .parameter-description {
    color: #989898;
    margin-bottom: 15px;
}

.filter-form {
    background-color: #ECEFF1;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-bottom: 10px;
}

.filter-form label {
    font-weight: normal;
}

.filter-form .form-group {
    display: inline-block;
    margin-right: 10px;
}

.filter-form .form-group:last-of-type {
    margin-right: 0;
}

.filter-form .form-group input {
    padding: 0 5px;
}

.single-field-edit .form-group {
    display: inline-block;
    margin-right: 10px;
}

.single-field-edit .form-group.form-group-text {
    width: 80%;
}

.inline-form .form-group {
    display: inline-block;
    margin-right: 10px;
}

.inline-form .form-group.form-group-text {
    width: 80%;
}

.add-item-button {
    color: #ffffff;
    background-color: #337ab7;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    padding: 7px 10px 7px 25px;
    background-image: url("../images/plus.svg");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 7px center;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
}

.add-item-button:hover {
    background-color: #051e6e;
}

.add-item-button.refresh {
    background-image: url("../images/refresh.svg");
}

select[readonly].select2entity + .select2-container {
    width: 100%;
    pointer-events: none;
    touch-action: none;
}

select[readonly].select2entity + .select2-container .select2-selection {
    background: #eee;
    box-shadow: none;
}

select[readonly].select2entity + .select2-container .select2-selection__arrow,
select[readonly].select2entity + .select2-container .select2-selection__clear {
    display: none;
}

.select2-selection {
    border-color: #CCCCCC !important;
    height: 36px !important;
}

.select2-selection .select2-selection__rendered {
    line-height: 36px !important;
}

.select2-selection .select2-selection__rendered .select2-selection__placeholder {
    color: #555555 !important;
}

.select2-selection .select2-selection__arrow {
    height: 32px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    line-height: 22px;
}

label.required:after, th.required:after, div.required:after {
    content: '*';
    color: #f7abab;
    margin-left: 2px;
}

.not-required--open label.required:after, .not-required--open th.required:after {
    color: #989898;
}

.vich-file {
    text-overflow: ellipsis;
    overflow: hidden;
}

#form_training .vich-file {
    display: flex;
    margin-bottom: 15px;
}

#form_training .vich-file a {
    align-self: flex-start;
    margin-right: 40px;
}

#form_training .vich-file a + .form-group {
    margin-bottom: 0;
}

.translated-field.translated-field--ru {
    background-image: url("/images/translation-ru.png");
    background-repeat: no-repeat;
    background-position: right top;
}

.over-midnight {
    background-image: url("/images/over-midnight.png");
    background-repeat: no-repeat;
    background-position: left 70px center;
    background-size: auto 20px;
}

.follow-up-report-button {
    text-decoration: none;
    font-size: 12px;
    color: #ffffff !important;
    background-color: #E91E63;
    border-radius: 4px;
    display: inline-block;
    padding: 1px 5px;
}

.follow-up-report-button.all-done {
    background-color: #689F38;
}

.expanded .follow-up-report-button {
    opacity: 0.5;
}

.follow-up-report-button.empty {
    background-color: #cccccc;
}

.export-pdf.loading img {
    animation: spin 2s linear infinite;
}

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

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

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

.pagination {
    text-align: center;
    margin-top: 25px;
}

.pagination a {
    text-decoration: none;
    color: #262626;
    display: block;
    height: 100%;
    text-align: center;
    padding: 2px 7px;
}

.pagination span {
    display: inline-block;
    border-radius: 2px;
}

.pagination span.current {
    color: #ffffff !important;
    background-color: #337ab7;
    padding: 2px 7px;
}

.pagination span.page:hover, .pagination span.next:hover, .pagination span.last:hover, .pagination span.first:hover, .pagination span.previous:hover {
    background-color: #f3f3f3;
}

.notifications-container {
    position: absolute;
    top: 21px;
    left: 350px;
}

.main-menu-collapsed .notifications-container {
    left: 75px;
}

.notifications-container .notification-info-badge {
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 15px;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 14px;
    text-decoration: none;
    background-color: #E91E63;
}

.notifications-container .notification-info-badge.no-infos {
    background-color: #C2185B;
    opacity: 0.5;
}

.notifications-container.notifications-expanded .notification-info-badge {
    opacity: 0.5;
}

.notifications-container .notifications {
    display: none;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    margin-top: 20px;
    width: 380px;
}

.notifications-container .notifications .notification {
    font-size: 14px;
    border-bottom: 1px solid #f3f3f3;
}

.notifications-container .notifications .notification:last-of-type {
    border-bottom: none;
}

.notifications-container .notifications .notification a {
    display: block;
    padding: 10px 15px;
    color: #262626;
}

.notifications-container .notifications .notification a:hover {
    background-color: #f3f3f3;
}

.notifications-container.notifications-expanded .notifications {
    display: block;
}

.header-left {
    display: flex;
}

.shortcut-container {
    margin-left: 64px;
}

.main-menu-collapsed .shortcut-container {
    left: 125px;
}

.shortcut-container .shortcut-icon {
    display: inline-block;
    height: 30px;
    width: 30px;
}

.shortcut-container .shortcut-icon img {
    width: 100%;
    height: auto;
}

.shortcut-container.shortcut-expanded .shortcut-icon {
    opacity: 0.5;
}

.shortcut-container .shortcuts {
    position: absolute;
    display: none;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    margin-top: 15px;
    width: 310px;
}

.shortcut-container .shortcuts .shortcut {
    font-size: 14px;
    border-bottom: 1px solid #f3f3f3;
    color: #262626;
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
    padding-right: 15px;
}

.shortcut-container .shortcuts .shortcut .key {
    border: 1px solid #989898;
    border-radius: 3px;
    padding: 1px 5px;
    margin-right: 5px;
    color: #444444;
}

.shortcut-container .shortcuts .shortcut:last-of-type {
    border-bottom: none;
}

.shortcut-container .shortcuts .shortcut a {
    display: block;
    padding: 10px 15px;
    color: #262626;
}

.shortcut-container .shortcuts .shortcut a:hover {
    background-color: #f3f3f3;
}

.shortcut-container.shortcut-expanded .shortcuts {
    display: block;
}

.recently-used-container {
    margin-left: 24px;
}

.main-menu-collapsed .recently-used-container {
    left: 175px;
}

.recently-used-container .recently-used-icon {
    display: inline-block;
    height: 30px;
    width: 30px;
}

.recently-used-container .recently-used-icon img {
    width: 100%;
    height: auto;
}

.recently-used-container.recently-used-expanded .recently-used-icon {
    opacity: 0.5;
}

.recently-used-container .recently-used {
    display: none;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    margin-top: 15px;
    width: 310px;
    position: absolute;
}

.recently-used-container .recently-used .recently-used-item {
    font-size: 14px;
    border-bottom: 1px solid #f3f3f3;
    color: #262626;
}

.recently-used-container .recently-used .recently-used-item:last-of-type {
    border-bottom: none;
}

.recently-used-container .recently-used .recently-used-item a {
    display: block;
    padding: 10px 15px;
    color: #262626;
}

.recently-used-container .recently-used .recently-used-item a:hover {
    background-color: #f3f3f3;
}

.recently-used-container.recently-used-expanded .recently-used {
    display: block;
}

.fc-day-grid-event, .fc-time-grid-event {
    border-radius: 0 !important;
    padding-left: 23px !important;
    background-size: 14px 14px;
    background-position: left 3px top 3px;
    background-repeat: no-repeat;
    line-height: 1.9 !important;
}

.fc-day-grid-event.state--scheduled, .fc-day-grid-event.state--init_sched, .fc-day-grid-event.state--open, .fc-time-grid-event.state--scheduled, .fc-time-grid-event.state--init_sched, .fc-time-grid-event.state--open {
    background-image: url("../images/circle.svg");
}

.fc-day-grid-event.state--completed, .fc-time-grid-event.state--completed {
    background-image: url("../images/circle-dot.svg");
}

.fc-day-grid-event.state--validated, .fc-time-grid-event.state--validated {
    background-image: url("../images/circle-check.svg");
}

.fc-day-grid-event.state--requested, .fc-time-grid-event.state--requested {
    background-image: url("../images/question-sign.svg");
}

.fc-day-grid-event.state--passed, .fc-time-grid-event.state--passed {
    background-image: url("../images/circle-check.svg");
}

.fc-day-grid-event.state--not-passed, .fc-time-grid-event.state--not-passed {
    background-image: url("../images/circle-x.svg");
}

.fc-day-grid-event.overdue, .fc-time-grid-event.overdue {
    background-image: url("../images/warning.svg");
    border-bottom: 2px solid #a80000 !important;
}

.fc-today .fc-day-number {
    background-color: #E91E63;
    color: #ffffff;
    border-radius: 2px;
}

.fc-day-top {
    padding-top: 2px !important;
    padding-right: 2px !important;
}

.fc-today {
    background-color: transparent !important;
}

.fc td, .fc th {
    border-color: #f3f3f3 !important;
}

.fc-week-number {
    color: #989898 !important;
}

.fc-minor {
    background-color: #f3f3f3;
}

.fc-axis.fc-time {
    color: #989898 !important;
}

.dashboard-card {
    background-repeat: no-repeat;
    background-size: 45px 45px;
    background-position: right 15px top 10px;
}

.dashboard-shortcuts .shortcut {
    font-size: 14px;
    color: #262626;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    display: inline-block;
    text-decoration: none;
}

.dashboard-shortcuts .shortcut:hover .key {
    background-color: lightgoldenrodyellow;
}

.dashboard-shortcuts .shortcut .key {
    border: 1px solid #989898;
    border-radius: 3px;
    padding: 1px 5px;
    margin-right: 5px;
    color: #444444;
}

.dashboard-date-container {
    display: inline-block;
    float: right;
}

.dashboard-date-container .dashboard-widget-date {
    display: none;
    width: 130px;
    height: 30px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
}

.dashboard-date-container.expanded .dashboard-widget-date {
    display: inline-block;
}

.dashboard-date-container.expanded .show-dashboard-widget-date {
    opacity: 0.5;
}

.black {
    animation: black-pulse 0.5s infinite;
}

@keyframes black-pulse {
    0% {
        background-color: #f3f3f3;
        color: #f3f3f3;
    }
    100% {
        background-color: #ECEFF1;
        color: #ECEFF1;
    }
}

.chart {
    width: 100%;
}

.parameter-kpi-container, .avail-kpi-container {
    text-align: center;
    display: table;
    width: 100%;
}

.parameter-kpi-container .parameter-kpi, .parameter-kpi-container .avail-kpi, .avail-kpi-container .parameter-kpi, .avail-kpi-container .avail-kpi {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.parameter-kpi-container .parameter-kpi .value, .parameter-kpi-container .avail-kpi .value, .avail-kpi-container .parameter-kpi .value, .avail-kpi-container .avail-kpi .value {
    color: #051e6e;
    width: 100%;
}

.parameter-kpi-container .parameter-kpi .label, .parameter-kpi-container .avail-kpi .label, .avail-kpi-container .parameter-kpi .label, .avail-kpi-container .avail-kpi .label {
    color: #262626;
    width: 100%;
    text-transform: uppercase;
}

.pop-up {
    position: fixed;
    background: rgba(33, 33, 38, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 11;
    max-height: 100vh;
    overflow: auto;
}

.pop-up__content, .pop-up__header {
    background: white;
}

.pop-up__close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 11;
    background: transparent;
    border: none;
    cursor: pointer;
}

.pop-up__close:after {
    display: block;
    content: "X";
    font-size: 36px;
    color: white;
}

body.pop-up-open {
    overflow: hidden;
}

.component-tree-select .radio {
    margin: 0;
    padding: 3px;
    display: none;
}

.component-tree-select .radio.selected label {
    font-weight: bold;
}

.component-tree-select .radio[data-hierarchy="1"] {
    padding-left: 20px;
    background-color: #F5F5F5;
}

.component-tree-select .radio[data-hierarchy="2"] {
    padding-left: 40px;
    background-color: #EEEEEE;
}

.component-tree-select .radio[data-hierarchy="3"] {
    padding-left: 60px;
    background-color: #E0E0E0;
}

.component-tree-select .radio[data-hierarchy="4"] {
    padding-left: 80px;
    background-color: #BDBDBD;
}

.component-tree-select .radio[data-hierarchy="5"] {
    padding-left: 100px;
    background-color: #9E9E9E;
}

.component-tree-select .radio[data-hierarchy="6"] {
    padding-left: 120px;
    background-color: #B0BEC5;
}

.component-tree-select .radio[data-hierarchy="7"] {
    padding-left: 140px;
    background-color: #90A4AE;
}

.component-tree-select .radio label:after {
    display: none;
}

.nested-component-fields {
    opacity: 1.0;
}

.nested-component-fields.loading {
    opacity: 0.2;
}

.qa-version header {
    background-color: #b71c1c !important;
}

.qa-version #logo {
    transform: rotate(180deg) !important;
}

.qa-green-version header {
    background-color: #18b74a !important;
}

.qa-green-version #logo {
    transform: rotate(180deg) !important;
}

.qa-purple-version header {
    background-color: #800080 !important;
}

.qa-purple-version #logo {
    transform: rotate(180deg) !important;
}

.pop-up__header > div:first-child, .training-card > div:first-child {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background-color: #cccccc;
}

#trainings.reloading, .training-card.reloading {
    opacity: 0.3;
    cursor: not-allowed;
}

#form_training_Intervals > .form-group, #form_training_TrainingDefinitions > .form-group {
    width: 100%;
    display: table;
}

#form_training_Intervals > .form-group > *, #form_training_TrainingDefinitions > .form-group > * {
    display: table-row;
}

#form_training_Intervals > .form-group > * > *:not([style*="display: none"]), #form_training_TrainingDefinitions > .form-group > * > *:not([style*="display: none"]) {
    border-top: 1px solid #f3f3f3;
    display: table-cell !important;
    padding: 10px 10px;
    white-space: nowrap;
}

#form_training_Intervals > .form-group > * > *:not([style*="display: none"]) label, #form_training_TrainingDefinitions > .form-group > * > *:not([style*="display: none"]) label {
    display: block;
}

#form_training_Intervals > .form-group > * > div:last-child, #form_training_TrainingDefinitions > .form-group > * > div:last-child {
    text-align: right;
}

#form_training_Intervals > .form-group > * > div:last-child > a, #form_training_TrainingDefinitions > .form-group > * > div:last-child > a {
    position: relative;
    top: 20px;
}

#trainings__actions {
    display: flex;
    justify-content: flex-end;
}

#trainings__actions__right {
    min-width: 900px;
    display: flex;
    flex-wrap: wrap;
}

#trainings__actions__right__timeline, #trainings__actions__right__show, #trainings__actions__right__filter {
    width: 300px;
    margin-left: 20px;
}

#trainings__actions__right__show {
    width: 250px;
    margin-left: 40px;
    margin-top: 25px;
}

#trainings__actions__right .form-group, #trainings__actions__right label {
    white-space: nowrap;
}

#trainings__actions__right select {
    min-width: 250px;
    width: 100%;
}

#trainings__actions .form-group {
    flex-basis: calc(50% - 20px);
    margin-bottom: 5px;
}

#trainings__actions .form-group label {
    margin-left: .5em;
}

#trainings__actions li.select2-selection__choice {
    line-height: 22px !important;
}

.edit-action-item {
    min-width: 1000px;
    max-width: 1400px;
    position: relative;
}

.edit-action-item label {
    display: block;
}

.edit-action-item .h2 {
    line-height: 2.5em;
}

.edit-action-item__header {
    border-bottom: thin solid #f3f3f3;
    padding: 20px 20px;
}

.edit-action-item__header > div:first-child {
    display: flex;
    justify-content: space-between;
}

.edit-action-item__header .form-control {
    display: inline-block;
    width: auto;
    max-width: 50%;
    height: auto;
}

.edit-action-item__header span {
    display: block;
}

.edit-action-item__content {
    display: flex;
    justify-content: space-between;
}

.edit-action-item__content main {
    padding: 20px;
    flex-basis: calc(33.3%);
}

.edit-action-item__content aside {
    padding: 20px;
    flex-basis: 66.7%;
    background: #f3f3f3;
}

.edit-action-item__content aside hr {
    border-color: white;
    margin: 20px -20px;
}

.edit-action-item .tree-item {
    white-space: nowrap;
}

#trainings {
    border-collapse: collapse;
    width: 100%;
    margin: 2em auto;
}

#trainings tbody, #trainings thead, #trainings th, #trainings td {
    display: block;
}

#trainings tr {
    display: flex;
}

#trainings td, #trainings th {
    width: 375px;
    border-right: 1px solid #989898;
}

#trainings tbody {
    max-height: calc(100vh - 200px);
    overflow: auto;
}

#trainings tbody th {
    padding: 7px 12px;
    width: 374px;
}

#trainings thead, #trainings th {
    font-size: 12px;
    font-family: "Roboto Medium", sans-serif;
    color: rgba(0, 0, 0, 0.54);
}

#trainings thead td, #trainings th td {
    white-space: nowrap;
}

#trainings tbody {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.87);
}

#trainings tbody th {
    vertical-align: top;
    text-align: left;
    background: white;
    z-index: 1;
    border: 1px solid;
    border-top: 0;
}

#trainings tbody tr {
    display: none;
    position: relative;
}

#trainings tbody tr.filter--assignee--show.filter--position--show {
    display: flex;
}

#trainings tr {
    border-bottom: thin solid rgba(0, 0, 0, 0.54);
}

#trainings tr:hover {
    background-color: #f3f3f3;
}

#trainings td {
    padding: 7px 12px;
    vertical-align: top;
}

#trainings td.ui-droppable-hover {
    background: #cccccc;
}

#trainings__wrapper {
    width: 100%;
    overflow: auto;
}

#trainings__legend {
    list-style: none;
    padding: 0;
    margin: 0;
}

#trainings__legend li.training__legend--custom::before {
    content: "▬";
    color: #262626;
}

#trainings__legend li.training__legend--initial::before {
    content: "▬";
    color: #051e6e;
}

#trainings__legend li.training__legend--refresher::before {
    content: "▬";
    color: #051e6e;
}

.training-row-header__position {
    text-transform: capitalize;
    font-weight: normal;
}

.training-column--assignee {
    font-size: 80%;
    color: #989898;
}

.training-card {
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09), 0 1px 2px rgba(0, 0, 0, 0.18);
    background: white;
    display: block;
    padding: 15px 40px 15px 10px;
    text-decoration: none;
    width: 300px;
    color: inherit;
}

.training-card:focus {
    outline: none;
}

.training-card + .training-card {
    margin-top: 20px;
}

.training-card > div:last-child {
    margin-top: 20px;
}

.training-card--custom .progress-indicator__wrapper {
    border-bottom: 2px solid #262626;
}

.training-card--refresher .progress-indicator__wrapper {
    border-bottom: 2px solid #051e6e;
}

.training-card--initial .progress-indicator__wrapper {
    border-bottom: 2px solid #051e6e;
}

.status-indicator {
    display: flex;
    position: absolute;
    top: 5px;
    right: 5px;
}

.status-indicator--past-due-date svg {
    fill: #F44336;
}

.status-indicator--done svg {
    fill: #689F38;
}

.status-indicator--not-applicable {
    background-color: #607D8B;
}

.status-indicator {
    height: 0.833em;
    width: 0.833em;
    border-radius: 50%;
}

.status-indicator svg {
    width: 100%;
    height: 100%;
}

.status-indicator__wrapper {
    padding: 1em 2em;
}

.progress-indicator__wrapper {
    display: flex;
}

.progress-indicator__category {
    color: white;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    margin-right: 20px;
    margin-left: 20px;
    text-overflow: ellipsis;
}

.checkbox-field {
    margin-top: 20px;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
}

.loader {
    color: #051e6e;
    font-size: 11px;
    text-indent: -99999em;
    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 2px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader:before,
.loader:after {
    position: absolute;
    content: '';
}

.loader:before {
    width: 10.4px;
    height: 20.4px;
    background: #ffffff;
    border-radius: 20.4px 0 0 20.4px;
    top: -0.2px;
    left: -0.2px;
    -webkit-transform-origin: 10.2px 10.2px;
    transform-origin: 10.2px 10.2px;
    -webkit-animation: load2 2s infinite ease 1.5s;
    animation: load2 2s infinite ease 1.5s;
}

.loader:after {
    width: 10.4px;
    height: 20.4px;
    background: #ffffff;
    border-radius: 0 20.4px 20.4px 0;
    top: -0.2px;
    left: 9.8px;
    -webkit-transform-origin: 0.2px 10.2px;
    transform-origin: 0.2px 10.2px;
    -webkit-animation: load2 2s infinite ease;
    animation: load2 2s infinite ease;
}

@-webkit-keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.select2-selection--multiple {
    overflow: hidden !important;
    height: auto !important;
}

.table tr.info-log-row {
    border-top: 0;
    text-align: left;
    background: #fbfafa;
}

.table tr.info-log-row .info-log {
    margin: 1em 0;
    font-size: 13px;
    display: flex;
    align-items: baseline;
}

.table tr.info-log-row .delete-information-link {
    margin-left: 1em;
    margin-top: 1em;
}

.table tr.info-log-row .info-log-date {
    width: 100px;
    margin: 0 1em;
}

.table tr.info-log-row .info-log-description {
    width: 100%;
    margin: 0 1em;
}

.table tr.info-log-row .info-log-staff {
    width: 200px;
    margin: 0 1em;
}

.table tr.info-log-row .info-log-actions {
    width: 100px;
    margin: 0 1em;
    text-align: right;
}

.info-log-row {
    background: #fff;
}

.information-row-date {
    width: 100px;
}

.information-row-staff {
    width: 200px;
}

.info-log-row-actions {
    width: 100px;
    background: #fff;
}

tr.has-wip-version {
    background: #f3f3f3;
}

.root-cause-analysis-description {
    font-size: 11px;
    color: gray;
}

.svg-green svg path {
    fill: #2b542c;
}

.icon svg {
    width: 12px;
    height: 12px;
}

option.component-type--base {
    font-style: italic;
}

.submenu-category-label {
    color: black;
    font-size: 12px;
    padding-left: 3em;
    line-height: 2em
}

.documents-card {
    max-height: calc(100vh - 220px);
    overflow-y: auto;
}

.block-header .card-header-outside--actions {
    font-size: 12px;
}

.icon-space {
    margin-right: 1em
}


:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: .5
}

.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    opacity: 1
}

.btn-close.disabled, .btn-close:disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: .25
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%)
}

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: ;
    --bs-modal-bg: #fff;
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: 0.5rem;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-modal-inner-border-radius: calc(0.5rem - 1px);
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 1px;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg: ;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 1px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px)
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg)
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity)
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius)
}

.modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
    margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto
}

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
    font-size: 1.8em;
    font-weight: bold;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding)
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius)
}

.modal-footer > * {
    margin: calc(var(--bs-modal-footer-gap) * .5)
}

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15)
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto
    }

    .modal-sm {
        --bs-modal-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 800px
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0
}

.modal-fullscreen .modal-footer, .modal-fullscreen .modal-header {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-footer, .modal-fullscreen-sm-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-footer, .modal-fullscreen-md-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-footer, .modal-fullscreen-lg-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-footer, .modal-fullscreen-xl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-footer, .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto
    }
}

table td.document-item-load-files {
    cursor: pointer;
    white-space: normal;
}

table td.document-item-file-name {
    cursor: pointer;
    white-space: normal;
}

.document-item-file-checkbox {
    width: 36px;
}

.document-item-file-breadcrumb-container {
    display: flex;
    justify-content: space-between;
    margin: 0 10px;
}


.document-item-file-breadcrumb {
    cursor: pointer;
}

.document-item-file-tree-item {
    margin: 12px;
    cursor: pointer;
}

.dropzone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-width: 2px;
    border-radius: 2px;
    border-color: #eeeeee;
    border-style: dashed;
    background-color: #fafafa;
    color: #bdbdbd;
    outline: none;
    transition: border .24s ease-in-out;
}

.document-item-files-history-row {
    padding: 1em;
    border-bottom: 1px solid #EEEEEE;
}

.block-header--with-actions {
    min-height: 36px;
}

.document-item-row {
    background-color: #fafafa;
}

.selected-row {
    background-color: #ECEFF1;
}

.document-item-file-tree-item {
    cursor: pointer;
}

.document-item-file-tree-item--inactive {
    color: gray;
}

.menu {
    list-style-type: none;
    padding: 0;
    font-size: 14px;
    width: 100%;
}

.menu-first-level {
    max-width: 100%;
    transition: max-width 0.1s ease-in-out;

}

.menu-first-level-collapsed {
    max-width: 50px;
}

.menu li {
    display: block;
    background-image: url("../images/menu-plus.svg");
    background-position: top 17.5px right 15px;
    background-size: 10px;
    background-repeat: no-repeat;
    width: 100%;
}

.menu li.no-sub-menu {
    background-image: none;
}

.menu li a {
    display: block;
    height: 45px;
    line-height: 45px;
    text-decoration: none;
    color: #262626;
    padding-left: 50px;
    padding-right: 20px;
    transition: all 0.1s ease-in;
    background-size: 17px 17px;
    background-position: 17px center;
    background-repeat: no-repeat;
}

.menu-first-level-collapsed .menu li {
    background-image: none;
    overflow-x: hidden;
}

.menu li a:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.menu-first-level {
    display: flex;
    background-color: #051e6e;
    width: 100%;
}

.menu-first-level .menu li a {
    color: #FFFFFF;
    overflow: hidden;
}

.menu-second-level li {
    font-size: 12px;
}

.menu-second-level-hidden {
    display: none;
}

.menu li.with-sub-menu {
    cursor: pointer;
}

.menu-first-level-item-active {
    background-color: #FFFFFF;
}

.menu li.menu-item {
    background-image: none;
}

.menu ul.submenu {
    padding-left: 0;
}

.menu-second-level {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.menu ul.submenu li {
    background-image: none;
}

.menu li.expanded {
    background-image: url("../images/menu-minus.svg");
}

.menu li.expanded ul.submenu {
    display: block;
}

.menu li ul.submenu {
    display: none;
}


.menu li a {
    color: gray;
}

.menu li.selected > a {
    color: black;
}

.select2-hidden-accessible {
    position: unset !important;
}

.badge-warning {
    background-color: var(--bs-warning);
}

.table-fixed-header, .table-fixed-first-column {
    position: relative;
}

.table-fixed-header thead {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: white;
}

.table-fixed-first-column tbody td:first-child {
    position: sticky;
    left: 0;
    background: white;
    z-index: 1;
}

.table-fixed-first-column thead th:first-child, .table tfoot th:first-child {
    position: sticky;
    left: 0;
    background: white;
    z-index: 2;
}

.dashboard-table tbody tr td.name {
    overflow-x: hidden;
    min-width: 365px;
    max-width: 365px;
    text-overflow: ellipsis;
}

.dashboard-table tbody tr td.type {
    width:100px;
}

.dashboard-table tbody tr td.reporting-number {
    max-width: 120px;
    min-width: 120px;
}

.dashboard-table tbody tr td.date {
    max-width: 70px;
}