/*!************************************************************************************!*\
  !*** 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: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
}

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

@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: 350px;
  height: 100%;
  border: 1px solid lightgrey;
  position: relative;
  padding: 5px;
  padding-top: 25px;
  overflow: auto;
}
#property-editor::before {
  content: 'property-editor';
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid lightgrey;
  padding: 0px 5px;
}

.property-class {
  background-color: lightgrey;
}
.property {
  position: relative;
  background-color: white;
  cursor: pointer;
}
.property[data-editable="false"] {
  font-style: italic;
  cursor: default;
}
.property[data-visible="false"] {
  color: red;
  display: none;
}
.property[data-choice-list="true"][data-editable="true"]::after {
  content: '\025BE';
  position: absolute;
  top: 0px;
  right: 0px;
}
.property-choice {
  padding-left: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.property-choice.selected {
  font-weight: bold;
}

.property-choice > img {
  max-width: 25px;
  padding-right: 5px;
}
/*!***********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/components/viewer/index.css ***!
  \***********************************************************************************/
#viewer {
  width: calc(100% - 358px); /* -width of property editor */
  height: 100%;
  border: 1px solid lightgrey;
  position: relative;
  margin-right: 8px;
  float: left;
}
#viewer::before {
  content: 'viewer';
  background-color: white;
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid lightgrey;
  padding: 0px 5px;
}
/*!********************************************************************************!*\
  !*** 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!./src/index.css ***!
  \*****************************************************************/
html, body {
  margin: 0;
  height: 100%;
}
* {
  box-sizing: border-box;
}
#app-container {
  height: 100%;
  padding: 5px;
}

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

.main {
  width: 100%;
  height: calc(100% - 180px - 250px - 20px); /* 100% - height of header - height of footer - margin*/
  margin: 10px 0px;
}

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

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