@charset "UTF-8";
.rich-editor {
  max-width: 100%;
}
.rich-editor .note-modal {
  z-index: 99999;
}
.rich-editor .note-editor {
  max-width: 100%;
}
.rich-editor .note-editor .note-toolbar .vimeo-button {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.rich-editor .note-editor .note-toolbar .vimeo-button img {
  max-height: 1em;
}
.rich-editor .note-editor .note-editable vimeo {
  border: solid 1px blue;
  padding: 1px 7px;
  border-radius: 10px;
  background-color: #87cefa;
  margin: 10px;
  overflow: hidden;
  font-size: 0.8em;
}
.rich-editor .note-editor .note-editable vimeo:before {
  content: "VIMEO #" attr(video) ":xa0xa0xa0xa0";
}

.rich-editor-container {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  flex-basis: 100%;
  max-width: 100%;
}
.rich-editor-container--mr {
  margin-right: 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  z-index: 9999;
  background-color: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.header__top {
  display: flex;
  justify-content: flex-end;
  padding: 10px 30px;
  background-color: var(--color-primary);
  flex-shrink: 0;
  height: 25px;
}
.header__news-flashes {
  flex-basis: 100%;
  flex-shrink: 1;
  flex-grow: 1;
  max-width: 100%;
  height: 25px;
}
.header__language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.header__language-switcher .language-choice {
  display: block;
  color: white;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
}
.header__language-switcher .language-choice.selected {
  text-decoration: underline;
}
.header__main {
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
.header__branding {
  display: block;
  width: 180px;
}
.header__branding img {
  display: block;
  width: 100%;
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.header__menu {
  display: block;
  position: fixed;
  top: 110px;
  right: -100%;
  width: min(100vw, 400px);
  height: calc(100vh - 110px);
  background-color: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}
.header__menu:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background-color: white;
}
@media (min-width: 1024px) {
  .header__menu {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    width: auto;
    height: auto;
    box-shadow: none;
    right: 0;
    transition: none;
  }
  .header__menu:before {
    display: none;
  }
}
.header__search {
  display: flex;
  background-color: var(--color-blue);
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
}
.header__search img {
  height: 14px;
  width: 14px;
}
.header__navigation {
  padding: 20px;
}
@media (min-width: 1024px) {
  .header__navigation {
    padding: 0;
  }
}
.header__navigation > ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
  list-style: none;
  gap: 30px;
  padding: 0;
}
.header__navigation > ul > li {
  width: 100%;
  font-size: 1.15rem;
  color: var(--color-grey);
  text-transform: uppercase;
}
.header__navigation > ul > li:hover {
  color: var(--color-primary);
}
.header__navigation > ul > li:hover > a,
.header__navigation > ul > li:hover > span {
  color: var(--color-primary);
}
.header__navigation > ul > li > a,
.header__navigation > ul > li > span {
  color: var(--color-grey);
  text-decoration: none;
  text-wrap: nowrap;
}
.header__navigation > ul > li > a.active,
.header__navigation > ul > li > span.active {
  color: var(--color-primary);
}
@media (min-width: 1024px) {
  .header__navigation > ul {
    flex-direction: row;
  }
  .header__navigation > ul > li {
    position: relative;
  }
  .header__navigation > ul > li:hover > .header__sub-navigation {
    display: block;
  }
  .header__navigation > ul > li:last-child .header__sub-navigation {
    right: 0;
    padding-right: 0;
  }
}
.header__sub-navigation {
  display: block;
  width: 160px;
  margin-top: 0;
  padding: 20px;
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .header__sub-navigation {
    display: none;
    position: absolute;
    z-index: 99999;
    margin-left: -20px;
    padding-bottom: 20px;
  }
}
.header__sub-navigation ul {
  list-style: none;
  padding: 0;
}
@media (min-width: 1024px) {
  .header__sub-navigation ul {
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  }
}
.header__sub-navigation li {
  padding: 10px 15px;
  text-transform: uppercase;
}
.header__sub-navigation li:hover {
  border-left: 2px solid var(--color-primary);
  padding-left: 10px;
  color: var(--color-primary);
}
.header__sub-navigation li:hover > a,
.header__sub-navigation li:hover > span {
  color: var(--color-primary);
}
.header__sub-navigation li:last-child {
  margin-bottom: 0px;
}
.header__sub-navigation li a,
.header__sub-navigation li span {
  color: var(--color-grey);
  text-decoration: none;
  text-wrap: nowrap;
}
.header__sub-navigation li a.active,
.header__sub-navigation li span.active {
  color: var(--color-primary);
}
.header .hamburger {
  display: block;
  height: 40px;
  padding: 5px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .header .hamburger {
    display: none;
  }
}
.header .hamburger-line {
  stroke-width: 6;
  stroke-dasharray: 60 60;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header .hamburger-line:first-of-type,
.header .hamburger-line:last-of-type {
  stroke-dasharray: 60 207;
}

body[data-menu-state=opened] .header .hamburger-line {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
body[data-menu-state=opened] .header .hamburger-line:first-of-type,
body[data-menu-state=opened] .header .hamburger-line:last-of-type {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
body[data-menu-state=opened] .header .header__menu {
  right: 0;
}

body {
  padding-top: 110px;
}

.field {
  margin-top: 18px;
}
.field label {
  width: 100%;
}
.field input, .field select, .field textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 4px;
}

.subfield {
  margin-left: 20px;
}

.product-field, .customer-field, .account-field, .document-field, .price-field, .discount-field, .delivery-field {
  margin-top: 16px;
  display: flex;
  align-items: center;
}
.product-field > label, .customer-field > label, .account-field > label, .document-field > label, .price-field > label, .discount-field > label, .delivery-field > label {
  flex-shrink: 0;
  width: 240px;
  min-height: 1px;
}
.product-field > input, .product-field > select, .product-field > .ng-option, .product-field > .ng-popup-select, .product-field > textarea, .product-field .product-field__inner, .customer-field > input, .customer-field > select, .customer-field > .ng-option, .customer-field > .ng-popup-select, .customer-field > textarea, .customer-field .product-field__inner, .account-field > input, .account-field > select, .account-field > .ng-option, .account-field > .ng-popup-select, .account-field > textarea, .account-field .product-field__inner, .document-field > input, .document-field > select, .document-field > .ng-option, .document-field > .ng-popup-select, .document-field > textarea, .document-field .product-field__inner, .price-field > input, .price-field > select, .price-field > .ng-option, .price-field > .ng-popup-select, .price-field > textarea, .price-field .product-field__inner, .discount-field > input, .discount-field > select, .discount-field > .ng-option, .discount-field > .ng-popup-select, .discount-field > textarea, .discount-field .product-field__inner, .delivery-field > input, .delivery-field > select, .delivery-field > .ng-option, .delivery-field > .ng-popup-select, .delivery-field > textarea, .delivery-field .product-field__inner {
  flex-grow: 1;
}
.product-field--invalid > .product-field__inner > input, .product-field--invalid > .product-field__inner > select, .product-field--invalid > .product-field__inner > .ng-option, .product-field--invalid > .product-field__inner > .ng-popup-select, .product-field--invalid > .product-field__inner > textarea, .product-field--invalid > .product-field__inner .product-field__inner, .customer-field--invalid > .product-field__inner > input, .customer-field--invalid > .product-field__inner > select, .customer-field--invalid > .product-field__inner > .ng-option, .customer-field--invalid > .product-field__inner > .ng-popup-select, .customer-field--invalid > .product-field__inner > textarea, .customer-field--invalid > .product-field__inner .product-field__inner, .account-field--invalid > .product-field__inner > input, .account-field--invalid > .product-field__inner > select, .account-field--invalid > .product-field__inner > .ng-option, .account-field--invalid > .product-field__inner > .ng-popup-select, .account-field--invalid > .product-field__inner > textarea, .account-field--invalid > .product-field__inner .product-field__inner, .document-field--invalid > .product-field__inner > input, .document-field--invalid > .product-field__inner > select, .document-field--invalid > .product-field__inner > .ng-option, .document-field--invalid > .product-field__inner > .ng-popup-select, .document-field--invalid > .product-field__inner > textarea, .document-field--invalid > .product-field__inner .product-field__inner, .price-field--invalid > .product-field__inner > input, .price-field--invalid > .product-field__inner > select, .price-field--invalid > .product-field__inner > .ng-option, .price-field--invalid > .product-field__inner > .ng-popup-select, .price-field--invalid > .product-field__inner > textarea, .price-field--invalid > .product-field__inner .product-field__inner, .discount-field--invalid > .product-field__inner > input, .discount-field--invalid > .product-field__inner > select, .discount-field--invalid > .product-field__inner > .ng-option, .discount-field--invalid > .product-field__inner > .ng-popup-select, .discount-field--invalid > .product-field__inner > textarea, .discount-field--invalid > .product-field__inner .product-field__inner, .delivery-field--invalid > .product-field__inner > input, .delivery-field--invalid > .product-field__inner > select, .delivery-field--invalid > .product-field__inner > .ng-option, .delivery-field--invalid > .product-field__inner > .ng-popup-select, .delivery-field--invalid > .product-field__inner > textarea, .delivery-field--invalid > .product-field__inner .product-field__inner {
  border-color: red;
}

input:focus, textarea {
  outline: 0;
}

input[type=text], input[type=number], input[type=password], input[type=email], input[type=date], textarea {
  padding: 0.4rem;
  border: 1px solid var(--color-dark-grey);
  background-color: transparent;
  color: var(--color-black);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.4rem;
  border: 1px solid var(--color-dark-grey);
  border-radius: 0px;
  background: url("../images/icons/dark/original/icon_arrow-down.svg") no-repeat right center content-box;
  background-size: 14px 7px;
  color: var(--color-black);
}

select:focus {
  outline: 0;
}

/* CAUTION: IE hackery ahead */
select::-ms-expand {
  display: none;
  /* remove default arrow on ie10 and ie11 */
}

/* target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width: 0\0 ) {
  select {
    background: none \9 ;
    padding: 5px \9 ;
  }
}
button {
  border: 0;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-secondary);
  color: white;
  text-transform: uppercase;
}
button:hover, button:active {
  background-color: color-mix(in srgb, var(--color-secondary), white 20%);
}
button:focus {
  outline: 0;
}
button.grey {
  background-color: var(--color-grey);
}
button.grey:hover, button.grey:active {
  background-color: color-mix(in srgb, var(--color-grey), white 20%);
}

#errors, #success {
  text-align: center;
}
#errors ul, #success ul {
  margin: 38px 0;
  padding: 0;
  list-style: none;
}

#errors {
  color: var(--color-primary);
}

.box {
  position: relative;
  background-color: var(--color-light-grey);
  padding: 16px;
  color: var(--color-dark);
}
.box .box-title {
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--color-grey);
  font-size: 0.85rem;
}
.box .box-footer {
  margin-top: 20px;
  color: var(--color-grey);
  font-size: 0.85rem;
}
.box > .box-action,
.box > a .box-action {
  position: absolute;
  right: 16px;
  bottom: 0;
  margin-bottom: -16px;
  text-transform: uppercase;
}
.box > .box-actions {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .box > .box-actions {
    justify-content: flex-end;
  }
}
.box > .box-actions .box-action {
  text-transform: uppercase;
}
.box .box-actionbar {
  position: absolute;
  right: 16px;
  top: 16px;
}
.box .box-actionbar .box-action {
  cursor: pointer;
  margin-left: 16px;
}
.box .box-actionbar img {
  height: 38px;
}
.box .box-table tr:not(:last-child) {
  border-bottom: 4px solid transparent;
}
.box .box-table td:last-child {
  padding-left: 60px;
  font-weight: bold;
}
.box .box-table th {
  font-weight: 300;
  text-align: left;
}

.vimeo {
  position: relative;
  overflow: hidden;
}
.vimeo iframe {
  max-width: 100%;
}
.vimeo .vimeo-overlay-image {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
}
.vimeo .vimeo-overlay-dark {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  background-color: var(--color-light-grey);
  opacity: 0.9;
}
.vimeo .vimeo-overlay-content {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  padding: 36px;
  text-align: center;
  color: var(--color-dark);
  font-size: 1.15rem;
}
.vimeo .vimeo-overlay-content .vimeo-play {
  width: 68px;
  margin-top: 102px;
  margin-bottom: 48px;
}
.vimeo .vimeo-overlay-content .vimeo-play:hover {
  opacity: 0.85;
  cursor: pointer;
}
.vimeo .vimeo-overlay-content .vimeo-play:active {
  opacity: 0.7;
}

div#alert {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
}
div#alert > div {
  position: relative;
  background-color: #F5F5F5;
  width: 600px;
  margin: 140px auto;
  padding: 16px;
  color: var(--color-dark);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
div#alert > div h1 {
  margin: 0 0 20px 0;
  text-transform: uppercase;
  color: var(--color-grey);
  font-size: 0.85rem;
  font-weight: normal;
}
div#alert > div h1 i {
  margin-right: 10px;
  font-size: 90%;
}
div#alert > div div.message {
  margin-bottom: 40px;
  font-size: 1.15rem;
}
div#alert > div div.message input {
  margin-top: 4px;
  width: 100%;
  box-sizing: border-box;
}
div#alert > div div.buttons {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: -16px;
}
div#alert > div div.buttons button {
  margin-right: 16px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}

div.ng-option {
  position: relative;
  cursor: pointer;
  border: 1px solid var(--color-primary);
}
div.ng-option > span {
  background-color: var(--color-primary);
  float: right;
  width: 32px;
  text-align: center;
  color: white;
  height: 32px;
  line-height: 30px;
}
div.ng-option > span img {
  width: 14px;
}
div.ng-option > span.button {
  background-color: transparent;
  width: 32px;
  height: 32px;
  color: black;
  line-height: 33px;
}
div.ng-option > span.button img {
  width: 16px;
  margin-top: 7px;
}
div.ng-option > span.button:hover {
  opacity: 0.8;
}
div.ng-option > div {
  margin-right: 64px;
}
div.ng-option > div input {
  border: none;
  border: 0px !important;
  width: 100%;
}
div.ng-option ul {
  z-index: 100;
  border: 1px solid var(--color-primary);
  min-width: 100%;
  margin: 0px -1px 0 -1px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: white;
  top: 31px;
  list-style-type: none;
  padding: 0px;
  max-height: 500px;
  overflow: auto;
  overflow-x: hidden;
  position: absolute;
}
div.ng-option ul li {
  padding: 0.4rem;
}
div.ng-option ul li:not(:last-child) {
  border-bottom: 1px solid var(--color-primary);
}

input[type=radio] {
  position: absolute;
  top: auto;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  white-space: nowrap;
}

input[type=radio] + label {
  display: inline-block;
  padding: 7px 64px 7px 32px;
  line-height: 18px;
  max-width: calc(100% - 2em);
}

input[type=radio] + label:before {
  content: "";
  border: 1px solid var(--color-primary);
  display: block;
  box-sizing: border-box;
  float: left;
  width: 18px;
  height: 18px;
  margin-left: -30px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease-out;
}

input[type=radio] + label:before {
  border-radius: 100%;
}

input[type=radio]:checked + label:before {
  background-color: var(--color-primary);
  box-shadow: inset 0 0 0 0.15em rgba(255, 255, 255, 0.95);
}

.ng-popup-select .ng-option {
  margin-right: 0 !important;
}
.ng-popup-select .ng-option > div {
  margin-right: 32px !important;
}

.ng-popup-modal {
  position: absolute;
  top: 20px;
  min-height: 200px;
  margin-bottom: 80px;
  background: white;
  left: 0;
  right: 0;
  z-index: 11;
  border: 1px solid var(--color-primary);
}
.ng-popup-modal input {
  border: 0px !important;
}
.ng-popup-modal table {
  width: 100%;
  border-collapse: collapse;
}
.ng-popup-modal table tr {
  border-top: 1px solid var(--color-light-grey);
}
.ng-popup-modal table tr th {
  color: var(--color-primary);
  font-weight: 100;
  font-size: 16px;
  padding: 8px;
}
.ng-popup-modal table tr td {
  color: var(--color-dark);
  font-size: 14px;
  padding: 8px;
  cursor: pointer;
}
.ng-popup-modal table img {
  max-height: 120px;
}
.ng-popup-modal .filter {
  padding: 6px !important;
  margin-top: 6px;
  display: inline-block;
  border: 1px solid #ccc;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.ng-popup-modal .filter .boolean-cross {
  position: absolute;
  top: -15px;
  right: -10px;
  cursor: pointer;
}
.ng-popup-modal .filter .boolean-cross .fa-times-circle {
  color: black;
}
.ng-popup-modal .filter .boolean-selected {
  color: var(--color-dark-grey);
}
.ng-popup-modal .filter .boolean-options {
  font-size: 0.75em;
  color: var(--color-dark-grey);
}
.ng-popup-modal .filter .boolean-options span {
  cursor: pointer;
}
.ng-popup-modal .filter input {
  font-size: 16px !important;
  margin: 0;
  padding-right: 16px;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
}
.ng-popup-modal .filter .fa {
  color: #000;
  position: absolute;
  right: 4px;
  top: 9px;
}
.ng-popup-modal .fa-search {
  cursor: pointer;
}

.popup-bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.86);
  z-index: 10;
}

.search-product-type {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-product-type .scroll {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.search-product-type .scroll .inner {
  max-width: 1400px;
  margin: 92px auto 80px auto;
}
.search-product-type.show {
  display: block;
}
.search-product-type .filtering-spinner {
  text-align: center;
  margin-top: 25px;
}
.search-product-type .field {
  width: 480px;
  margin: 0 auto;
}
.search-product-type .group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  margin: 16px;
}
.search-product-type .group .item {
  position: relative;
  height: 100%;
}
.search-product-type .group .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 16/9;
  background-color: var(--color-light-grey);
}
.search-product-type .group .item .item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background-color: color-mix(in srgb, var(--color-secondary), transparent 20%);
  font-weight: bold;
  color: white;
  text-align: center;
  cursor: pointer;
}
.search-product-type .group .item .item-title:hover {
  background-color: var(--color-secondary);
}
.search-product-type .group .item .item-title .item-subtitle {
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.product-template .product-title {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.switch {
  /* HIDE TOGGLE */
  /* DEFAULT */
  /* UNCHECKED */
  /* CHECKED */
}
.switch input {
  display: none;
}
.switch label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  user-select: none;
  padding: 2px;
  width: 24px;
  height: 13px;
  border-radius: 30px;
}
.switch label:before,
.switch label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  content: "";
}
.switch label:before {
  right: 1px;
  background-color: var(--color-grey);
  border-radius: 24px;
  transition: background 0.4s;
  margin: 4px;
}
.switch label:after {
  width: 15px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  transition: margin 0.2s;
}
.switch input:checked + label:after {
  margin-left: 10px;
  background-color: var(--color-primary);
}

.configuration-menu {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  flex-grow: 1;
  margin: 40px -30px 0 -30px;
  padding: 0 32px;
  list-style: none;
  background-color: var(--color-light-grey);
}
.configuration-menu > li {
  position: relative;
  text-transform: uppercase;
  padding: 0 0 0 32px;
  font-size: 16px;
  color: var(--color-dark);
}
.configuration-menu > li:hover > .submenu-container {
  display: block;
}
.configuration-menu > li > a {
  display: block;
  padding: 16px 0;
  color: var(--color-dark);
  text-decoration: none;
}
.configuration-menu > li > a.active {
  padding: 16px 0 14px 0;
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.configuration-menu .version-nr {
  position: absolute;
  right: 0px;
  margin-bottom: 17px;
  margin-right: 43px;
  font-size: 0.8em;
  color: var(--color-dark-grey);
}
@media (max-width: 1465px) {
  .configuration-menu .version-nr {
    display: none;
  }
}

.lds-spinner {
  display: inline-block;
  position: relative;
  width: 0;
  height: 0;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: currentColor;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.action-dropdown .action-dropdown-title {
  width: 250px;
  height: 42px;
  position: relative;
}
.action-dropdown .action-dropdown-title img {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 8.5px;
}
.action-dropdown .action-dropdown-items {
  position: absolute;
  z-index: 99999;
  margin-top: 16px;
  padding: 8px 0;
  background-color: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  list-style: none;
}
.action-dropdown .action-dropdown-items li {
  cursor: pointer;
  padding: 3px 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.action-dropdown .action-dropdown-items li:hover {
  border-left: 2px solid var(--color-primary);
  padding-left: 10px;
  color: var(--color-primary);
}
.action-dropdown .action-dropdown-items li:hover > a {
  color: var(--color-primary);
}
.action-dropdown .action-dropdown-items li:last-child {
  margin-bottom: 0px;
}
.action-dropdown .action-dropdown-items li > a {
  display: block;
  color: var(--color-grey);
  text-decoration: none;
}
.action-dropdown .action-dropdown-items li > a.active {
  color: var(--color-primary);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-grey);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider.round:before {
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--color-primary);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-primary);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.drop-zone {
  border: 1px dashed #aaaaaa;
  border-radius: 8px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.drop-zone .label,
.drop-zone .label-hovered {
  text-align: center;
  color: #666666;
}
.drop-zone .label-hovered {
  display: none;
}
.drop-zone:hover, .drop-zone.files-over {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px dashed var(--color--primary);
}
.drop-zone:hover {
  cursor: pointer;
}

.small-select {
  display: inline-block;
}
.small-select .selected-text .icon, .small-select .selected-text .first-icon, .small-select .selected-text .second-icon {
  font-size: 0.5em !important;
}
.small-select .selected-text .first-icon {
  position: absolute;
}
.small-select .options {
  position: absolute;
  z-index: 99999;
}

.dashboard-information-box {
  margin-bottom: 40px;
}
.dashboard-information-box__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.dashboard-information-box__title {
  text-transform: uppercase;
  color: #a6a6a6;
  font-size: 0.85rem;
}
.dashboard-information-box__edit-button {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #000000;
  font-size: 25px;
  font-weight: 500;
  text-decoration: underline;
}
.dashboard-information-box__edit-button:hover {
  background-color: transparent;
  color: #000000;
}
.dashboard-information-box__edit-button img {
  height: 1em;
}
.dashboard-information-box__content {
  line-height: 1.4;
}

.dashboard-information-edit-modal {
  --modal-padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  box-sizing: border-box;
}
.dashboard-information-edit-modal__container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: calc(100% - var(--modal-padding) * 2);
  max-width: calc(100% - var(--modal-padding) * 2);
  margin: var(--modal-padding);
  background-color: #f5f5f5;
  padding: 20px;
}
.dashboard-information-edit-modal__content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  overflow: auto;
}
.dashboard-information-edit-modal__content > div {
  margin-bottom: 15px;
}
.dashboard-information-edit-modal__content label {
  display: block;
  margin-bottom: 5px;
}
.dashboard-information-edit-modal__content.submitting {
  opacity: 0.5;
  pointer-events: none;
}
.dashboard-information-edit-modal__actions {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 10px;
}

.news-flashes {
  display: flex;
  gap: 30px;
  margin-right: 30px;
}
.news-flashes__container {
  position: relative;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 100%;
  max-width: 100%;
  overflow: hidden;
}
.news-flashes__container:before, .news-flashes__container:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
}
.news-flashes__container:before {
  left: 0;
  background: linear-gradient(to right, var(--color-primary), transparent);
}
.news-flashes__container:after {
  right: 0;
  background: linear-gradient(to left, var(--color-primary), transparent);
}
.news-flashes__inner-container {
  --gap: 0;
  --left: 100%;
  transition: left var(--transition-duration-left) linear;
  position: absolute;
  left: var(--left);
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}
.news-flashes__item {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.news-flashes__item * {
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin: 0;
}
.news-flashes__edit-button {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #000000;
  font-size: 25px;
  font-weight: 500;
  text-decoration: underline;
  display: flex;
  align-items: center;
  justify-self: center;
}
.news-flashes__edit-button:hover {
  background-color: transparent;
  color: #000000;
}
.news-flashes__edit-button img {
  height: 1em;
}

.news-flashes-edit-modal {
  --modal-padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  box-sizing: border-box;
  padding: var(--modal-padding);
}
.news-flashes-edit-modal__container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: calc(100% - var(--modal-padding) * 2);
  max-width: calc(100% - var(--modal-padding) * 2);
  margin: var(--modal-padding);
  background-color: #f5f5f5;
  padding: 20px;
}
.news-flashes-edit-modal__content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.news-flashes-edit-modal__content.submitting {
  opacity: 0.5;
  pointer-events: none;
}
.news-flashes-edit-modal__entry {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #000000;
}
.news-flashes-edit-modal__entry > div {
  margin-bottom: 15px;
}
.news-flashes-edit-modal__entry label {
  display: block;
  margin-bottom: 5px;
}
.news-flashes-edit-modal__entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.news-flashes-edit-modal__entry-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.news-flashes-edit-modal__remove-button {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #000000;
  font-size: 25px;
  font-weight: 500;
  text-decoration: underline;
  display: flex;
  align-items: center;
  justify-self: center;
}
.news-flashes-edit-modal__remove-button:hover {
  background-color: transparent;
  color: #000000;
}
.news-flashes-edit-modal__remove-button img {
  height: 1em;
}
.news-flashes-edit-modal__add-button {
  margin: 0 auto;
}
.news-flashes-edit-modal__actions {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  gap: 10px;
}

.select-with-images select {
  display: block;
  width: 100%;
  pointer-events: none;
}

.select-with-images-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.86);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.3s ease;
}
.select-with-images-modal-container[data-state=closed] {
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}

