/** --------- BOOTSTRAP --------- **/

@media (min-width: 768px) {
    .modal-sm {
        width: 300px;
    }

    .input-group-addon.hidden-xs {
        display: table-cell !important;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

/* Fix for two scrollbars if modal is visible */
body.modal-open, .modal-open .navbar-fixed-top, .modal-open .navbar-fixed-bottom {
    margin-right: 0;
}

.modal {
    overflow-y: auto;
}

/* Fix for datepicker in modal should be visible in foreground */
.datepicker {
    z-index: 10000 !important;
}

.navbar .hidden-xs {
    display: inline-block !important;
}

@media (max-width: 767px) {
    .navbar .hidden-xs {
        display: none !important;
    }
}

dl.dl-horizontal > dt,
dl > dd {
    margin-bottom: 7px;
}

.input-group-addon.checkbox-labeled {
    padding: 5px 12px 1px;
}

/* For nesting .form-inline within .form-horizontal */
.form-horizontal .nested-form-inline .form-group {
    margin-left:  0;
    margin-right: 0;
}

@media (min-width: 768px) {
    .form-inline .form-control {
        display:        inline-block;
        width:          auto;
        vertical-align: middle;
    }
}

.form-group.condensed {
    margin-bottom: 2px;
}

.accordion-toggle.btn-danger {
    color: white !important;
}

.btn.btn-link {
    text-decoration: none;
}

.btn.btn-link:focus {
    outline: none;
}

/* For not displaying text overflow in single line */
.btn.btn-box {
    -o-text-overflow: ellipsis;   /* Opera */
    text-overflow:    ellipsis;   /* IE, Safari (WebKit) */
    overflow:hidden;              /* don't show excess chars */
    white-space:nowrap;           /* force single line */
}

.btn-group-justified .btn {
    display: inline-block;
    float: none;
    width: auto;
}

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
    display: table-cell;
    float:   none;
    width:   1%;
}

.btn-group-justified > .btn-group .btn {
    width: 100%;
}

/** --------- /BOOTSTRAP --------- **/

/** --------- ACE-TEMPLATE CUSTOMIZATIONS --------- **/

.input-group-btn .btn-xs {
    border-width: 1px;
}

.input-group-btn > .btn:first-child {
    margin: 0 1px 0 0;
}
.input-group-btn > .btn, .input-group-btn > .btn + .btn {
    margin: 0 1px 0 0;
}

/* Fix: ACE does not implement .form-control-static class to fit changes for labels */
.form-control-static {
    padding-top:   4px;
    margin-bottom: 4px;
    font-size:     14px;
}

/* Fix: ACE uses a height of 32px for select.form-control while input fields using a height of 34px */
select.form-control {
    height: 34px;
}

/* Fix: ui-select width in input group */
.input-group .ui-select-container .ui-select-toggle.form-control {
    display: block;
}

.ui-select-match-text {
    padding-right:     15px;
    overflow:          hidden;
    -ms-text-overflow: ellipsis;
    text-overflow:     ellipsis;
    width:             100%;
}

/**
 * Resetting transition fixes the bug where search
 * field drops to next row after adding first item
 * Transition is implemented by ace-admin template
 */
.ui-select-search {
    -moz-transition:    initial !important;
    -webkit-transition: initial !important;
    -o-transition:      initial !important;
    transition:         initial !important;
}

.ui-select-bootstrap > .ui-select-choices {
    min-width: 100%;
    width:     auto;
}

/* Custom navbar color */
.navbar {
    background-color: #6482A0;
}

/* Fix: ACE used background-color but background is required */
.ui-tooltip {
    background: #444444;
    color:      #FFFFFF;
}

/* Headlines of dialogs and others */
.ui-dialog .ui-dialog-titlebar, .ui-jqdialog .ui-dialog-titlebar,
.ui-dialog .ui-jqdialog-titlebar, .ui-jqdialog .ui-jqdialog-titlebar {
    padding: 3px 6px;
}

/* Better visibility for read-only fields */
textarea[disabled], textarea[readonly],
input[disabled], input[readonly],
select[disabled], select[readonly],
.form-group input[disabled], .form-group input:disabled {
    color:      #505053 !important;
    background: #F8F8FA !important;
    cursor:     default !important;
}

/* Smaller buttons */
.btn {
    padding:      3px 6px;
    border-width: 3px;
}

.widget-header .btn {
    padding: 0 4px;
    border-width: 2px;
}

.btn.btn-app.btn-xxs.btn-wider {
    width: 68px;
}

a:hover [class^="icon-"], a:hover [class*=" icon-"],
a:focus [class^="icon-"], a:focus [class*=" icon-"] {
    text-decoration: none;
}

.btn.btn-app.btn-xxs {
    width:          48px;
    height:         48px;
    font-size:      12px;
    border-radius:  5px;
    padding-bottom: 5px;
    padding-top:    5px;
    line-height:    1.45;
}

.btn.btn-app.btn-xxs > [class*=icon] {
    display:     block;
    font-size:   20px;
    line-height: 20px;
    margin:      0;
}

#fuelux-wizard {
    margin-bottom: 30px;
}

