@charset "UTF-8";
/******************************************
 __  __                       ___    ___
/\ \/\ \                    /'___\ /'___\
\ \ \_\ \     __     __  __/\ \__//\ \__/
 \ \  _  \  /'__`\  /\ \/\ \ \ ,__\ \ ,__\
  \ \ \ \ \/\ \L\.\_\ \ \_\ \ \ \_/\ \ \_/
   \ \_\ \_\ \__/.\_\\ \____/\ \_\  \ \_\
    \/_/\/_/\/__/\/_/ \/___/  \/_/   \/_/
*******************************************/
/******************************************
* Colors
*******************************************/
/*************
* Colors     *
*************/
.red {
  color: #f2645a;
}

.grey {
  color: #7d7d7d;
}

.grey-light {
  color: #ccc;
}

.white {
  color: #fff;
}

/**************
* Placeholder *
**************/
::-webkit-input-placeholder {
  color: #bbb;
}

:-moz-placeholder {
  color: #bbb;
}

::-moz-placeholder {
  color: #bbb;
}

:-ms-input-placeholder {
  color: #bbb;
}

/**************
*Elements     *
**************/
html, body {
  height: 100%;
  /*Keeps the footer down*/
}

body, body div {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
}

.container {
  min-height: 100%;
  position: relative;
  padding-bottom: 42px;
}

.content-wrapper {
  padding-bottom: 38px;
  /* Height of the footer element */
}

a.nolinkcolor {
  color: #333;
}

.headline {
  font-size: 3em;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 35px;
  font-weight: 300;
  text-transform: uppercase;
  color: #0e3a63;
}

h2 {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 30px;
}

h2.failed {
  background-color: #f2645a;
  padding: 10px;
}

h3 {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 2.5%;
}

h4 {
  font-size: 1.2em;
  color: #7d7d7d;
  font-weight: normal;
  padding: 0;
  margin-bottom: 4px;
}

p {
  margin-bottom: 15px;
  line-height: 1.4em;
}

a, .link {
  color: #002c54;
  text-decoration: none;
}

a:hover, .link:hover {
  color: #ccc;
}

a.grey-light:hover {
  color: #fff;
}

/**************
* Common      *
***************/
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.underline {
  text-decoration: underline;
}

.block-element {
  display: block;
}

.pointer {
  cursor: pointer;
}

.move {
  cursor: move;
}

.center {
  margin: 0 auto;
}

.vertical-center {
  vertical-align: middle;
}

.centered-text {
  text-align: center;
}

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

.small-font {
  font-size: 0.8em;
}

.margin-top {
  margin-top: 40px;
}

.margin-top-half {
  margin-top: 20px;
}

.margin-left {
  margin-left: 40px;
}

.margin-left-half {
  margin-left: 20px;
}

.margin-right {
  margin-right: 40px;
}

.margin-right-half {
  margin-right: 20px;
}

.margin-bottom {
  margin-bottom: 40px;
}

.margin-bottom-half {
  margin-bottom: 20px;
}

.no-margin {
  margin: 0;
}

.strong {
  font-weight: 600;
}

.no-uppercase {
  text-transform: none;
}

/***************
* Grid         *
***************/
.main {
  max-width: 1920px;
}

.left {
  width: 20%;
  padding: 0 1% 0 2%;
}

.right {
  width: 80%;
  padding-right: 2%;
}
.right.full {
  width: 100%;
}

/***************
* Grid         *
***************/
.grid-inner {
  padding: 0 0 0 1%;
  max-width: 1920px;
}

.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11, .col12 {
  float: left;
  margin: 0 3% 0 0;
}

.col1.last, .col2.last, .col3.last, .col4.last, .col5.last, .col6.last, .col7.last, .col8.last, .col9.last, .col10.last, .col11.last, .col12 {
  margin: 0;
}

.col1 {
  width: 5.5%;
}

.col2 {
  width: 14%;
}

.col3 {
  width: 22.5%;
}

.col4 {
  width: 31%;
}

.col5 {
  width: 39.5%;
}

.col6 {
  width: 48%;
}

.col7 {
  width: 56.5%;
}

.col8 {
  width: 65%;
}

.col9 {
  width: 73.5%;
}

.col10 {
  width: 82%;
}

.col11 {
  width: 90.5%;
}

.col12 {
  width: 99%;
  margin: 0;
}