.select-with-images-modal {
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  max-width: 1000px;
  max-height: 800px;
  background-color: #fafafa;
  border: 1px solid var(--color-primary);
  display: grid;
  align-items: start;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.select-with-images-modal > div {
  display: block;
  border: 1px solid var(--color-dark-grey);
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.select-with-images-modal > div:hover {
  border: 1px solid var(--color-primary);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.select-with-images-modal > div img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: center;
  margin: 0;
}
.select-with-images-modal > div p {
  padding: 10px;
  text-align: center;
  font-size: 1.2em;
  font-weight: 600;
  margin: 0;
}

#unauthorized {
  margin-bottom: 60px;
}
#unauthorized .logo {
  margin-top: 112px;
  margin-bottom: 78px;
  text-align: center;
}
#unauthorized .logo img {
  width: 380px;
}

#login, #passreset {
  width: 420px;
  margin: 0 auto;
}
#login .actions, #passreset .actions {
  margin-top: 36px;
}
#login #action-bar, #passreset #action-bar {
  position: relative;
  top: -26px;
}
#login #action-bar img, #passreset #action-bar img {
  margin-left: 0px;
  margin-top: 0px;
  margin-right: 16px;
  width: 26px;
}
#login #action-bar a, #passreset #action-bar a {
  text-decoration: none;
  color: var(--color-dark);
}

