/*!************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/components/catalog/index.css ***!
  \************************************************************************************/
#catalog {
  width: 100%;
  height: 100%;
  overflow: auto;
  float: left;
  border: 1px solid lightgrey;
  padding: 5px;
  padding-top: 20px;
  position: relative;
}
#catalog::before {
  content: 'catalog';
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid lightgrey;
  padding: 0px 5px;
}
.catalog-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.catalog-item {
  width: 100px;
  height: 140px;
  border: 1px solid grey;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-around;
  align-items: center;
  margin: 5px;
  position: relative;
  z-index: 3;
}
/* create folder effect with before/after */
.catalog-item.folder::before {
  content: '';
  display: block;
  position: absolute;
  border: 1px solid grey;
  height: calc(100% - 3px);
  top: 1px;
  left: 100%;
  width: 1px;
  background-color: white;
}
.catalog-item.folder::after {
  content: '';
  display: block;
  position: absolute;
  border: 1px solid grey;
  height: calc(100% - 6px);
  top: 3px;
  left: 100%;
  z-index: -1;
  width: 3px;
}
.catalog-item-icon {
  max-width: 100%;
  max-height: 100%;
}
.catalog-item-label {
  text-overflow: ellipsis;
  overflow: hidden;
}

.catalog-search {
  position: absolute;
  top: 1px;
  left: 120px;
}
.catalog-search-input {
  width: 210px;
  margin-right: 1px;
}
/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/components/progress/index.css ***!
  \*************************************************************************************/
#progress {
  background-color: rgba(255, 255, 255, 0.3);
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.loader {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #151515;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: calc(40% - 40px);
  left: calc(50% - 40px);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*!***********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/components/basket/index.css ***!
  \***********************************************************************************/

#basket {
  width: calc(100% - 358px); /* 100% - width of export*/
  height: 250px;
  overflow: auto;
  float: left;
  border: 1px solid lightgrey;
  padding: 5px;
  position: relative;
  padding-top: 25px;
  margin-right: 8px;
}
#basket::before {
  content: 'basket';
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid lightgrey;
  padding: 0px 5px;
}
.basket-item {
  border: 1px solid lightgrey;
  padding: 3px;
  margin: 2px;
  cursor: pointer;
}
.basket-item[data-update-state='Updatable'] {
  background-color: green;
}
.basket-item[data-update-state='Migratable'] {
  background-color: orange;
}
.basket-item[data-update-state='Invalid'] {
  background-color: red;
}
.manufacturer::before {
  content: 'manufacturerId: ';
  font-size: smaller;
}
.series::before {
  content: 'seriesId: ';
  font-size: smaller;
}
.baseArticleNumber::before {
  content: 'baseArticleNumber: ';
  font-size: smaller;
}
.ofmlVariantCode::before {
  content: 'ofmlVariantCode: ';
  font-size: smaller;
}
.variantCode::before {
  content: 'variantCode: ';
  font-size: smaller;
}
.short-text::before {
  content: 'short-text: ';
  font-size: smaller;
}
.long-text::before {
  content: 'long-text: ';
  font-size: smaller;
}
.feature-text::before {
  content: 'feature-text: ';
  font-size: smaller;
}
.price::before {
  content: 'price: ';
  font-size: smaller;
}
.basket-sub-items {
  font-size: small;
}
.basket-sub-items::before {
  content: 'sub articles: ';
  display: block;
  font-weight: bold;
}
/*!********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/components/property-editor/index.css ***!
  \********************************************************************************************/
#property-editor {
  width: 384px;
  min-width: 384px;
  height: 688px;
  display: flex;
  flex-direction: column;
  overflow: auto;
  background: #fff;
  border-left: 1px solid #e0e0e0 !important;
}

.property-class {
  order: 1;
  flex: 1 1 auto;
  overflow: auto;
}

.property {
  display: flex;
  flex-direction: column;
}

.property-title {
  padding: 5px 0 5px 20px;
  background: #7d7875;
  color: #fff;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
}

.property-value,
.property-choice {
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid #d7d7d7;
  background: #fff;
  color: #616161;
  font-size: 14px;
  line-height: normal;
}

.property-value {
  cursor: pointer;
}

.property-choice {
  min-height: 0;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.property-choice.selected {
  background: #f0f0f0;
  color: #000;
  font-size: 16px;
}

.property-choice[data-selectable="false"] {
  cursor: default;
  color: #9a9a9a;
}

.property-choice > img {
  max-width: 50px;
  margin-right: 10px;
  border-radius: 5px;
  flex: 0 0 auto;
}

.property-choice > div {
  flex: 1 1 auto;
}

#dnt-controls {
  order: 2;
  width: 100%;
  padding: 20px;
  border-top: 1px solid #e0e0e0;
  background: #eee;
}

#dnt-controls button,
#dnt-controls a {
  width: 100%;
  border: 0;
  padding: 16px !important;
  background: #000;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

#dnt-controls button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media screen and (max-width: 820px) {
  #property-editor {
    width: 100%;
    min-width: 0;
    height: auto;
    border-left: 0 !important;
  }

  .property-title {
    padding: 5px 0 5px 20px;
  }
}