.col1 img, .col2 img, .col3 img, .col4 img, .col5 img, .col6 img, .col7 img, .col8 img, .col9 img, .col10 img, .col11 img, .col12 img {
  height: auto;
}

/***********
* Buttons  *
************/
.button {
  color: #fff;
  border: 0;
  min-width: 160px;
  padding: 12px 20px;
  font-size: 1.2em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}

.button-small {
  color: #fff;
  border: 0;
  min-width: 120px;
  padding: 6px 10px;
  font-size: 1.1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}

.button[disabled], .button[disabled]:hover {
  background-color: #bebebe;
  cursor: default;
}

.white-boxed-link {
  background-color: #fff;
  color: #0e3a63;
  height: 33px;
  display: block;
  text-align: center;
  padding: 6px 12px 0 12px;
  font-weight: 600;
}

.blue-button {
  background-color: #0e3a63;
}

.blue-button:hover {
  background-color: #002c54;
}

.red-button {
  background-color: #f2645a;
}

.red-button:hover {
  background-color: #bf4f47;
}

.grey-button {
  background-color: #7d7d7d;
}

.grey-button:hover {
  background-color: #6d7270;
}

.yellow-button {
  background-color: #ffc400;
  outline: 0;
}

.yellow-button:hover {
  background-color: #ffc400;
}

.yellow-button:active {
  background-color: #ffd340;
}

/********
*Login  *
********/
.login-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  background-color: #444;
}

.login-container {
  height: 600px;
  width: 600px;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.login-content {
  color: #ffffff;
  background-color: rgba(68, 68, 68, 0.9);
  padding: 20px;
}

.ie8 div.login-content {
  background-color: #444;
}

.login-input {
  border: 0;
  width: 66%;
  height: 36px;
  font-size: 1.2em;
  padding-left: 10px;
}

.login-logo {
  background-color: #fff;
  padding: 10px;
}

.white-link {
  color: #7d7d7d;
}

/******************
 * Tabs           *
 ******************/
.tab-container {
  height: 38px;
  background-color: #fff;
  border-bottom: 2px solid #0e3a63;
}

.tab {
  float: left;
  height: 36px;
  padding: 5px 20px;
  margin: 0 5px 0 0;
  color: #fff;
  background-color: #c5c5c5;
  cursor: pointer;
}

.tab:hover {
  background-color: #002c54;
}

.tab .tab-label {
  line-height: 25px;
  /*same as .tab height minus padding*/
}

.tab-selected {
  background-color: #0e3a63;
}

.tab-loader {
  display: none;
  width: 50px;
  height: 35px;
  background: url("/img/icons/ajax-loader.gif") no-repeat center center;
}

/************
*Messages   *
************/
.standard-element-margin {
  margin: 0;
  margin-bottom: 38px;
}

.message-box {
  margin-top: 10px;
  margin-bottom: 30px;
  min-height: 36px;
  /*position: relative;*/
  padding: 10px;
}

.info-box {
  color: #00529B;
  background-color: #BDE5F8;
}

.success-box {
  color: #4F8A10;
  background-color: #DFF2BF;
}

.warning-box {
  color: #9F6000;
  background-color: #FEEFB3;
}

.error-box {
  color: #D8000C;
  background-color: #FFBABA;
}

.message-box-text {
  width: 100%;
  padding: 10px;
}

.message-box-text span {
  height: 24px;
  line-height: 24px;
  vertical-align: bottom;
}

.message-box-text img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

/**************
*Header       *
***************/
.header {
  width: 100%;
  background-color: #002c54;
}

.with-translation-line {
  border-bottom: 6px solid #ffff00;
}

.header-content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
}

.header-user-data {
  padding-top: 7px;
  padding-right: 22px;
  color: #fff;
}
.header-user-data a {
  color: #fff;
}
.header-user-data a:hover {
  text-decoration: underline;
}

/***************
* Menü         *
***************/
.menu {
  padding-top: 30px;
}

.menu h1 {
  font-size: 1.5em;
}

.menu-part {
  margin-top: 22px;
}

.menu-link {
  padding-bottom: 7px;
  font-size: 1.2em;
}

.logo {
  width: 66%;
  margin-left: 3px;
}

.active-link {
  font-weight: 600;
}

.sub-category {
  margin-left: 20px;
  font-size: 0.9em;
}