#login .actions {
  display: flex;
  align-items: center;
}
#login .actions .reset {
  flex-grow: 1;
}
#login .actions .reset a {
  color: var(--color-black);
  text-decoration: none;
}
#login .actions .reset a:hover {
  text-decoration: underline;
}
#login .actions .login-button {
  display: flex;
}
#login .actions .login-button .spinner {
  position: relative;
  left: -16px;
  top: -20px;
  margin-right: 20px;
}

#page {
  padding-bottom: 60px;
}

#main {
  padding: 0 30px;
}

.page-container {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}

.page-header {
  display: flex;
  justify-content: space-between;
}
.page-header .page-title {
  font-size: 1.15rem;
  color: var(--color-dark);
}
.page-header .page-title img {
  width: 26px;
  margin: 0 16px;
}
.page-header .page-title a {
  text-decoration: none;
  color: var(--color-dark);
}
.page-header .page-actions {
  text-align: right;
}
.page-header .page-actions a:not(:last-child) {
  margin-right: 12px;
}

.page-content-split {
  display: flex;
}
.page-content-split > div {
  flex-grow: 1;
  width: 50%;
}
.page-content-split > div:first-child {
  margin-right: 16px;
}
.page-content-split > div:last-child {
  margin-left: 16px;
}

.page-content-sidebar {
  display: flex;
  flex-wrap: wrap;
}
.page-content-sidebar .main {
  flex-grow: 1;
  min-width: 560px;
  margin-bottom: 32px;
}
.page-content-sidebar .sidebar {
  flex-shrink: 0;
  width: 440px;
}
.page-content-sidebar .sidebar .box, .page-content-sidebar .sidebar .item {
  margin-bottom: 32px;
}

.page-title {
  margin-bottom: 12px;
  color: var(--color-dark);
  font-size: 1.5rem;
}

#dashboard {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#dashboard .grid {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 30px;
}
@media (min-width: 1024px) {
  #dashboard .grid {
    grid-template-columns: 66% 33%;
  }
}
#dashboard .spinner {
  text-align: center;
  padding-left: 28px;
}
#dashboard .news {
  order: 2;
}
@media (min-width: 1024px) {
  #dashboard .news {
    order: 1;
  }
}
#dashboard .news .news-content img {
  width: 100%;
  height: auto;
}
#dashboard .news .news-add-container {
  text-align: right;
}
#dashboard .news .box {
  margin-bottom: 10px;
}
#dashboard .news a,
#dashboard .news a:hover {
  color: var(--color-primary);
}
#dashboard .news .more-news {
  text-align: center;
  margin-top: 10px;
}
#dashboard .news .more-news a {
  color: var(--color-grey);
  text-decoration: none;
  cursor: pointer;
}
#dashboard .news .news-actions {
  position: absolute;
  right: 10px;
  top: 10px;
}
#dashboard .news .news-actions img {
  cursor: pointer;
  width: 25px;
  height: 25px;
}
#dashboard .news .ng-hide {
  transition: 2s linear all;
  opacity: 0;
}
#dashboard .orders {
  order: 1;
}
@media (min-width: 1024px) {
  #dashboard .orders {
    order: 2;
  }
}
#dashboard .orders .orders-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 35px;
  gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #dashboard .orders .orders-content {
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  #dashboard .orders .orders-content {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
  }
}
@media (min-width: 1440px) {
  #dashboard .orders .orders-content {
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 0;
  }
}
#dashboard .orders .order-divider {
  display: none;
  flex-shrink: 0;
  flex-grow: 0;
  width: 1px;
  height: 80px;
  background-color: var(--color-dark-grey);
}
@media (min-width: 768px) {
  #dashboard .orders .order-divider {
    display: block;
  }
}
@media (min-width: 1024px) {
  #dashboard .orders .order-divider {
    display: none;
  }
}
@media (min-width: 1440px) {
  #dashboard .orders .order-divider {
    display: block;
  }
}
#dashboard .orders .order-category {
  width: 112px;
  color: var(--color-grey);
  font-size: 0.85rem;
  text-align: center;
}
#dashboard .orders .order-category .amount {
  margin-bottom: 12px;
  color: var(--color-dark);
  font-size: 1.5rem;
}
#dashboard .orders .order-category .amount-big {
  margin-bottom: 12px;
  color: var(--color-dark);
  font-size: 2.4rem;
  font-weight: 700;
}
#dashboard .documents {
  order: 3;
}
#dashboard .documents ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#dashboard .documents .document {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-grey);
}
#dashboard .documents .document:last-child {
  padding-bottom: 0px;
  border-bottom: 0;
}
#dashboard .documents .document-content {
  flex-grow: 1;
  color: var(--color-grey);
  font-size: 0.85rem;
}
#dashboard .documents .document-content .fa {
  margin-left: 2px;
  margin-right: 10px;
}
#dashboard .documents .document-download {
  flex-shrink: 0;
  width: 28px;
}
#dashboard .documents .document-download:hover {
  opacity: 0.85;
}
#dashboard .documents .document-download:active {
  opacity: 0.7;
}
#dashboard .documents .document-title {
  margin-bottom: 6px;
  color: var(--color-dark);
  font-size: 1.15rem;
}
#dashboard .video {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

