/* imports */
/* colors */
/* typography */
/* font sizes */
/* line heights */
/* z-index */
/* resets */
*,
*:focus {
  outline: none;
}
input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
/* typography */
body {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5em;
  color: #333333;
}
#footer {
  color: #b9b9b9;
}
a,
a:active,
a:focus {
  color: #e6007e;
  text-decoration: none;
  -webkit-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  -ms-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
a:hover,
a:active:hover,
a:focus:hover {
  color: #800046;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  margin-bottom: 20px;
}
h1 {
  font-size: 26px;
  line-height: 1.2em;
  font-weight: bold;
}
h2 {
  font-size: 20px;
  line-height: 1.2em;
  font-weight: bold;
}
h3,
h4,
h5 {
  font-size: 16px;
  line-height: 1.2em;
}
p {
  margin: 0;
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
i.cyan {
  color: #00eef8;
}
.cyan {
  color: #00eef8;
}
/* structure */
body {
  background-color: #252324;
}
#wrapper {
  background-color: #d6d2d3;
}
#header {
  height: 180px;
  background: url(../images/background_header.png) #ffffff right 40px no-repeat;
  position: relative;
}
#header .logo {
  width: 360px;
  margin-left: 40px;
  position: absolute;
  bottom: -139px;
}
#header .logo img {
  width: 100%;
  height: auto;
}
#header .subtitle {
  width: 230px;
  padding-right: 80px;
  position: absolute;
  bottom: 36px;
  right: 0;
}
#header .subtitle p {
  margin: 0;
}
#main {
  overflow: hidden;
}
#content {
  background-color: #ece6e6;
  margin-right: -15px;
  min-height: 600px;
}
#content div.inner {
  padding: 40px;
  font-size: 13px;
}
#side {
  background-color: #d6d2d3;
  margin-left: -15px;
}
#footer {
  height: 70px;
  padding-top: 10px;
  font-size: 13px;
  overflow: hidden;
}
.mobileFallback {
  display: none;
}
/* navigation */
#mainNavigation .navbar {
  border: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin: 0;
}
#mainNavigation .navbar-nav > li {
  float: none;
}
#mainNavigation .navbar-nav > li.first > a {
  border-top: 0;
}
#mainNavigation .navbar-nav > li.active > a {
  background-color: #e6007e;
  color: #ffffff;
  border-color: #ff1a97;
}
#mainNavigation .navbar-nav > li.last > a {
  border-bottom: 1px solid #323232;
}
#mainNavigation .navbar-nav > li > a {
  background-color: #000000;
  color: #b9b9b9;
  border-top: 1px solid #323232;
  text-transform: uppercase;
  padding: 0.65em 30px 0.65em 30px;
  font-size: 15px;
  line-height: 1.33em;
  -webkit-transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  -moz-transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  -ms-transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  -o-transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}
