/* Minification failed. Returning unminified contents.
(482,32): run-time error CSS1030: Expected identifier, found ','
(482,42): run-time error CSS1031: Expected selector, found ')'
(482,42): run-time error CSS1025: Expected comma or open brace, found ')'
 */
div.chat *{
  transition:all .5s;
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
}

div.chat {
  cursor:default;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE/Edge */
  user-select: none; 
}

div.chat span.spinner{
  -moz-animation: loading-bar 2s 1;
  -webkit-animation: loading-bar 2s 1;
  animation: loading-bar 2s 1;
  display: block;
  height: 2px;
  background-color: #00e34d;
  transition: width 0.2s;
  position:absolute;
  top:0; left:0; right:0;
  z-index:4
}

div.chat .messages{
  display:block;
  overflow-x: hidden;
  overflow-y: scroll;
  position:relative;
  padding: 5px 0 0 3%;
}

div.chat ::-webkit-scrollbar {width: 3px; height:1px;transition:all .5s;z-index:10;}
div.chat ::-webkit-scrollbar-track {background-color: white;}
div.chat ::-webkit-scrollbar-thumb {
  background-color: #bec4c8; 
  border-radius:3px;
}

div.chat .message{
  display:block;
  width:98%;
  padding:0.5%;
}

div.chat .message p{
  margin:0;
}

div.chat .myMessage,
div.chat .fromThem {
  max-width: 50%;
  word-wrap: break-word;
  margin-bottom: 20px;
}

div.chat .message:hover .myMessage{
  -webkit-transform: translateX(-130px);
  transform: translateX(-130px);
}

div.chat .message:hover .fromThem{
  -webkit-transform: translateX(130px);
  transform: translateX(130px);
}

div.chat .message:hover div.message-info {
  opacity: 1;
}

div.chat .myMessage,.fromThem{
  position: relative;
  padding: 10px 20px;
  color: white;
  border-radius: 25px;
  clear: both;
  font: 400 15px 'Open Sans', sans-serif;
}

div.chat .myMessage {
  background: #00e34d;
  color:white;
  float:right;
  clear:both;
  border-bottom-right-radius: 20px 0px\9;
}

.myMessage:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -2px;
  right: -8px;
  height: 19px;
  border-right: 20px solid #00e34d;
  border-bottom-left-radius: 16px 14px;
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
  border-bottom-left-radius: 15px 0px\9;
  transform: translate(-1px, -2px)\9;
}

.myMessage:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -2px;
  right: -42px;
  width: 12px;
  height: 20px;
  background: white;
  border-bottom-left-radius: 10px;
  -webkit-transform: translate(-30px, -2px);
  transform: translate(-30px, -2px);
}


div.chat .fromThem {
  background: #E5E5EA;
  color: black;
  float: left;
  clear:both;
  border-bottom-left-radius: 30px 0px\9;
}
div.chat .fromThem:before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -2px;
  left: -7px;
  height: 19px;
  border-left: 20px solid #E5E5EA;
  border-bottom-right-radius: 16px 14px;
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
  border-bottom-right-radius: 15px 0px\9;
  transform: translate(-1px, -2px)\9;
}

div.chat .fromThem:after {
  content: "";
  position: absolute;
  z-index: 3;
  bottom: -2px;
  left: 4px;
  width: 26px;
  height: 20px;
  background: white;
  border-bottom-right-radius: 10px;
  -webkit-transform: translate(-30px, -2px);
  transform: translate(-30px, -2px);
}

div.chat div.message-info {
  position:absolute;
  top: 10px;
  font-size:14px;
  white-space:nowrap;
  vertical-align:middle;
  color: #8b8b90;
  opacity: 0;
  z-index:4;
}

div.chat .myMessage div.message-info {
  left: 105%;
}

div.chat .fromThem div.message-info {
  right: 105%;
}

div.chat input{
  font: 400 13px 'Open Sans', sans-serif;
  border:0;
  padding:0 15px;
  height:10%;
  outline:0;
}

div.chat input[type='text']{
  width:73%;
  float:left;
}


  div.chat .myMessage,div.chat .fromThem{
    font-size:14px;
  }
  
  div.chat .message:hover .myMessage{
    transform: translateY(18px);
    -webkit-transform: translateY(18px);
  }

  div.chat .message:hover .fromThem{
    transform: translateY(18px);
    -webkit-transform: translateY(18px);
  }
  
  div.chat .myMessage div.message-info,div.chat .fromThem div.message-info {
    top: -20px;
    left:auto;
    right:0;
    font-size:12px;
  }

  div.chat .fromThem div.message-info {
    left:0;
    right:auto;
  }
  
  div.chat .myMessage,
  div.chat .fromThem {
    max-width: 90%;
  }
  