.sub-category-first {
  margin-top: 15px;
}

.sub-sub-category {
  margin-left: 40px;
  font-size: 0.9em;
}

.sub-sub-sub-category {
  margin-left: 60px;
  font-size: 0.9em;
}

.sub-sub-sub-sub-category {
  margin-left: 80px;
  font-size: 0.9em;
}

/***************
* Content      *
****************/
.content {
  padding-top: 30px;
}

/**************
*Footer       *
***************/
.footer {
  background-color: #002c54;
  padding: 8px 8px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.footer-content {
  float: right;
}

.footer a {
  color: #fff;
  padding-left: 24px;
}

.footer a:hover {
  color: #7d7d7d;
}

.header-user-data {
  padding-top: 7px;
  padding-right: 22px;
  color: #fff;
}

/************
*Misc stuff *
*************/
img.add-icon {
  padding-right: 8px;
  vertical-align: middle;
}

.filters {
  padding-bottom: 15px;
}

.active-filter {
  font-weight: 600;
}

.growing-textarea {
  overflow: hidden;
}

.linked-icon {
  width: 35px;
  opacity: 0.4;
  cursor: pointer;
  margin-left: 8px;
}

.linked-icon-activated {
  opacity: 0.7;
}

.linked-icon:hover {
  opacity: 0.8;
}

.user-online-box {
  width: 310px;
  height: 60px;
}

/***************
* standard table
************/
table th, table td {
  padding: 2px 10px 2px 0;
}

table {
  border-spacing: 0;
  margin-bottom: 30px;
}

table#contacts-table {
  margin: 15px 0;
}

table.fixed-information tr td {
  min-width: 100px;
}

/****************
* list Table    *
*****************/
table.list-table {
  width: 100%;
}

table.list-table th, table.list-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px #ddd solid;
}

table.no-style {
  margin-bottom: 0;
}

table.no-style td {
  border-bottom: 0;
  padding: 0 0 0 10px;
}

/*
table.list-table th:hover {
    background-color: #e0e0e0;
    cursor: pointer;
}
table.list-table th.nolink:hover {
    background-color: #e7e7e7;
    cursor: auto;
}

table.list-table td.with-input:hover {
    background-color: $white;
    cursor: auto;
}
*/
table.list-table th.no-border-padding, table.list-table td.no-border-padding {
  padding: 12px 8px 12px 0;
}

table.list-table th {
  background-color: #e7e7e7;
  color: #909090;
  vertical-align: middle;
  height: 38px;
}

.list-table-preview-image-cell {
  width: 86px;
}

table.list-table td {
  vertical-align: middle;
}

table.list-table td.strong {
  font-weight: 600;
}

table.list-table tr {
  cursor: pointer;
}

table.list-table tr:hover {
  background-color: #f2f2f2;
}

table.list-table tr.nohover:hover {
  cursor: default;
  background-color: transparent;
}

table.list-table tr .editicons {
  display: none;
}

table.list-table tr:hover .editicons {
  display: inline;
}

/* table.list-table tr.linked-row:hover td{
    // color: #dd0032;
} */
table.list-table tr.topOfTOPList {
  background-color: #bae7ba;
}

table.list-table tr.topOfTOPList:hover {
  background-color: #aae7aa;
}

table tr.no-td-border td {
  border: 0;
}

/***************************
 * Datatables
 ***************************/
.dt-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 30px;
}
.dt-top .dataTables_info {
  width: auto;
}

.dt-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.dataTables_paginate a {
  margin: 5px;
  cursor: pointer;
}

/***************************
 * Forms
 ***************************/
input[type=text], input[type=search], input[type=email], input[type=password], input[type=number], select {
  font-size: 1.2em;
  padding: 6px;
  border: solid 1px #c5c5c5;
  outline: 0;
}

input[type=file] {
  font-size: 1.2em;
  padding: 4px;
  border: solid 1px #c5c5c5;
  outline: 0;
}

input[type=text]:hover, input[type=email]:hover, input[type=password]:hover, input[type=number]:hover,
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=number]:focus {
  border: solid 1px #0e3a63;
}

input[type=text].big-input-field {
  font-size: 1.4em;
  padding: 10px;
}

input[type=checkbox] {
  vertical-align: middle;
}

.input-field-width-80 {
  width: 80%;
}

.input-field-width-60 {
  width: 60%;
}

