.psol-comp-index-container {
  width: 100%;
  height: 600px;
  position: relative;
  display: flex;
}

.psol-comp-index-scroll-container {
  flex-grow: 2;
  /*position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 5px;*/
}

/* improves index browsing performance:
   prevents relayouting and repainting of index node list in chrome */
.psol-comp-index-performance-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* hover effect in pure css prevents paint flashing of many index elements.
   TODO: consider to do this directly in viewBase and get rid of js .active logic */
.psol-comp-viewbase-card-index-hover:hover > .psol-comp-viewbase-card-inner {
  cursor: pointer;
  box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
}

.psol-comp-index-node-list {
  position: relative;
  height: 100%;
  width: 100%;
}

.psol-comp-index-item {
  position: relative;
  width: 140px;
}

.psol-comp-index-item-inner {
  min-height: 160px;
  height: 180px;
}

.psol-comp-index-item-inner.psol-comp-index-item-geo {
  height: 190px;
}

.psol-comp-index-item-cloud .psol-comp-index-item-inner {
  height: auto;
}

.psol-comp-index-item-erp-bar-background {
  background-color: #c0c0c0;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 10px;
  height: 117px;
}

.psol-comp-index-item-erp-bar-background-geometric {
  height: 137px;
}

.psol-comp-index-item-erp-bar-list-background {
  background-color: #c0c0c0;
  width: 10px;
  height: 100px;
  margin-right: 5px;
  float: left;
}

.psol-comp-index-item-erp-bar-background[data-transparent='1'],
.psol-comp-index-item-erp-bar-list-background[data-transparent='1'] {
  background-color: transparent;
  border: 1px solid black;
}

.psol-comp-index-item-erp-bar,
.psol-comp-index-item-erp-bar-list {
  background-color: #ff0000;
  opacity: 0.4;
  width: 100%;
  height: 100%;
}

.psol-comp-index-item-erp-bar-background[data-transparent='1'] .psol-comp-index-item-erp-bar,
.psol-comp-index-item-erp-bar-list-background[data-transparent='1'] .psol-comp-index-item-erp-bar-list {
  display: none;
}



.psol-comp-index-item-img-wrapper-erp {
  margin-left: 17px;
  margin-right: 17px;
  width: auto;
}

.psol-comp-index-item-list .psol-comp-index-item-img-wrapper {
  margin-top: 0;
  width: 100px;
  float: left;
  text-align: left;
}

.psol-comp-index-item-cloud .psol-comp-index-item-img-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.psol-comp-index-item-img,
.psol-comp-index-item-img-cloud {
  max-height: 100%;
  max-width: 100%;
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  object-fit: scale-down;
  margin-top:20px;
}

.psol-comp-index-item-img.lazy-image,
.psol-comp-index-item-img-cloud.lazy-image {
  height: 100%;
}

.psol-comp-index-line-result {
  flex-grow: 1;
  word-wrap: break-word;
}

.psol-comp-index-item-geo-distance-list {
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: 11px;
  margin: 5px;
  border: 1px solid grey;
}

/*********************************  text-ellipsis HACK ON ********************************/
div.psol-comp-index-item-desc {
  font-size: 14px;
  font:'Play';
  margin: 5px;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  color:#ffe900;

}

div.psol-comp-index-item-desc-line-clamp {
  /* autoprefixer: off */
  top:5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: absolute;
  text-align: left;
  /*
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: absolute;
  text-align: left;
  width: 3ch;
  overflow: hidden;
  white-space: nowrap;
  font-size: 4em;
  text-transform: uppercase;
  position: absolute;
  bottom:10px;
  color: #333;
  z-index: 1001;
  */
}

/* MS Edge targeting */
@supports (-ms-ime-align:auto) {
  div.psol-comp-index-item-desc-line-clamp::before {
    content: '\002026';
    width: 15%;
    right: 0;
    top: 1.3em;
    position: absolute;
    text-align: right;
    background: linear-gradient(90deg, transparent 0%, white 50%);
    padding-right: 5%;
  }

  div.psol-comp-index-item-desc-line-clamp::after {
    content: '';
    height: 100%;
    width: 100%;
    background-color: inherit;
    position: absolute;
  }

  div.psol-comp-index-item-desc-line-clamp {
    max-height: 2.6em;
  }

  div.psol-comp-index-item-desc {
    font-size: 14px;
    margin: 5px;
    background-color: #ffffff;
    display: block;
    line-height: 1.3em;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
  }
}