@-moz-keyframes loading-bar {
  0% {
    width: 0%;
  }
  90% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes loading-bar {
  0% {
    width: 0%;
  }
  90% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}

@keyframes loading-bar {
  0% {
    width: 0%;
  }
  90% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}
/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

body.successful-operation {
    background-color: #82ff6e;
}

body.successful-operation-alternative {
    background-color: #09ceff;
}

body.error-operation {
    background-color: #fa9aae;
}

/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

table.modal-window {
    background-color: white;
    margin-bottom: -3px;
}

td > input[type="checkbox"] {
    width: 100%;
}

td.num {
    text-align: right;
}

td.img {
    text-align: center;
}

table.table th:nth-child(1) {
    width: 10px;
    text-align: center;
}

table.table td:nth-child(1) {
    text-align: center;
}

table.edit-mode td:nth-child(1) {
    background-color: #d40038 !important;
    color: white;
    font-weight: bold;
}

table.hide-last-row tbody tr:last-child {
    color: transparent;
    height: 35px;
}

table.edit-mode tbody tr:last-child {
    visibility: hidden;
}

table.modal-window tbody {
    cursor: pointer;
}


div.main-menu {
    height: 30px;
}

div.page-header h1 div small {
    margin-left: 10px;
}

#page {
    height: 100%;
    min-height: 100%;
    display: block;
    margin: 0 0 100px 0;
    padding: 0;
}

option {
    font-size: 14pt;
}

/*              form caption            */

/*div.form-caption {
}*/

div.form-caption em {
    display: block;
    background-color: #e2e2e2;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
    font-style: normal;
    margin-top: -20px;
    margin-bottom: 20px;
    vertical-align: middle;
    text-align: center;
}

ul.main-menu li {
    display: inline-block;
    margin-left: 20px;
}

li.current a, div.navbar-header a.current {
    color: #428bca !important;
}

ul.nav li div {
    float: left;
    line-height: 50px;
    margin-right: 20px;
    margin-top: 2.5px;
}

/*              modal dialog           */

.modalDialog {
    margin: 0px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(00,00,00,0.75);
    z-index: 1000;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

#page.blured {
    visibility: hidden;
    /*-webkit-filter: blur(2.8px);
    overflow-x: hidden;
    overflow-y: hidden;*/
}

.noScroll {
    overflow-x: hidden;
    overflow-y: hidden;
}

.modalVisible {
    opacity: 1;
    pointer-events: auto;
}

.modalDialog > div {
    width: 80%;
    position: relative;
    margin: auto auto auto auto;
    top: 0;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #aaa;
    box-shadow: 5px 5px 20px #000;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iPad */
    /* z-index: 0 !important;
    overflow: scroll !important;*/
}

.modalDialog h2 {
    font-size: 14px;
    font-weight: bold;
}

.closeModal {
    border: none;
    background: transparent;
    color: #FFFFFF;
    font-size: 48pt;
    position: fixed;
    right: 10px;
    top: 10px;
    text-align: center;
    width: auto;
    text-decoration: none;
    font-weight: bold;
    padding: 0px;
    margin: 0px;
    border-radius: 12px;
}

    .closeModal:hover {
        color: #b6fb8c;
    }

    .closeModal:active {
        color: #0000FF;
    }

select:invalid,
input[type=text]:not(#StartDate, #EndDate):invalid,
input[type=date].not-filled,
textarea:required:invalid, textarea:focus:invalid,
input[type=number]:invalid {
    background-color: #FFCCCC;
}

    select:invalid option:not(:checked) {
        background-color: #FFFFFF;
    }


div.key-buttons {
    text-align: center;
    margin-bottom: 30px;
}

    div.key-buttons > div {
        display: inline-block;
        margin-right: 20px;
        margin-top: 30px;
        vertical-align: top;
    }

    div.key-buttons > a, div.key-buttons > button {
        text-align: center;
        margin-right: 20px;
    }

.ipad-style {
    padding: -3px 12px 6px 12px;
}

#reportAdaptersSelect {
    border: none;
    color: inherit;
}

div.mt-body, div.dataTables_scrollBody {
    -webkit-overflow-scrolling: touch; /* smooth scroll on iPad */
    /* z-index: 0 !important;
    overflow: scroll !important;*/
}