#mainNavigation .navbar-nav > li > a:hover {
  background-color: #e6007e;
  color: #ffffff;
  border-color: #ff1a97;
}
#mainNavigation .navbar-collapse {
  max-height: none;
  padding: 0;
  border: 0;
}
#mainNavigation ul,
#mainNavigation li {
  width: 100%;
}
#metaNavigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#metaNavigation ul li {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin-left: 10px;
}
#metaNavigation ul li a,
#metaNavigation ul li a:hover {
  color: #b9b9b9;
}
/* side infobox */
#side .infobox {
  background-color: #000000;
  padding: 34px 30px;
}
#side .infobox h2 {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#side .infobox p {
  color: #b9b9b9;
}
#side .infobox #loginForm {
  width: 100%;
  margin-bottom: 20px;
}
/* startpage */
#startpageCarousel {
  width: 100%;
}
#startpageCarousel .carousel-inner,
#startpageCarousel .item {
  width: 100%;
  height: 100%;
}
/* single login page */
#loginForm {
  width: 33%;
  margin-bottom: 20px;
}
/* forgot password page */
#forgotPasswordForm {
  width: 33%;
  margin-bottom: 20px;
}
/* password page */
#passwordForm {
  width: 33%;
  margin-bottom: 20px;
}
/* forms */
input:-webkit-autofill {
  background-color: #ffffff !important;
}
input[type=text],
input[type=email],
input[type=password],
textarea {
  background-color: #ffffff;
  border: 1px solid #ece6e6;
  padding: 10px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  line-height: 14px;
  resize: none;
}
.btn.flat {
  background-color: #e6007e;
  color: #ffffff;
  padding: 10px;
  border: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: background-color 0.5s ease, color 0.5s ease;
  -moz-transition: background-color 0.5s ease, color 0.5s ease;
  -ms-transition: background-color 0.5s ease, color 0.5s ease;
  -o-transition: background-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, color 0.5s ease;
  text-transform: uppercase;
  line-height: 16px;
}
.btn.flat:hover {
  background-color: #800046;
  color: #ffffff;
}
.btn.flat.full {
  width: 100%;
  text-align: center;
}
.btn.flat.small {
  padding: 4px 10px;
}
.btn.flat.info {
  background-color: #00eef8;
  cursor: default;
  text-transform: none;
}
.btn.back {
  margin-right: 10px;
}
.form-control::-webkit-input-placeholder {
  color: #b9b9b9;
  text-transform: uppercase;
}
.form-control:-moz-placeholder {
  color: #b9b9b9;
  text-transform: uppercase;
}
.form-control::-moz-placeholder {
  color: #b9b9b9;
  text-transform: uppercase;
}
.form-control:-ms-input-placeholder {
  color: #b9b9b9;
  text-transform: uppercase;
}
.form-control:focus {
  border-color: #00eef8;
}
.form-group {
  margin-bottom: 10px;
}
.error {
  color: #ff0000;
  margin-bottom: 20px;
}
.error ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
/* bootstrap select */
.bootstrap-select.full.btn-group {
  width: 100% !important;
}
.bootstrap-select.btn-group {
  width: 50% !important;
  margin-bottom: 0 !important;
}
.bootstrap-select .btn {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid #ece6e6;
  padding: 5px;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.bootstrap-select .btn:hover,
.bootstrap-select .btn:focus {
  background-color: #ece6e6;
}
.bootstrap-select .dropdown-menu {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid #ece6e6;
  padding: 5px;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.bootstrap-select .dropdown-menu > li > a {
  padding: 0;
}
.bootstrap-select .dropdown-menu > li > a.indent {
  padding-left: 20px;
}
.bootstrap-select .dropdown-menu > li > a:hover,
.bootstrap-select .dropdown-menu > li > a:focus {
  background-color: #ece6e6;
}
/* differnt style for special form elements */
input[type=text].contentEdit,
textarea.contentEdit {
  background-color: #ffffff;
  border: 1px solid #ece6e6;
  padding: 5px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 13px;
  line-height: 16px;
}
/* checkboxes */
input[type=checkbox] {
  visibility: hidden;
}
.checkbox {
  width: 18px;
  height: 18px;
  min-height: 18px;
  background: #ffffff;
  position: relative;
  padding: 0;
  margin: 0 auto;
  border: 1px solid #ece6e6;
}
.checkbox label {
  cursor: pointer;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 0;
  margin: 0;
}
.checkbox label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  content: '';
  position: absolute;
  width: 10px;
  height: 5px;
  background: transparent;
  top: 5px;
  left: 3px;
  border: 3px solid #000000;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.checkbox label:hover::after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  opacity: 0.3;
}
.checkbox input[type=checkbox]:checked + label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}
/* content */
#main .contentArticle {
  margin-bottom: 40px;
}
#main .contentArticle:last-child {
  margin-bottom: 0;
}
#main div.inner ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-bottom: 20px;
}
#main div.inner ul:last-child {
  margin-bottom: 0;
}
#main div.inner ol {
  list-style-type: upper-roman;
  list-style-position: outside;
  margin-bottom: 20px;
}
#main div.inner ol:last-child {
  margin-bottom: 0;
}
#main div.inner .object-left p,
#main div.inner .object-right p,
#main div.inner .object-center p {
  margin: 0;
}
#main div.inner .object-left .content-view-embeddedmedia,
#main div.inner .object-right .content-view-embeddedmedia,
#main div.inner .object-center .content-view-embeddedmedia {
  margin-bottom: 0;
}
#main div.inner .content-view-embeddedmedia {
  margin-bottom: 20px;
}
#main div.inner .content-view-embeddedmedia:last-child {
  margin-bottom: 0;
}
#main div.inner .object-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
#main div.inner .object-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
#main div.inner .object-center {
  margin-bottom: 20px;
}
#main div.inner .object-center:last-child {
  margin-bottom: 0;
}
/* images */
#main div.inner .attribute-caption {
  font-size: 12px;
  line-height: 20px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
