/* 
    Created on : 11.03.2014, 22:53:23
    Author     : lars
*/
/* 
    Created on : 12.03.2014, 11:37:08
    Author     : lars
*/
/* Vertical Page Span */
html,
body {
  height: 100%;
  min-height: 100%;
  position: relative;
}
html > .wrapper,
body > .wrapper {
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
}
html > .wrapper #blocker,
body > .wrapper #blocker,
html > .wrapper #main,
body > .wrapper #main,
html > .wrapper main,
body > .wrapper main {
  min-height: 100%;
  position: inherit;
  padding-bottom: 30px;
  margin-bottom: 48px;
  display: block;
  box-shadow: 0 0 215px -54px #3c4a95;
  box-shadow: none;
}
html > .wrapper #blocker:after,
body > .wrapper #blocker:after,
html > .wrapper #main:after,
body > .wrapper #main:after,
html > .wrapper main:after,
body > .wrapper main:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
html.affix,
body.affix {
  position: relative;
}
.modal {
  -webkit-transform-origin: 50% 200px;
  -moz-transform-origin: 50% 200px;
  -o-transform-origin: 50% 200px;
  -ms-transform-origin: 50% 200px;
  transform-origin: 50% 200px;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3;
  -moz-transition: opacity 0.3s, -moz-transform 0.3;
  -o-transition: opacity 0.3s, -o-transform 0.3;
  transition: opacity 0.3s,-webkit-transform 0.3,-moz-transform 0.3,-o-transform 0.3,transform 0.3;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.wrapper.container {
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0px 20px rgba(255, 255, 255, 0.43), 0 0 0px 2000px rgba(255, 255, 255, 0.3);
}
.wrapper.container #main {
  -webkit-transform-origin: 50% 200px;
  -moz-transform-origin: 50% 200px;
  -o-transform-origin: 50% 200px;
  -ms-transform-origin: 50% 200px;
  transform-origin: 50% 200px;
  /*.transition(all 0.3s);*/
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.loaded .modal {
  -webkit-transform-origin: 50% 200px;
  -moz-transform-origin: 50% 200px;
  -o-transform-origin: 50% 200px;
  -ms-transform-origin: 50% 200px;
  transform-origin: 50% 200px;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.loaded .wrapper.container #main {
  -webkit-transform-origin: 50% 200px;
  -moz-transform-origin: 50% 200px;
  -o-transform-origin: 50% 200px;
  -ms-transform-origin: 50% 200px;
  transform-origin: 50% 200px;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.loaded.switch .navbar-collapse {
  max-height: 0px;
}
.loaded.switch .modal {
  pointer-events: none;
}
@media (min-width: 767px) {
  .loaded.switch .modal {
    animation-name: dropout;
    animation-duration: 8s;
  }
}
.loaded.switch .wrapper.container #main {
  pointer-events: none;
}
@media (min-width: 767px) {
  .loaded.switch .wrapper.container #main {
    animation-name: dropout;
    animation-duration: 8s;
  }
}
.loaded.switch #throbber {
  display: block;
}
@keyframes dropout {
  5% {
    filter: blur(10px);
    -webkit-opacity: 0.6;
    -moz-opacity: 0.6;
    opacity: 0.6;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  99.9% {
    filter: blur(10px);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: scale(0.65);
    -moz-transform: scale(0.65);
    -o-transform: scale(0.65);
    -ms-transform: scale(0.65);
    transform: scale(0.65);
  }
  100% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@media screen {
  body {
    /*background-image: url("../images/main-background-labhub-4.jpg");*/
    background-position: 20% 50%;
    background-attachment: fixed;
    background-size: cover;
    /*position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;*/
  }
}
#blocker,
#main,
main {
  padding-top: 50px;
  /*background-color: @bright-light-translucent;*/
  /*background-color: rgba(255, 255, 255, 0.4);*/
}
@media (max-width: 767px) {
  #blocker,
  #main,
  main {
    /*border: 15px solid @bright-light-translucent;*/
    padding: 5px;
    padding-top: 45px;
  }
  body.i-am-an-iframe #blocker,
  body.i-am-an-iframe #main,
  body.i-am-an-iframe main {
    padding: 15px 0px;
  }
}
@media (max-width: 767px) {
  body {
    margin: 0px 10px;
    font-size: 8pt;
  }
  .navbar.top .navbar-brand {
    padding-left: 10px;
  }
}
.container.row > div {
  margin: 15px auto;
}
.container.row.index {
  min-height: 60px;
}
.floating {
  /*.box-shadow(-35px 0px 40px -15px rgba(0, 0, 0, 0.1),35px 0px 40px -15px rgba(0, 0, 0, 0.1));*/
  /*background-color: @bright-moderate-translucent;*/
  /*box-shadow: -16px 0px 14px -13px rgba(0, 0, 0, 0.4);*/
}
.floating > .row {
  margin: 0px;
}
.modal-dialog {
  padding-top: 70px;
}
.modal-content {
  border-radius: 0px;
}
#manifest_refresh {
  width: 0px;
  height: 0px;
  position: absolute;
  left: -999999px;
}
.datatable.floating {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: -16px 0px 14px -13px rgba(0, 0, 0, 0.4);
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
  width: 100%;
}
.datatable.floating .nav-tile {
  margin-top: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
}
body #block-col1-row1-col {
  -webkit-transition: 0.25s 0s opacity;
  -moz-transition: 0.25s 0s opacity;
  -o-transition: 0.25s 0s opacity;
  transition: 0.25s 0s opacity;
}
body #block-col2-row1-col {
  -webkit-transition: 0.25s 0.1s opacity;
  -moz-transition: 0.25s 0.1s opacity;
  -o-transition: 0.25s 0.1s opacity;
  transition: 0.25s 0.1s opacity;
}
body.loading #block-col1-row1-col,
body.loading #block-col2-row1-col {
  opacity: 0;
}
body.loaded #block-col1-row1-col,
body.loaded #block-col2-row1-col {
  opacity: 1;
}
.require-online.state-online,
[data-require="online"].state-online {
  display: inherit;
}
.require-online.state-offline,
[data-require="online"].state-offline {
  display: none;
}
.require-online.state-init-invisible,
[data-require="online"].state-init-invisible {
  display: none;
}
.require-offline,
[data-require="offline"] {
  display: none !important;
}
.require-offline.state-online,
[data-require="offline"].state-online {
  display: none;
}
.require-offline.state-offline,
[data-require="offline"].state-offline {
  display: inherit !important;
}
.require-offline.state-init-invisible,
[data-require="offline"].state-init-invisible {
  display: none;
}
.inline {
  display: inline-block;
  padding-left: 13px;
}
comment {
  display: block;
  /*background-color: rgb(255, 255, 0);*/
  padding: 5px;
}
comment .hidden {
  display: none;
}
comment .visible {
  display: initial;
}
comment data {
  width: auto;
  min-height: 100px;
  height: auto;
  /*position: absolute;*/
  display: block;
}
comment data textarea {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
}
comment data label {
  display: block;
}
comment data label .close-trigger {
  float: right;
}
.slider-val {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
smiley {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
  display: inline-block;
  border-radius: 100% !important;
  border: 1px solid gray;
  /*background-color: rgb(255, 255, 0);*/
  font-weight: normal;
  padding: 4% 10% 10% 10%;
  line-height: 100%;
  font-size: 150%;
}
smiley.left {
  -webkit-transform: rotateZ(-90deg);
  -moz-transform: rotateZ(-90deg);
  -o-transform: rotateZ(-90deg);
  -ms-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
}
smiley eyes {
  font-weight: normal;
}
smiley nose {
  color: gray;
}
smiley mouth {
  font-weight: bold;
}
rating {
  font-size: 290%;
  font-weight: normal;
  line-height: 70%;
}
.submit-button {
  border: 0px solid transparent;
}
button {
  min-height: 34px;
}
.btn {
  min-width: 39px;
  /*min-height: 34px;*/
}
.form-group label[link_class] .btn {
  /*min-height: 30px;*/
  /*padding: 3px 12px;*/
  margin-top: -7px;
}
.btn-xs {
  min-height: auto;
}
.btn-primary {
  background-color: #3c4a95;
  border-color: rgba(60, 74, 149, 0.9);
}
.btn-primary:hover {
  background-color: rgba(60, 74, 149, 0.5);
  border-color: rgba(60, 74, 149, 0.9);
}
.base-title {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  font-family: 'FrutigerLTW01-45Light', 'Istok Web', Arial, Helvetica, sans-serif;
  font-size: 190%;
  font-weight: lighter;
  color: rgba(255, 255, 255, 0.7);
  color: #3c4a95;
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
  letter-spacing: -2px;
}
.base-title [class^="flaticon-"]:before,
.base-title [class*=" flaticon-"]:before,
.base-title [class^="flaticon-"]:after,
.base-title [class*=" flaticon-"]:after {
  font-size: 20pt;
}
.base-title svg.icon {
  max-height: 40px;
  margin-top: 0px;
  margin-bottom: -10px;
  max-width: 50px;
}
header .base-title svg.icon {
  max-height: 26px;
  margin-top: 4px;
  margin-bottom: -4px;
  margin-left: -20px;
}
.extend-title {
  -webkit-transition: all 1s 0.3s;
  -moz-transition: all 1s 0.3s;
  -o-transition: all 1s 0.3s;
  transition: all 1s 0.3s;
  font-family: 'FrutigerLTW01-45Light', 'Istok Web', Arial, Helvetica, sans-serif;
  font-size: 140%;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: rgba(0, 0, 0, 0.66);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.loading .base-title,
.loading .extend-title {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.loaded .base-title,
.loaded .extend-title {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.loaded .extend-title {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}
.loaded .base-title {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}
.container.row.index {
  -webkit-box-shadow: inset 0px -20px 10px -20px rgba(0, 0, 0, 0.1), inset 0px 20px 10px -20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0px -20px 10px -20px rgba(0, 0, 0, 0.1), inset 0px 20px 10px -20px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px -20px 10px -20px rgba(0, 0, 0, 0.1), inset 0px 20px 10px -20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0px -20px 10px -20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0px -20px 10px -20px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px -20px 10px -20px rgba(0, 0, 0, 0.1);
  /*.box-shadow(inset 0px -2px 0px 0px @bright-light-translucent);*/
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0px -20px 10px -15px rgba(0, 0, 0, 0.1);
}
.container.row.index .nav.nav-pills {
  margin-top: -4px;
}
.panel-body {
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.loaded .panel-body {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.panel {
  box-shadow: none;
}
.panel-body .panel {
  overflow: auto;
  clear: both;
}
.translation-state ul {
  list-style: none;
  padding-left: 0;
}
.vertical-overflow {
  overflow-y: auto;
}
.vertical-overflow.small {
  max-height: 100px;
}
.vertical-overflow.medium {
  max-height: 250px;
}
.vertical-overflow.large {
  max-height: 50px;
}
.index .nav > li a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.press-n-pull.wrapper {
  opacity: 0.7;
}
.press-n-pull.circle {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 0px solid transparent;
  display: inline-block;
  -webkit-border-radius: 1145px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 1145px;
  -moz-background-clip: padding;
  border-radius: 1145px;
  background-clip: padding-box;
  padding: 0px;
  margin: 0px;
  background-color: #ffffff;
}
.press-n-pull.circle.activated,
.press-n-pull.circle.activated .press-n-pull.circle {
  border: 0px solid black;
  display: inline-block;
  -webkit-border-radius: 1145px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 1145px;
  -moz-background-clip: padding;
  border-radius: 1145px;
  background-clip: padding-box;
  padding: 20px;
  margin: -20px;
  background-color: #ffffff;
}
.press-n-pull.circle.outer-circle.activated {
  margin: -40px;
}
.press-n-pull.circle.outer-circle.activated .inner-circle {
  margin: 0px;
}
.press-n-pull.circle.outer-circle.activated .outer-circle {
  border: 0px solid black;
}
.press-n-pull.circle.outer-circle.activated.trigger-zone {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
#translation-editor .attention-catcher {
  display: none;
}
#translation-editor tr.has_changes {
  border-left: 5px solid #ffd600;
}
#translation-editor tr.has_changes .attention-catcher {
  display: inline-block;
}
.vis.timeline.root {
  border: 0px solid transparent;
}
#visualization .item.box .content .language,
#visualization .item.box .content .meta,
#visualization .item.box .content .action {
  display: none;
}
#visualization.closeup .item.box .content .text,
#visualization.closeup .item.box .content .meta {
  display: inherit;
}
#revisions .master-language {
  border-bottom: 1px solid rgba(0, 0, 0, 0.66);
}
#revisions .item-element {
  cursor: pointer;
}
.indevelopment-container {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  position: fixed;
  text-align: center;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 10000;
  margin: auto;
  overflow: hidden;
  max-height: 20px;
  min-width: 340px;
}
.indevelopment-container:hover {
  max-height: 300px;
  cursor: default;
}
.indevelopment-container:hover .indevelopment-message {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #FFF;
  padding-top: 20px;
  padding-bottom: 20px;
}
.indevelopment-container .indevelopment-message {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 0%;
  display: inline-block;
  min-width: 340px;
  background-color: #F00;
}
.form-scroller .form-viewport {
  overflow: auto;
  margin-bottom: 17px;
}
.form-scroller .controls {
  position: absolute;
  width: 100%;
  padding-right: 60px;
}
.form-scroller .controls.inactive {
  display: none;
}
.form-scroller .controls .control-button {
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0.3;
  cursor: default;
}
.form-scroller .controls .control-button.next-form {
  float: right;
}
.form-scroller .controls .control-button.active {
  opacity: 1;
  cursor: pointer;
}
.form-scroller .form-horizontal > fieldset > legend {
  text-align: center;
  font-size: 170%;
  font-weight: bold;
  border-bottom: 0px solid #e5e5e5;
}
.form-scroller .form-frame {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  float: left;
  display: inline-block;
  /*opacity: 0;*/
}
.form-scroller .form-frame legend[data-toggle="collapse"]:after {
  display: none !important;
}
.form-scroller .form-frame > div {
  overflow: hidden;
}
.form-scroller .form-frame.active {
  /*opacity: 1;*/
}
.form-scroller .form-frame.active legend[data-toggle="collapse"]:after {
  display: block !important;
}
.form-scroller .form-frame.active > div {
  /*overflow: auto;*/
}
.form-scroller .form-frame .input-group {
  /*
            .input-group-addon.propagator.clickable:hover{
                background-color: #d8efd7;
            }
            */
}
.form-scroller .form-frame .input-group .form-group ~ .input-group-addon {
  border-left: 1px solid #ccc;
}
.form-scroller .form-frame .form-horizontal {
  margin-left: 0px;
}
.form-scroller .form-frame .form-horizontal .propagator:hover {
  background-color: rgba(92, 184, 92, 0.2);
}
.form-scroller .form-frame .form-horizontal .propagator.propagated {
  background-color: #5cb85c;
  color: #ffffff;
}
.form-scroller .form-frame .form-horizontal .propagator.propagated:hover {
  background-color: rgba(92, 184, 92, 0.8);
}
.form-scroller .form-frame .form-horizontal .propagator.halfpropagated {
  color: #000000;
  /*box-shadow: inset 20px 0px 0px #eee;*/
  background-color: #5cb85c;
  background-image: repeating-linear-gradient(38deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 23px, #eee 25px, rgba(255, 255, 255, 0.5) 3000px);
  /*                background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAKElEQVQIW2NkgID/DAwMjEg0KgdZEUgVDMB0gfko2rHpwGoHkmkIJgAarAkHaf+9NwAAAABJRU5ErkJggg==);
                                background-repeat: repeat;
                */
}
.form-scroller .form-frame .form-horizontal .propagate-all {
  float: right;
  margin-top: -20px;
  margin-bottom: 20px;
}
.form-scroller .form-frame .form-group[data-is-propagatable] {
  margin-right: 0px;
}
.form-scroller .form-frame .form-group[data-is-propagatable] .input-element-set {
  margin-right: -15px;
  margin-left: 25px;
}
.quicksearch-box {
  float: right;
}
.quicksearch-box .quicksearch-input {
  padding: 3px;
}
.quicksearch-results-box {
  display: block;
  max-height: 0px;
  min-height: 0px;
  overflow: hidden;
  right: 0;
  padding: 0px 10px;
  /*margin-right: -30px;*/
  /*margin-left: 15px;*/
  background-color: #fafafa;
  z-index: 2;
  box-shadow: inset 0px -10px 3px -10px black, inset 0px 10px 3px -10px black;
  transition: 0.2s max-height, 0.2s min-height;
}
.quicksearch-results-box .quicksearch-previews {
  float: left;
  padding: 10px;
  max-width: 50%;
}
.quicksearch-results-box .quicksearch-previews .preview {
  display: none;
}
.quicksearch-results-box .quicksearch-previews .preview.active {
  display: block;
}
.quicksearch-results-box .quicksearch-previews .label {
  font-weight: initial;
  color: initial;
}
.quicksearch-results-box .quicksearch-results {
  padding-inline-start: 0px;
  list-style-type: none;
  margin: 0px;
  padding: 10px 0px;
  min-width: 150px;
  max-width: 50%;
  float: left;
}
.quicksearch-results-box .quicksearch-results .result {
  padding: 2px 5px;
  /*&:first-child{margin-top: 10px;}
            &:last-child{margin-bottom: 10px;}*/
}
.quicksearch-results-box .quicksearch-results .result.active {
  background-color: rgba(0, 0, 0, 0.15);
  background-clip: padding-box;
  cursor: pointer;
}
.quicksearch-results-box .quicksearch-results .caption {
  font-size: 80%;
}
.attachments-box {
  /*padding: 7px;*/
  padding: 7px 15px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
  /*    .element-box {
            td {
                color: grey;
                input[type=checkbox]{
                    display: none;
                }
            }
        }
        tr.selectable {
            td{
                input[type=checkbox]{
                    display: inline-block;
                }
            }
        }*/
}
.attachments-box .file-attachment-list tr td,
.attachments-box .file-attachment-list tr th {
  padding-top: 7px;
  padding-bottom: 7px;
}
.attachments-box .file-attachment-list tr.selectable:hover {
  background-color: rgba(0, 0, 0, 0.15);
}
.attachments-box .file-attachment-list ul {
  list-style: none;
  padding-left: 10px;
}
.attachments-box .file-attachment-list ul li {
  padding: 0px 0px 0px 4px;
  /*
                .filename{
                    min-width: 40%;
                    max-width: 40%;
                }
                .connection{
                    min-width: 30%;
                    max-width: 30%;
                }
                */
}
.attachments-box .file-attachment-list ul li .connection,
.attachments-box .file-attachment-list ul li .filename {
  display: inline-block;
  max-width: 66%;
  min-width: 66%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.attachments-box .file-attachment-list ul li .controls {
  display: inline-block;
  max-width: 33%;
  min-width: 33%;
  text-align: right;
  vertical-align: middle;
  min-height: 34px;
}
.attachments-box .file-attachment-list [data-element]:hover {
  background-color: rgba(60, 74, 149, 0.05);
  /*background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAIElEQVQYV2NkQAL/////zwjjgzkgABKAcUBsRmQOSAAAIAYQASyLe4sAAAAASUVORK5CYII=");*/
}
.attachments-box .file-attachment-list .selectable[data-element]:hover {
  background-color: rgba(60, 74, 149, 0.15);
}
.attachments-box .file-attachment-list [data-element][data-current] .filename {
  font-style: italic;
}
.attachments-box .file-attachment-list .state {
  display: none;
}
.attachments-box .file-attachment-list .is-deleted .filename {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  text-decoration: line-through;
  color: red;
}
.attachments-box .file-attachment-list .is-deleted .filename > .name {
  font-weight: bold;
  text-decoration: line-through;
}
.attachments-box .file-attachment-list .is-deleted .state-deleted {
  display: initial;
}
.styled-vnumber {
  padding: 5px 0px;
}
.styled-vnumber .styled-vnumber-escape {
  border: 1px solid black;
  border-right-width: 0;
  padding: 2px;
}
.styled-vnumber .styled-vnumber-number {
  border: 1px solid black;
  border-right-width: 0;
  border-left-width: 0;
  padding: 2px;
}
.styled-vnumber .styled-vnumber-region {
  border: 1px solid black;
  border-left-width: 0;
  padding: 2px;
}
list {
  white-space: pre-wrap;
}
.modal-backdrop.in ~ .modal-backdrop.in {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.modal.fade.in ~ .modal.fade.in .modal-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.measurable {
  display: block !important;
  visibility: hidden !important;
  position: absolute;
  top: 20000px;
}
.dev-info.dev-info-span {
  text-decoration: underline dashed red;
  font-size: 80%;
}
.browserupdate {
  -webkit-animation: slow-show 3s linear forwards 1;
  -moz-animation: slow-show 3s linear forwards 1;
  -o-animation: slow-show 3s linear forwards 1;
  animation: slow-show 3s linear forwards 1;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  max-height: 0px;
  border: 5px solid gray;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 2px 4px;
}
.browserupdate.alert-user {
  border-color: red;
  background-color: rgba(255, 0, 0, 0.1);
}
.browserupdate .browserupdate-msg {
  font-weight: bold;
}
.content-inline-txt {
  word-break: normal;
  word-wrap: break-word;
  white-space: pre-line;
  border-radius: 0px;
}
.content-inline-box-txt {
  word-break: normal;
  word-wrap: break-word;
  white-space: pre-line;
  border-radius: 0px;
  max-height: 400px;
  overflow: auto;
}
.content-inline-box-html {
  margin: 0 0 10px;
  padding: 9.5px;
  border: 1px solid #ccc;
  max-height: 400px;
  overflow: auto;
}
@keyframes slow-show {
  0% {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  99.9999% {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  100% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    max-height: none;
  }
}
#throbber {
  /*
    display: none;
    position: absolute;
    z-index: 100000;
    top: 40%;
    left: 45%;
    */
  display: none;
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 15%;
  /*
    width: 90px;
    height: 90px;
    margin-left: -45px;
    margin-top: -45px;
    box-shadow: 0 0 0px 11px @corporate-opaque;
    border-radius: 1000px;
    */
  /*background-color: @bright-opaque;*/
  /*
    .wBall {
        position: absolute;
        width: 90px;
        height: 90px;
        opacity: 0;
        -moz-transform: rotate(225deg);
        -moz-animation: orbit 4.4s infinite;
        -webkit-transform: rotate(225deg);
        -webkit-animation: orbit 4.4s infinite;
        -ms-transform: rotate(225deg);
        -ms-animation: orbit 4.4s infinite;
        -o-transform: rotate(225deg);
        -o-animation: orbit 4.4s infinite;
        transform: rotate(225deg);
        animation: orbit 4.4s infinite;
    }

    .wBall .wInnerBall{
        position: absolute;
        width: 11px;
        height: 11px;
        background: @bright-opaque;
        left:3px;
        top:5px;
        -moz-border-radius: 11px;
        -webkit-border-radius: 11px;
        -ms-border-radius: 11px;
        -o-border-radius: 11px;
        border-radius: 11px;
    }

    #wBall_1 {
        -moz-animation-delay: 0.96s;
        -webkit-animation-delay: 0.96s;
        -ms-animation-delay: 0.96s;
        -o-animation-delay: 0.96s;
        animation-delay: 0.96s;
    }

    #wBall_2 {
        -moz-animation-delay: 0.19s;
        -webkit-animation-delay: 0.19s;
        -ms-animation-delay: 0.19s;
        -o-animation-delay: 0.19s;
        animation-delay: 0.19s;
    }

    #wBall_3 {
        -moz-animation-delay: 0.38s;
        -webkit-animation-delay: 0.38s;
        -ms-animation-delay: 0.38s;
        -o-animation-delay: 0.38s;
        animation-delay: 0.38s;
    }

    #wBall_4 {
        -moz-animation-delay: 0.58s;
        -webkit-animation-delay: 0.58s;
        -ms-animation-delay: 0.58s;
        -o-animation-delay: 0.58s;
        animation-delay: 0.58s;
    }

    #wBall_5 {
        -moz-animation-delay: 0.77s;
        -webkit-animation-delay: 0.77s;
        -ms-animation-delay: 0.77s;
        -o-animation-delay: 0.77s;
        animation-delay: 0.77s;
    }
    */
}
@media (max-width: 767px) {
  #throbber {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
/*
@-moz-keyframes orbit {
    0% {
        opacity: 1;
        z-index:99;
        -moz-transform: rotate(180deg);
        -moz-animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        -moz-transform: rotate(300deg);
        -moz-animation-timing-function: linear;
        -moz-origin:0%;
    }

    30% {
        opacity: 1;
        -moz-transform:rotate(410deg);
        -moz-animation-timing-function: ease-in-out;
        -moz-origin:7%;
    }

    39% {
        opacity: 1;
        -moz-transform: rotate(645deg);
        -moz-animation-timing-function: linear;
        -moz-origin:30%;
    }

    70% {
        opacity: 1;
        -moz-transform: rotate(770deg);
        -moz-animation-timing-function: ease-out;
        -moz-origin:39%;
    }

    75% {
        opacity: 1;
        -moz-transform: rotate(900deg);
        -moz-animation-timing-function: ease-out;
        -moz-origin:70%;
    }

    76% {
        opacity: 0;
        -moz-transform:rotate(900deg);
    }

    100% {
        opacity: 0;
        -moz-transform: rotate(900deg);
    }

}

@-webkit-keyframes orbit {
    0% {
        opacity: 1;
        z-index:99;
        -webkit-transform: rotate(180deg);
        -webkit-animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        -webkit-transform: rotate(300deg);
        -webkit-animation-timing-function: linear;
        -webkit-origin:0%;
    }

    30% {
        opacity: 1;
        -webkit-transform:rotate(410deg);
        -webkit-animation-timing-function: ease-in-out;
        -webkit-origin:7%;
    }

    39% {
        opacity: 1;
        -webkit-transform: rotate(645deg);
        -webkit-animation-timing-function: linear;
        -webkit-origin:30%;
    }

    70% {
        opacity: 1;
        -webkit-transform: rotate(770deg);
        -webkit-animation-timing-function: ease-out;
        -webkit-origin:39%;
    }

    75% {
        opacity: 1;
        -webkit-transform: rotate(900deg);
        -webkit-animation-timing-function: ease-out;
        -webkit-origin:70%;
    }

    76% {
        opacity: 0;
        -webkit-transform:rotate(900deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: rotate(900deg);
    }

}

@-ms-keyframes orbit {
    0% {
        opacity: 1;
        z-index:99;
        -ms-transform: rotate(180deg);
        -ms-animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        -ms-transform: rotate(300deg);
        -ms-animation-timing-function: linear;
        -ms-origin:0%;
    }

    30% {
        opacity: 1;
        -ms-transform:rotate(410deg);
        -ms-animation-timing-function: ease-in-out;
        -ms-origin:7%;
    }

    39% {
        opacity: 1;
        -ms-transform: rotate(645deg);
        -ms-animation-timing-function: linear;
        -ms-origin:30%;
    }

    70% {
        opacity: 1;
        -ms-transform: rotate(770deg);
        -ms-animation-timing-function: ease-out;
        -ms-origin:39%;
    }

    75% {
        opacity: 1;
        -ms-transform: rotate(900deg);
        -ms-animation-timing-function: ease-out;
        -ms-origin:70%;
    }

    76% {
        opacity: 0;
        -ms-transform:rotate(900deg);
    }

    100% {
        opacity: 0;
        -ms-transform: rotate(900deg);
    }

}

@-o-keyframes orbit {
    0% {
        opacity: 1;
        z-index:99;
        -o-transform: rotate(180deg);
        -o-animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        -o-transform: rotate(300deg);
        -o-animation-timing-function: linear;
        -o-origin:0%;
    }

    30% {
        opacity: 1;
        -o-transform:rotate(410deg);
        -o-animation-timing-function: ease-in-out;
        -o-origin:7%;
    }

    39% {
        opacity: 1;
        -o-transform: rotate(645deg);
        -o-animation-timing-function: linear;
        -o-origin:30%;
    }

    70% {
        opacity: 1;
        -o-transform: rotate(770deg);
        -o-animation-timing-function: ease-out;
        -o-origin:39%;
    }

    75% {
        opacity: 1;
        -o-transform: rotate(900deg);
        -o-animation-timing-function: ease-out;
        -o-origin:70%;
    }

    76% {
        opacity: 0;
        -o-transform:rotate(900deg);
    }

    100% {
        opacity: 0;
        -o-transform: rotate(900deg);
    }

}

@keyframes orbit {
    0% {
        opacity: 1;
        z-index:99;
        transform: rotate(180deg);
        animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        transform: rotate(300deg);
        animation-timing-function: linear;
        origin:0%;
    }

    30% {
        opacity: 1;
        transform:rotate(410deg);
        animation-timing-function: ease-in-out;
        origin:7%;
    }

    39% {
        opacity: 1;
        transform: rotate(645deg);
        animation-timing-function: linear;
        origin:30%;
    }

    70% {
        opacity: 1;
        transform: rotate(770deg);
        animation-timing-function: ease-out;
        origin:39%;
    }

    75% {
        opacity: 1;
        transform: rotate(900deg);
        animation-timing-function: ease-out;
        origin:70%;
    }

    76% {
        opacity: 0;
        transform:rotate(900deg);
    }

    100% {
        opacity: 0;
        transform: rotate(900deg);
    }

}
*/
html ::-webkit-scrollbar {
  width: 15px;
}
html ::-webkit-scrollbar-track {
  /*background: rgb(245,245,245);*/
  background: #ffffff;
}
html ::-webkit-scrollbar-thumb {
  background: #dcdcdc;
}
html ::-webkit-scrollbar-thumb:hover {
  background: #bebebe;
}
.dragdropframe {
  padding-left: 0px;
  padding-right: 0px;
}
.dragdropframe ::-webkit-scrollbar {
  width: 12px;
}
.dragdropframe ::-webkit-scrollbar-track {
  /*background: rgb(245,245,245);*/
  background: #ffffff;
}
.dragdropframe ::-webkit-scrollbar-thumb {
  background: #dcdcdc;
}
.dragdropframe ::-webkit-scrollbar-thumb:hover {
  background: #bebebe;
}
.dragdropframe .dragdropcontainer {
  max-height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-left: 5px;
  padding-right: 5px;
}
.dragdropframe .dragdropcontainer > div:last-child {
  margin-bottom: 90px;
}
.dragdropframe .dragdropcontainer.users-container {
  direction: rtl;
}
.dragdropframe .dragdropcontainer.users-container > * {
  direction: ltr;
}
.dragdropframe .ui-draggable-dragging {
  z-index: 100;
  position: absolute;
}
.dragdropframe [data-droppable="true"] .close {
  min-width: 25px;
  text-align: right;
}
.dragdropframe [data-droppable="true"] .close.count {
  color: #1ab300;
}
.dragdropframe [data-droppable="true"].notarget {
  overflow: hidden;
  max-height: 0px;
}
.dragdropframe [draggable="true"] {
  cursor: move;
  transition: background-color 0.2s, padding 0.05s;
  background-color: rgba(255, 255, 255, 0);
  color: #505050;
  border: 1px solid transparent;
  -webkit-user-drag: element;
  -webkit-user-select: none;
  overflow-x: hidden;
  white-space: nowrap;
}
.dragdropframe [draggable="true"].inprocess {
  opacity: 0.5;
}
.dragdropframe [draggable="true"]:hover {
  /*background-color: rgba(215,215,215,0.4);
        text-decoration: underline;*/
  color: #000000;
}
.dragdropframe [data-id] {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                      supported by Chrome and Opera */
  border: 1px solid #c8c8c8;
  padding: 2px 2px;
  margin: 5px 2px;
  line-height: 150%;
  background-color: rgba(255, 255, 255, 0.5);
}
.dragdropframe [data-id] .icon {
  max-width: 20px;
  max-height: 14px;
}
.dragdropframe [data-id].sledup {
  max-height: 0px !important;
  overflow: hidden;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  border-top: 3px solid transparent !important;
  pointer-events: none;
  min-height: 0px;
  display: block;
}
.dragdropframe [data-id].sledup:hover {
  /*max-height: none !important;*/
  /*overflow: visible;*/
}
.dragdropframe [data-id] .assigned-count {
  min-width: 20px;
  text-align: right;
  padding-right: 5px;
  color: rgba(0, 0, 0, 0.4);
}
.dragdropframe [data-id] .assigned-count:hover {
  cursor: default;
  color: #000000;
  background-color: rgba(0, 0, 0, 0.2);
}
.dragdropframe [data-droppable="true"].droppable-highlight {
  background-color: rgba(200, 200, 200, 0.4);
  border-color: #14c800;
}
.dragdropframe [data-id][data-droppable="true"].droppable-over {
  border: 1px solid black;
  /*margin: 5px auto;*/
  padding-bottom: 30px;
}
.dragdropframe [data-id][data-droppable="true"] > [data-id][draggable="true"] {
  border: 1px solid #dcdcdc;
  background-color: rgba(240, 240, 240, 0.4);
  padding: 2px 2px;
  margin: 2px 2px;
}
.dragdropframe [data-droppable="true"][data-type="trash"] {
  max-height: 0px;
  min-height: 0px;
  overflow: hidden;
  position: absolute;
  z-index: 100;
  top: -70px;
  text-align: center;
  vertical-align: middle;
  transition: opacity 0.5s, background-color 0.2s, box-shadow 0.1s;
}
.dragdropframe [data-droppable="true"][data-type="trash"] > div {
  opacity: 0;
  margin: 20px 0px;
}
.dragdropframe [data-droppable="true"][data-type="trash"] > div .icon {
  max-height: 30px;
  max-width: 30px;
  vertical-align: middle;
}
.dragdropframe [data-droppable="true"][data-type="trash"].droppable-highlight {
  max-height: none;
  overflow: auto;
  /*background-color: rgba(200,0,0,0.5);*/
  background-color: #ffffff;
  box-shadow: inset 0px 0px 0px 5px red;
}
.dragdropframe [data-droppable="true"][data-type="trash"].droppable-highlight.droppable-over {
  box-shadow: inset 0px 0px 0px 8px red;
  background-color: #ffebeb;
}
.dragdropframe [data-droppable="true"][data-type="trash"].droppable-highlight > div {
  transition: opacity 0.5s, background-color 1s, box-shadow 2s;
  opacity: 1;
}
.dragdropframe .search-mode > [data-id] {
  overflow: hidden;
  max-height: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  border-width: 0px;
}
.dragdropframe .search-mode > .found[data-id] {
  overflow: auto;
  max-height: none;
  margin-top: 5px;
  margin-bottom: 0px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-width: 1px;
}
.dragdropframe .input-group {
  padding: 0px 0;
}
.dragdropframe .input-group .input-group-btn {
  opacity: 0.1;
}
.dragdropframe .input-group.addanother .input-group-btn {
  opacity: 1;
}
.dragdropframe .ui-draggable-dragging {
  border-color: transparent;
}
.dragdropframe .ui-draggable-dragging .assigned-count {
  display: none;
}
.dragdropframe [data-id].highlight {
  border-color: #000000;
}
.dragdropframe .highlight.dragdropcontainer.experiment-formular-container {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.dragdropframe .highlight.dragdropcontainer.experiment-formular-container [data-id][data-type="experiment_formular"] {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  border-width: 0px;
  max-height: 0px;
  overflow: hidden;
}
.dragdropframe .highlight.dragdropcontainer.experiment-formular-container [data-id][data-type="experiment_formular"].highlight {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-width: 1px;
  max-height: none;
}
.scrollbar-right {
  direction: ltr;
}
.scrollbar-right > * {
  direction: ltr;
}
.scrollbar-left {
  direction: rtl;
}
.scrollbar-left > * {
  direction: ltr;
}