tr.marked-for-deleting td {
    text-decoration: line-through;
}

nav.off-line-mode {
    background: #fff556;
}

div.dataTables_scrollHeadInner {
    padding-left: 0px !important;
}

em.info-data {
    color: #428bca;
    font-weight: bold;
    font-size: 120%;
    font-style: normal;
}

.bigger-margin-left {
    margin-left: 50px;
}

input.inline-control {
    border-style: none;
    color: #999999;
}

div.menu-header {
    text-align: justify;
}

    div.menu-header:after {
        content: '';
        display: inline-block;
        width: 100%;
        height: 0;
        font-size: 0;
        line-height: 0;
    }


div.menu-header-nav {
    display: inline-block;
    vertical-align: baseline;
    /* ie 7*/
    *display: inline;
    *zoom: 1;
    *text-align: right;
}

button.settings-button {
    border-style: none;
}

.item-caption {
    font-size: 20px;
}

div.control-label {
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    table[data-aramis-name] td, th {
        font-size: 90%;
    }

    h1 small {
        font-size: 45% !important;
    }

    div.page-header {
        margin-top: 0px;
        margin-bottom: 10px;
    }

    #myNavbar {
        margin-bottom: 0px;
    }

    h3 a {
        font-size: 80%;
    }

    h3 {
        margin-top: 10px !important;
    }

    .control-label {
        text-align: right;
    }
}

div.menu-header-nav ul {
    margin-left: -100px;
}

a.current {
    color: #428bca !important;
}

.navbar-brand a, .navbar-brand a:active, .navbar-brand a:hover {
    color: #777777;
    text-decoration: none;
}

.invisible {
    display: none;
}

button.ellipsis, button.voice-input {
    /*margin-left: 0px !important;
    float: right;*/
    background-color: #fAFAFA;
    border-color: #fAFAFA;
    color: #000000;
    padding: 0 3px !important;
    margin: 0 !important;
    height: 34px;
    width: 100%;
}

button.voice-input:hover, button.voice-input:active {
    background-color: #fAFAFA;
    border-color: #cccccc;
    border-left: none;
}

button.voice-input {
    border-color: #cccccc;
    border-left: none;
    width: 90px !important;
    background: url('Images/microphone.svg') no-repeat;
    background-position: center;
    background-size: 25px 25px;
}

div.input-column {
    margin: 0 !important;
    padding: 0 5px 0 0 !important;
}

div.last-column {
    padding: 0 5px 0 0 !important;
}

/*label.view-item {
    cursor: pointer;
}*/

/*
            copy, remove row buttons in the subtable for desktop

*/

td:first-child {
    vertical-align: middle !important;
}

table.editable-subtable tr td:first-child:hover {
    padding: 5px;
}

div.row-buttons {
    width: 126px;
    margin: 0;
    padding: 0;
    display: none;
}

    div.row-buttons button {
        display: inline-block;
        margin: 0;
        padding: 0;
        width: 24px;
        height: 24px;
        border: none;
        float: left;
        margin-right: 10px;
        vertical-align: middle;
    }

        div.row-buttons button:last-child {
            margin-right: 0px;
            float: right;
        }

        div.row-buttons button.copy-row:hover, tr.rows-set-edit-mode button.copy-row {
            background: url('Images/copy_24x24.png') no-repeat;
        }

        div.row-buttons button.remove-row:hover {
            background: url('Images/remove_24x24.png') no-repeat;
        }

        div.row-buttons button.up-row:hover, tr.rows-set-edit-mode button.up-row {
            background: url('Images/arrow_up_24x24.png') no-repeat;
        }

        div.row-buttons button.down-row:hover, tr.rows-set-edit-mode button.down-row {
            background: url('Images/arrow_down_24x24.png') no-repeat;
        }

tr:first-child div.row-buttons button.up-row {
    visibility: hidden;
}

tr:nth-last-child(2) div.row-buttons button.down-row {
    visibility: hidden;
}


input[data-t="color"] {
    max-width: 80px;
    display: inline-block;
    margin-right: 10px;
}

#refreshChoosingList, #showExtendedList {
    color: white;
    padding: 7px 50px 5px 0;
}

#showExtendedList {
    margin-left: 10px;
}

#refreshChoosingList {
    background-image: url('Images/refresh_white_32x32.png');
    background-repeat: no-repeat;
    background-position: right;
}