#order-edit {
  position: relative;
  max-width: 1400px;
  margin: 80px auto 0 auto;
  /*.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    grid-gap: 32px;
  }*/
}
#order-edit .spinner-container {
  position: absolute;
  z-index: 99999999;
  margin-left: calc(50% - 107px);
  margin-top: 60px;
}
#order-edit .spinner-container .spinner-text {
  font-size: 15px;
  background-color: rgba(200, 200, 200, 0.3);
  color: #7d7d7d;
  padding: 20px;
  margin-top: 200px;
}
#order-edit .is-saving {
  opacity: 0.3;
}
#order-edit .document {
  padding-bottom: 58px;
}
#order-edit .offer .box-title,
#order-edit .document .box-title {
  margin-bottom: 40px;
}
#order-edit .products {
  margin-top: 16px;
}
#order-edit #add-product-button {
  margin: 16px;
  text-transform: uppercase;
}
#order-edit .products-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#order-edit .products-list li {
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--color-grey);
}
#order-edit .products-list .attentionProduct {
  position: relative;
}
#order-edit .products-list .attentionProduct:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 8px;
  background-color: var(--color-primary);
}
#order-edit .products-list .products-list-main-item {
  display: flex;
}
#order-edit .products-list .product-content {
  flex-grow: 1;
}
#order-edit .products-list .product-actions {
  flex-shrink: 0;
  margin: 0 32px;
  align-self: flex-start;
}
#order-edit .products-list .product-actions a {
  margin-left: 16px;
}
#order-edit .products-list .product-actions a:hover {
  cursor: pointer;
}
#order-edit .products-list .product-actions img {
  height: 36px;
}
#order-edit .products-list .product-actions img.sort-product-handle {
  position: relative;
  top: -4px;
  height: 30px;
}
#order-edit .products-list .product-actions img.sort-product-handle.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
#order-edit .products-list .product-pricing {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}
#order-edit .products-list .product-pricing table {
  flex-shrink: 0;
  box-sizing: border-box;
  border: none;
  font-size: 16px;
}
#order-edit .products-list .product-pricing thead {
  border-bottom: 1px solid var(--color-grey);
}
#order-edit .products-list .product-pricing th,
#order-edit .products-list .product-pricing td {
  padding: 10px;
}
#order-edit .products-list .product-pricing td:first-child,
#order-edit .products-list .product-pricing th {
  font-weight: bold;
}
#order-edit .products-list .product-pricing .price-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-grey);
  padding: 5px 10px;
  gap: 5px;
  margin-left: -5px;
}
#order-edit .products-list .product-pricing .price-input input {
  border: none;
  width: 150px;
  padding: 0;
}
#order-edit .products-list .product-price {
  display: flex;
}
#order-edit .products-list .product-price table {
  flex-shrink: 0;
  align-self: flex-end;
  margin: 0px 0px 0px auto;
}
#order-edit .products-list a {
  text-decoration: none;
  color: var(--color-black);
}
#order-edit .products-list .products-list-compact-item .product-header {
  display: flex;
  align-items: center;
}
#order-edit .products-list .products-list-compact-item .product-header .product-title {
  flex-grow: 1;
}
#order-edit .products-list .products-list-compact-item .product-header .product-actions {
  margin: 0 16px;
}
#order-edit .products-list .products-list-compact-item .product-header .product-actions a {
  margin-left: 8px;
}
#order-edit .products-list .products-list-compact-item .product-header .product-actions img {
  height: 24px;
}
#order-edit .products-list .products-list-compact-item .product-header .product-actions img.sort-product-handle {
  position: relative;
  top: -3px;
  height: 18px;
}
#order-edit .products-list .products-list-compact-item .product-datafields .product-datafield {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  margin-left: 16px;
}
#order-edit .products-list-empty {
  font-size: 1.15rem;
  color: var(--color-black);
  padding: 16px;
}
#order-edit .prices {
  margin: 16px 16px 16px auto;
  font-size: 1.15rem;
  color: var(--color-black);
}
#order-edit .prices thead {
  border-bottom: 1px solid var(--color-grey);
}
#order-edit .prices th,
#order-edit .prices td {
  padding: 10px;
}
#order-edit .prices td:first-child,
#order-edit .prices th {
  font-weight: bold;
}
#order-edit .prices td {
  width: 180px;
}
#order-edit .prices .price {
  padding-left: 75px;
  width: 120px;
}
#order-edit .prices .total td {
  padding-top: 30px;
  font-weight: bold;
}
#order-edit .prices .prices-global-discount {
  margin-bottom: 20px;
}
#order-edit .prices .prices-global-discount select {
  min-width: 60px;
}
#order-edit .prices .prices-global-discount > th > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
#order-edit .prices .prices-global-discount > th > div > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
#order-edit #deliveryTimeInfo {
  margin-top: 10px;
  margin-left: 60px;
}
#order-edit #deliveryTimeInfoQuestionmark {
  font-weight: bold;
  cursor: pointer;
}
#order-edit #priceLinesTable {
  width: 100%;
  font-size: 1.15rem;
  color: #0c0c0c;
  margin-top: 12px;
}
#order-edit #priceLinesTable .priceLinesCol2 {
  width: 290px;
}
#order-edit #priceLinesTable .priceLinesCol3 {
  width: 135px;
}
#order-edit .product-template .product-template-image-container {
  width: 35%;
  float: left;
  margin-right: 20px;
  background-color: white;
  text-align: center;
}
#order-edit .product-template .product-template-image-container img {
  aspect-ratio: 39/22;
  object-fit: contain;
  object-position: center;
  max-width: 390px;
  max-height: 220px;
  width: 100% !important;
}
#order-edit .product-template .product-template-description {
  float: left;
  width: 60%;
}
#order-edit .import-spinner {
  width: 64px;
  height: 64px;
  position: absolute;
  left: calc(50% - 32px);
  top: calc(50% - 32px);
}
#order-edit #search-product-button {
  display: inline-block;
}
#order-edit #search-product-button li {
  list-style: none;
  display: flex;
  background-color: #0794d2;
  border-radius: 4px;
  padding: 7px;
  position: relative;
  font-size: 1.15rem;
  color: #a6a6a6;
  position: relative;
  top: 9px;
  cursor: pointer;
}
#order-edit #search-product-button li img {
  height: 27px;
  width: 27px;
}
#order-edit .sort-product-handle {
  cursor: move;
}
#order-edit #quote-actions-dropdown.action-dropdown {
  float: right;
}
#order-edit #quote-actions-dropdown.action-dropdown .action-dropdown-title {
  width: 135px;
  text-align: left;
}
#order-edit #quote-actions-dropdown.action-dropdown .action-dropdown-title img {
  right: 14px;
}
#order-edit #quote-actions-dropdown.action-dropdown .action-dropdown-items {
  width: 280px;
  margin-top: -4px;
  margin-left: -152px;
}
#order-edit .order-product-filters {
  display: flex;
  align-items: flex-start;
  margin-top: 70px;
  gap: 20px;
}
#order-edit .order-product-filter label {
  display: block;
  margin-bottom: 10px;
}
#order-edit .order-product-filter #products-view-select {
  width: 200px;
}
#order-edit .order-product-filter #products-search-input {
  width: 300px;
  padding: 0.4rem;
  border: 1px solid #6e6e6e;
  border-radius: 0px;
  background: url(../images/icons/dark/icon_search.svg) no-repeat right center content-box;
  background-size: 14px 14px;
  color: #0c0c0c;
}
#order-edit .order-product-filter-dropdown {
  position: relative;
  align-self: flex-end;
  margin-left: auto;
}
#order-edit .order-product-filter-dropdown > button {
  background-color: transparent;
  border: 1px solid var(--color-grey);
  margin: 0;
  padding: 0;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#order-edit .order-product-filter-dropdown > button svg {
  fill: var(--color-black);
  height: 1.2em;
}
#order-edit .order-product-filter-dropdown > div {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 10px;
  width: max(200px, 100%);
}
#order-edit .order-product-filter-dropdown label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#order-edit .order-product-filter-dropdown label input {
  width: 1.2em;
  height: 1.2em;
}

#order-create {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#order-create #action-bar {
  margin: 0px 16px 40px 16px;
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
}
#order-create #action-bar img {
  width: 26px;
  margin: 0 16px;
}
#order-create #action-bar a {
  text-decoration: none;
  color: var(--color-dark);
}
#order-create .customer {
  padding-bottom: 44px;
  width: 640px;
  margin: 0 auto;
}
#order-create .customer label {
  font-size: 1.15rem;
}
#order-create .customer .ng-option {
  margin-top: 4px;
}
#order-create .customer input {
  width: 100%;
  box-sizing: border-box;
}

#order-import #errors-container {
  margin-top: 20px;
}
#order-import .error-item {
  margin-bottom: 3px;
  margin-top: 3px;
}
#order-import [name=productsCSV] {
  display: none;
}
#order-import label[for=productsCSV] {
  cursor: pointer;
  margin-left: 30px;
  font-size: 1.25em;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-secondary);
  color: var(--color-light-grey);
  text-transform: uppercase;
}
#order-import label[for=productsCSV]:hover {
  background-color: color-mix(in srgb, var(--color-secondary), white 6%);
}

#product-group {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#product-group #action-bar {
  margin: 0px 16px 40px 16px;
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
}
#product-group #action-bar img {
  width: 26px;
  margin: 0 16px;
}
#product-group #action-bar .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
#product-group #action-bar .breadcrumb a {
  cursor: pointer;
  color: var(--color-dark);
  text-decoration: none;
}
#product-group #action-bar .breadcrumb a:hover {
  color: var(--color-grey);
}
#product-group #action-bar .breadcrumb .separator {
  user-select: none;
}
#product-group #action-bar .breadcrumb .separator::before {
  content: "»";
}
#product-group .group {
  display: flex;
  flex-wrap: wrap;
  margin: 16px;
}
#product-group .group .item {
  position: relative;
  width: 320px;
  height: 180px;
  margin: 16px;
}
#product-group .group .item img {
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 16/9;
  background-color: var(--color-light-grey);
}
#product-group .group .item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background-color: color-mix(in srgb, var(--color-secondary), transparent 20%);
  font-weight: bold;
  color: white;
  text-align: center;
  cursor: pointer;
}
#product-group .group .item-title:hover {
  background-color: var(--color-secondary);
}