.input-field-width-40 {
  width: 40%;
}

.full-width {
  width: 100%;
}

.search-label {
  font-size: 0.9em;
  color: #6e6e6e;
}

.search-input {
  width: 300px;
}
.search-input input {
  width: 100%;
}

.product-autocomplete-area {
  min-height: 400px;
}

.product-autocomplete-area-kka {
  min-height: 150px;
}

.product-autocomplete-area-advisor {
  min-height: 100px;
}

.checkmark, .checkmark-cron {
  height: 44px;
  width: 75px;
  position: relative;
}
.checkmark div, .checkmark-cron div {
  position: absolute;
  top: 50%;
  left: 50%;
}
.checkmark div img, .checkmark-cron div img {
  margin-top: -50%;
  margin-left: -50%;
}

.category-select {
  width: 19.5%;
}

.category-select-fields {
  width: 95%;
}

.category-select-remove {
  width: 5%;
}

.category-select-remove-icon, .video-link-remove-icon {
  width: 36px;
  cursor: pointer;
}

.video-link-preview {
  height: 34px;
  line-height: 34px;
}

/*****************
* Autocomplete
******************/
.autocomplete-suggestions {
  border: 1px solid #999;
  background: #FFF;
  overflow: auto;
}

.autocomplete-suggestion {
  padding: 2px 5px;
  white-space: nowrap;
  overflow: hidden;
}

.autocomplete-selected {
  background: #F0F0F0;
}

.autocomplete-suggestions strong {
  font-weight: normal;
  color: #3399FF;
}

.autocomplete-group {
  padding: 2px 5px;
}

.autocomplete-group strong {
  display: block;
  border-bottom: 1px solid #000;
}

.product-ac-right {
  padding: 10px;
}

/****************************
* Product image box / row (zubehör)  *
*****************************/
.product-box {
  margin-bottom: 2px;
  background-color: #e2e2e2;
}
.product-box .product-box-left {
  margin: 5px;
}
.product-box .product-box-right {
  padding: 2px;
  margin-left: 10px;
}
.product-box .product-box-right .product-box-name {
  font-weight: bold;
}

.product-box-placeholder {
  height: 110px;
  border: 1px dashed #ddd;
  width: 100%;
  margin-bottom: 3px;
}

.accessory-category-container {
  padding: 20px;
}

.drag-handle, .drag-handle-inner {
  cursor: move !important;
  margin: 12px;
  width: 24px;
}

/************
* Product   *
*************/
.categories-text {
  font-size: 1.1em;
  cursor: text;
}

.categories-text:hover {
  text-decoration: underline;
}

#mainImage {
  height: 111px;
}

/*****************
* Product Meta   *
******************/
.meta h3 {
  display: inline-block;
  margin: 0;
}
.meta .level-container {
  margin: 0 0 50px 0;
  padding: 10px 10px 20px 10px;
  padding: 20px 20px 20px 20px;
  background-color: #eeeeee;
  border-top: 2px solid #0e3a63;
}

.radio-mixin label {
  margin-right: 8px;
}
.radio-mixin .radio-input-headline {
  font-weight: 600;
  margin-bottom: 5px;
}

.description-editor {
  width: 100%;
  height: 300px;
  background-color: #ffffff;
  overflow-y: scroll;
  border: solid 1px #c5c5c5;
  line-height: 1.4em;
  padding: 6px;
}

.description-textarea, .specification-textarea {
  width: 100%;
  height: 150px;
}

.spell-error {
  border-bottom: 2px dotted #ff0000;
}

.correction {
  cursor: pointer;
  color: #002c54;
}

.correction:hover {
  color: #ccc;
}

/***********
* Synonyms *
************/
.synonym-box {
  float: left;
  width: 32%;
  border: 1px solid #c5c5c5;
  padding: 24px 12px;
  margin-right: 1%;
  margin-bottom: 1%;
  cursor: pointer;
  min-height: 60px;
}

.synonym-box-editing {
  padding: 16px;
}

.synonym-box-selected, .synonym-box:hover {
  background-color: #DFF2BF;
}

.synonym-delete, .synonym-edit {
  width: 16px;
  vertical-align: middle;
  opacity: 0.5;
}

.synonym-edit {
  margin-right: 6px;
}

.synonym-delete:hover, .synonym-edit:hover {
  opacity: 1;
}

.synonym-edit-field {
  display: none;
  width: 75%;
}