#listTable td[data-value-id] span:last-child,
#matrixReportData th[data-id] span:nth-child(2),
#matrixReportData td[data-id] span:nth-child(2),
#accordion td[data-value-id] span:last-child,
span.ellipsis {
    cursor: pointer;
    margin-left: 10px;
    float: right;
    display: none;
    padding: 0 10px;
    color: white;
    background-color: #428bca;
    font-weight: bold;
    border-radius: 6px;
    background-color: rgba(66, 139, 202, 0.25);
}

span.open-button {
    position: absolute;
    width: 33px;
    height: 25px;
    z-index: 10000;
    cursor: pointer;
    background-color: rgba(66, 139, 202, 0.8);
}

a.cloud-report {
    margin-left: 20px;
    position: relative;
    top: -4px;
}

h1 a.cloud-report {
    top: 0;
}

a.cloud-report img {
    width: 0px;
    height: 0px;
    background: url('Images/cloud_on_off.png');
    padding-right: 48px;
    padding-top: 26px;
    background-repeat: no-repeat;
}

a.cloud-report,
body.cloud-report a.cloud-report img {
    background-position: right;
}


body.cloud-report #adapterSelector,
body.cloud-report div.report-filters,
body.cloud-report div.report-filters,
div.cloud-filters {
    display: none;
}

body.cloud-report div.cloud-filters {
    display: block;
}

#matrixReportData td a {
    color: black;
    font-size: 170%;
}

label.for-switch {
    margin-right: 10px;
}

div.panel-group {
    margin-bottom: 20px;
}

div.bool-filter, div.num-filter, div.str-filter, div.datetime-filter, div.enum-filter, div.cat-filter, div.doc-filter {
    display: block;
    padding-left: 50px;
    line-height: 60px;
}

div.bool-filter {
    background: url('Images/filter-bool.png') repeat-y;
}

div.num-filter {
    background: url('Images/filter-num.png') repeat-y;
}

div.enum-filter {
    background: url('Images/filter-enum.png') repeat-y;
}

div.cat-filter {
    background: url('Images/filter-cat.png') repeat-y;
}

div.datetime-filter {
    background: url('Images/filter-date.png') repeat-y;
}

div.doc-filter {
    background: url('Images/filter-doc.png') repeat-y;
}

div.str-filter {
    background: url('Images/filter-string.png') repeat-y;
}



div.active-select select {
    display: inline-block;
}

div.active-select span {
    display: none;
}

button.filter-condition {
    margin-left: 10px;
}

div.active-conditions label {
    cursor: pointer;
}

div.active-conditions input[type="checkbox"] {
    margin: 0;
    position: relative;
    top: 3px;
    width: 25px;
    height: 25px;
}

span.save-filter, span.remove-filter {
    width: 32px;
    height: 32px;
    background: url('Images/filter-edit-buttons.png') no-repeat;
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
}

#itemDiv div.panel-heading {
    padding-right: 10px;
}

div.thread-buttons,
#accordion div.archive-chat-menu h4.panel-title,
#accordion div.archive-chat-menu div.filter-buttons {
    display: none;
}

h4.panel-title.chat-header {
    max-width: calc(100% - 43px);
}

#accordion div.archive-chat-menu div.thread-buttons {
    display: block;
}

div.thread-buttons button:last-child {
    float: right;
}

span.archive-chat {
    width: 32px;
    height: 32px;
    background: url('Images/archive-button.png') no-repeat;
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
    margin-right: -6px;
}

span.save-filter {
    display: none;
}

div.panel-group > div:first-child span.save-filter {
    display: inline-block;
}

span.remove-filter {
    background-position: -32px 0;
}

div.panel-heading h4 {
    display: inline-block;
}

div.filter-buttons {
    display: inline-block;
    float: right;
    height: 32px;
    margin-top: -6px;
    padding: 0;
}

tr.last-row {
    height: 5px !important;
    margin: 0;
    padding: 0 !important;
}

    tr.last-row td {
        margin: 0;
        padding: 0 !important;
    }

span.comparing-equal, span.comparing-not-equal {
    font-size: 130%;
    cursor: pointer;
}

div.condition-type {
    line-height: 35px;
    text-align: center;
}

    div.condition-type select {
        margin-left: auto;
        margin-right: auto;
    }

        div.condition-type select::-ms-expand {
            display: none;
        }

        div.condition-type select.comparing-in-group, select.comparing-not-in-group {
            color: transparent;
            border: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background: url('Images/comparing-types.png') no-repeat;
            width: 30px;
            height: 41px;
        }

    div.condition-type option {
        color: black;
    }

    div.condition-type select.comparing-not-in-group {
        background-position: -30px 0;
    }