.wizard-actions {
    text-align: center;
}

.wizard-actions .btn {
    margin-top:    10px;
    margin-bottom: 10px;
    min-width:     200px;
}

.modal-header {
    border-radius: 0 !important;
}

/* Fixes the position of btn-scroll-up to the lower right */
.btn-scroll-up {
    position: fixed;
    bottom:   5px;
    right:    5px;
}

/* Fixes Angular - ui.select bootstrap theme */
.btn.ui-select-toggle {
    border-width:   1px;
    background:     #FFFFFF !important;
    color:          #858585 !important;
    text-shadow:    none !important;
    padding-top:    6px;
    padding-bottom: 4px;
}

/* show that button is focused (identical to hover style) */
.btn-primary:focus {
    background-color: #1b6aaa !important;
    border-color: #428bca;
}
.btn-info:focus {
    background-color: #4f99c6 !important;
    border-color: #6fb3e0;
}
.btn-success:focus {
    background-color: #629b58 !important;
    border-color: #87b87f;
}
.btn-warning:focus {
    background-color: #e59729 !important;
    border-color: #ffb752;
}
.btn-danger:focus {
    background-color: #b74635 !important;
    border-color: #d15b47;
}
.btn-inverse:focus {
    background-color: #303030 !important;
    border-color: #555555;
}
.btn-pink:focus {
    background-color: #b73766 !important;
    border-color: #d6487e;
}
.btn-purple:focus {
    background-color: #7461aa !important;
    border-color: #9585bf;
}
.btn-grey:focus {
    background-color: #888888 !important;
    border-color: #a0a0a0;
}
.btn-yellow:focus {
    background-color: #f7d05b !important;
    border-color: #fee188;
}
.btn-light:focus {
    background-color: #d9d9d9 !important;
    border-color: #e7e7e7;
}

/** --------- /ACE-TEMPLATE CUSTOMIZATIONS --------- **/

/** --------- SELECT2 --------- **/

.select2-container--bootstrap .select2-selection {
    box-shadow:    none !important;
    border-radius: 0 !important;
    border-color:  #D5D5D5;
}

.select2-container--bootstrap.select2-container--focus .select2-selection,
.select2-container--bootstrap.select2-container--open .select2-selection,
.select2-container--bootstrap .select2-dropdown {
    border-color: #D5D5D5;
}

.select2.select2-container {
    width: 100% !important;
}

/* Remove search icon for multi-select boxes added by ACE template */
.select2-search:after {
    display: none;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
    background: #EEEEEE;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove {
    color: #E19588;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #FF0000;
}

/* Hide selected items in multi select fields */
.select2-results__options[aria-multiselectable=true] .select2-results__option[aria-selected=true] {
    display: none;
}

/* Show option is selected */
.select2-container--bootstrap .select2-results__option[aria-selected=true] {
    background: #EEEEEE;
    color:      inherit;
}

.select2-results__options,
.select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
    color: #858585;
}

/* Triangle icon */
.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
    border-color: black transparent transparent;
    border-width: 6px 3px 0;
    margin-left:  3px;
}

.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b {
    border-color: transparent transparent #000000;
    border-width: 0 3px 6px;
}

.init-select2 {
    width: 100%;
}

/** --------- /SELECT2 --------- **/

/** --------- ANGULAR JS --------- **/

[ng\:cloak], [ng-cloak], [data-ng-cloak], .ng-cloak {
    display: none !important;
}

/** --------- /ANGULAR JS --------- **/

/** --------- OWN SETTINGS --------- **/