.synonym-entry-content {
  width: 70%;
  float: left;
}

.synonym-entry-content-edit {
  width: 100%;
}

.synonym-entry-icons {
  width: 30%;
  float: left;
  text-align: right;
  display: none;
}

.synonym-box:hover .synonym-entry-icons {
  display: block;
}

/***********
* Listen   *
************/
.list-category {
  margin-bottom: 60px;
}

.list-add-field, .list-edit-field {
  width: 50%;
}

.list-edit-field {
  display: none;
}

.list-entry-content {
  width: 90%;
  float: left;
}

.list-entry-icons {
  width: 10%;
  float: left;
  text-align: right;
  display: none;
}

.list-entry-delete {
  margin-left: 6px;
}

.list-entry {
  padding: 12px 8px;
  border-bottom: 1px #ddd solid;
  cursor: move;
}

.list-entry-first {
  border-top: 1px #ddd solid;
}

.list-entry:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}

.list-entry.nohover:hover {
  background-color: transparent;
  cursor: auto;
}

.list-entry:hover .list-entry-icons {
  display: block;
}

.list-entry-placeholder {
  height: 38px;
  border: 1px dashed #ddd;
  width: 100%;
  margin-bottom: 3px;
}

/*******************
* Uploader         *
*******************/
#progress {
  margin: 10px 0;
  background-color: #ddd;
  border-radius: 4px;
}

#progress .bar {
  width: 0%;
  height: 18px;
  background: #002c54;
}

table.download-table {
  margin: 0;
}

table.download-table td.column1, table.download-table th.column1 {
  width: 6%;
  text-align: center;
}

table.download-table td.column2, table.download-table th.column2 {
  width: 45%;
}

table.download-table td.column3, table.download-table th.column3 {
  width: 17%;
}

table.download-table td.column7, table.download-table th.column7 {
  width: 5%;
}

.docicon {
  width: 30px;
}

.editicons {
  width: 13px;
  margin-top: 2px;
  opacity: 0.5;
}

.editicons:hover {
  margin-top: 2px;
  opacity: 1;
  cursor: pointer;
}

.upload-entry-save, .list-entry-save, .synonym-edit-save {
  width: 20px;
  opacity: 0.5;
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 10px;
  display: none;
}

.upload-entry-save:hover, .list-entry-save:hover, .synonym-edit-save:hover {
  opacity: 1;
}

table.list-table tr .upload-download {
  display: none;
  opacity: 0.4;
}

table.list-table tr .upload-download:hover {
  opacity: 1;
}

table.list-table tr:hover .upload-download {
  display: block;
}

.upload-download a {
  color: black;
}

img.productThumbnail {
  width: 70px;
  height: 70px;
}

.thumbnail {
  width: 36px;
}

.drop-area {
  padding-top: 25px;
  padding-bottom: 25px;
}

.drop-area-highlight {
  background-color: #ccc;
  border: 20px #ccc solid;
  border-bottom: 0;
  border-top: 0;
  margin: 0 -20px;
}

.upload-entry-edit-field {
  width: 300px;
}

/*************
* Variants   *
**************/
.variants .the-table, .nomenclature .the-table {
  background-color: #eee;
}
.variants .the-table tr.vheader, .nomenclature .the-table tr.vheader {
  height: 50px;
}
.variants .the-table tr th, .variants .the-table tr td, .nomenclature .the-table tr th, .nomenclature .the-table tr td {
  padding: 3px 6px 3px 6px;
  vertical-align: middle;
}
.variants .the-table tr td.vlast, .nomenclature .the-table tr td.vlast {
  width: 64px;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}