table.condition-value thead tr,
table.condition-value tr td:nth-child(odd) {
    display: none;
}

table.condition-value tbody tr:last-child td {
    padding: 0;
    /*height: 20px !important;*/
    color: transparent;
}

table.datetime-condition tbody tr:not(:first-child) td,
table.comparing-interval tbody tr:not(:first-child) td,
table.single-value tbody tr:not(:first-child) td {
    display: none;
}

table.comparing-interval tbody tr:first-child td:nth-child(2),
table.comparing-interval tbody tr:first-child td:nth-child(3) {
    display: table-cell;
    width: 50%;
}

table.condition-value tbody td:empty {
    height: 36px;
}

table.condition-value td span:first-child:empty {
    height: 15px;
    width: 10px;
    display: inline-block;
}

#listTable td.added-to-filter {
    background-image: url('Images/approved.png');
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(204, 255, 204, 0.3);
}

#listTable_filter {
    display: none;
}

#addAndChoose {
    color: white;
    margin-left: 20px;
    font-size: 24pt;
    position: relative;
    font-weight: normal;
    top: 7px;
}

tr.use-row-color > td {
    background-color: inherit !important;
}

textarea.chat-message, #search-input.menu-items {
    min-height: 35px;
    height: 35px;
    border-radius: 5px;
    font-size: 12pt;
    margin-top: 10px;
    display: block;
}

#search-input.menu-items {
    float: left;
}

div.chat-thread + div, div.has-floating-items + div {
    clear: both;
}

#search-input, textarea.chat-message {
    border: 1px solid #cccccc;
    border-radius: 5px;
    height: 32px;
}

textarea.chat-message {
    width: 100%;
    resize: none;
    border-radius: 20px;
    outline-style: none;
    -moz-outline-style: none;
}

    textarea.chat-message:active, textarea.chat-message:focus {
        padding: 10px 15px;
        border-color: #00e34d;
    }

    #currentMessage:focus, #currentMessage:active,
    div.chat-inputs.active-editor #currentMessage,
    div.chat-inputs.active-editor textarea.chat-message,
    textarea.chat-message:focus, textarea.chat-message:active {
        width: 100%;
        float: none;
        min-height: 60px;
        -webkit-appearance: textarea;
    }

        div.chat-inputs.active-editor #currentMessage + div, #currentMessage:focus + div, #currentMessage:active + div {
            display: none;
        }

div.lastonly.messages div.message:last-child {
    cursor: pointer;
}

div.lastonly.messages div.message:not(:last-child) {
    display: none;
}

button.send-button, button.cancel-edit-button {
    border-color: #e1edf8;
    border-radius: 20px;
    font-size: 11pt;
    color: #428bca;
    height: 32px;
    background-color: white;
    outline-style: none;
    -moz-outline-style: none;
}

button.cancel-edit-button {
    color: #d9534f;
    border-color: #f5d3d2;
    float: right;
    width: 35px;
}

div.message-buttons {
    padding-top: 10px;
    clear: both;
    display: none;
    margin-bottom: 20px;
}

div.chat-inputs.active-editor div.message-buttons {
    display: block;
}

#currentMessage:focus ~ div.message-buttons, #currentMessage:active ~ div.message-buttons {
    display: block;
}

div.lower-div {
    margin-bottom: 50px;
}

#search-box {
    float: left;
    margin-top: 10px;
}

#additionalButtons {
    margin-bottom: 150px;
}

button.refresh-items-list, button.refresh-items-list:hover, button.refresh-items-list:active, button.refresh-items-list:focus {
    color: transparent;
    background-image: url('Images/refresh_white_32x32.png');
    background-repeat: no-repeat;
}

button.copy-item, button.copy-item:hover, button.copy-item:active, button.copy-item:focus {
    color: transparent;
    background-image: url('Images/copy_item_32x32.png');
    background-repeat: no-repeat;
}

    button.refresh-items-list.btn-lg, button.copy-item.btn-lg {
        background-position: 6px 6px;
    }

#filter-switch {
    float: right;
    margin-top: 10px;
    margin-right: 0;
}

#search-input {
    width: 150px;
}

    #search-input.empty {
        font-style: italic;
        color: #bbbbbb;
        /*width: 70px;*/
    }

    #search-input:active, #search-input:focus {
        font-style: normal;
        color: black;
    }

        #search-input:focus::-webkit-input-placeholder {
            color: transparent;
        }

        #search-input:focus:-moz-placeholder {
            color: transparent;
        }
        /* FF 4-18 */
        #search-input:focus::-moz-placeholder {
            color: transparent;
        }
        /* FF 19+ */
        #search-input:focus:-ms-input-placeholder {
            color: transparent;
        }