/* Firefox/Gecko browser targeting */
@supports not (-webkit-line-clamp: 2) {
  div.psol-comp-index-item-desc-line-clamp::before {
    content: '\002026';
    width: 15%;
    right: 0;
    top: 1.3em;
    position: absolute;
    text-align: right;
    background: linear-gradient(90deg, transparent 0%, white 50%);
    padding-right: 5%;
  }

  div.psol-comp-index-item-desc-line-clamp::after {
    content: '';
    height: 100%;
    width: 100%;
    background-color: inherit;
    position: absolute;
  }

  div.psol-comp-index-item-desc-line-clamp {
    max-height: 2.6em;
  }

  div.psol-comp-index-item-desc {
    font-size: 14px;
    margin: 5px;
    background-color: #ffffff;
    display: block;
    line-height: 1.3em;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
  }
}

/*  IE10+ browser targeting*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  div.psol-comp-index-item-desc-line-clamp::before {
    content: '\002026';
    width: 15%;
    right: 0;
    top: 1.3em;
    position: absolute;
    text-align: right;
    background: linear-gradient(90deg, transparent 0%, white 50%);
    padding-right: 5%;
  }

  div.psol-comp-index-item-desc-line-clamp::after {
    content: '';
    height: 100%;
    width: 100%;
    background-color: inherit;
    position: absolute;
  }

  div.psol-comp-index-item-desc-line-clamp {
    max-height: 2.6em;
  }

  div.psol-comp-index-item-desc {
    font-size: 14px;
    margin: 5px;
    background-color: #ffffff;
    display: block;
    line-height: 1.3em;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
  }
}

/*  IE9 browser targeting*/
@media screen and (min-width: 0\0) {
  div.psol-comp-index-item-desc-line-clamp::before {
    content: '\002026';
    width: 15%;
    right: 0;
    top: 1.3em;
    position: absolute;
    text-align: right;
    background: linear-gradient(90deg, transparent 0%, white 50%);
    padding-right: 5%;
  }

  div.psol-comp-index-item-desc-line-clamp::after {
    content: '';
    height: 100%;
    width: 100%;
    background-color: inherit;
    position: absolute;
  }

  div.psol-comp-index-item-desc-line-clamp {
    max-height: 2.6em;
  }

  div.psol-comp-index-item-desc {
    font-size: 14px;
    margin: 5px;
    background-color: #ffffff;
    display: block;
    line-height: 1.3em;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
  }
}

/********************************* text-ellipsis HACK OFF ********************************/