#product-add {
  max-width: 1400px;
  margin: 80px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
}
#product-add .product-field select option[ng-disabled][disabled] {
  display: none;
}
#product-add .busy-calculating {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  margin-right: 20px;
  color: gray;
  font-style: italic;
}
#product-add .busy-calculating .spinner {
  position: relative;
  top: -20px;
  left: -17px;
}
#product-add div.ng-popup-modal.datafield-info-modal {
  width: auto;
  height: auto;
}
#product-add div.ng-popup-modal.datafield-info-modal .info {
  padding: 20px;
}
#product-add .prosite-info {
  cursor: pointer;
  color: red;
  font-weight: 900;
  display: inline-block;
  margin-left: 4px;
}
#product-add .product-field__inner {
  display: block;
}
#product-add .product-field__inner > * {
  width: 100% !important;
  box-sizing: border-box;
}
#product-add .product-field__error {
  color: red;
  font-weight: 900;
  display: block;
  margin-top: 5px;
  text-align: right;
  font-size: 0.8em;
  scroll-margin: 50px;
  scroll-margin-top: 210px;
}
#product-add .left {
  flex: 1 1 540px;
  margin-bottom: 32px;
  max-width: 960px;
}
#product-add .left .product-field > label {
  width: 27%;
}
#product-add .left .product-field input,
#product-add .left .product-field .product-field__inner {
  width: 73%;
}
#product-add .right {
  flex-shrink: 0;
  width: 440px;
  padding-top: 60px;
}
@media (max-width: 1180px) {
  #product-add .right {
    width: 100%;
  }
}
#product-add .right .box,
#product-add .right .item {
  margin-bottom: 32px;
}
#product-add .right .rightWrapper {
  position: static;
  width: 440px;
}
@media (min-width: 1180px) {
  #product-add .right .rightWrapper {
    position: sticky;
    bottom: 10px;
    top: 110px;
    overflow: auto;
  }
}
#product-add #action-bar {
  margin: 0px 16px 40px 16px;
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
}
#product-add #action-bar img {
  width: 26px;
  margin: 0 16px;
}
#product-add #action-bar a {
  text-decoration: none;
  color: var(--color-dark);
}
#product-add #action-bar div {
  margin: 0 16px;
}
#product-add .box,
#product-add .item {
  margin: 0 16px;
}
#product-add .fields {
  padding-bottom: 44px;
}
#product-add h2 {
  margin: 40px 0 0 0;
  font-size: 1.5rem;
}
#product-add .info p:first-child {
  margin-top: 0;
}
#product-add .info p:last-child {
  margin-bottom: 0;
}
#product-add .item {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#product-add .item-title {
  padding: 18px;
  background-color: color-mix(in srgb, var(--color-secondary), transparent 20%);
  text-decoration: none;
  color: white;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
#product-add #productBackgroundImageContainer {
  min-height: 220px;
}
#product-add #productBackgroundImageContainer > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 16/9;
  background-color: var(--color-light-grey);
}
#product-add #productBackgroundImageContainer #productCustomImage {
  max-width: 390px;
  max-height: 220px;
}
#product-add #productBackgroundImageContainer table {
  display: none;
  width: 100%;
  height: 100%;
}
#product-add .productImageWrapper .product-image-actions {
  text-align: right;
}
#product-add .productRotateIcon,
#product-add .productZoomIcon {
  display: inline-block;
  background-size: cover;
  width: 30px;
  height: 35px;
  margin-right: 12px;
  cursor: pointer;
}
#product-add .productRotateIcon div {
  font-size: 12px;
  position: absolute;
  top: 23px;
  width: 40px;
  text-align: center;
}
#product-add #documents-box td {
  vertical-align: middle;
}
#product-add #documents-box a {
  text-decoration: none;
  color: black;
}
#product-add #documents-box a img {
  border: none;
  height: 32px;
}
#product-add [ng-if=info] * {
  max-width: 100%;
}
#product-add .spinner-container {
  position: absolute;
  z-index: 99999999;
  margin-left: calc(50% - 107px);
  margin-top: 60px;
}
#product-add .spinner-container .spinner-text {
  font-size: 15px;
  background-color: rgba(200, 200, 200, 0.3);
  color: #7d7d7d;
  padding: 20px;
  margin-top: 200px;
}
#product-add .is-saving {
  opacity: 0.3;
}
#product-add .files-list-container {
  display: block;
  margin-top: 20px;
}
#product-add .files-list-container .file-item {
  background: #fafafa 0% 0% no-repeat padding-box;
  box-shadow: 0px 1px 6px #00000029;
  border-radius: 3px;
  padding: 0.5rem 1rem;
  margin: 8px 0;
}
#product-add .files-list-container .file-item.removed-item {
  opacity: 0.5;
}
#product-add .files-list-container .file-item.removed-item a {
  color: #3f4040;
}
#product-add .files-list-container .file-item .file-item-flex-container {
  display: flex;
  justify-content: space-between;
}
#product-add .files-list-container .file-item .file-item-flex-container .file-item-name-and-size {
  font-size: 16px;
}
#product-add .files-list-container .file-item .file-item-flex-container .file-item-name-and-size p {
  margin: 0;
  margin-bottom: 5px;
}
#product-add .files-list-container .file-item .file-item-flex-container .file-item-name-and-size a {
  text-decoration: none;
  color: #3f4040;
  cursor: zoom-in;
}
#product-add .files-list-container .file-item .file-item-flex-container .file-item-name-and-size span {
  font-weight: 200;
  font-size: 14px;
}
#product-add .files-list-container .file-item .file-item-flex-container .file-item-actions i {
  cursor: pointer;
  font-size: 16px;
}
#product-add .files-list-container .file-item .file-item-flex-container .file-item-actions .restore-item {
  text-align: right;
  font-size: 14px;
}
#product-add .error-container {
  margin-top: 2rem;
}
#product-add .error-container .error-list-container {
  margin: 1rem;
}
#product-add .error-container .error-list-container .error-item {
  margin-bottom: 0.5rem;
}
#product-add .progress-bar {
  background-color: white;
  width: 100%;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.01);
  height: 24px;
  border-radius: 12px;
}
#product-add .progress-bar .progress {
  width: 0%;
  transition: width 0.5s;
  display: block;
  height: 24px;
  background-color: var(--color--primary);
  border-radius: 12px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#product-add .progress-bar .progress.complete {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
#product-add .drop-zone-container {
  margin: 1rem 0;
}

#order-overview {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#order-overview .backgroundTypeS {
  background-color: #efefef;
}
#order-overview .backgroundTypeE {
  background-color: #f9eed1;
}
#order-overview .backgroundTypeO {
  background-color: inherit;
}
#order-overview .orders .table-actions {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
#order-overview .orders .table-actions__column {
  flex-basis: auto;
  flex-shrink: 1;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
}
#order-overview .orders .table-actions__column .filter-button {
  width: 100%;
}
#order-overview .orders .table-actions__row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
#order-overview .orders .table-actions__filter {
  display: inline-block;
}
#order-overview .orders .table-actions__filter span {
  text-align: left;
  display: block;
  margin-bottom: 5px;
}
#order-overview .orders .filter {
  width: 200px;
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;
}
#order-overview .orders select.filter {
  height: 40px;
}
#order-overview .orders .search {
  width: 360px;
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;
}
#order-overview .orders .search.number-search {
  width: 120px;
}
#order-overview .orders .filter-button {
  width: auto;
  border: 0;
  min-height: 40px;
  line-height: 40px;
  padding: 0 1.25rem;
}
#order-overview .orders .filter-button--secondary {
  background-color: var(--color-light-grey);
  color: var(--color-black);
}
#order-overview .orders .search-button {
  position: relative;
  top: 18px;
  cursor: pointer;
  height: 33px;
  width: 33px;
}
#order-overview .orders .search-button img {
  height: 28px;
  position: relative;
  left: -14px;
  top: -9px;
}
#order-overview .orders .table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
}
#order-overview .orders .table thead th {
  text-align: left;
  padding: 8px 30px 16px 8px;
  border-bottom: 2px solid var(--color-black);
}
#order-overview .orders .table thead th[st-sort] {
  cursor: pointer;
}
#order-overview .orders .table thead .st-sort-ascent,
#order-overview .orders .table thead .st-sort-descent {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 6px solid var(--color-blue);
}
#order-overview .orders .table tbody td {
  padding: 16px 8px;
  border-bottom: 1px solid var(--color-light-grey);
}
#order-overview .orders .table tbody tr:hover {
  cursor: pointer;
}
#order-overview .orders .table tbody tr:hover a {
  text-decoration: underline;
}
#order-overview .orders .table a {
  color: var(--color-blue);
  text-decoration: none;
}
#order-overview .orders .table .ascending,
#order-overview .orders .table .descending {
  position: absolute;
  right: 8px;
  display: none;
  width: 24px;
}
#order-overview .orders .table .st-sort-ascent .ascending {
  display: inline-block;
}
#order-overview .orders .table .st-sort-descent .descending {
  display: inline-block;
}
#order-overview #orders-loader {
  padding: 16px;
  text-align: center;
  font-size: 1.15rem;
}
#order-overview .is-loading-orders {
  opacity: 0.3;
}
#order-overview #order-loader-spinner {
  margin: 30px auto;
  position: fixed;
  left: 50%;
  top: 45%;
  z-index: 5;
  display: none;
}
#order-overview #order-loader-spinner.is-loading-orders {
  opacity: 1;
  display: block;
}
#order-overview .covers-parent {
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 650px) and (max-width: 1220px) {
  #order-overview .table-actions__column#filters-column {
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 1;
  }
}
@media screen and (max-width: 1220px) {
  #order-overview .table-actions__row {
    justify-content: right !important;
    width: 100%;
  }
}
@media screen and (min-width: 650px) and (max-width: 960px) {
  #order-overview .table-actions {
    justify-content: center !important;
  }
  #order-overview .table-actions .table-actions__row#first-filter-row > label {
    width: calc(50% - 20px) !important;
  }
  #order-overview .table-actions .table-actions__row#first-filter-row > label input, #order-overview .table-actions .table-actions__row#first-filter-row > label select {
    width: 100% !important;
  }
  #order-overview .table-actions .table-actions__row#first-filter-row > label input[type=date], #order-overview .table-actions .table-actions__row#first-filter-row > label select[type=date] {
    max-width: calc(100% - 14px) !important;
  }
  #order-overview .table-actions .table-actions__row#second-filter-row input {
    width: calc(50% - 34px) !important;
  }
  #order-overview .table-actions .table-actions__row#second-filter-row input[ng-model="data.search"] {
    width: calc(100% - 34px) !important;
  }
}
@media screen and (max-width: 650px) {
  #order-overview .table-actions__column#filters-column {
    flex: 1;
  }
  #order-overview .table-actions__row input {
    width: 100% !important;
  }
  #order-overview .table-actions__filter {
    width: 100% !important;
  }
  #order-overview .table-actions__filter select {
    width: 100% !important;
  }
  #order-overview .table-actions__filter input[type=date] {
    max-width: calc(100% - 14px) !important;
  }
}