/* IE 10+ */

table[data-aramis-name] th {
    text-align: center;
    vertical-align: middle !important;
}

    table[data-aramis-name] th[colspan="2"] {
        border-bottom: none;
    }

div.items-list-button {
    display: inline-block;
}

    div.items-list-button:not(:last-child) {
        margin-right: 30px;
    }

#listTable {
    margin-bottom: 0;
}

table[data-aramis-name] tfoot td {
    text-align: right;
    font-weight: bold;
}

table.dataTable thead .sorting:after {
    opacity: 0 !important;
}

#small-screen-error {
    display: none;
}

div.form-group input[type="checkbox"] {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-top: -3px;
}

div.form-group p[id] {
    white-space: pre-wrap;
}
/*div.key-buttons > div, div.key-buttons > div.btn-group {
    margin-bottom: 30px;
}*/

#message-dialog {
    display: none;
    position: fixed;
    z-index: 100000000;
    height: 70%;
    background-color: cornsilk;
    top: 10px;
    left: 10px;
    right: 10px;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: #d4bf95;
    padding: 50px 20px 20px 20px;
    overflow: auto;
}

    #message-dialog p {
        font-weight: bold;
        font-size: 12pt;
        white-space: pre-wrap; /* current browsers */
    }

#close-message-dialog {
    position: fixed;
    z-index: 100000001;
    top: 15px;
    right: 28px;
    font-size: 20pt;
    cursor: pointer;
    display: block;
    width: 100px;
    height: 100px;
    text-align: right;
}

#message-dialog-confirm-container {
    text-align: center;
    margin-bottom: 20px;
}

table.hide-row-number tr > *:first-child {
    display: none;
}

#items-list-buttons {
    margin-top: 0;
}

div.btn-group.open li a {
    line-height: 30px;
}



ul.predefined-filters li {
    list-style: none;
    margin-bottom: 5px;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
}

ul.predefined-filters:empty {
    display: none;
}

ul.predefined-filters {
    padding-left: 0;
    margin-top: 10px;
}

    ul.predefined-filters label {
        cursor: pointer;
        margin-left: 0px;
    }

.video-ref, .doc-ref, .cat-ref, .report-ref, .process-ref, .favorite-item, .not-favorite-item {
    background-image: url('Images/air-images.png?v=1');
    background-repeat: no-repeat;
    width: 24px;
    height: 20px;
    margin-right: 5px;
    /*cursor: pointer;*/
}

.video-ref {
    background-position: -48px 0;
}

.process-ref {
    background-position: -72px 0;
}

.doc-ref {
    background-position: -96px 0;
}

.cat-ref {
    background-position: -120px 0;
}

.report-ref {
    background-position: -144px 0;
}

/*.not-favorite-item:hover {
    background-position: 0 0;
}*/

.not-favorite-item, .favorite-item {
    cursor: pointer;
}

.not-favorite-item /*, .favorite-item:hover*/ {
    background-position: -24px 0;
}

/*div.items-menu > div:nth-child(odd) {
    background-color: #f6f6f6;
}*/


div.items-menu > div:hover {
    background-color: #f9f9f9;
}

div.items-menu > div {
    border-radius: 5px;
}

div.item-ref {
    overflow: hidden;
    padding-top: 3px;
    padding-left: 3px;
}

    div.item-ref a {
        color: black;
    }

div.items-menu .category-name {
    text-align: right;
    color: #d5d5d5;
    margin-top: -3px;
    font-size: 90%;
}

.category-name:empty {
    height: 10px;
}

div.panel-body.items-menu .category-name {
    font-size: 0;
    margin-top: 0px;
}

div.items-menu > div:hover .category-name {
    color: #bbb;
}

div.middle-inline-div > div {
    /*background-color:yellow;*/
    display: inline-block;
}

div.first-inline-div {
    display: inline-block;
    float: left;
}

div.last-inline-div {
    float: right;
}

div.middle-inline-div {
    display: block;
    overflow: hidden;
    margin: 0 auto;
}

#favorite-menu {
    padding-top: 10px;
    padding-bottom: 10px;
}

#accordion div.panel-default div.panel-heading {
    background: #fdfdfd;
}

#search-result-menu + #favorite-menu,
#search-input:focus + #search-result-menu + #favorite-menu,
#search-input:active + #search-result-menu + #favorite-menu {
    display: none;
}