#main div.inner .class-image {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
#main div.inner .attribute-image,
#main div.inner .imageContent {
  position: relative;
  overflow: hidden;
}
#main div.inner .attribute-image a,
#main div.inner .imageContent a {
  display: block;
}
#main div.inner .attribute-image a img,
#main div.inner .imageContent a img {
  display: block;
}
#main div.inner .attribute-image .hoverBox,
#main div.inner .imageContent .hoverBox {
  display: block;
  position: absolute;
  bottom: -40px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: #e6007e;
  text-align: center;
  -webkit-transition: bottom 0.3s ease;
  -moz-transition: bottom 0.3s ease;
  -o-transition: bottom 0.3s ease;
  -ms-transition: bottom 0.3s ease;
  transition: bottom 0.3s ease;
}
#main div.inner .attribute-image:hover .hoverBox,
#main div.inner .imageContent:hover .hoverBox {
  bottom: 0;
}
#main div.inner .attribute-image .hoverBox span,
#main div.inner .imageContent .hoverBox span {
  font-size: 14px;
  color: #ffffff;
}
#main div.inner .attribute-image .hoverBox span i,
#main div.inner .imageContent .hoverBox span i {
  margin-right: 10px;
}
/* tables */
table {
  margin-bottom: 20px;
}
table:last-child {
  margin-bottom: 0;
}
table th {
  background-color: transparent;
  padding: 10px 10px;
  text-transform: uppercase;
}
table td {
  background-color: #ffffff;
  border-bottom: 1px solid #ece6e6;
  padding: 10px 10px;
}
/* embedded objects */
#main .download {
  display: block;
  margin-bottom: 20px;
}
#main .download.inline {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: 0;
}
#main .download i {
  font-size: 3em;
  margin-right: 10px;
  vertical-align: middle;
}
#main .download .downloadContent {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}
#main .object-center .download {
  text-align: center;
}
#main .object-right .download {
  text-align: right;
}
/* modal */
#modalImage {
  overflow-y: auto;
  text-align: center;
}
#modalImage .modal-dialog {
  display: inline-block;
  zoom: 1;
  *display: inline;
  left: auto;
  right: auto;
  padding: 0;
  width: auto;
  margin-top: 30px;
}
#modalImage .modal-content {
  -webkit-border-radius: 0px;
  border-radius: 0px;
}
#modalImage .modal-body {
  overflow: hidden;
  padding: 10px;
  min-width: 200px;
  min-height: 200px;
  background: url(../images/loading.gif) center center no-repeat;
}
#modalImage .modal-body img {
  display: none;
  float: left;
}
#modalImage .close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 45px;
  height: 45px;
  background: url(../images/icon_close_modal.png) center center no-repeat #e6007e;
  opacity: 1;
}
.modalDialog {
  overflow-y: auto;
  text-align: center;
}
.modalDialog .modal-dialog {
  display: inline-block;
  zoom: 1;
  *display: inline;
  left: auto;
  right: auto;
  padding: 0;
  width: auto;
  margin-top: 30px;
}
.modalDialog .modal-content {
  -webkit-border-radius: 0px;
  border-radius: 0px;
  text-align: left;
  width: 600px;
}
.modalDialog .modal-body {
  overflow: hidden;
  padding: 10px;
  padding-right: 60px;
}
.modalDialog .modal-footer {
  padding: 10px;
  margin: 0;
}
.modalDialog.error {
  color: #333333;
}
.modalDialog .close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 45px;
  height: 45px;
  background: url(../images/icon_close_modal.png) center center no-repeat #e6007e;
  opacity: 1;
}
.modalDialog .inputGroup {
  border: 1px solid #ece6e6;
  padding: 5px;
  width: 75%;
}
.modalDialog .inputGroup label {
  color: #b9b9b9;
  font-weight: normal;
  margin-bottom: 0;
  display: block;
}
.modalDialog .inputGroup input[type=text].contentEdit {
  background-color: #ffffff;
  border: 0;
  padding: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 13px;
  line-height: 16px;
  width: 100%;
}
/* loading mask */
#loadingMask {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3000;
  background: url(../images/loading.gif) center center no-repeat rgba(255, 255, 255, 0.7);
  display: none;
}
/* demand overview */
#demandOverview {
  margin-bottom: 0;
}
#demandOverview .description {
  padding: 10px 10px;
  color: #666666;
  text-transform: uppercase;
}
#demandOverview .panel {
  border: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  margin-bottom: 15px;
}
#demandOverview .panel:last-child {
  margin-bottom: 0;
}
#demandOverview .panel .panel-heading {
  background-color: #ffffff;
  padding: 10px 10px;
  border: 0;
  position: relative;
}
#demandOverview .panel .panel-heading h3 {
  font-size: 13px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0;
}
#demandOverview .panel .panel-heading .toggle {
  position: absolute;
  right: 10px;
  top: 4px;
  color: #ffffff;
  background-color: #e6007e;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: 0;
  text-align: center;
}
#demandOverview .panel .panel-heading .toggle i {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
#demandOverview .panel .panel-heading .toggle i.collapsed {
  display: none;
}
#demandOverview .panel .panel-heading .toggle.collapsed i {
  display: none;
}
#demandOverview .panel .panel-heading .toggle.collapsed i.collapsed {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
#demandOverview .panel .panel-heading .chart {
  width: 100px;
  height: 14px;
  background-color: #ece6e6;
  position: relative;
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin-right: 10px;
  vertical-align: middle;
}
#demandOverview .panel .panel-heading .chart .bar {
  position: absolute;
  height: 14px;
  background-color: #00eef8;
}
#demandOverview .panel .panel-body {
  background-color: #ffffff;
  border: 0;
  padding: 20px 10px 20px 10px;
}
#demandOverview .panel .panel-body .demandTitle {
  font-weight: bold;
}
#demandOverview .panel .panel-body .description {
  padding: 10px 0;
  position: relative;
}
#demandOverview .panel .panel-body .col-first {
  padding-left: 40px;
}
#demandOverview .panel .panel-body .col-last {
  text-align: right;
  padding-right: 15px;
}
#demandOverview .panel .panel-body .line {
  position: absolute;
  bottom: 0;
  left: 23px;
  right: 0;
  border-bottom: 1px solid #d6d2d3;
}
#demandOverview .panel .panel-body .demand {
  padding: 10px 0;
  position: relative;
}
#demandOverview .panel .panel-body .demand .shortDescription {
  color: #999999;
}
#demandOverview .panel .panel-body .demand .shortDescription.searchtext {
  color: #00eef8;
}
#demandOverview .panel .panel-body .demand .hoverBox {
  position: absolute;
  left: 23px;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #f7f2f2;
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#demandOverview .panel .panel-body .demand .row {
  position: relative;
  z-index: 1;
}
#demandOverview .panel .panel-body .demand:hover .hoverBox {
  opacity: 1;
}
#demandOverview .panel .panel-body .demand .col-first {
  padding-left: 50px;
}
#demandOverview .panel .panel-body .subGroup {
  margin-top: 20px;
}
#demandOverview .panel .panel-body h4 {
  font-size: 13px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0;
  display: inline;
}
/* tooltips */
.tooltip > .tooltip-inner {
  background-color: #00eef8;
  color: #ffffff;
  padding: 10px;
  max-width: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.tooltip.left > .tooltip-arrow {
  border-left-color: #00eef8;
}
.tooltip.right > .tooltip-arrow {
  border-right-color: #00eef8;
}
.tooltip.top > .tooltip-arrow {
  border-top-color: #00eef8;
}
.tooltip.bottom > .tooltip-arrow {
  border-bottom-color: #00eef8;
}
/* lines */
.dottedLine {
  width: 100%;
  border-bottom: 1px dotted #cccccc;
  margin-bottom: 20px;
}
.cyanLine {
  width: 100%;
  border-bottom: 5px solid #00eef8;
  margin-bottom: 30px;
}
.cyanLine:last-child {
  margin-bottom: 0;
}
/* button bar */
.buttonBar {
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 15px;
  padding-right: 14px;
}
.buttonBar.bottom {
  margin-top: 40px;
  margin-bottom: 0;
}
.buttonBar .col-sm-3,
.buttonBar .col-xs-3 {
  padding: 0;
  padding-right: 1px;
}
.buttonBar .fullButton {
  width: 100%;
  height: 100px;
  padding: 0 5px;
  background-color: #d6d2d3;
  display: table;
  font-size: 15px;
  text-transform: uppercase;
  color: #ece6e6;
}
.buttonBar .fullButton.pink {
  background-color: #e6007e;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.buttonBar .fullButton.pink:hover {
  background-color: #800046;
}
.buttonBar .fullButton.cyan {
  background-color: #00eef8;
  color: #ffffff;
}
.buttonBar .fullButton.black {
  background-color: #000000;
  color: #ffffff;
}
.buttonBar .fullButton .buttonInner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.buttonBar .fullButton p {
  margin: 0;
}
.buttonBar .fullButton p.big {
  font-size: 24px;
  line-height: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}
.buttonBar .fullButton i {
  display: block;
  font-size: 55px;
  margin-bottom: 6px;
}
/* table list */
.tableList {
  margin-bottom: 30px;
}
.tableList .tableRow {
  background-color: #ffffff;
  padding: 10px 10px;
  border: 0;
  position: relative;
  margin-bottom: 1px;
  word-wrap: break-word;
}
.tableList .tableRow .col-xs-1 {
  word-wrap: normal;
}
.tableList .tableRow .size {
  text-transform: uppercase;
}
.tableList .tableRow .last {
  text-align: right;
}
.tableList.info .left {
  font-weight: bold;
}
.tableList.info .supplierAssigned {
  font-weight: bold;
  color: #00eef8;
}
/* print only date */
.datePrint {
  display: none;
  margin-bottom: 30px;
}
/* demand detail */
#demandDetail h1 sup {
  margin-right: 5px;
  font-size: 14px;
}
#demandDetail .description {
  padding: 0 10px 10px 10px;
  color: #666666;
  text-transform: uppercase;
}
#demandDetail .description .nowrap {
  white-space: nowrap;
}
#demandDetail .description .last {
  text-align: right;
}
#demandDetail .imageContent {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin-right: 20px;
  margin-bottom: 20px;
}
/* create offer */
#offerForm .positionDescription {
  margin-bottom: 10px;
  color: #999999;
}
#offerForm .inputs {
  overflow: hidden;
  width: 100%;
}
#offerForm .inputs .comment {
  float: left;
  width: 80%;
}
#offerForm .inputs .price {
  float: right;
  width: 18%;
}
#offerForm input[type=text].contentEdit {
  width: 100%;
  height: 52px;
  padding-top: 5px;
  padding-bottom: 30px;
}
#offerForm textarea.contentEdit {
  width: 100%;
  height: 52px;
}
/* temp; implement below when live for both editors and suppliers */
#saveDemand #fileupload .tableList,
#saveDemand #imageupload .tableList,
#demandDetail #fileupload .tableList {
  margin-bottom: 0;
}
#fileupload .inputBar,
#imageupload .inputBar {
  float: left;
  width: 240px;
}
#fileupload .inputBar input[type=text].contentEdit,
#imageupload .inputBar input[type=text].contentEdit {
  width: 240px;
}
#fileupload .inputBar .fileupload-progress,
#imageupload .inputBar .fileupload-progress {
  width: 240px;
  height: 6px;
}
#fileupload .inputBar .fileupload-progress .progress,
#imageupload .inputBar .fileupload-progress .progress {
  height: 6px;
  margin: 0;
  background-color: #ece6e6;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