.ajaxLoading {
    position: relative !important;
}

.ajaxLoading:after {
    position:   absolute;
    top:        0;
    bottom:     0;
    left:       0;
    right:      0;
    display:    block;
    content:    ' ';
    background: white;
    opacity:    0.75;
}

hr.narrow {
    margin: 6px 0;
}

.clickable {
    cursor: pointer;
}

.unclickable {
    cursor: not-allowed;
}

/* Widths for table columns */
table .col-xs {
    width: 5%;
}

table .col-sm {
    width: 10%;
}

table .col-md {
    width: 20%
}

table .col-lg {
    width: 30%;
}

table.table-narrow hr {
    margin-top:    5px;
    margin-bottom: 5px;
}

.table.dataTable thead:first-child tr, .widget-body .table thead:first-child tr {
    background:        #F2F2F2;
    background-image:  -webkit-gradient(linear, left 0, left 100%, from(#F8F8F8), to(#ECECEC));
    background-image:  -webkit-linear-gradient(top, #F8F8F8, #ECECEC);
    background-image:  -moz-linear-gradient(top, #F8F8F8 0, #ECECEC 100%);
    background-image:  linear-gradient(to bottom, #F8F8F8 0, #ECECEC 100%);
    background-repeat: repeat-x;
    filter:            progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff8f8f8', endColorstr='#ffececec', GradientType=0);
}

.scrollable-y {
    /* Additional requires max-height/height styling for the element */
    overflow-y: auto;
}

.scrollable-x {
    /* Additional requires max-height/height styling for the element */
    overflow-x: auto;
}

.widget-main.scrollable-y {
    max-height: 20em;
}

.content-box.with-separator + .content-box.with-separator {
    border-top:  1px solid #EEEEEE;
    padding-top: 20px;
    margin-top:  20px;
}

.cl-btn {
    min-width: 200px;
}

.cl-code-field {
    text-align: center;
}

.required:after {
    content: ' *';
    color:   red;
    /*position:     relative;*/
    /*display:      inline-block;*/
    /*float:        right;*/
    /*margin-right: -12px;*/
}

.form-text {
    padding-top: 4px;
    font-size:   14px;
}

.text-right {
    text-align: right;
}

#nav10101-contentArea {
    min-height: 600px;
}

/* Headline logo */
.logo {
    height: 25px;
}

/* File input with button only */
.cl-file-input input[type="file"] {
    position:   absolute;
    opacity:    0;
    background: 0 0;
    width:      1px;
    height:     1px;
}

#tree-view {
    display:none;
}


/* Module toolbars */
.view-toolbar-container {
    margin-bottom: 20px;
}

.view-sidebar-wrapper {
    position: fixed;
    right: 0;
    top: 120px;
    bottom: 0;
    z-index: 99;
    width: 190px;
    border: 1px solid #ccc;
    background-color: #f2f2f2;
    box-shadow: -5px 15px 25px #999999;
}

.view-sidebar-container {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.view-sidebar-container .min-height {
    min-height: 1.8em;
}

.bootstrap-dialog .modal-header.bootstrap-dialog-draggable {
    cursor: move;
}

/**
 * Radio with image
 */

.radio-with-image-label {
    cursor:           pointer;
    background-color: #ABBAC3;
    color:            #FFFFFF;
    text-shadow:      0 -1px 0 rgba(0, 0, 0, 0.25) !important;
}

.radio-with-image-input:checked + .radio-with-image-label {
    background-color: #87B87F;
}

.radio-with-image-input {
    float:    left;
    opacity:  0;
    position: absolute;
}

/** --------- /OWN SETTINGS --------- **/

.highlighted {
    background: #FFFFCC;
}

/* RACK & TUBE */
.animate-margin-top {
    -webkit-transition-property:        margin-top, text;
    -webkit-transition-duration:        0.4s, 0.4s;
    -webkit-transition-timing-function: linear, ease-in;
    -moz-transition-property:           margin-top, text;
    -moz-transition-duration:           0.4s;
    -moz-transition-timing-function:    linear, ease-in;
    -o-transition-property:             margin-top, text;
    -o-transition-duration:             0.4s;
    -o-transition-timing-function:      linear, ease-in;
}

#fullscan-widget {
    margin-top: 100px;
    max-width:  250px;
    min-width:  200px;
}

#singletube-widget {
    margin-top: 100px;
    max-width:  250px;
    min-width:  200px;
}

.tube-column-selector-tool {
    border-bottom: 1px dotted silver;
}

.tube, .tube-column-selector {
    float:                              left;
    margin:                             5px;
    width:                              32px;
    height:                             32px;
    border-radius:                      16px;
    border:                             1px #000000 solid;
    text-align:                         center;
    vertical-align:                     middle;
    padding-top:                        5px;
    -webkit-transition-property:        background-color, text;
    -webkit-transition-duration:        0.4s, 0.4s;
    -webkit-transition-timing-function: linear, ease-in;
    -moz-transition-property:           background-color, text;
    -moz-transition-duration:           0.4s;
    -moz-transition-timing-function:    linear, ease-in;
    -o-transition-property:             background-color, text;
    -o-transition-duration:             0.4s;
    -o-transition-timing-function:      linear, ease-in;
}

.small-rack {
    font-size: 11px;
}

.small-rack.tube {
    width:  28px !important;
    height: 28px !important;
    margin: 3px;
}

.tube-disabled {
    background-color: #EEEEEE;
    color:            silver;
    border-color:     silver;
}

.tube-with-checkbox {
    line-height: 7px;
}

.tube-icon {
    margin-top: 3px;
}

.rack-position-marker {
    background: transparent url(../img/rack-position-marker.png) right bottom no-repeat;
}

.tube-rack-edge {
    float:        left;
    position:     relative;
    left:         488px;
    bottom:       18px;
    width:        0;
    height:       0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #000000 transparent;
}

.tube-rack-edge.small-rack {
    left:   393px;
    bottom: 13px;
}

.tube-rack {
    margin-left:      -150px;
    min-width:        510px;
    width:            510px;
    border:           1px #888888 dotted;
    background-color: #FFFFFF;
    float:            left;
}

#rack-barcode-container {
    width: 510px;
}

#rack-barcode.rack-element {
    text-align: center;
    height:     40px;
    font-size:  1.6em;
    width:      100%;
}