#search-input:focus + #search-result-menu:empty, #search-input:active + #search-result-menu:empty {
    margin-bottom: 20px;
}

#search-result-menu:empty + #favorite-menu {
    display: block;
}

#search-result-menu {
    margin-top: 15px;
}

    #search-result-menu:empty {
        margin-top: 0;
    }

.form-group p > a {
    text-decoration: underline;
    cursor: pointer;
    color: #428bca;
}

    .form-group p > a:hover {
        color: #428bca;
    }

/*          QUICK HIERARCHY SELECTOR            */

select.element-choosing {
    border: 1px solid #111;
    background: transparent;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    color: transparent;
    border: 1px solid #ccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-color: white;
    display: block;
    margin-left: 10px;
}

select.service2 {
    background-image: url(Content/water.png);
    background-position: -60px 0;
}


div.chooser-container {
    padding-top: 10px;
}

div.chooser-top-row {
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

    div.chooser-top-row > div:first-child {
        padding-left: 10px;
        background-color: #f3f3f3;
    }

div.chooser-viewer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
}

    div.chooser-viewer > div {
        width: auto;
        height: 100%;
        margin-left: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

        div.chooser-viewer > div > div {
            display: table-cell;
            margin-left: 10px;
            margin-top: 10px;
            margin-bottom: 8px;
            height: 100%;
        }

    div.chooser-viewer div div div {
        font-size: 8pt;
        width: 80px;
        text-align: center;
        margin-top: 5px;
        margin-right: 2px;
        overflow: hidden;
    }

select.element-choosing option {
    color: black;
}
/*target Internet Explorer 9 and Internet Explorer 10:*/
@media screen and (min-width:0\0) {
    select.element-choosing {
        background: none;
        padding: 5px;
    }
}

#accordion div.panel-default div.panel-heading.contains-unread {
    background-color: #d4fac1;
}

#printReportButton {
    padding: 5px 8px;
}

th.rotate {
    white-space: nowrap;
}

    th.rotate > div {
        text-align: center;
        transform: rotate(180deg);
    }

        th.rotate > div > span {
            writing-mode: vertical-rl;
        }

#cell-editor .cell-editor {
    width: 100%;
}

#cell-editor.without-buttons > div:not(:first-child) {
    display: none;
}

#cell-editor {
    display: none;
    position: absolute;
    left: 200px;
    top: 20px;
    z-index: 100000;
    background-color: white;
    padding-bottom: 10px;
}

    #cell-editor.without-buttons {
        background-color: transparent;
    }

td.select-inside {
    padding: 0 !important;
    height: 100% !important;
}

    td.select-inside select {
        width: 100%;
    }

/*th.rotate45 > div {
        transform:
        translate(25px, 51px)
        rotate(315deg);
        width: 30px;
    }

        th.rotate45 > div > span {
            border: none;
            padding: 5px 10px;
        }*/

#ReportFilters + #additionalButtons,
div.catalog-item-picker + #additionalButtons {
    margin-bottom: 30px;
}

#ReportFilters + div.catalog-item-picker #pick-new-item {
    display: none;
}

#matrixReportData span:empty + span:last-child {
    display: none;
}

div.picker-search {
    margin-bottom: 10px;
    max-width: 300px;
    border: none;
}

    div.picker-search button {
        background-color: white;
        border: 1px solid #cccccc;
        border-left-width: 0;
    }

        div.picker-search button:hover {
            background-color: #e6e6e6;
        }

#picker-search {
    background: url('Images/search-icon.png') no-repeat;
    background-position: 6px 6px;
    padding: 12px 20px 12px 40px;
    color: #3f4be8;
    box-shadow: none;
}

/*span.search-result {
    /*background-color: #e5ffe2;
    color: #3f4be8;
    font-weight: bold;
}*/

span.search-result {
    background-color: #1f73ff;
    color: white;
    /*font-weight: bold;*/
}

td#active-picker {
    background-color: lightskyblue;
    color: white;
    /*border-radius: 7px;*/
}

div.subtable-container {
    margin-bottom: 20px;
}

#pick-new-item {
    margin-left: 20px;
}

div.subtable-container table[data-table-name].dataTable {
    margin-top: 0 !important;
}

div.subtable-container div.dataTables_wrapper div.row:first-child {
    display: none;
}

a.aramis-home {
    background: url('Images/aramis-home.png') no-repeat;
    background-size: 32px 32px;
    width: 32px;
    height: 32px;
    padding: 0;
    margin-top: 9px;
    font-size: 0.1px;
    color: transparent;
}