#document-overview {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#document-overview .document-header {
  display: flex;
  justify-content: space-between;
}
#document-overview .document-title {
  font-size: 1.15rem;
  color: var(--color-dark);
}
#document-overview .document-actions {
  text-align: right;
}
#document-overview #document-add {
  margin-bottom: 40px;
}
#document-overview #search {
  position: relative;
}
#document-overview #search .search {
  width: 360px;
}
#document-overview #search img {
  position: absolute;
  cursor: pointer;
  right: 8px;
  top: 8px;
  width: 16px;
  height: 16px;
}
#document-overview .no-documents, #document-overview .loader {
  padding: 16px;
  text-align: center;
  font-size: 1.15rem;
}
#document-overview .documents {
  margin-top: 40px;
  display: flex;
}
#document-overview .documents > div {
  flex-grow: 1;
  width: 50%;
}
#document-overview .documents > div:first-child {
  margin-right: 16px;
}
#document-overview .documents > div:last-child {
  margin-left: 16px;
}
#document-overview .documents a {
  text-decoration: none;
}
#document-overview .documents .document {
  margin-bottom: 32px;
}
#document-overview .documents .document .box-title {
  font-size: 1.15rem;
  color: var(--color-primary);
}
#document-overview .documents .document:hover .box-title {
  text-decoration: underline;
}
#document-overview .documents .document .box-actionbar img {
  height: 28px;
}
#document-overview .documents .box .box-actionbar {
  display: flex;
  gap: 3px;
}
#document-overview .documents .box .box-actionbar .box-action {
  margin-left: 0px;
}

#user-detail {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#user-detail .user-header {
  display: flex;
  justify-content: space-between;
}
#user-detail .user-title {
  font-size: 1.15rem;
  color: var(--color-dark);
}
#user-detail .user-actions {
  text-align: right;
}
#user-detail .content {
  margin-top: 40px;
  display: flex;
  color: var(--color-dark);
}
#user-detail .content > div {
  flex-grow: 1;
  width: 50%;
}
#user-detail .content > div:first-child {
  margin-right: 16px;
}
#user-detail .content > div:last-child {
  margin-left: 16px;
}
#user-detail .content ul {
  padding-left: 24px;
  margin-bottom: 0;
}
#user-detail .details th {
  text-align: left;
  font-weight: normal;
  margin-bottom: 0px;
}
#user-detail .details .box-title {
  margin-bottom: 16px;
}
#user-detail .details tr:not(:last-child) {
  border-bottom: 4px solid transparent;
}
#user-detail .details td:last-child {
  padding-left: 60px;
  font-weight: bold;
}
#user-detail .product-type-discount {
  float: right;
}

#contact {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#contact .contact-title {
  font-size: 1.15rem;
  color: var(--color-dark);
}
#contact .box {
  width: 420px;
  margin: 40px auto;
  padding-bottom: 44px;
}

#customer-overview {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#customer-overview .pages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
#customer-overview .pages-container .fa {
  font-size: 1.4em;
}
#customer-overview .pages-container input::-webkit-outer-spin-button,
#customer-overview .pages-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#customer-overview .pages-container input[type=number] {
  -moz-appearance: textfield;
}
#customer-overview .pages-container input {
  text-align: center;
}
#customer-overview .page {
  margin-left: 5px;
  cursor: pointer;
}
#customer-overview .customer-header {
  display: flex;
  justify-content: space-between;
}
#customer-overview .customer-title {
  font-size: 1.15rem;
  color: var(--color-dark);
}
#customer-overview #customer-sort {
  margin-top: 60px;
}
#customer-overview #customer-sort select {
  margin: 0 8px;
  width: 200px;
}
#customer-overview #customer-sort .order .ascending, #customer-overview #customer-sort .order .descending {
  position: relative;
  width: 32px;
  top: 10px;
}
#customer-overview .customer-actions {
  text-align: right;
}
#customer-overview .customer-actions select {
  margin-top: 8px;
  width: 374px;
}
#customer-overview #customer-add-button {
  margin-bottom: 40px;
}
#customer-overview #search {
  position: relative;
  margin-bottom: 24px;
}
#customer-overview #search .search {
  width: 360px;
}
#customer-overview #search img {
  position: absolute;
  cursor: pointer;
  right: 8px;
  top: 8px;
  width: 16px;
  height: 16px;
}
#customer-overview .customers {
  margin-top: 50px;
}
#customer-overview .customers .title {
  margin: 12px 0;
  padding-bottom: 2px;
  font-size: 1.5rem;
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-dark);
}
#customer-overview .customers .list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -16px;
}
#customer-overview .customers .list a {
  text-decoration: none;
}
#customer-overview .customers .list .customer {
  width: 294px;
  margin: 16px;
}
#customer-overview .customers .list .customer .box-title {
  font-size: 1.15rem;
  color: var(--color-dark);
}
#customer-overview .customers .list .customer .box-title .customer-number {
  font-size: 0.8em;
}
#customer-overview .customers .list .customer .active {
  color: var(--color-green);
}
#customer-overview .customers .list .customer .not-active {
  color: var(--color-red);
}
#customer-overview #no-customer, #customer-overview #loader {
  padding: 16px;
  text-align: center;
  font-size: 1.15rem;
}

#customer-detail {
  font-size: 1.15rem;
}
#customer-detail .details {
  margin-top: 40px;
}
#customer-detail .details .box {
  margin-bottom: 32px;
}
#customer-detail .account {
  display: flex;
  justify-content: space-between;
}
#customer-detail .account .account-mail {
  font-weight: bold;
}
#customer-detail .account:not(:last-child) {
  margin-bottom: 16px;
}
#customer-detail .account.inactive {
  color: var(--color-grey);
}
#customer-detail .products ul {
  padding-left: 24px;
  margin-bottom: 0;
}
#customer-detail .services .customer-portal {
  padding-top: 24px;
}
#customer-detail .general-details a {
  color: var(--color-primary);
  text-decoration: none;
}
#customer-detail .general-details a:hover {
  text-decoration: underline;
}
#customer-detail .product-type-discount {
  float: right;
}
#customer-detail .products li {
  margin-bottom: 10px;
}

#customer-add {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#customer-add .box {
  margin: 0 16px;
}
#customer-add #action-bar {
  margin: 0px 16px 40px 16px;
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
}
#customer-add #action-bar img {
  width: 26px;
  margin: 0 16px;
}
#customer-add #action-bar a {
  text-decoration: none;
  color: var(--color-dark);
}
#customer-add #action-bar div {
  margin: 0 16px;
}
#customer-add #customer-fields {
  position: sticky;
  top: 0;
}
#customer-add .customer-fields-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 8px 16px;
  font-size: 1.15rem;
  background-color: var(--color-secondary);
  color: white;
  font-weight: bold;
}
#customer-add .customer-fields-info span.fa {
  margin-right: 10px;
}
#customer-add .customer-fields-info a {
  background-color: white;
  color: black;
  border: 1px solid black;
  padding: 8px 16px;
  text-decoration: none;
}
#customer-add .customer-field input[readonly],
#customer-add .customer-field select[readonly],
#customer-add .customer-field textarea[readonly] {
  pointer-events: none;
  user-select: none;
}
#customer-add h2 {
  margin: 40px 0 0 0;
  font-size: 1.5rem;
}
#customer-add .fields {
  padding-bottom: 44px;
}
#customer-add .account {
  display: flex;
  justify-content: space-between;
}
#customer-add .account .account-delete {
  padding-right: 16px;
  align-self: center;
}
#customer-add .account .account-delete img {
  cursor: pointer;
  width: 20px;
}
#customer-add .account .account-delete.with-switch {
  transform: scale(0.5);
  margin-left: -19px;
  margin-right: -10px;
}
#customer-add .account .account-name {
  flex-grow: 1;
}
#customer-add .account .account-mail {
  font-weight: bold;
}
#customer-add .account:not(:last-child) {
  margin-bottom: 16px;
}
#customer-add .account.inactive {
  color: var(--color-grey);
}
#customer-add .product-types {
  margin-top: 48px;
}
#customer-add .product-types-list {
  margin-top: 16px;
}
#customer-add .product-type {
  display: flex;
  justify-content: space-between;
}
#customer-add .product-type .product-type-check {
  padding-right: 16px;
}
#customer-add .product-type .product-type-content {
  flex-grow: 1;
}
#customer-add .product-type .product-type-name {
  font-weight: bold;
}
#customer-add .product-type .product-type-discount {
  margin-top: 4px;
  display: flex;
  align-items: center;
}
#customer-add .product-type .product-type-discount input {
  margin-left: 16px;
  flex-grow: 1;
}
#customer-add .product-type:not(:last-child) {
  margin-bottom: 16px;
}

#account-add {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#account-add #action-bar {
  margin: 0px 16px 40px 16px;
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
}
#account-add #action-bar img {
  width: 26px;
  margin: 0 16px;
}
#account-add #action-bar a {
  text-decoration: none;
  color: var(--color-dark);
}
#account-add .account {
  padding-bottom: 44px;
  width: 640px;
  margin: 0 auto;
}

#document-add {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#document-add #action-bar {
  margin: 0px 16px 40px 16px;
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
}
#document-add #action-bar img {
  width: 26px;
  margin: 0 16px;
}
#document-add #action-bar a {
  text-decoration: none;
  color: var(--color-dark);
}
#document-add .document {
  padding-bottom: 44px;
  width: 640px;
  margin: 0 auto;
}
#document-add h2 {
  margin: 40px 0 0 0;
  font-size: 1.5rem;
}
#document-add ul {
  list-style: none;
  padding: 0;
}
#document-add ul li:not(:last-child) {
  margin-bottom: 16px;
}
#document-add ul input {
  margin-right: 16px;
}
#document-add #document-add-file-specs {
  font-size: 0.9em;
}
#document-add .file-field .fa {
  cursor: pointer;
}
#document-add .file-field .fa.fa-trash-restore {
  display: none;
}
#document-add .file-field [type=checkbox] {
  display: none;
}

#configuration-producttypes {
  max-width: 1400px;
  margin: 40px auto 0 auto;
}
#configuration-producttypes .sidebar {
  width: 300px;
}
#configuration-producttypes .main {
  margin-left: 32px;
}
#configuration-producttypes .main .box {
  margin-top: 30px;
  margin-bottom: 42px;
}
#configuration-producttypes .main #frm button {
  margin-top: 40px;
}
#configuration-producttypes .producttypes {
  padding: 0;
  margin-top: 0px;
}
#configuration-producttypes .producttypes h3 {
  margin-left: 16px;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-top: 20px;
}
#configuration-producttypes .producttypes ul {
  list-style: none;
  margin: 0;
  margin-left: 16px;
  padding: 8px 0;
}
#configuration-producttypes .producttypes ul li {
  cursor: pointer;
  padding: 8px 0;
}
#configuration-producttypes .producttypes ul li label {
  cursor: pointer;
  padding: 0 16px;
  display: block;
}
#configuration-producttypes .producttypes ul li.readonly {
  color: var(--color-dark-grey);
}
#configuration-producttypes .producttypes ul li.active {
  color: var(--color-primary);
}
#configuration-producttypes .producttypes ul li.active label {
  border-left: 2px solid var(--color-primary);
  padding: 0px 16px 0px 14px;
}
#configuration-producttypes .hide {
  display: none;
}
#configuration-producttypes .producttype {
  padding-bottom: 44px;
}
#configuration-producttypes .producttype h2 {
  cursor: pointer;
  margin: 40px 0 16px 0;
}
#configuration-producttypes .producttype h2:first-child {
  margin: 0 0 16px 0;
}
#configuration-producttypes .producttype label {
  align-self: flex-start;
}
#configuration-producttypes .custom-image-selector {
  margin-bottom: 20px;
}
#configuration-producttypes .custom-image-selector label {
  margin-right: 20px;
}