/*!***********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/components/viewer/index.css ***!
  \***********************************************************************************/
#pcon-viewer {
  grid-area: viewer;
  position: relative;
  width: 100%;
  height: 688px;
  overflow: hidden;
  background: #fff;
}

#pcon-viewer canvas {
  display: block;
  height: 688px !important;
}

.pcon-viewer-control-tl,
.pcon-viewer-control-tr {
  position: absolute;
  top: 20px;
  z-index: 2;
}

.pcon-viewer-control-tl {
  left: 20px;
}

.pcon-viewer-control-tr {
  right: 20px;
  display: flex;
  gap: 2px;
}

.pcon-button,
.dnt-dropdown-export {
  z-index: 2;
}

.pcon-button {
  width: 48px;
  height: 48px;
  border: 0;
  background-color: #eee;
  color: #111;
  cursor: pointer;
}

.pcon-button:hover,
.dnt-dropdown-export:hover {
  background-color: #e3e3e3;
}

.pcon-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.pcon-button img {
  width: 24px;
  height: 24px;
}

.camera {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.pdf {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.dnt-dropdown-export {
  position: absolute;
  bottom: 20px;
  left: 80px;
  height: 48px;
  border-top: 0;
  border-right: 8px solid #eee;
  border-bottom: 0;
  border-left: 0;
  padding: 0 10px;
  background-color: #eee;
  cursor: pointer;
}

@media screen and (max-width: 820px) {
  #pcon-viewer {
    height: 370px;
  }

  #pcon-viewer canvas {
    height: 370px !important;
  }

  .fullscreen {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .dnt-dropdown-export {
    display: none;
  }
}

/*!********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/components/oap/index.css ***!
  \********************************************************************************/
#oap {
  position: fixed;
  background-color: white;
  border: 1px solid lightgrey;
  overflow: auto;
  max-height: 500px;
}
#oap header {
  display: flex;
  border-bottom: 1px solid lightgrey;
  padding: 5px;
  width: 100%;
}
#oap header .back {
  cursor: pointer;

}
#oap header .title {
  flex-grow: 1;
}
#oap header .close {
  cursor: pointer;
}
/* property edtior */
.oap-properties .property {
  padding: 5px;
  padding-right: 15px;
}
.oap-properties .property[data-choice-list="true"][data-editable="true"]::after {
  content: '\025B8';
  top: unset;
}

/* action edtior */
.oap-actions {
  max-width: 220px;
}
.oap-actions.tile {
  max-width: 820px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.oap-actions.list {
  display: block;
}
.oap-action {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  height: auto;
  border: 1px solid lightgrey;
  margin: 5px;
}
.oap-action.small {
  width: 100px;
}
.oap-action.medium {
  width: 200px;
}
.oap-action.large {
  width: 400px;
}
.oap-action-icon {
  max-width: 100%;
  max-height: 100%;
}
.oap-action-text {
  
}
.oap-media {
  overflow: initial !important;
}
.oap-media .close {
  position: absolute;
  top: -25px;
  right: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid black;
  background-color: white;
  text-align: center;
}

.oap-message {
  padding: 10px;
}
.oap-message .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid black;
  background-color: white;
  text-align: center;
}
/*!***********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/components/export/index.css ***!
  \***********************************************************************************/

#export {
  width: 350px;
  border: 1px solid lightgrey;
  padding: 5px;
  position: relative;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
}
#export::before {
  content: 'export';
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid lightgrey;
  padding: 0px 5px;
}

.export-item {
  cursor: pointer;
}
/*!****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/components/persistence/index.css ***!
  \****************************************************************************************/
#persistence {
  width: 350px;
  border: 1px solid lightgrey;
  padding: 5px;
  position: relative;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  float: left;
  margin-top: 10px;
}
#persistence::before {
  content: 'persistence';
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid lightgrey;
  padding: 0px 5px;
}

.save {
  cursor: pointer;
}
.load {
  cursor: pointer;
}
/*!****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/tippy.js/dist/tippy.css ***!
  \****************************************************************************************/
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/index.css ***!
  \*****************************************************************/
html,
body {
  margin: 0;
  height: 100%;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #141414;
  background: #fff;
}

* {
  box-sizing: border-box;
}

#app-container {
  height: 100%;
  width: 100%;
}

.header {
  width: 100%;
  height: 180px;
}

.footer {
  width: 100%;
  height: 250px;
}

.header,
.footer {
  display: none;
}

.main {
  display: grid;
  grid-template-areas: "viewer properties";
  grid-template-columns: minmax(0, 1fr) auto;
  height: 688px;
}

.invisible {
  width: 0 !important;
  min-width: 0 !important;
  border-left: 0 !important;
  overflow: hidden !important;
}

@media screen and (max-width: 820px) {
  .main {
    grid-template-areas:
      "viewer"
      "properties";
    grid-template-columns: 1fr;
    height: 944px;
  }

  .invisible {
    height: 0 !important;
    min-height: 0 !important;
    width: 100% !important;
  }
}

@media screen and (max-width: 400px) {
  .main {
    height: auto;
    min-height: 760px;
  }
}


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