#fileupload .inputBar .fileupload-progress .progress-bar-success,
#imageupload .inputBar .fileupload-progress .progress-bar-success {
  background-color: #e6007e;
}
#fileupload .currentUploadedFile,
#imageupload .currentUploadedFile {
  display: none;
  margin-left: 20px;
}
#fileupload .deleteOfferFileJS,
#imageupload .deleteOfferFileJS {
  margin-left: 20px;
}
#fileupload .deleteBlock,
#imageupload .deleteBlock {
  display: none;
  margin-top: 20px;
}
/* list of uploaded images and files */
.tableList.uploadedImages .empty {
  display: none;
}
.tableList.uploadedImages .addImage,
.tableList.uploadedImages .deleteImage,
.tableList.uploadedImages .removeImage {
  width: 36px;
}
.tableList.uploadedImages .deleteImage,
.tableList.uploadedImages .removeImage {
  float: right;
}
.tableList.uploadedImages .tableRow img {
  width: 100px;
  height: auto;
}
.tableList.uploadedImages .add {
  text-align: right;
}
.tableList.uploadedFiles .tableRow {
  line-height: 36px;
}
.tableList.uploadedFiles .empty {
  display: none;
}
.tableList.uploadedFiles .addFile,
.tableList.uploadedFiles .deleteFile,
.tableList.uploadedFiles .removeFile,
.tableList.uploadedFiles .renameFile {
  width: 36px;
}
.tableList.uploadedFiles .deleteFile,
.tableList.uploadedFiles .removeFile,
.tableList.uploadedFiles .renameFile {
  float: right;
}
.tableList.uploadedFiles .renameFile {
  margin-right: 10px;
}
.tableList.uploadedFiles .add {
  text-align: right;
}
.tableList.uploadedFiles .newFileName {
  float: left;
}
.tableList.uploadedFiles input {
  width: 50% !important;
  float: left;
  margin-top: 3px;
  margin-left: 10px;
}
/* fix offer */
.buttonBar .fixOffer {
  cursor: default;
}
.buttonBar .fixOffer.active {
  cursor: pointer;
}
/* dashboard */
#dashboard .description {
  padding: 0 10px 10px 10px;
  color: #666666;
  text-transform: uppercase;
}
#dashboard .description .nowrap {
  white-space: nowrap;
}
#dashboard .description .last {
  text-align: right;
}
#dashboard .chart {
  width: 100px;
  height: 14px;
  background-color: #ece6e6;
  position: relative;
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin-right: 10px;
  vertical-align: middle;
}
#dashboard .chart .bar {
  position: absolute;
  height: 14px;
  background-color: #00eef8;
}
#dashboard .totalPrice {
  font-size: 16px;
  font-weight: bold;
}
/* offer comparison */
#offerComparison .description {
  padding: 0 10px 10px 10px;
  color: #666666;
  text-transform: uppercase;
}
#offerComparison .description .nowrap {
  white-space: nowrap;
}
#offerComparison .description .last {
  text-align: right;
}
#offerComparison .demandPositionDescription {
  color: #999999;
}
#offerComparison .offer {
  /*&.best {
			tableList.info .priceSkonto {
				color: @cyan;
				font-size: @fontSizeBestPrice;
				font-weight: bold;
			}
		}*/
}
#offerComparison .offer .priceSkonto.cyan {
  color: #00eef8;
  font-size: 16px;
  font-weight: bold;
}
#offerComparison .offer .buttons {
  margin-bottom: 30px;
  margin-top: -20px;
}
/* demand form */
#saveDemand {
  /* positions */
  /* button bar */
  /* suppliers */
}
#saveDemand .description {
  padding: 0 10px 10px 10px;
  color: #666666;
  text-transform: uppercase;
}
#saveDemand .description .nowrap {
  white-space: nowrap;
}
#saveDemand .description .last {
  text-align: right;
}
#saveDemand .inputGroup {
  border: 1px solid #ece6e6;
  padding: 5px;
}
#saveDemand .inputGroup.full {
  width: 100%;
}
#saveDemand .inputGroup label {
  color: #b9b9b9;
  font-weight: normal;
  margin-bottom: 0;
  display: block;
}
#saveDemand .inputGroup input[type=text].contentEdit,
#saveDemand .inputGroup textarea.contentEdit {
  background-color: #ffffff;
  border: 0;
  padding: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 13px;
  line-height: 16px;
  width: 100%;
}
#saveDemand .inputGroup textarea.contentEdit {
  height: 60px;
}
#saveDemand .inputGroup #demandFormDemandShortDescription {
  height: 30px;
}
#saveDemand .inputGroup #demandFormDemandLongDescription {
  height: 210px;
}
#saveDemand .description {
  padding: 0 10px 10px 10px;
  color: #666666;
  text-transform: uppercase;
}
#saveDemand input[type=text].contentEdit {
  width: 100%;
}
#saveDemand textarea.contentEdit {
  width: 100%;
}
#saveDemand textarea.positionInput {
  width: 235px !important;
  height: 60px;
  float: left;
}
#saveDemand .tableList.positions .add {
  text-align: right;
}
#saveDemand .addPosition,
#saveDemand .removePosition {
  width: 36px;
}
#saveDemand .removePosition {
  float: right;
}
#saveDemand .buttonBar {
  /* checkboxes */
  /* datetimepicker */
}
#saveDemand .buttonBar .halfButton {
  width: 50%;
  height: 100px;
  background-color: #d6d2d3;
  display: table;
  font-size: 12px;
  text-transform: uppercase;
  color: #ece6e6;
  float: left;
}
#saveDemand .buttonBar .halfButton.black {
  background-color: #000000;
  color: #ffffff;
}
#saveDemand .buttonBar .halfButton.border {
  border-left: 1px solid #ece6e6;
}
#saveDemand .buttonBar .halfButton .buttonInner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
#saveDemand .buttonBar .halfButton p {
  margin: 0;
  margin-bottom: -10px;
  /* negative value of .checkbox */
}
#saveDemand .buttonBar input[type=checkbox] {
  visibility: hidden;
}
#saveDemand .buttonBar .checkbox {
  width: 34px;
  height: 34px;
  min-height: 34px;
  background: #ffffff;
  position: relative;
  margin: 0 auto;
  margin-bottom: 10px;
}
#saveDemand .buttonBar .checkbox label {
  cursor: pointer;
  position: absolute;
  width: 34px;
  height: 34px;
  left: 0;
  top: 0;
  margin: 0;
}
#saveDemand .buttonBar .checkbox label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  content: '';
  position: absolute;
  width: 20px;
  height: 10px;
  background: transparent;
  top: 10px;
  left: 7px;
  border: 5px solid #000000;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#saveDemand .buttonBar .checkbox label:hover::after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  opacity: 0.3;
}
#saveDemand .buttonBar .checkbox input[type=checkbox]:checked + label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}
#saveDemand .buttonBar #datetimepicker {
  position: relative;
  width: 100%;
  padding: 0 10px;
  margin-bottom: 14px;
}
#saveDemand .buttonBar #datetimepicker input[type=text] {
  width: 100%;
  padding-right: 40px;
}
#saveDemand .buttonBar #datetimepicker .btn.flat {
  position: absolute;
  right: 10px;
  top: 0;
  width: 34px;
  height: 34px;
  line-height: 34px;
  padding: 0;
  text-align: center;
}
#saveDemand .buttonBar #datetimepicker .btn.flat i {
  font-size: 14px;
}
#saveDemand .buttonBar .fullButton.datetimepicker p {
  margin-bottom: -14px;
}
#saveDemand .tableList.suppliers .collapseDescription {
  line-height: 36px;
}
#saveDemand .tableList.suppliers .checkbox {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: -2px 10px 0 0;
  vertical-align: middle;
}
#saveDemand .tableList.suppliers .supplierGroup > div > div > div > .checkbox label:after {
  border-color: #e6007e !important;
}
#saveDemand .tableList.suppliers .supplierGroup {
  font-weight: bold;
}
#saveDemand .tableList.suppliers .supplier,
#saveDemand .tableList.suppliers .supplierUser {
  font-weight: normal;
}
#saveDemand .tableList.suppliers .supplier .indent,
#saveDemand .tableList.suppliers .supplierUser .indent {
  padding-left: 40px;
}
#saveDemand .tableList.suppliers .supplier > .supplierUser .indent,
#saveDemand .tableList.suppliers .supplierUser > .supplierUser .indent {
  padding-left: 80px;
}
#saveDemand .tableList.suppliers .supplier i,
#saveDemand .tableList.suppliers .supplierUser i {
  margin-right: 5px;
}
#saveDemand .tableList.suppliers .toggleRight {
  text-align: right;
}
#saveDemand .tableList.suppliers .toggle {
  width: 36px;
}
#saveDemand .tableList.suppliers .toggle i {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
#saveDemand .tableList.suppliers .toggle i.collapsed {
  display: none;
}
#saveDemand .tableList.suppliers .toggle.collapsed i {
  display: none;
}
#saveDemand .tableList.suppliers .toggle.collapsed i.collapsed {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
/* unloading calender */
#unloadingCalender .dateSelection {
  margin-top: 20px;
  margin-bottom: 40px;
}
#unloadingCalender .dateSelection .row {
  margin: 0;
}
#unloadingCalender .dateSelection .col-xs-8,
#unloadingCalender .dateSelection .col-xs-2 {
  padding: 0;
  padding-right: 1px;
}
#unloadingCalender .dateSelection .selectedDay {
  background-color: #00eef8;
  color: #ffffff;
  font-size: 28px;
  line-height: 70px;
  height: 70px;
  text-align: center;
  width: 100%;
}
#unloadingCalender .dateSelection .btn.flat {
  font-size: 36px;
  height: 70px;
  text-align: center;
  width: 100%;
}
#unloadingCalender .dateSelection .btn.flat .fa-print {
  margin-top: 9px;
}
#unloadingCalender .description {
  padding: 10px 10px;
  color: #666666;
  text-transform: uppercase;
}
#unloadingCalender .description .nowrap {
  white-space: nowrap;
}
#unloadingCalender .description .entry {
  text-align: right;
}
#unloadingCalender .tableList.timeslots {
  margin-bottom: 0;
}
#unloadingCalender .tableList.timeslots .time {
  font-weight: bold;
  font-size: 16px;
}
#unloadingCalender .tableList.timeslots .break {
  background-color: #f9f3f3;
}
#unloadingCalender .tableList.timeslots .break .col-xs-10 {
  min-height: 36px;
}
#unloadingCalender .tableList.timeslots .entryContent .company {
  color: #999999;
  font-weight: bold;
  font-size: 16px;
}
#unloadingCalender .tableList.timeslots .entryContent .loading,
#unloadingCalender .tableList.timeslots .entryContent .unloading {
  color: #00eef8;
  margin-right: 10px;
}
#unloadingCalender .tableList.timeslots .entryContent .loading i,
#unloadingCalender .tableList.timeslots .entryContent .unloading i {
  margin-right: 5px;
}
#unloadingCalender .tableList.timeslots .entryContent .addEntry,
#unloadingCalender .tableList.timeslots .entryContent .editEntry {
  display: none;
}
#unloadingCalender .tableList.timeslots .entry {
  text-align: right;
}
#unloadingCalender .tableList.timeslots .entry .entryDate {
  margin-bottom: 10px;
}
#unloadingCalender .tableList.timeslots .entry .addEntry,
#unloadingCalender .tableList.timeslots .entry .editEntry,
#unloadingCalender .tableList.timeslots .entry .closeAddEntry,
#unloadingCalender .tableList.timeslots .entry .closeEditEntry {
  width: 36px;
}
#unloadingCalender .tableList.timeslots .entry .closeAddEntry,
#unloadingCalender .tableList.timeslots .entry .closeEditEntry {
  display: none;
}
#unloadingCalender .inputGroup {
  border: 1px solid #ece6e6;
  padding: 5px;
  margin-bottom: 10px;
}
#unloadingCalender .inputGroup.full {
  width: 100%;
}
#unloadingCalender .inputGroup label {
  color: #b9b9b9;
  font-weight: normal;
  margin-bottom: 0;
  display: block;
}
#unloadingCalender .inputGroup input[type=text].contentEdit,
#unloadingCalender .inputGroup textarea.contentEdit {
  background-color: #ffffff;
  border: 0;
  padding: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 13px;
  line-height: 16px;
  width: 100%;
}
#unloadingCalender .inputGroup textarea.contentEdit {
  height: 60px;
}
#unloadingCalender .checkboxWrapper {
  margin-bottom: 10px;
}
#unloadingCalender .checkboxWrapper .checkbox {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: text-bottom;
  margin-right: 10px;
}
#unloadingCalender .mobileFallback {
  margin-top: 20px;
}
/* datetimepicker */
.bootstrap-datetimepicker-widget {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 13px;
}
.bootstrap-datetimepicker-widget thead tr:first-child th:hover,
.bootstrap-datetimepicker-widget td.day:hover {
  background-color: #ece6e6;
}
.bootstrap-datetimepicker-widget td span:hover {
  background-color: #ece6e6;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.bootstrap-datetimepicker-widget td,
.bootstrap-datetimepicker-widget th {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.bootstrap-datetimepicker-widget td.active,
.bootstrap-datetimepicker-widget td.active:hover {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background-color: #e6007e;
}
.bootstrap-datetimepicker-widget td.today:before {
  border-bottom: 7px solid #e6007e;
}
/* different mobile fallbacks */
.mobileFallback {
  background-color: #ffffff;
  padding: 10px;
  overflow: hidden;
}
.mobileFallback i {
  font-size: 2em;
  line-height: 1.5em;
  float: left;
  margin-right: 20px;
}
.mobileFallback p {
  overflow: hidden;
}
/* custom tags */
#content .whiteBlock {
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 280px;
  min-height: 380px;
  vertical-align: top;
  padding: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
#content .whiteBlock:last-child {
  margin-bottom: 0;
}
#content .whiteBlock img {
  width: 100%;
  height: auto;
}
/* mediaqueries */
@media (max-width: 1199px) {
  #header .logo {
    width: 320px;
  }
  .buttonBar .fullButton {
    font-size: 12px;
  }
  .buttonBar .fullButton p.big {
    font-size: 19px;
    line-height: 21px;
  }
  .buttonBar .fullButton i {
    font-size: 44px;
  }
  #demandOverview .panel .panel-heading .chart {
    width: 80px;
  }
  #dashboard .chart {
    width: 80px;
  }
  #saveDemand textarea.positionInput {
    width: 190px !important;
  }
  #saveDemand .buttonBar .halfButton {
    font-size: 10px;
  }
  #fileupload .inputBar,
  #imageupload .inputBar {
    width: 190px;
  }
  #fileupload .inputBar input[type=text].contentEdit,
  #imageupload .inputBar input[type=text].contentEdit {
    width: 190px;
  }
  #fileupload .inputBar .fileupload-progress,
  #imageupload .inputBar .fileupload-progress {
    width: 190px;
  }
}
@media (max-width: 992px) {
  #header .logo {
    width: 280px;
  }
  #content {
    margin: 0;
    padding-bottom: 0;
    min-height: auto;
  }
  #side {
    margin: 0;
    padding-bottom: 0;
  }
  #side .infobox {
    padding: 40px;
  }
  #mainNavigation .navbar-nav > li > a {
    padding-left: 40px;
    padding-right: 40px;
  }
  #footer {
    height: auto;
    padding-bottom: 10px;
  }
  #footer .pull-right {
    float: left !important;
  }
  #metaNavigation ul li {
    margin-left: 0;
    margin-right: 10px;
  }
  /* show mobile navbar */
  .navbar-toggle {
    display: block;
  }
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  .navbar-header {
    float: none;
  }
  /* mobile navbar */
  #mainNavigationCollapse ul {
    margin: 0;
  }
  #mainNavigation .navbar {
    min-height: 0;
  }
  #mainNavigation .navbar-toggle {
    width: 100%;
    position: relative;
    float: none;
    margin: 0;
    padding: 0.65em 40px 0.65em 40px;
    border: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.33em;
    text-align: left;
    background-color: #e6007e;
    color: #ffffff;
    -webkit-transition: background-color 0.5s ease, color 0.5s ease;
    -moz-transition: background-color 0.5s ease, color 0.5s ease;
    -ms-transition: background-color 0.5s ease, color 0.5s ease;
    -o-transition: background-color 0.5s ease, color 0.5s ease;
    transition: background-color 0.5s ease, color 0.5s ease;
  }
  #mainNavigation .navbar-toggle:hover {
    background-color: #800046;
    color: #ffffff;
  }
  #mainNavigation .navbar-toggle i {
    margin-right: 5px;
  }
  #mainNavigation .navbar-nav > li.active.first > a {
    border-top: 1px solid #ff1a97;
  }
  /* show forms with full width */
  #loginForm,
  #forgotPasswordForm {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #header .logo {
    width: 240px;
  }
  div.description {
    font-size: 10px;
  }
  #saveDemand textarea.positionInput {
    width: 140px !important;
  }
  #fileupload .inputBar,
  #imageupload .inputBar {
    width: 140px;
  }
  #fileupload .inputBar input[type=text].contentEdit,
  #imageupload .inputBar input[type=text].contentEdit {
    width: 140px;
  }
  #fileupload .inputBar .fileupload-progress,
  #imageupload .inputBar .fileupload-progress {
    width: 140px;
  }
  .contentEdit.positionInput {
    min-width: 20px;
  }
}
@media (max-width: 567px) {
  #header .subtitle {
    display: none;
  }
  .hiddenMobile {
    display: none;
  }
  .mobileFallback {
    display: block;
  }
  #content .whiteBlock {
    display: inline-block;
    zoom: 1;
    *display: inline;
    width: 100%;
    padding: 20px;
    margin-right: 0;
    margin-bottom: 20px;
    background-color: #ffffff;
  }
}
@media (max-width: 480px) {
  #header .logo {
    width: 200px;
  }
}
@media (max-width: 360px) {
  #header {
    background: none;
    height: 110px;
  }
  #header .logo {
    bottom: -79px;
  }
}