.variants .table-wrapper, .nomenclature .table-wrapper {
  margin-bottom: 50px;
  background-color: #eee;
  padding: 15px;
  display: inline-block;
  min-width: 885px;
}
.variants .vheader-detail, .nomenclature .vheader-detail {
  width: 125px;
  font-weight: bold;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word;
}
.variants input[type=text], .variants select, .nomenclature input[type=text], .nomenclature select {
  width: 125px;
}
.variants input[name=variant-name], .nomenclature input[name=variant-name] {
  width: 530px;
}
.variants img.remove-row, .variants img.remove-column, .nomenclature img.remove-row, .nomenclature img.remove-column {
  width: 24px;
}
.variants img.add-row, .variants img.add-column, .nomenclature img.add-row, .nomenclature img.add-column {
  width: 24px;
}
.variants img.add-row:hover, .variants img.add-column:hover,
.variants img.remove-row:hover, .variants img.remove-column:hover, .nomenclature img.add-row:hover, .nomenclature img.add-column:hover,
.nomenclature img.remove-row:hover, .nomenclature img.remove-column:hover {
  opacity: 0.75;
}
.variants .variant-table-message, .nomenclature .variant-table-message {
  height: 44px;
  width: 75px;
  position: relative;
}
.variants .variant-table-message div, .nomenclature .variant-table-message div {
  position: absolute;
  top: 50%;
  left: 50%;
}
.variants .variant-table-message div img, .nomenclature .variant-table-message div img {
  margin-top: -50%;
  margin-left: -50%;
}

/*************************
* ProductCategory Edit   *
**************************/
.category-edit, .sub-category-edit, .sub-sub-category-edit, .sub-sub-sub-category-edit, .sub-sub-sub-sub-category-edit {
  cursor: pointer;
  padding: 12px 8px;
}

.category-edit {
  font-size: 1.3em;
  font-weight: 600;
}

.sub-category-edit {
  font-size: 1.2em;
  color: #7d7d7d;
  padding-left: 30px;
}

.sub-sub-category-edit {
  padding-left: 45px;
}

.sub-sub-sub-category-edit {
  padding-left: 60px;
}

.sub-sub-sub-sub-category-edit {
  padding-left: 75px;
}

.category-edit:hover, .sub-category-edit:hover, .sub-sub-category-edit:hover, .sub-sub-sub-category-edit:hover, .sub-sub-sub-sub-category-edit:hover {
  background-color: #f2f2f2;
}

table.product-sorting-table tr {
  /*cursor: move !important;*/
}

/*******************
* Export           *
********************/
.bookmark-table {
  width: 100%;
}

.bookmark-table td {
  vertical-align: middle;
  padding-bottom: 1.5em;
}

.bookmark-table th {
  text-align: left;
  padding-bottom: 2em;
}

.bookmark-table .font-large {
  font-size: 1em;
}

.bookmark-table .font-normal {
  font-size: 0.9em;
}

.bookmark-table .font-small {
  font-size: 0.7em;
}

.bookmark-table img {
  display: block;
  width: 50px;
  height: 50px;
}

.bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.bg img {
  width: 100%;
}

.export-header {
  margin-bottom: 50px;
}

.export-column {
  width: 32%;
  height: 100%;
  margin-right: 5px;
}
.export-column .blue-bar {
  height: 15px;
  overflow: hidden;
}

.export-bar:last-child {
  margin-right: 0;
}

.export-claim {
  margin-top: 95px;
  color: #0e3a63;
  font-weight: bold;
  font-size: 1.2em;
  text-align: right;
}

.export-logo {
  margin-top: 30px;
  text-align: right;
}

.export-footer {
  margin-top: 30px;
  height: 10px;
}
.export-footer .blue-bar {
  height: 15px;
  overflow: hidden;
}

.price-table {
  float: right;
}

.price_sum {
  height: 0 !important;
  padding: 5px !important;
}

/*******************
* Retailer
********************/
#map {
  height: 800px;
}

/*******************
* Modular Seal
********************/
.ms-button {
  cursor: pointer;
  max-width: none;
  width: 16px;
  height: 16px;
  margin: 3px;
}

.ratio-col {
  float: left;
  margin: 0 3% 0 0;
}

.ratio-col-small {
  float: left;
  margin: 0;
}

.list-table .ratio-table td {
  border-bottom: none;
  padding: 6px 4px;
}

/*******************
* GKD Product design
********************/
.gkd-smaller-margin-bottom {
  margin-bottom: 4px !important;
}

.gkd-configurator-background {
  background-color: #e3e3e3;
  padding: 5px 10px 10px 10px;
}

.gkd-result-title {
  color: #003764;
}

.gkd-title {
  font-weight: 700;
  font-size: 1.71em;
  color: #003764;
  line-height: 1.2em;
  margin-bottom: 4px;
}

.gkd-subtitle {
  color: #003764;
  font-weight: 700;
  font-size: 1em;
  line-height: 1.2em;
  margin-bottom: 6px;
}