#itemDiv div.page-header h1 button.dropdown-toggle {
    border: none;
}

div.page-header h1 small.marked-for-deleting {
    text-decoration-line: line-through;
}

textarea.form-control {
    font-size: 16px;
}

table.editable-subtable.editable-rows td:hover div.row-buttons {
    display: block;
}

table.editable-subtable.editable-rows tr td:first-child:hover div:first-child {
    display: none;
}

div.row-buttons button.copy-row {
    background: url('Images/copy_24x24_bw.png') no-repeat;
}

div.row-buttons button.remove-row {
    background: url('Images/remove_24x24_bw.png') no-repeat;
}

div.row-buttons button.up-row {
    background: url('Images/arrow_up_24x24_bw.png') no-repeat;
}

div.row-buttons button.down-row {
    background: url('Images/arrow_down_24x24_bw.png') no-repeat;
}

#listTable td[data-value-id]:hover span:last-child,
#accordion td[data-value-id]:hover span:last-child,
#matrixReportData td[data-id]:hover span:nth-child(2),
#matrixReportData th[data-id]:hover span:nth-child(2) {
    display: inline-block;
    margin-left: -50px;
    position: relative;
}



#listTable td[data-value-id] span:last-child:hover,
#accordion td[data-value-id] span:last-child:hover,
#matrixReportData td[data-id] span:nth-child(2):hover,
#matrixReportData th[data-id] span:nth-child(2):hover,
span.open-button:hover {
    text-decoration: underline;
}

a.cloud-report img:hover {
    background-position: right;
}

body.cloud-report a.cloud-report img:hover {
    background-position: left;
}

div.active-conditions label:hover {
    text-decoration: underline;
}

table.comparing-list tbody tr td:first-child {
    display: table-cell;
    padding-top: 3px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    width: 30px;
    border-right: none;
}

table.comparing-list tbody tr:last-child:hover td:first-child {
    background-image: none;
}

table.comparing-list tbody tr:hover td:first-child {
    background: url('Images/remove_24x24_bw.png') no-repeat;
    background-position: center;
}

table.comparing-list tr:first-child:nth-last-child(2):hover td:first-child {
    background-image: none;
}

table.comparing-list tbody tr td:first-child:hover {
    background: url('Images/remove_24x24.png') no-repeat;
    background-position: center;
}

table.comparing-list tbody tr:nth-child(odd):hover td:first-child {
    background-color: #f9f9f9;
}

table.comparing-list tbody tr td:nth-child(2) {
    border-left: none;
}

table.comparing-list tbody tr td:first-child div {
    display: none;
}

#period-till {
    cursor: pointer;
}

#period-till:hover {
    text-decoration: underline;
}

#StartDate:not(:valid), #EndDate:not(:valid) {
    border-bottom: 1px solid #cccccc;
}

#filter-switch {
    float: right;
    margin-top: 10px;
}

div.items-menu > div {
    padding-left: 7px;
}

div.items-menu > div {
    padding-top: 10px;
}

div.panel-body.items-menu div.middle-inline-div, #favorite-menu div.middle-inline-div {
    cursor: pointer;
}

    div.panel-body.items-menu div.middle-inline-div:hover a, #favorite-menu div.middle-inline-div:hover a {
        text-decoration: underline;
    }

#search-input {
    padding-left: 5px;
}

    #search-input.menu-items {
        width: 100%;
        max-width: 400px;
        padding: 3px 5px 3px 10px;
    }

div.chat-inputs {
    max-width: 440px;
}

textarea.chat-message {
    padding: 5px 5px 1px 10px;
}

div.item-ref div.last-inline-div {
    padding: 5px 0 15px 10px;
}

#accordion div.item-ref div.last-inline-div {
    padding: 0px 0 8px 10px;
}

select.element-choosing:active, select.element-choosing:focus {
    border-radius: 0;
}

select.element-choosing {
    font-size: 0;
}

div.chat {
  max-width:450px;
}

#currentMessage {
    float: right;
    width: 31px;
}

a.aramis-home {
    margin-left: 5px !important;
}

select.contractor-select {
    font-size: 20pt;
    font-weight: bold;
    color: #555;
    padding: 1px 0 0 13px;
    width: 50px;
    height: 50px;
}

select.contractor-select.choosed {
    font-weight: normal;
    padding-left: 2px;
    font-size: 10pt;
    background-color: #c4ffb0;
    border-color: #4fa432;
}