#configuration-news {
  max-width: 1400px;
  margin: 40px auto 0 auto;
}
#configuration-news .news {
  padding-bottom: 44px;
  width: 800px;
  margin: 0 auto;
}
#configuration-news h2 {
  margin: 0 0 16px 0;
}

#configuration-calculator {
  max-width: 1400px;
  margin: 40px auto 0 auto;
}
#configuration-calculator .sidebar {
  width: 300px;
}
#configuration-calculator .main {
  margin-left: 32px;
}
#configuration-calculator .main .box {
  margin-bottom: 32px;
}
#configuration-calculator .producttypes {
  padding: 0;
}
#configuration-calculator .producttypes ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
#configuration-calculator .producttypes ul li {
  cursor: pointer;
  padding: 8px 0;
}
#configuration-calculator .producttypes ul li label {
  cursor: pointer;
  padding: 0 16px;
  display: block;
}
#configuration-calculator .producttypes ul li.active {
  color: var(--color-primary);
}
#configuration-calculator .producttypes ul li.active label {
  border-left: 2px solid var(--color-primary);
  padding: 0px 16px 0px 14px;
}
#configuration-calculator .table-container {
  width: 100%;
  height: 500px;
  overflow: scroll;
  position: relative;
}
#configuration-calculator .table-container table {
  table-layout: fixed;
  position: absolute;
}
#configuration-calculator .prices {
  border: 0;
  color: var(--color-dark);
}
#configuration-calculator .prices .indicators {
  z-index: 3;
  position: relative;
  table-layout: fixed;
  width: 140px;
  min-width: 140px;
  max-width: 140px;
  height: 72px;
  background-color: var(--color-light-grey);
  font-size: 0.75rem;
  font-weight: 300;
}
#configuration-calculator .prices .indicators:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 140px 72px 0;
  border-style: solid;
  border-color: var(--color-lighter-grey) var(--color-lighter-grey) transparent transparent;
  background: transparent;
  display: block;
  width: 0;
}
#configuration-calculator .prices .indicators:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-bottom: 1px solid var(--color-grey);
  border-right: 1px solid var(--color-grey);
}
#configuration-calculator .prices .indicators .column-indicator {
  position: absolute;
  top: 6px;
  right: 6px;
}
#configuration-calculator .prices .indicators .row-indicator {
  position: absolute;
  bottom: 6px;
  left: 6px;
}
#configuration-calculator .prices th {
  font-weight: normal;
}
#configuration-calculator .prices .column-header {
  z-index: 2;
  position: relative;
  table-layout: fixed;
  width: 140px;
  min-width: 140px;
  max-width: 140px;
  height: 72px;
  background-color: var(--color-lighter-grey);
}
#configuration-calculator .prices .column-header:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid white;
  border-right: 1px solid white;
  border-bottom: 1px solid var(--color-grey);
}
#configuration-calculator .prices .row-header {
  z-index: 2;
  position: relative;
  width: 140px;
  height: 72px;
  background-color: var(--color-light-grey);
}
#configuration-calculator .prices .row-header:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  border-right: 1px solid var(--color-grey);
}
#configuration-calculator .prices td {
  position: relative;
  font-weight: 300;
  text-align: center;
}
#configuration-calculator .prices td:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
#configuration-calculator .export {
  margin-top: 16px;
  text-align: right;
}
#configuration-calculator .export a {
  text-decoration: none;
  color: var(--color-primary);
}
#configuration-calculator .export a:hover {
  text-decoration: underline;
}
#configuration-calculator .import {
  margin-top: 16px;
}
#configuration-calculator .import input {
  margin-left: 64px;
}
#configuration-calculator .calculator-field {
  display: flex;
}
#configuration-calculator .calculator-field > *:first-child {
  flex-shrink: 0;
  width: 460px;
  margin-right: 16px;
}
#configuration-calculator .calculator-field > *:first-child label {
  flex-grow: 1;
}
#configuration-calculator .calculator-field input[type=text] {
  flex-grow: 1;
}
#configuration-calculator .calculator-field .group {
  flex-grow: 1;
}
#configuration-calculator .calculator-field .group * {
  width: 100%;
  box-sizing: border-box;
}
#configuration-calculator .calculator-field .group *:not(:last-child) {
  margin-bottom: 8px;
}
#configuration-calculator .calculator-field:not(:last-child) {
  margin-bottom: 16px;
}
#configuration-calculator .expression {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#configuration-calculator .expression label {
  flex-grow: 1;
}
#configuration-calculator .operator {
  min-width: 100px;
}
#configuration-calculator .ordercalculation .operator {
  width: 115px;
  margin-left: 15px;
}
#configuration-calculator div[dnd-list] .dndDraggingSource {
  opacity: 0.2;
}
#configuration-calculator div[dnd-list] .dndPlaceholder {
  display: block;
  margin-bottom: 32px;
  min-height: 2px;
  background-color: var(--color-primary);
}
#configuration-calculator .calculation {
  padding-top: 64px;
}
#configuration-calculator .calculation .box-actionbar {
  width: 100%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#configuration-calculator .calculation .box-actionbar .box-action .disabler {
  height: 38px;
}
#configuration-calculator .calculation .box-actionbar .box-action--small img {
  height: 30px;
}
#configuration-calculator .calculation .box-actionbar .box-action[dnd-handle] {
  cursor: move;
}
#configuration-calculator .part {
  min-width: 220px;
  margin-right: 16px;
}
#configuration-calculator .ordercalculation .part {
  width: 255px;
  margin-right: 0px;
}
#configuration-calculator .ordercalculation select.part {
  width: 263px;
}
#configuration-calculator .ordercalculation .partlabel {
  width: 100px;
}
#configuration-calculator .external-price {
  padding-top: 16px;
}
#configuration-calculator .external-price input {
  margin-right: 16px;
}
#configuration-calculator .add-calculator {
  margin-bottom: 32px;
  text-align: right;
}
#configuration-calculator .add-calculator span {
  cursor: pointer;
  color: var(--color-primary);
}
#configuration-calculator .add-calculator span:hover {
  text-decoration: underline;
}
#configuration-calculator .save-calculators {
  text-align: center;
}

#configuration-pricefields {
  max-width: 1400px;
  margin: 40px auto 0 auto;
}
#configuration-pricefields .note-editor {
  max-width: 100%;
  width: 100%;
  margin-right: 20px;
}
#configuration-pricefields #quote-price-table {
  max-width: 1000px;
  text-align: left;
}
#configuration-pricefields #quote-price-table tbody tr select {
  width: 100%;
}
#configuration-pricefields #quote-price-table tbody tr input[type=number] {
  width: 80px;
}
#configuration-pricefields .pricefields {
  padding-bottom: 44px;
  width: 800px;
  margin: 0 auto;
}
#configuration-pricefields .drop-zone-container {
  margin-top: 20px;
  margin-right: 20px;
}
#configuration-pricefields .attachments-list-container {
  display: block;
  margin-top: 20px;
  margin-right: 20px;
}
#configuration-pricefields .attachments-list-container .attachment-item {
  background: #fafafa 0% 0% no-repeat padding-box;
  box-shadow: 0px 1px 6px #00000029;
  border-radius: 8px;
  padding: 15px;
  margin: 8px 16px;
}
#configuration-pricefields .attachments-list-container .attachment-item.removed-item {
  opacity: 0.5;
}
#configuration-pricefields .attachments-list-container .attachment-item.removed-item a {
  color: #3f4040;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container {
  display: flex;
  justify-content: space-between;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .small-select {
  cursor: pointer;
  font-size: 0.9em;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .small-select .first-icon {
  margin-top: 1px;
  margin-left: 2px;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .small-select .second-icon {
  position: absolute;
  margin-top: 10px;
  margin-left: 2px;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .small-select .options {
  background: white 0% 0% no-repeat padding-box;
  box-shadow: 0px 1px 6px #00000029;
  border-radius: 8px;
  padding: 6px;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .small-select .options .option {
  margin-bottom: 9px;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .small-select .options .option.last-item {
  margin-bottom: 0px;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .attachment-item-name-and-size {
  font-size: 18px;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .attachment-item-name-and-size a {
  text-decoration: none;
  color: #3f4040;
  cursor: zoom-in;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .attachment-item-name-and-size span {
  font-weight: 200;
  font-size: 16px;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .attachment-item-name-and-size select {
  font-size: 0.7em;
  border: none;
  width: 164px;
  position: absolute;
  margin-top: -4px;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .attachment-item-actions i {
  cursor: pointer;
  font-size: 30px;
  margin-top: 5px;
}
#configuration-pricefields .attachments-list-container .attachment-item .attachment-item-flex-container .attachment-item-actions .restore-item {
  text-align: right;
}
#configuration-pricefields .document-field {
  align-items: start !important;
}
#configuration-pricefields .document-field .header-image {
  margin-left: 20px;
  margin-right: 20px;
}
#configuration-pricefields .document-field textarea[name=message] {
  height: 200px;
  margin-right: 20px;
}
#configuration-pricefields .document-field input[name=gdprEmail] {
  margin-right: 20px;
}

#configuration-discount-add {
  max-width: 1400px;
  margin: 40px auto 0 auto;
}
#configuration-discount-add .discount {
  padding-bottom: 44px;
  width: 800px;
  margin: 0 auto;
}
#configuration-discount-add h2 {
  margin: 40px 0 16px 0;
}

#configuration-deliverytime {
  max-width: 1400px;
  margin: 40px auto 0 auto;
}
#configuration-deliverytime .deliverytime {
  padding-bottom: 44px;
  width: 800px;
  margin: 0 auto;
}

#configuration-discounts {
  max-width: 1400px;
  margin: 40px auto 0 auto;
}
#configuration-discounts a {
  text-decoration: none;
}
#configuration-discounts .discount {
  width: 800px;
  margin: 0 auto 32px auto;
}
#configuration-discounts .discount .box-title {
  font-size: 1.15rem;
  color: var(--color-primary);
}
#configuration-discounts .discount:hover .box-title {
  text-decoration: underline;
}
#configuration-discounts .discount .box-actionbar img {
  height: 18px;
}
#configuration-discounts .add-discount {
  text-align: center;
}