.gkd-article-code {
  font-weight: 300;
  color: #6e6e6e;
  font-size: 1.71em;
  display: block;
}

.gkd-article-number {
  margin-bottom: 16px;
}

.gkd-icon-link-text {
  font-weight: 300;
  font-size: 1.2em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.8em;
}

.gkd-icon-link-text:hover {
  cursor: pointer;
  text-decoration: underline;
}

.gkd-icon-link-image {
  vertical-align: middle;
  margin-right: 8px;
  width: 30px;
  margin-top: -6px;
}

.icon-link-text-inactive {
  color: #999;
}

.icon-link-text-inactive:hover {
  text-decoration: none;
  cursor: default;
}

.icon-link-text {
  color: #000;
}

.gkd-label-strong {
  font-weight: bold;
}

.upload-download-expiration-date-container {
  width: 185px;
}
.upload-download-expiration-date-container .expiration-date-container {
  position: relative;
  width: 80%;
}
.upload-download-expiration-date-container .expiration-date-container .clear-flatpicker-icon {
  width: 10%;
  height: 100%;
}
.upload-download-expiration-date-container .expiration-date-container .clear-flatpicker-icon img {
  width: 16px;
  vertical-align: middle;
}
.upload-download-expiration-date-container .expiration-date-container .expiration-date {
  width: 85%;
  font-size: inherit;
}
.upload-download-expiration-date-container .upload-download-container {
  display: inline-block;
  width: 20%;
  font-size: 8pt;
}
.upload-download-expiration-date-container .upload-download-container .upload-download {
  width: 100%;
  margin-top: 10px;
}

/*******************
* Länderkonfigurator
* Country Configurator
********************/
form.country-configurator div.country-thumbnail {
  min-height: 100px;
  text-align: center;
}
form.country-configurator div.country-thumbnail.no-image {
  line-height: 100px;
  border: 2px solid gray;
}
form.country-configurator div.country-thumbnail img {
  max-height: 200px;
}
form.country-configurator div.country-thumbnail span {
  vertical-align: middle;
}

.icon-in-line {
  width: 1em;
  vertical-align: bottom;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
}
.icon-in-line:hover {
  filter: invert(12%) sepia(66%) saturate(2047%) hue-rotate(189deg) brightness(92%) contrast(102%);
  transform: scale(1.3);
}

.faq-body .preview {
  border: 2px solid #002c54;
  padding: 15px;
}
.faq-body .preview .category {
  margin: 20px 10px 10px 10px;
  font-size: 20px;
  color: #002c54;
  font-weight: bolder;
}
.faq-body .preview .category .question {
  margin: 10px 15px 10px 15px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}