.rack-element {
    margin-left: 0;
    width:       510px;
}

.tube-rack.small-rack {
    margin-left: -125px;
    min-width:   415px;
    width:       415px;
    height:      280px;
}

.tube-initial {
    background-color: #BBBBBB;
    color:            #000000;
}

.tube-unreadable {
    background-color: #EE4444;
    color:            #FFFFFF;
}

.tubeslot-empty {
    background-color: #000000;
    color:            #FFFFFF;
}

.tube-ok {
    background-color: #44EE44;
    color:            #000000;
}

.tube-not-edited {
    color:            #FFFFFF;
    background-color: #0D930D;
}

.tube-active {
    color:            #000000 !important;
    background-color: #9BCDFF !important; /* #F59942 */
}

.tube-selected {
    color:            #000000 !important;
    background-color: #FFFF00 !important; /* #F59942 */
}

.tube {
    cursor: pointer;
}

.tube:hover:not(.tube-disabled) {
    color:            #FFFFFF !important;
    background-color: #009CEB !important;
}

.tube-hover {
    color:            #FFFFFF !important;
    background-color: #009CEB !important;
}

.rack-barcode {
/ / position: relative;
    border:                             1px #888888 dotted;
    transform:                          rotate(-90deg);
    -ms-transform:                      rotate(-90deg); /* IE 9 */
    -moz-transform:                     rotate(-90deg); /* Firefox */
    -webkit-transform:                  rotate(-90deg); /* Safari and Chrome */
    -o-transform:                       rotate(-90deg); /* Opera */
    margin-top:                         150px;
    margin-left:                        -150px;
    width:                              340px;
    height:                             38px;
    font-size:                          1.6em;
    text-align:                         center;
    float:                              left;
    -webkit-transition-property:        background-color, text;
    -webkit-transition-duration:        0.4s, 0.4s;
    -webkit-transition-timing-function: linear, ease-in;
    -moz-transition-property:           background-color, text;
    -moz-transition-duration:           0.4s;
    -moz-transition-timing-function:    linear, ease-in;
    -o-transition-property:             background-color, text;
    -o-transition-duration:             0.4s;
    -o-transition-timing-function:      linear, ease-in;
}

.rack-barcode.small-rack {
    width:       280px;
    margin-top:  125px;
    margin-left: -125px;
    height:      30px;
    font-size:   1.2em;
}