div.psol-comp-index-item-desc-cloud {
  font-size: 14px;
  padding: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

div.psol-comp-index-item-catname {
  font-size: 11px;
  padding: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

span.psol-comp-index-search-highlight {
  background-color: #fd9b32;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}

.psol-comp-index-item-list {
  position: relative;
  margin: 5px;
  padding: 5px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  cursor: pointer;
  width: 100%;
}

.psol-comp-index-node-list.psol-comp-index-items-1 > .psol-comp-viewbase-flex-item {
  width: 100%;
  max-width: 100%;
}

.psol-comp-index-node-list.psol-comp-index-items-2 > .psol-comp-viewbase-flex-item {
  width: 50%;
  max-width: 50%;
}

.psol-comp-index-node-list.psol-comp-index-items-3 > .psol-comp-viewbase-flex-item {
  width: 33.333%;
  max-width: 33.333%;
}

.psol-comp-index-node-list.psol-comp-index-items-4 > .psol-comp-viewbase-flex-item {
  width: 25%;
  max-width: 25%;
}

.psol-comp-index-node-list.psol-comp-index-items-5 > .psol-comp-viewbase-flex-item {
  width: 20%;
  max-width: 20%;
}

.psol-comp-index-node-list.psol-comp-index-items-6 > .psol-comp-viewbase-flex-item {
  width: 16.666%;
  max-width: 16.666%;
}

.psol-comp-index-node-list.psol-comp-index-items-7 > .psol-comp-viewbase-flex-item {
  width: 14.285%;
  max-width: 14.285%;
}

.psol-comp-index-node-list.psol-comp-index-items-8 > .psol-comp-viewbase-flex-item {
  width: 12.5%;
  max-width: 12.5%;
}

.psol-comp-index-node-list.psol-comp-index-items-9 > .psol-comp-viewbase-flex-item {
  width: 11.111%;
  max-width: 11.111%;
}

.psol-comp-index-node-list.psol-comp-index-items-10 > .psol-comp-viewbase-flex-item {
  width: 10%;
  max-width: 10%;
}

.psol-comp-index-item-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.psol-comp-index-item-footer-list {
  padding: 5px;
  width: calc(100% - 100px);
  position: absolute;
  bottom: 0;
  left: 100px;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.psol-comp-index-item-views,
.psol-comp-index-item-likes,
.psol-comp-index-item-downloads,
.psol-comp-index-item-comments {
  width: 25%;
  height: 100%;
  text-align: center;
}

.psol-comp-index-item-list-views,
.psol-comp-index-item-list-likes,
.psol-comp-index-item-list-downloads,
.psol-comp-index-item-list-comments {
  width: 25%;
  height: 100%;
  text-align: center;
}

.psol-comp-index-item-collection {
  width: 100%;
  text-align: center;
  display: inline-flex;
}

.psol-comp-index-item-info-text {
  font-size: 11px;
  line-height: 22px;
  padding-left: 3px;
  padding-right: 8px;
}

.psol-comp-index-item-collection .psol-comp-index-item-info-text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.psol-comp-index-item-info-pic,
.psol-comp-index-item-info-pic svg {
  height: 16px;
  width: 16px;
}

.psol-comp-index-item-collection .psol-comp-index-item-info-pic {
  width: 100%;
}

.psol-comp-index-item-parametric-icon {
  position: absolute;
  left: 10px;
}

.psol-comp-index-item-profile-pic-container {
  float: right;
  padding: 5px;
}

.psol-comp-index-item-profile-pic {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
}

.psol-comp-index-item-geo-distance {
  border: 1px solid grey;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
  text-align: center;
  position: relative;
  background-color: #ffffff;
  font-size: 11px;
}

.psol-comp-index-item-geo-distance-bar {
  position: absolute;
  font-size: 11px;
}

.psol-comp-index-item-geo-distance-value {
  font-size: 11px;
  position: absolute;
  width: 100%;
}

.psol-comp-index-item-catalog-image-container {
  position: absolute;
  top: 8px;
  right: 8px;
}

.psol-comp-index-item-catalog-image {
  width: 50px;
  height: 50px;
}

.psol-comp-index-item-icon {
  background-size: 20px;
  background-repeat: no-repeat;
  position: absolute;
  height: 20px;
  width: 20px;
  left: 14px;
  top: 7px;
  background-image: url(../img/indexbrowsing/3d.png);
}

.psol-comp-index-item-crawlicon {
  height: 20px;
  width: 20px;
  position: absolute;
  left: 38px;
  top: 7px;
}

.psol-comp-index-item-crawlicon svg.psol-comp-viewbase-svgicon {
  width: 15px;
  height: 15px;
}

.psol-comp-index-eol-icon {
  position: absolute;
  height: 18px;
  width: 18px;
  left: 14px;
  top: 28px;
}

.psol-comp-index-eol-icon-line {
  position: absolute;
  height: 18px;
  width: 18px;
  left: 38px;
  top: 7px;
}

.psol-comp-index-eol-icon-list {
  position: absolute;
  height: 18px;
  width: 18px;
}

.psol-comp-index-eol-icon svg,
.psol-comp-index-eol-icon-list svg,
.psol-comp-index-eol-icon-line svg {
  width: 100%;
  height: 100%;
}

.psol-comp-index-item-icon-erp {
  left: 27px;
}

.psol-comp-index-eol-icon-erp {
  left: 50px;
  top: 10px;
}

.psol-comp-index-item-icon-erp-list {
  left: 18px;
}

.psol-comp-index-item-prj {
  background-image: url(../img/indexbrowsing/3d.png);
}

.psol-comp-index-item-dir {
  background-image: url(../img/indexbrowsing/dir.png);
}

.psol-comp-index-item-doc {
  background-image: url(../img/indexbrowsing/document.png);
}

.psol-comp-index-item-nocad {
  background-image: url(../img/indexbrowsing/nocad.png);
}

.psol-comp-index-item-assemblytab {
  background-image: url(../img/indexbrowsing/asstab.png);
}

.psol-comp-index-item-list:active,
.psol-comp-index-item-list.active {
  box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
  z-index: 3;
}

.psol-comp-index-alphabetic-container {
  text-align: center;
  cursor: pointer;
  flex: 1 1 100%;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  background: #ffffff;
  margin: 5px;
}

.psol-comp-index-alphabetic-container:first-child {
  margin: 0;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.psol-comp-index-alphabetic-container.active,
.psol-comp-index-alphabetic-container:active {
  box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
  z-index: 3;
}

.psol-comp-index-alphabetic-nav {
  background-color: #ffffff;
  width: 30px;
  /*position: absolute;*/
  flex-shrink: 0;
  top: 0;
  bottom: 0;
  display: flex;
}

.psol-comp-index-alphabetic-nav-left {
  left: 0;
}

.psol-comp-index-alphabetic-nav-right {
  right: 0;
}

.psol-comp-index-scroll-container.psol-comp-index-alphabetic-nav-left {
  left: 30px;
}

.psol-comp-index-scroll-container.psol-comp-index-alphabetic-nav-right {
  right: 30px;
}

.psol-comp-index-alphabetic-nav-container {
  list-style-type: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.psol-comp-index-alphabetic-nav-letter {
  font-size: 16px;
  font-weight: 500;
  flex: 1;
  min-height: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.psol-comp-index-alphabetic-nav-letter-hidden {
  display: none;
}

.psol-comp-index-alphabetic-nav-preview {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  color: white;
  text-align: center;
  font-size: 110px;
  line-height: 124px;
  height: 120px;
  width: 120px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.psol-comp-index-letter-stretch {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  text-align: center;
  line-height: 160px;
  font-size: 100px;
  color: #000000;
  background: #ffffff;
  cursor: auto;
}

.psol-comp-index-letter-stretch svg {
  height: 60px;
  width: 60px;
}

.psol-comp-index-line-break {
  width: 100%;
  height: 10px;
}

.psol-comp-index-line-break:first-child {
  height: 0;
}

.psol-comp-index-backbutton {
  width: 100px;
  height: 100px;
  background-image: url(../img/indexbrowsing/folderback_200.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100px;
}

.psol-comp-index-catalogs {
  width: 100px;
  height: 100px;
  background-image: url(../img/indexbrowsing/catalogs.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100px;
}

.psol-comp-index-dynamic-filter-assistant {
  flex-shrink: 0;
  width: 30%;
  padding: 0 5px 5px 10px;
  border-left: 2px solid #9ab6ca;
  margin: 5px 0 0 5px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.psol-comp-index-dynamic-filter-assistant-m {
  width: 40%;
}

.psol-comp-index-dynamic-filter-assistant-s {
  width: 50px;
  border: none;
  padding: 5px;
  margin: 0;

}

.psol-comp-index-dynamic-filter-assistant-button {
  padding: 10px 0 0 8px;
  box-sizing: border-box;
}

.psol-comp-index-dynamic-filter-assistant-button > .psol-comp-viewbase-svgicon {
  width: 20px;
  height: 20px;
}

.psol-comp-index-dynamic-filter-assistant-expanded {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

.psol-comp-index-dynamic-filter-assistant-close {
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 5px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  width: 44px;
  height: 44px;
  background-position: 50%, 50%;
  background-repeat: no-repeat;
  background-size: 32px;
  background-image: url(../img/dialogbase/close_button.png);
  cursor: pointer;
}
.psol-comp-assistant-checkbox-showfilter {
  margin-right: 35px;
}

.psol-comp-index-dynamic-filter-assistant-container {
  height: 100%;
}

.psol-comp-index-dynamic-filter-assistant-s > .psol-comp-index-dynamic-filter-assistant-container {
  display: none !important;
}

.psol-comp-index-dynamic-filter-assisstant-item {
  width: 100px;
  height: 100px;
  background-image: url(../img/indexbrowsing/catalog.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100px;
}

.psol-comp-index-backbutton-to-all {
  background-image: url(../img/indexbrowsing/topback_200.png);
}

.psol-comp-index-items-line-result {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
  max-width: 100%;
}

.psol-comp-index-items-line-result .psol-comp-index-item-img-wrapper {
  margin: 0;
  margin-top: 20px;
  margin-left: 20px;
  flex-shrink: 0;
}

.psol-comp-index-items-line-result-line .psol-comp-index-item-img-wrapper {
  margin: 0;
  flex-shrink: 0;
  max-width: 50px;
  height: 100%;
}

.psol-comp-index-items-line-result-expander {
  margin-top: 10px;
  cursor: default;
  background-color: #eaeaea;
  display: flex;
  flex-direction: column;
}

.psol-comp-index-items-line-result-expander-handle {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 6px;
  cursor: pointer;
}

.psol-comp-index-items-line-result-expander-handle > svg {
  width: 32px;
  height: 32px;
}

.psol-comp-index-items-line-result-expander-handle > svg[data-svgsymbolid='actLineSearchCollapse'] {
  display: none;
}

.psol-comp-index-items-line-result-expander-handle.expanded > svg[data-svgsymbolid='actLineSearchCollapse'] {
  display: block;
}

.psol-comp-index-items-line-result-expander-handle.expanded > svg[data-svgsymbolid='actLineSearchExpand'] {
  display: none;
}

.psol-comp-index-items-line-result-expander-handle::after {
  content: attr(data-collapsed);
  margin-left: 1em;
}

.expanded.psol-comp-index-items-line-result-expander-handle::after {
  content: attr(data-expanded);
}

.psol-comp-index-items-line-result-line-data-container {
  flex: 1;
  counter-reset: lineNumber;
  padding-left: 3em;
  display: none;
}

.expanded + .psol-comp-index-items-line-result-line-data-container {
  display: block;
}

.psol-comp-index-items-line-result-line-info-text {
  padding: 6px;
}

.psol-comp-index-items-line-result-line-info-expanded .psol-comp-index-items-line-result-line-info-text {
  margin-bottom: 4px;
}

.psol-comp-index-items-line-result-line-data::before {
  counter-increment: lineNumber;
  content: counter(lineNumber);
  position: absolute;
  top: 1em;
  left: -2em;
}

.psol-comp-index-line-result-hasmore {
  padding: 5px;
  display: flex;
}

.psol-comp-index-items-line-result .psol-comp-index-item-desc {
  margin-right: 50px;
  height: auto;
  line-height: normal;
  display: block;
  width: 100%;
}

.psol-comp-index-items-line-result .psol-comp-index-item-img-erp {
  margin: 5px;
  max-width: 32px;
  max-height: 32px;
}

.psol-comp-index-items-line-result-name {
  border-bottom: 1px solid #cccccc;
  font-weight: bold;
  width: 100%;
  margin-bottom: 5px;
}

.psol-comp-index-items-line-result-line-details-name {
  font-weight: bold;
}

.psol-comp-index-item-geometric-wrapper {
  padding-left: 12px;
}

.psol-comp-index-items-single-parts-result {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.psol-comp-index-items-single-parts-result-line {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 5px;
  padding: 5px;
  box-sizing: border-box;
  font-size: 12px;
  position: relative;
  background: white;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  cursor: pointer;
}

.psol-comp-index-items-single-parts-result-line:hover,
.psol-comp-index-items-single-parts-result-line:active {
  z-index: 3;
  box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
}

.psol-comp-index-items-single-parts-result-line-header {
  border-bottom: 1px solid #ededea;
  padding-bottom: 0.25em;
  margin-bottom: 0.25em;
  display: flex;
  flex-direction: row;
}

.psol-comp-index-items-single-parts-result-line-block {
  padding-right: 0.5em;
  border-right: 1px solid #ededea;
  margin-right: 0.5em;
}

.psol-comp-index-items-single-parts-result-line-block:last-child {
  padding-right: 0;
  border-right: 0;
  margin-right: 0;
}

.psol-comp-index-items-single-parts-result-line-image {
  width: 50px;
  flex-shrink: 0;
  position: relative;
}

.psol-comp-index-items-single-parts-result-line-image-preview {
  width: 100%;
}

.psol-comp-index-items-single-parts-result-line-image-erp {
  position: absolute;
  width: 15px;
  left: 0;
  top: 0;
}

.psol-comp-index-items-single-parts-result-line-catalog {
  width: 50px;
  flex-shrink: 0;
}

.psol-comp-index-items-single-parts-result-line-catalog > img {
  width: 100%;
}

.psol-comp-index-items-single-parts-result-line-details-name,
.psol-comp-index-items-single-parts-result-line-details-nb {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.psol-comp-index-items-single-parts-result-line-details {
  flex-grow: 1;
  min-width: 0;
}

.psol-comp-index-items-single-parts-result-line-details-nn {
  font-size: 14px;
}

.psol-comp-index-items-single-parts-result-line-variables {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.psol-comp-index-items-single-parts-result-line-variables-chkbx {
  display: none;
}

.psol-comp-index-items-single-parts-result-line-variables-content {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.psol-comp-index-items-single-parts-result-line-variables-content-tabvars,
.psol-comp-index-items-single-parts-result-line-variables-content-erpvars {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-height: 2.4em;
  position: relative;
}

.psol-comp-index-items-single-parts-result-line-variables-content-erpvars {
  border-top: 1px solid #ededea;
  margin-top: 0.25em;
  padding-top: 0.25em;
  box-sizing: border-box;
}

.psol-comp-index-items-single-parts-result-line-variables-content-hasmore::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.75em;
  background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, 0));
}

.psol-comp-index-items-single-parts-result-line-variables-chkbx:checked + .psol-comp-index-items-single-parts-result-line-variables-content .psol-comp-index-items-single-parts-result-line-variables-content-hasmore::after {
  content: none;
}

.psol-comp-index-items-single-parts-result-line-variables-content-item + .psol-comp-index-items-single-parts-result-line-variables-content-item {
  padding-left: 0.5em;
  border-left: 2px solid #ededea;
  margin-left: 0.5em;
}

.psol-comp-index-items-single-parts-result-line-variables-content-item-name {
  font-weight: bold;
}

.psol-comp-index-items-single-parts-result-line-variables-expand {
  margin-left: 5px;
  flex-shrink: 0;
  background: #9ab6ca;
  color: white;
  padding: 0 0.5em;
  border: 1px solid rgba(154, 182, 202, 0.8);
  border-radius: 0.25em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: none;
}

.psol-comp-index-items-single-parts-result-line-variables-expand:hover,
.psol-comp-index-items-single-parts-result-line-variables-expand:active {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  transform: scale(1.025);
}

.psol-comp-index-items-single-parts-result-line-variables-expand::before {
  content: attr(data-expand);
}

.psol-comp-index-items-single-parts-result-line-variables-chkbx:checked ~ .psol-comp-index-items-single-parts-result-line-variables-expand::before {
  content: attr(data-collapse);
}

.psol-comp-index-items-single-parts-result-line-geo-distance {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  border: 1px solid;
  box-sizing: border-box;
  background: #ffffff;
}

.psol-comp-index-items-single-parts-result-line-geo-distance::after {
  content: attr(data-value);
  display: block;
  font-size: 8px;
  position: relative;
  text-align: center;
}

.psol-comp-index-items-single-parts-result-line-geo-distance-value {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.psol-comp-large .psol-comp-index-items-single-parts-result-line {
  flex-direction: row;
}

.psol-comp-large .psol-comp-index-items-single-parts-result-line-header {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-right: 1px solid #ededea;
  padding-right: 0.5em;
  margin-right: 0.5em;
  min-width: 40%;
}

.psol-comp-large .psol-comp-index-items-single-parts-result-line-variables-content {
  max-height: 60px;
}

.psol-comp-large .psol-comp-index-items-single-parts-result-line-variables-content-tabvars {
  max-height: 100%;
}

.psol-comp-large .psol-comp-index-items-single-parts-result-line-variables-content-erpvars {
  min-height: 30px;
}

.psol-comp-index-items-single-parts-result-line-variables-chkbx:checked ~ .psol-comp-index-items-single-parts-result-line-variables-content .psol-comp-index-items-single-parts-result-line-variables-content-tabvars,
.psol-comp-index-items-single-parts-result-line-variables-chkbx:checked ~ .psol-comp-index-items-single-parts-result-line-variables-content .psol-comp-index-items-single-parts-result-line-variables-content-erpvars {
  max-height: none;
  white-space: normal;
}

.psol-comp-large .psol-comp-index-items-single-parts-result-line-variables-chkbx:checked + .psol-comp-index-items-single-parts-result-line-variables-content {
  max-height: initial;
}

.psol-comp-viewbase-card-inner {
    background-color: #343434 !important;
  }

.psol-comp-table-list-item:nth-child(even) {
  background: #f6f6f6;
  color:#333 !important; ;
}
.psol-comp-table-list-item:nth-child(odd) {
    background: #4c4c4c;
    color:#ffe900 !important;
}

.psol-comp-table-list-item:nth-child(odd) .psol-comp-table-list-varDesc{
    color:#ffe900 !important;
}



.psol-comp-table-variable-group {
  background: #333;
  color:#ffe900 !important;
}


.header{
  width:100%;
  height:40px;
  margin-top:8px;
  background: #fff;
}

.pageBody .title{
  margin: 0px 60px;
vertical-align: middle;
text-transform: uppercase;
top: 15px;
position: absolute;
}

.backButton {
  background: url(../img/back_icon-96x96.png);
  position: absolute;
  left: 15px;
  width:40px;
  height: 40px;
  background-size: 40px;
  cursor: pointer;
}

.pageBody .orderButton{
      display: block;
      float: right;
      border: 1px solid #ffe900;
      padding: 10px;
      width: 80px;
      background-color: #ffe900;
      text-transform: uppercase;
      text-align: center;

}

.pageBody .orderButton:hover{
  background-color:#fff;
}

.psol-comp-searchbar-searchbar-searchtypecontainer{
  border: 1px solid #ffe900 !important;
  height: 30px;
}

.psol-comp-searchbar-searchbar-searchtype-active {
    background-color: #ffe900 !important;
    color:#333 !important;
}

.psol-comp-searchbar-searchbar-searchtype-active svg * {
    fill: #333 !important;
}

.psol-comp-searchbar-searchbar-searchtype-fulltext, .psol-comp-searchbar-searchbar-searchtype-typecode {
  background:#fff;
}

.pageBody input, .pageBody select, .pageBody span{
    font-family: 'Play' !important;
    font-size: 0.8em;
}

.pageBody input{
  padding:2px !important;
}


.componentShortcut{
    top: 40%;
    font-size: 60px;
    color: #333;
    font-weight: bold;
    font-family: 'Play';
    width: 90%;
    height: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255,233,0,0.7);
    z-index: 1000;
    position: absolute;
    bottom: 10px;
    left: 10px;
    cursor:pointer;
    text-transform:uppercase;
}

.orderButton {
  display: none !important;
  background-color: #ff0000;
  position: relative;
  font-weight: bold;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  cursor: pointer;
  font-size: 12px;
  word-break: break-all;
  padding: 3px;
}

.componentShortcut:hover{
  height: 90%;
      top: 10px;
}


.psol-comp-searchbar-searchbutton {
    height: 38px !important;
    width: 32px;
    background-color: #ffe900;
    padding-left: 5px;
    padding-right: 5px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.psol-comp-searchbar-searchbutton path{
  fill:#333;
}


.psol-comp-dialogbase-dialog-header-title {
    color: #ffe900;
    font-family: 'Play';
}

.psol-comp-dialogbase-dialog {
    /* position: absolute; */
    background-color: #333;
}

.psol-comp-dialogbase-dialog {

    background-color: #333;
    border-radius: 0px !important;

  }