#configuration-system {
  max-width: 1400px;
  margin-top: 40px;
  margin-left: 20px;
}
#configuration-system table {
  border-spacing: 10px;
  border-collapse: separate;
}
#configuration-system table th {
  text-align: left;
  padding-right: 40px;
}
#configuration-system h2 {
  margin-left: 10px;
}

#error-page #error-page-code {
  font-size: 2.286em;
}
#error-page #error-page-message {
  font-size: 1.143em;
  margin-top: 10px;
}
#error-page #error-page-image {
  margin-left: 200px;
  float: left;
  height: 354px;
  display: inline-block;
}
#error-page #error-page-inner-container {
  display: inline-block;
  margin-top: 143px;
  margin-left: 75px;
}
#error-page #error-page-container {
  max-width: 1400px;
  margin: 80px auto 0 auto;
}
#error-page #error-page-clearer {
  text-align: center;
  clear: both;
}
#error-page #error-page-clearer #error-page-button {
  margin-top: 100px;
}

#sign-pdf-success-page {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  min-height: 100%;
}
#sign-pdf-success-page div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -22px;
}

#configuration-linked-systems h3 {
  color: var(--color-dark);
}
#configuration-linked-systems .grid-container {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
}
#configuration-linked-systems .grid-container .grid-column {
  display: flex;
  flex-direction: column;
}
#configuration-linked-systems .grid-container .grid-column .linked-system-item {
  background-color: var(--color-light-grey);
  margin-top: 10px;
  padding: 10px;
  font-weight: 100;
  display: flex;
  justify-content: space-between;
}
#configuration-linked-systems .grid-container .grid-column .linked-system-item .linked-system-item-active {
  font-size: 12pt;
  text-align: right;
  position: relative;
  top: -15px;
}
#configuration-linked-systems .grid-container .grid-column .linked-system-item .linked-system-item-active .active-switch .switch {
  transform: scale(0.5);
  display: inline-block;
  position: relative;
  top: 8px;
  left: 15px;
}
#configuration-linked-systems .grid-container .grid-column .linked-system-item .linked-system-item-active .active-switch .active-label {
  display: inline-block;
}
#configuration-linked-systems .grid-container .grid-column .linked-system-item .linked-system-item-info .linked-system-item-name {
  cursor: pointer;
  font-size: 18pt;
}
#configuration-linked-systems .grid-container .grid-column .linked-system-item .linked-system-item-info .linked-system-item-name img {
  height: 28px;
  position: absolute;
  margin-top: -1px;
  margin-left: 8px;
}
#configuration-linked-systems .grid-container .grid-column .linked-system-item .linked-system-item-info .linked-system-item-domain {
  color: var(--color-grey);
  font-size: 12pt;
}
#configuration-linked-systems .grid-container .grid-column button {
  margin-top: 20px;
  align-self: center;
}

div#alert.linked-systems-popup {
  top: -100px;
}

div#alert.linked-systems-popup > div {
  background-color: #FFFFFF;
}
div#alert.linked-systems-popup > div #sync-manually {
  font-size: 35px;
  position: absolute;
  margin-top: -46px;
  margin-left: 18px;
  cursor: pointer;
}
div#alert.linked-systems-popup > div #linked-systems-form-spinner {
  position: absolute;
  width: 600px;
  text-align: center;
  margin-top: 161px;
  margin-left: -77px;
}
div#alert.linked-systems-popup > div #linked-systems-form-spinner .lds-spinner {
  color: orange;
  transform: scale(2);
}
div#alert.linked-systems-popup > div h1 {
  font-size: 20pt;
  color: var(--color-dark);
  text-transform: none;
}
div#alert.linked-systems-popup > div h2 {
  color: var(--color-grey);
  text-transform: uppercase;
  font-size: 11pt;
  font-weight: 100;
  margin-bottom: 11px;
  margin-top: 27px;
}
div#alert.linked-systems-popup > div h3 {
  margin-top: -45px;
  font-weight: 100;
  text-align: right;
  color: var(--color-dark);
  cursor: pointer;
  display: inline-block;
  float: right;
}
div#alert.linked-systems-popup > div .buttons {
  margin-bottom: 18px;
}
div#alert.linked-systems-popup > div .buttons button:first-of-type {
  background: none;
  box-shadow: none;
  text-transform: none;
  font-size: 15pt;
  color: var(--color-dark);
  position: relative;
  top: 2px;
  margin-right: 0px;
}
div#alert.linked-systems-popup > div #connection-form {
  margin-bottom: 30px;
}
div#alert.linked-systems-popup > div #connection-form .connection-field {
  margin-bottom: 8px;
}
div#alert.linked-systems-popup > div #connection-form .connection-field.connection-auto-sync-field {
  margin-top: -12px;
}
div#alert.linked-systems-popup > div #connection-form .connection-field.connection-type-field {
  display: inline-block;
  width: 32%;
}
div#alert.linked-systems-popup > div #connection-form .connection-field.connection-type-field label {
  width: 90%;
  vertical-align: top;
}
div#alert.linked-systems-popup > div #connection-form .connection-field.connection-type-field input {
  width: 7%;
  vertical-align: top;
  position: relative;
  top: 2px;
}
div#alert.linked-systems-popup > div #connection-form .connection-field label {
  color: var(--color-dark);
  width: 120px;
  display: inline-block;
}
div#alert.linked-systems-popup > div #connection-form .connection-field label.switch {
  width: 60px;
  transform: scale(0.5);
  display: inline-block;
  position: relative;
  top: 10px;
  left: -14px;
}
div#alert.linked-systems-popup > div #connection-form .connection-field input, div#alert.linked-systems-popup > div #connection-form .connection-field textarea {
  color: var(--color-dark);
  width: 458px;
}
div#alert.linked-systems-popup > div #connection-form .connection-field .fa-refresh {
  cursor: pointer;
  position: relative;
  top: 6px;
  margin-right: 6px;
}
div#alert.linked-systems-popup > div #connection-form .connection-field #connection-secret {
  width: 413px;
  margin-right: 6px;
}
div#alert.linked-systems-popup > div #connection-form .product-types-list {
  margin-bottom: 65px;
  overflow-y: scroll;
  max-height: 265px;
}

#quote-page #quote {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 1024px;
  z-index: 0;
}
#quote-page #quote-inner {
  margin: 30px;
}
#quote-page #header-image {
  width: 100%;
}
#quote-page .content {
  display: flex;
}
#quote-page .content .customer {
  width: 30%;
  border: 1px solid #000;
  font-size: 10pt;
  padding: 10px;
}
#quote-page .content .message {
  flex-grow: 1;
  margin-left: 15px;
  border: 1px solid #000;
  font-size: 10pt;
  padding: 10px;
}
#quote-page .order {
  margin-top: 15px;
}
#quote-page .order .order-reference {
  font-size: 20pt;
}
#quote-page .products {
  margin-top: 15px;
  background-color: #F5F5F5;
  font-size: 1px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
#quote-page .sign-field {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#quote-page .sign-field .label {
  margin-top: 15px;
  width: 400px;
}
#quote-page .sign-field .value {
  margin-top: 15px;
  width: 400px;
}
#quote-page #canvas-controller {
  position: relative;
  text-align: right;
}
#quote-page #canvas {
  border: solid 1px black;
  width: 400px;
  height: 200px;
}
#quote-page #eraser-link {
  z-index: 10;
  position: absolute;
  top: 4px;
  right: 4px;
}
#quote-page .past-due-outer {
  border: solid 1px black;
  height: 200px;
  position: relative;
  top: 50px;
}
#quote-page .past-due-inner {
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#quote-page #signer-name-container {
  display: flex;
  align-items: center;
}
#quote-page #signer-name-label {
  width: 80px;
}
#quote-page #signer-name {
  border: 1px solid black;
  width: 320px;
}
#quote-page .accept-checkbox-label {
  display: inline-block;
  width: 90%;
  vertical-align: top;
}
#quote-page .buttons {
  width: 1024px;
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
#quote-page .info {
  display: flex;
}
#quote-page .info .content {
  flex-grow: 1;
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
  background-color: var(--color-primary-light);
}
#quote-page .info .arrow-right {
  display: block;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid var(--color-primary-light);
}

html,
body {
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  color: var(--color-black);
}

body.hide-body-scroll {
  overflow: hidden;
}

div.js-readonly > input,
div.js-readonly > label,
button.js-readonly,
input.js-readonly,
select.js-readonly,
textarea.js-readonly {
  pointer-events: none;
  user-select: none;
  opacity: 0.4;
}

.js-readonly[data-select-with-images] {
  pointer-events: none;
  user-select: none;
}

.tooltip {
  position: absolute;
  display: none;
  width: auto;
  height: auto;
  padding: 10px;
  color: #3f4040;
  z-index: 5000;
  font-size: 0.8em;
  font-weight: normal;
  background-color: #f5f5f5;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.breakAll {
  -ms-word-break: break-all;
  word-break: break-all;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

#product-add .ng-popup-modal,
#order-edit .ng-popup-modal {
  width: 85%;
  height: 80%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
}
#product-add .ng-popup-modal h2,
#order-edit .ng-popup-modal h2 {
  margin-left: 30px;
}
#product-add .ng-popup-modal .dialogContainer,
#order-edit .ng-popup-modal .dialogContainer {
  position: relative;
  top: 2px;
  overflow-y: scroll;
  width: 100%;
  height: calc(100% - 3px);
  display: block;
}
#product-add .ng-popup-modal .closeModalX,
#order-edit .ng-popup-modal .closeModalX {
  z-index: 999;
  font-size: 24px;
  position: fixed;
  top: 0px;
  right: 25px;
  color: orange;
  font-weight: bold;
  cursor: pointer;
}
#product-add .ng-popup-modal .templatePopupItem,
#order-edit .ng-popup-modal .templatePopupItem {
  position: relative;
  cursor: pointer;
  width: 300px;
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 20px;
  display: inline-block;
  min-width: 330px;
  min-height: 212px;
  aspect-ratio: auto 1140/642;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
#product-add .ng-popup-modal .templatePopupItem .item,
#order-edit .ng-popup-modal .templatePopupItem .item {
  position: absolute;
  bottom: 0px;
  width: 100%;
  margin-left: 0px;
}
#product-add .ng-popup-modal .templatePopupItem .item .item-title,
#order-edit .ng-popup-modal .templatePopupItem .item .item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#product-add .ng-popup-modal .templatePopupItem .item .item-title .templatePopupItemRemove,
#order-edit .ng-popup-modal .templatePopupItem .item .item-title .templatePopupItemRemove {
  height: 40px;
  width: 40px;
}

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