.rack-barcode:hover {
    background-color: #009CEB;
    cursor:           pointer;
}

.rack-ok {
    background-color: #44EE44 !important;
    color:            #000000 !important;
}

.rack-error {
    color:            #FFFFFF;
    background-color: #EE0000;
}

.rack-initial {
    color:            #000000;
    background-color: #BBBBBB;
}

.rack-active {
    color:            #000000 !important;
    background-color: #9BCDFF !important;
}

.widget-main#singletube-widget-main {
    text-align: left;
}

.qr-code {
    background-color: #FFFFFF;
    display:          inline-block;
    padding:          3px;
    vertical-align:   middle;
    margin:           0 10px;
}

.header-button {
    position: relative;
    top:      -25px;
}

th.special-headline {
    background-color:   #FFFFFF !important;
    position:           relative;
    left:               -50px;
    border-right-color: #FFFFFF !important;
}

tr.special-headline {
    background-color: #FFFFFF !important;
}

/* Modal Message */
#flashbox, #flashconfirmbox {
    display: none;
}

#flashconfirmbox {
    display: none;
}

@media only screen and (max-width: 768px) {
    th.special-headline {
        left:               0;
        border-right-color: #FFFFFF !important;
        border-right:       none !important;
        border-left-color:  #FFFFFF !important;
    }
}

@media only screen and (max-width: 991px) {
    .page-header {
        margin-left:   80px;
        padding-top:   4px;
        border-bottom: none;
    }

    #map {
        padding: 12px !important;
    }
}

@media only screen and (max-width: 1199px) {
    #fullscan-widget {
        margin-top: 10px;
    }

    #singletube-widget {
        margin-top: 10px;
    }
}

/* Searchable Combobox */
.custom-combobox {
    position: relative;
    display:  inline-block;
}

.custom-combobox-toggle {
    position:    absolute;
    top:         0;
    bottom:      0;
    margin-left: -1px;
    padding:     0;
}

.custom-combobox-input {
    margin:  0;
    padding: 5px 10px;
}

.ui-autocomplete {
    max-height: 250px;
    overflow:   auto;
}

.ui-autocomplete-loading {
    background: white url("../../public/css/images/ui-anim_basic_16x16.gif") right center no-repeat;
}

.custom-combobox {
    position: relative;
    display:  inline-block;
}

.custom-combobox-toggle {
    position:    absolute;
    top:         0;
    bottom:      0;
    margin-left: -1px;
    padding:     0;
}

.custom-combobox-input {
    margin:  0;
    padding: 5px 10px;
}

.cl-scan-item {
    width:        300px;
    max-width:    100%;
    margin-left:  auto;
    margin-right: auto;
    text-align:   center;
}

.tags-empty {
    border: none;
}

.number, .decimal-field {
    text-align: center;
}

a.disabled {
    cursor: not-allowed;
}

a.disabled [class^="fa-"],
a.disabled [class*=" fa-"],
[class^="fa-"].disabled,
[class*=" fa-"].disabled,
a.disabled [class^="icon-"],
a.disabled [class*=" icon-"],
[class^="icon-"].disabled,
[class*=" icon-"].disabled {
    color: #DDDDDD !important;
}

.tags {
    width: 220px;
}

.barcodes .tag {
    width: 100%;
}

.quick-access-link {
    display:       block !important;
    min-height:    123px;
    width:         100% !important;
    white-space:   normal;
    padding-left:  1px !important;
    padding-right: 1px !important;
}

.quick-access-link-label {
    white-space: normal;
}

/** --------- NOTES --------- **/

.cl-notes {
    position: relative;
}

.action-buttons .badge {
    font-size:   9px;
    padding:     1px 3px;
    line-height: 9px;
    position:    relative;
    top:         -8px;
    right:       7px;
    margin-right: -7px;
}

/* Notes and Attachments button for workstations and new order */
#cl-global-notes {
    position: fixed;
    right:    0;
    top:      60px;
    z-index:  12;
}

#cl-global-notes .btn {
    width:          42px !important;
    text-align:     center;
    border-radius:  6px 0 0 6px !important;
    opacity:        .55;
    filter:         alpha(opacity=55.00000000000001);
    vertical-align: top;
    margin:         0;
}

#cl-global-notes .btn:hover {
    opacity: 1;
    filter:  alpha(opacity=100);
}