.faq-body .preview .category .question .img-container {
  display: inline-block;
  align-items: center;
  vertical-align: bottom;
}
.faq-body .preview .category .question img {
  height: 25px;
  width: auto;
  line-height: 1;
}
.faq-body .preview .category .question.closed img.expand-more {
  display: block;
}
.faq-body .preview .category .question.closed img.expand-less {
  display: none;
}
.faq-body .preview .category .question.open img.expand-more {
  display: none;
}
.faq-body .preview .category .question.open img.expand-less {
  display: block;
}
.faq-body .preview .category .question.closed + .answer {
  display: none;
}
.faq-body .preview .category .question.open + .answer {
  display: block;
}
.faq-body .preview .category .answer {
  color: black;
  margin: 0 30px;
  font-size: 16px;
  font-weight: normal;
}
.faq-body .editor .categories-container {
  border: 2px solid #002c54;
  padding: 10px;
}
.faq-body .editor .categories-container .button-container {
  padding: 0;
  background: white;
  margin: 5px;
}
.faq-body .editor .categories-container .button-container button {
  width: 100%;
  color: #002c54;
  border: 0;
  background: white;
  padding: 5px 15px;
  font-size: 30px;
  font-weight: bolder;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
.faq-body .editor .categories-container .button-container button:hover {
  background: rgba(0, 44, 84, 0.2);
  font-size: 34px;
  padding: 3px !important;
}
.faq-body .editor .categories-container .category-title {
  margin: 5px;
  display: flex;
  flex-grow: 1;
}
.faq-body .editor .categories-container .category-title a.icon-in-line {
  flex-grow: 0;
  margin-left: 20px;
  margin-right: 2.5px;
  line-height: 20px;
  display: flex;
  align-items: center;
  width: 20px;
}
.faq-body .editor .categories-container input[type=text] {
  border: none;
  margin: 5px 0 5px 0;
  padding: 5px 5px;
  font-size: 23px;
  line-height: 23px;
  color: #002c54;
  background: rgba(0, 44, 84, 0.05);
  flex-grow: 1;
  width: 100%;
}
.faq-body .editor .categories-container textarea {
  font-size: 17px;
  line-height: 1.5;
  padding: 5px;
  outline: 0;
  width: 100%;
  resize: vertical;
  min-height: 50px;
  background: rgba(0, 44, 84, 0.05);
  border: 0;
}
.faq-body .editor .categories-container .category-item {
  padding: 5px 15px 5px 15px;
  margin: 5px 5px 15px 5px;
  background: white;
}
.faq-body .editor .categories-container .category-item .category-content {
  display: grid;
  grid-template-columns: 1fr 40px;
}
.faq-body .editor .categories-container .category-item .drag-handle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.faq-body .editor .categories-container .category-item .drag-handle-container img.drag-handle {
  margin: 0;
  height: 20px;
  width: 20px;
  filter: brightness(0) invert(95%) sepia(0%) saturate(78%) hue-rotate(175deg) brightness(89%) contrast(86%);
}
.faq-body .editor .categories-container .category-item .drag-handle-container img.drag-handle:hover {
  transform: scale(1.2);
  filter: brightness(0) invert(12%) sepia(66%) saturate(2047%) hue-rotate(189deg) brightness(92%) contrast(102%);
}
.faq-body .editor .categories-container .category-item .faq-container {
  margin-left: 10px;
}
.faq-body .editor .categories-container .category-item .faq-container .faq-item {
  padding: 10px;
  margin: 0 5px 20px 5px;
  border: 1.5px solid #002c54;
  display: grid;
  grid-template-columns: 40px 1fr;
}
.faq-body .editor .categories-container .category-item .faq-container .faq-item .drag-handle-container {
  margin-right: 10px;
  margin-left: 0;
}
.faq-body .editor .categories-container .category-item .faq-container .faq-item .drag-handle-container img.drag-handle {
  margin-left: 0;
}
.faq-body .editor .categories-container .category-item .faq-container .faq-item .faq-content {
  display: block;
}
.faq-body .editor .categories-container .category-item .faq-container .faq-item .faq-content .question {
  font-size: 1.2em;
  font-weight: normal;
  display: flex;
  margin-bottom: 10px;
}
.faq-body .editor .categories-container .category-item .faq-container .faq-item .faq-content .question input {
  font-size: 20px;
  line-height: 20px;
}
.faq-body .editor .categories-container .category-item .faq-container .faq-item .faq-content .question a.icon-in-line {
  margin-left: 10px;
  line-height: 20px;
  margin-right: 2.5px;
  display: flex;
  align-items: center;
  width: 20px;
  flex-grow: 0;
}
.faq-body .editor .categories-container .category-item .faq-container .faq-item .faq-content .answer textarea {
  width: calc(100% - 32.5px);
}
.faq-body .editor .categories-container .category-item .faq-container .button-container {
  margin: 0 5px 10px 5px;
}
.faq-body .editor .categories-container .category-item .faq-container .button-container button {
  border: 1.5px solid #002c54;
  padding: 5px 15px;
}

.pim-update-log {
  padding: 8px;
  background-color: #eee;
}

.result-products-table-editor {
  padding: 1rem;
  margin-bottom: 32px;
  background-color: #f2f2f2;
}
.result-products-table-editor .row {
  margin-bottom: 16px;
}
.result-products-table-editor .row-delete {
  position: absolute;
  top: 70%;
  transform: translate(0, -50%);
  right: -12px;
  padding: 4px;
  cursor: pointer;
}
.result-products-table-editor .row-delete img {
  width: 16px;
}

.planning-tool-edit .answer-preferences label.checkbox-label {
  font-weight: normal;
}
.planning-tool-edit .answer-preferences label.checkbox-label input[type=checkbox] {
  width: auto;
}

.backend-search {
  display: flex;
  justify-content: space-between;
}
.backend-search .spell-correct {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#whitepaper-table table td.delete {
  width: 5%;
}
#whitepaper-table table td.delete img.whitepaper-entry-delete {
  display: inline;
}

/*# sourceMappingURL=style.css.map */
