dialog#dialog--product_customisation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    border: 0;
    background-color: white;
    padding: 0;
    overflow: hidden;
    margin: auto;
}

dialog#dialog--product_customisation iframe {
  margin: 0;
  border: 0;
}

dialog#dialog--product_customisation::backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

dialog#dialog--product_customisation .button--close_product_customisation_dialog {
  float:right;
  min-width: 0;
  width: 50px;
  border: 0;
}

dialog#dialog--product_customisation iframe {
  width: 100%;
	height: 100%;
}

table#table--product-customisations-list {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  margin: 20px auto;
}

table#table--product-customisations-list th,
table#table--product-customisations-list td {
	padding: 8px;
  text-align: left;
	border: 0;
}

#editor-area {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }

  #editor-area_canvasWrapper {
    width: 100%;
    height: 100%;
  }

.slo-loader {
  /* change color here */
  color: #1c4c5b;
	margin: auto;
}
.slo-loader,
.slo-loader div {
  box-sizing: border-box;
}
.slo-loader {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.slo-loader div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: currentColor;
  animation: slo-loader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.slo-loader div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.slo-loader div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.slo-loader div:nth-child(3) {
  left: 56px;
  animation-delay: 0s;
}
@keyframes slo-loader {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}