/** --------- /NOTES --------- **/

/** --------- DROPZONE IN NOTES POPUP --------- **/

/* Mimic table appearance */
div.table {
    display:    table;
    border-top: 1px solid #DDDDDD;
}

div.table .tr {
    display: table-row;
}

div.table .tr > .td {
    display:        table-cell;
    vertical-align: top;
    padding:        8px;
    border-bottom:  1px solid #DDDDDD;
}

div.table .tr:nth-child(odd) {
    background: #F9F9F9;
}

/* Mimic behavior of btn-block */
.div-block + .div-block  {
    margin-top: 5px;
}

/* Set dropzone trigger height */
.cl-dropzone,
#cl-notes-file-dropzone {
    min-height: 90px;
}

.cl-dropzone .dz-default.dz-message,
#cl-notes-file-dropzone .dz-default.dz-message {
    height:     auto;
    margin-top: -20px;
}

/* Preview container */
.cl-dropzone-preview-container .dz-thumbnail-container,
.cl-dropzone-preview-container .dz-upload-info-container,
#cl-note-files-preview-container .dz-thumbnail-container,
#cl-note-files-preview-container .dz-upload-info-container {
    width: 100px;
}

/* Hide thumbnails in dropzone where src is not set */
.cl-dropzone-preview-container img[data-dz-thumbnail]:not([src]),
.cl-dropzone-preview-container img[data-dz-thumbnail][src=""],
#cl-note-files-preview-container img[data-dz-thumbnail]:not([src]),
#cl-note-files-preview-container img[data-dz-thumbnail][src=""] {
    display: none;
}

.cl-dropzone-preview-container .dz-action-buttons,
#cl-note-files-preview-container .dz-action-buttons {
    width: 30px;
}

/* Fix preview container width with longer file names */
.cl-dropzone-preview-container .dz-details-container .name,
#cl-note-files-preview-container .dz-details-container .name {
    word-wrap:  break-word;
    word-break: break-all;
}

/* Image viewer for notes/attachments popup. Should be replaced? */
#cl-image-modal {
    text-align: center;
}

#cl-image-modal .modal-dialog {
    width:   auto;
    display: inline-block;
}

#cl-image-modal .modal-body {
    text-align: center;
}

/** --------- /DROPZONE IN NOTES POPUP --------- **/

/** --------- PrePCR ASSAY GROUPS --------- **/

.col-group-1 {
    background-color: #AA6F39;
}

.col-group-2 {
    background-color: #487787;
}

.col-group-3 {
    background-color: #D8836F;
}

.col-group-4 {
    background-color: #4F9971;
}

.col-group-1-robot-sector {
    background-color: #FFD3AA;
}

.col-group-2-robot-sector {
    background-color: #A4C0C9;
}

.col-group-3-robot-sector { background-color: #FFD8CF;
}

.col-group-4-robot-sector {
    background-color: #ADD5C0;
}

/** --------- /PrePCR ASSAY GROUPS --------- **/

/** --------- SSD Statistics --------- **/

.select-statistic {
    background-color: #F9F9F9;
    border:           1px solid silver;
    border-radius:    5px;
    font-size:        1.5em;
    margin:           10px auto;
    padding:          30px 10px;
    text-align:       center;
    width:            400px;
    cursor:           pointer;
}

.select-statistic:hover {
    font-weight:  bold;
    border-color: #2679B5;
}

/** --------- /SSD Statistics --------- **/

.rowlink {
    cursor: pointer;
    color: #4c8fbd;
}

.dropdown-menu-right {
    left:auto;
    right:0;
}

/** --------- SSD Classifications --------- **/

.remove-mapping {
    padding-right: 23px;
}

/** --------- /SSD Classifications --------- **/
.tableFixHead          { overflow-y: auto; height: 100px; }
.tableFixHead thead th { position: sticky; top: 0; }

.dashboardTableColAction {
    width: 180px;
}

.dashboardTableColLastConnection {
    width: 120px;
}

.dashboardTableColComtype {
    width: 50px;
}

#breadcrumb {
    height:50px;
    background-color: #f5f5f5;
}

#breadcrumb li a {
    color:#428bca;
}

#breadcrumb li a.active {
    color:#000000;
    font-weight: bolder;
    background-color: #e8e8e8;
}

/* Vue */

[v-cloak] {
    display: none;
}
