@import url("https://fonts.cdnfonts.com/css/avenir-lt-std");@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/solid.min.css");

body {
  margin: 0;
  padding: 0;
}
#calculation-ui {
  --input-primary-sample-order-color: #000000;
  /* Used for primary actions and for highlighting selected values */
  --input-primary-color: #D20014;
  --input-primary-color-hover: #9f000f;
  /* Used for secondary actions */
  --input-secondary-color: white;
  /* Borders for all non-highlighted inputs/values */
  --input-border-color: #BFC0C0;
  --text-size-large: 20px;
  --text-size-medium: 16px;
  --text-size-small: 12px;
  --text-size-input: 1.25rem;
  --text-color-disabled: lightgrey;
  --base-text-size: var(--text-size-medium);
  --mobile-base-text-size: 10px;
  --mobile-text-size: 12px;
  --mobile-text-size-medium: 14px;
  --background-highlight: #F4F8FE;
  --neutral-100: #EFEFEF;
  --neutral-200: #BFC0C0;
  --neutral-300: #b5b5b5;
  --neutral-400: #ECECEC;
  --neutral-500: #CECECE;
  --neutral-800: #4E4D4D;
  --neutral-900: #777777;
  --color-white: #ffffff;
  --color-black: #000000;
  --col-min-width: 200px;
  --column-spacing: 30px;
  --primary-color-rgb: 210, 0, 20;
  --secondary-color-rgb: 206, 206, 206;
  margin: 0 auto;
  font-size: var(--base-text-size);
  color: black;
  /* HTML5 display-role reset for older browsers */
}
#calculation-ui html {
  box-sizing: border-box;
  font-size: var(--text-size-medium);
}
#calculation-ui * {
  font-family: Avenir, "Avenir LT Std", sans-serif;
}
#calculation-ui *,
#calculation-ui ::after,
#calculation-ui ::before {
  box-sizing: border-box;
}
#calculation-ui html,
#calculation-ui body,
#calculation-ui div,
#calculation-ui span,
#calculation-ui applet,
#calculation-ui object,
#calculation-ui iframe,
#calculation-ui h1,
#calculation-ui h2,
#calculation-ui h3,
#calculation-ui h4,
#calculation-ui h5,
#calculation-ui h6,
#calculation-ui p,
#calculation-ui blockquote,
#calculation-ui pre,
#calculation-ui a,
#calculation-ui abbr,
#calculation-ui acronym,
#calculation-ui address,
#calculation-ui big,
#calculation-ui cite,
#calculation-ui code,
#calculation-ui del,
#calculation-ui dfn,
#calculation-ui em,
#calculation-ui img,
#calculation-ui ins,
#calculation-ui kbd,
#calculation-ui q,
#calculation-ui s,
#calculation-ui samp,
#calculation-ui small,
#calculation-ui strike,
#calculation-ui strong,
#calculation-ui sub,
#calculation-ui sup,
#calculation-ui tt,
#calculation-ui var,
#calculation-ui b,
#calculation-ui u,
#calculation-ui i,
#calculation-ui center,
#calculation-ui dl,
#calculation-ui dt,
#calculation-ui dd,
#calculation-ui ol,
#calculation-ui ul,
#calculation-ui li,
#calculation-ui fieldset,
#calculation-ui form,
#calculation-ui label,
#calculation-ui legend,
#calculation-ui table,
#calculation-ui caption,
#calculation-ui tbody,
#calculation-ui tfoot,
#calculation-ui thead,
#calculation-ui tr,
#calculation-ui th,
#calculation-ui td,
#calculation-ui article,
#calculation-ui aside,
#calculation-ui canvas,
#calculation-ui details,
#calculation-ui embed,
#calculation-ui figure,
#calculation-ui figcaption,
#calculation-ui footer,
#calculation-ui header,
#calculation-ui hgroup,
#calculation-ui menu,
#calculation-ui nav,
#calculation-ui output,
#calculation-ui ruby,
#calculation-ui section,
#calculation-ui summary,
#calculation-ui time,
#calculation-ui mark,
#calculation-ui audio,
#calculation-ui video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
#calculation-ui article,
#calculation-ui aside,
#calculation-ui details,
#calculation-ui figcaption,
#calculation-ui figure,
#calculation-ui footer,
#calculation-ui header,
#calculation-ui hgroup,
#calculation-ui menu,
#calculation-ui nav,
#calculation-ui section {
  display: block;
}
#calculation-ui body {
  line-height: 1;
}
#calculation-ui body,
#calculation-ui h1,
#calculation-ui h2,
#calculation-ui h3,
#calculation-ui h4,
#calculation-ui h5,
#calculation-ui h6,
#calculation-ui p,
#calculation-ui ol,
#calculation-ui ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
#calculation-ui blockquote,
#calculation-ui q {
  quotes: none;
}
#calculation-ui blockquote:before,
#calculation-ui blockquote:after,
#calculation-ui q:before,
#calculation-ui q:after {
  content: "";
  content: none;
}
#calculation-ui table {
  border-collapse: collapse;
  border-spacing: 0;
}
#calculation-ui .warning {
  font-weight: bold;
  color: var(--input-primary-color);
}
#calculation-ui .text-center {
  text-align: center;
}
#calculation-ui .mb-1 {
  margin-bottom: 1rem;
}
#calculation-ui h1,
#calculation-ui .h1,
#calculation-ui h2,
#calculation-ui .h2,
#calculation-ui h3,
#calculation-ui .h3,
#calculation-ui h4,
#calculation-ui .h4,
#calculation-ui h5,
#calculation-ui .h5 {
  font-weight: bold;
  word-break: break-word;
  font-size: var(--base-text-size);
}
#calculation-ui h1,
#calculation-ui .h1 {
  --base-text-size: 28px;
}
#calculation-ui h2,
#calculation-ui .h2 {
  --base-text-size: 25px;
}
#calculation-ui h3,
#calculation-ui .h3 {
  --base-text-size: 22px;
}
#calculation-ui h4,
#calculation-ui .h4 {
  --base-text-size: 20px;
}
#calculation-ui h5,
#calculation-ui .h5 {
  --base-text-size: 18px;
}
#calculation-ui strong {
  font-weight: 700;
}
#calculation-ui sup {
  vertical-align: super;
  font-size: smaller;
}
#calculation-ui .primary-text {
  color: var(--input-primary-color);
  font-weight: bold;
  font-size: var(--text-size-medium);
}
#calculation-ui .cap-text {
  font-weight: 100;
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 5px;
}
#calculation-ui hr {
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
#calculation-ui .container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  justify-content: flex-start;
  column-gap: var(--column-spacing);
}
#calculation-ui .container:before {
  display: none;
}
#calculation-ui .required {
  color: var(--input-primary-color);
  font-weight: 600;
  margin-left: 3px;
}
#calculation-ui .col-0 {
  width: 100%;
  display: flex;
}
#calculation-ui .col-1,
#calculation-ui .col-2,
#calculation-ui .col-3,
#calculation-ui .col-4,
#calculation-ui .col-5,
#calculation-ui .col-6,
#calculation-ui .col-7,
#calculation-ui .col-8,
#calculation-ui .col-9,
#calculation-ui .col-10 {
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  min-width: var(--col-min-width);
  flex-basis: calc(100% / var(--cols) - 15px * (var(--cols) - 1));
  width: auto;
  max-width: none !important;
}
#calculation-ui .col-1 {
  --cols: 1;
}
#calculation-ui .col-2 {
  --cols: 2;
}
#calculation-ui .col-3 {
  --cols: 3;
}
#calculation-ui .col-4 {
  --cols: 4;
}
#calculation-ui .col-5 {
  --cols: 5;
}
#calculation-ui .col-6 {
  --cols: 6;
}
#calculation-ui .col-7 {
  --cols: 7;
}
#calculation-ui .col-8 {
  --cols: 8;
}
#calculation-ui .col-9 {
  --cols: 9;
}
#calculation-ui .col-10 {
  --cols: 10 ;
}
#calculation-ui [class*=" col-"],
#calculation-ui [class^=col-] {
  float: none;
}
@container (max-width: 430px) {
  #calculation-ui .col-2,
  #calculation-ui .col-3,
  #calculation-ui .col-4,
  #calculation-ui .col-5,
  #calculation-ui .col-6,
  #calculation-ui .col-7,
  #calculation-ui .col-8,
  #calculation-ui .col-9,
  #calculation-ui .col-10 {
    --cols: 1;
  }
}
@container (max-width: 660px) {
  #calculation-ui .col-3,
  #calculation-ui .col-4,
  #calculation-ui .col-5,
  #calculation-ui .col-6,
  #calculation-ui .col-7,
  #calculation-ui .col-8,
  #calculation-ui .col-9,
  #calculation-ui .col-10 {
    --cols: 2;
  }
}
@container (max-width: 890px) {
  #calculation-ui .col-4,
  #calculation-ui .col-5,
  #calculation-ui .col-6,
  #calculation-ui .col-7,
  #calculation-ui .col-8,
  #calculation-ui .col-9,
  #calculation-ui .col-10 {
    --cols: 3;
  }
}
@container (max-width: 1120px) {
  #calculation-ui .col-5,
  #calculation-ui .col-6,
  #calculation-ui .col-7,
  #calculation-ui .col-8,
  #calculation-ui .col-9,
  #calculation-ui .col-10 {
    --cols: 4;
  }
}
@container (max-width: 1350px) {
  #calculation-ui .col-6,
  #calculation-ui .col-7,
  #calculation-ui .col-8,
  #calculation-ui .col-9,
  #calculation-ui .col-10 {
    --cols: 5;
  }
}
@container (max-width: 1580px) {
  #calculation-ui .col-7,
  #calculation-ui .col-8,
  #calculation-ui .col-9,
  #calculation-ui .col-10 {
    --cols: 6;
  }
}
@container (max-width: 1810px) {
  #calculation-ui .col-8,
  #calculation-ui .col-9,
  #calculation-ui .col-10 {
    --cols: 7;
  }
}
@container (max-width: 2040px) {
  #calculation-ui .col-9,
  #calculation-ui .col-10 {
    --cols: 8;
  }
}
@container (max-width: 2270px) {
  #calculation-ui .col-10 {
    --cols: 9;
  }
}
#calculation-ui .bg {
  background-color: var(--neutral-300);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: rgba(128, 46, 76, 0.15);
  border: 1px solid rgba(144, 39, 118, 0.2);
}
#calculation-ui .icon {
  margin: 0 5px;
}
#calculation-ui .configurator-content {
  max-width: 1000px;
  margin: 0px auto;
  container-type: inline-size;
}
#calculation-ui .label-with-ctrl {
  margin-bottom: 50px;
}
#calculation-ui .horizontal-lines .label-with-ctrl {
  margin: 10px 0 !important;
}
#calculation-ui .highlight-background {
  padding-right: var(--column-spacing);
  padding-left: var(--column-spacing);
  background-color: var(--background-highlight);
}
#calculation-ui .highlight-background .label-with-ctrl {
  padding: 20px 0 !important;
}
#calculation-ui .highlight-background > .highlight-background {
  padding-right: 0px;
  padding-left: 0px;
  padding-bottom: 20px;
}
#calculation-ui .highlight-background .label-with-ctrl {
  padding: 15px 0 !important;
  margin: 0 !important;
}
#calculation-ui .horizontal-lines {
  border-bottom: 1px solid var(--neutral-500);
  padding: 0 30px;
}
#calculation-ui .horizontal-lines:empty {
  border-bottom: none;
}
#calculation-ui .horizontal-lines .label-with-ctrl {
  padding: 10px 0 !important;
  margin: 0 !important;
}
#calculation-ui .horizontal-lines .hr {
  padding-bottom: 15px;
  margin-top: 0 !important;
}
#calculation-ui .horizontal-lines .hr:not(:last-child) {
  border-bottom: 1px solid var(--neutral-500);
}
#calculation-ui .horizontal-lines .horizontal-lines {
  padding: 0 !important;
}
#calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__TABLE_WITH_LINES.DISCLAIMER_TEXT"],
#calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__TABLE_WITH_LINES"],
#calculation-ui div[data-section="STANDARD_VIEW_01.RESULT_PAGE"] .horizontal-lines,
#calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.RESULT_PAGE"].horizontal-lines {
  border-bottom: none;
}
#calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD"] .label-with-ctrl,
#calculation-ui div[data-section="STANDARD_VIEW_01.RESULT_PAGE.CONTACT_US"] .label-with-ctrl {
  margin-bottom: 10px;
}
#calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD"] div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD.VIEW_01.PAGE_1.SECTION_3"],
#calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD"] div[data-section="STANDARD_VIEW_01.RESULT_PAGE.CONTACT_US.VIEW_01.PAGE_1.SECTION_3"],
#calculation-ui div[data-section="STANDARD_VIEW_01.RESULT_PAGE.CONTACT_US"] div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD.VIEW_01.PAGE_1.SECTION_3"],
#calculation-ui div[data-section="STANDARD_VIEW_01.RESULT_PAGE.CONTACT_US"] div[data-section="STANDARD_VIEW_01.RESULT_PAGE.CONTACT_US.VIEW_01.PAGE_1.SECTION_3"] {
  margin-top: 15px;
}
#calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD"] div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD.VIEW_01.PAGE_1.SECTION_3"] label,
#calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD"] div[data-section="STANDARD_VIEW_01.RESULT_PAGE.CONTACT_US.VIEW_01.PAGE_1.SECTION_3"] label,
#calculation-ui div[data-section="STANDARD_VIEW_01.RESULT_PAGE.CONTACT_US"] div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD.VIEW_01.PAGE_1.SECTION_3"] label,
#calculation-ui div[data-section="STANDARD_VIEW_01.RESULT_PAGE.CONTACT_US"] div[data-section="STANDARD_VIEW_01.RESULT_PAGE.CONTACT_US.VIEW_01.PAGE_1.SECTION_3"] label {
  color: var(--neutral-900);
  padding-top: 3px !important;
}
#calculation-ui div[data-section="STANDARD_VIEW_01.RESULT_PAGE.BUTTONS"] .hr {
  margin-top: 50px !important;
  margin-bottom: 0px !important;
}
#calculation-ui div[data-section="VIEW_1.PAGE_5__PRODUCT_SELECTION"] .label-with-ctrl:not(:first-child) {
  margin-bottom: 0 !important;
}
#calculation-ui .accordion-wrapper .label-with-ctrl {
  margin-bottom: 20px;
}
#calculation-ui .highlight-background.horizontal-lines.container .table-container .flex-cell .flex-sub-cell .value {
  font-size: 13px;
}
#calculation-ui .highlight-background.horizontal-lines.container .table-container .flex-cell .flex-sub-cell:not(:first-child) .sub-info {
  text-align: center;
}
#calculation-ui .highlight-background.horizontal-lines.container .table-container .flex-cell .flex-sub-cell:nth-child(1) {
  flex-grow: 2;
}
#calculation-ui .highlight-background.horizontal-lines.container .table-container .flex-cell .flex-sub-cell:last-child {
  display: flex;
  justify-content: end;
  flex-grow: 0;
}
@media (max-width: 768px) {
  #calculation-ui body {
    margin: 0 !important;
  }
  #calculation-ui .label-with-ctrl {
    margin-bottom: 10px;
  }
  #calculation-ui div[data-section="VIEW_1.PAGE_5__PRODUCT_SELECTION.SECTION__ADD_CUSTOM_LAYERS"] {
    flex-direction: column;
  }
  #calculation-ui .horizontal-lines {
    padding: 0 10px;
  }
  #calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__RESULT"],
  #calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__TABLE_WITH_LINES"] {
    width: auto !important;
  }
  #calculation-ui .highlight-background.horizontal-lines.container .table-container .table-wrapper {
    width: 100%;
  }
  #calculation-ui .highlight-background.horizontal-lines.container .table-container .table-wrapper .flex-cell .flex-sub-cell {
    width: 130px;
    height: auto;
  }
  #calculation-ui .highlight-background.horizontal-lines.container .table-container .table-wrapper .flex-cell .flex-sub-cell:last-child {
    width: 50px;
  }
}
@media (max-width: 767px) {
  #calculation-ui div[data-section="STANDARD_VIEW_01.RESULT_PAGE.BUTTONS"] .col-2 {
    --cols: 1;
    margin-top: 10px !important;
  }
  #calculation-ui div[data-section="STANDARD_VIEW_01.RESULT_PAGE.BUTTONS"] .col-2 .button {
    width: 100%;
  }
  #calculation-ui div[data-section="STANDARD_VIEW_01.RESULT_PAGE.CONTACT_US.VIEW_01.PAGE_1.SECTION_3"] .button,
  #calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD.VIEW_01.PAGE_1.SECTION_3"] .button {
    width: 100%;
  }
  #calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD.SECTION__DOWNLOAD_BUTTONS_02"] .col-3 {
    --cols: 1;
    margin-top: 10px !important;
  }
  #calculation-ui div[data-section="VIEW_1.PAGE_6__CALCULATION_RESULT.SECTION__SIGN_UP__DOWNLOAD.SECTION__DOWNLOAD_BUTTONS_02"] .col-3 .button {
    width: 100%;
  }
  #calculation-ui .highlight-background {
    padding: 10px 20px;
  }
}#calculation-ui .button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid var(--input-primary-color);
  cursor: pointer;
  user-select: none;
  display: block;
  text-align: center;
  white-space: nowrap;
  font-weight: 800;
  padding: 10px 40px;
  transition: 0.2s all;
}
#calculation-ui .button span {
  margin: 0 10px;
}
#calculation-ui .button .icon {
  height: 17px;
  top: 2px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#calculation-ui .button .icon.icon-left {
  left: 10px;
}
#calculation-ui .button .icon.icon-right {
  right: 0px;
}
#calculation-ui .button:active {
  transform: scale(0.98);
}
#calculation-ui .button.button-center {
  margin: 0px auto;
}
#calculation-ui .button.button-right {
  margin: 0px 0px 0px auto;
}
#calculation-ui .button.button-large {
  font-size: var(--text-size-large);
  line-height: 2;
  border-width: 4px;
  min-width: 200px;
}
#calculation-ui .button.button-medium {
  font-size: var(--base-text-size);
  line-height: 1.5;
  border-width: 2px;
  min-width: 140px;
  height: 47px;
}
#calculation-ui .button.button-medium .icon {
  height: 14px;
}
#calculation-ui .button.button-small {
  font-size: var(--text-size-small);
}
#calculation-ui .button.button-small .icon {
  height: 10px;
}
#calculation-ui .button.button-primary {
  color: var(--input-secondary-color);
  background-color: var(--input-primary-color);
}
#calculation-ui .button.button-primary .icon {
  color: #ffffff;
}
#calculation-ui .button.button-primary .icon path {
  fill: #ffffff;
}
#calculation-ui .button.button-primary:hover {
  background-color: var(--input-primary-color-hover);
  border-color: var(--input-primary-color-hover);
  transition: 0.15s ease-in;
}
#calculation-ui .button.button-primary.button-disabled {
  pointer-events: none;
  color: var(--color-white);
  background-color: rgba(var(--primary-color-rgb), 0.5);
  border: 2px solid rgba(var(--primary-color-rgb), 0.01);
}
#calculation-ui .button.button-secondary {
  color: var(--color-black);
  background-color: var(--neutral-400);
  border: 2px solid var(--neutral-500);
}
#calculation-ui .button.button-secondary .icon {
  color: var(--color-black);
}
#calculation-ui .button.button-secondary .icon path {
  fill: var(--color-black);
}
#calculation-ui .button.button-secondary:hover {
  background-color: var(--neutral-500);
  transition: 0.15s ease-in;
  border-color: var(--neutral-500);
}
#calculation-ui .button.button-secondary:hover .icon {
  transition: 0.15s ease-in;
}
#calculation-ui .button.button-secondary.button-disabled {
  pointer-events: none;
  color: var(--color-white);
  background-color: rgba(var(--secondary-color-rgb), 0.5);
  border: 2px solid rgba(var(--secondary-color-rgb), 0.5);
}
#calculation-ui .button.button-ghost {
  background-color: var(--color-white);
  color: var(--color-black);
  border: none;
  padding: 5px 10px 5px 10px;
  min-width: auto;
  height: auto;
}
#calculation-ui .button.button-ghost.button-disabled {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.5);
  border: none;
}
#calculation-ui .button.button-ghost.button-disabled .icon img {
  opacity: 0.5;
}
#calculation-ui .button.button-ghost .icon {
  color: var(--input-primary-color);
}
#calculation-ui .button.button-ghost .icon.icon-left {
  left: 5px;
}
#calculation-ui .button.button-ghost .icon path {
  fill: var(--input-primary-color);
}
#calculation-ui .button.button-ghost:hover {
  background-color: transparent;
}
@media (max-width: 768px) {
  #calculation-ui .button span {
    margin: 0 20px;
  }
  #calculation-ui .button.button-medium {
    height: 40px;
    font-size: 14px;
    line-height: initial;
    padding: 0 10px;
    min-width: auto;
    display: flex;
    align-items: center;
  }
  #calculation-ui .button.button-medium img {
    margin: 0;
  }
  #calculation-ui .button.button-medium .icon {
    height: 14px;
    position: relative;
    transform: none;
    top: auto;
    margin: 0;
  }
  #calculation-ui .button.button-medium .icon.icon-left {
    left: 10px;
  }
  #calculation-ui .button.button-medium .icon.icon-right {
    right: 5px;
  }
}#calculation-ui .checkbox-wrapper {
  display: flex;
}
#calculation-ui .checkbox-wrapper.center {
  justify-content: center;
}
#calculation-ui .checkbox-wrapper.right {
  justify-content: flex-end;
}
#calculation-ui .checkbox-wrapper .checkbox-label {
  display: block;
  position: relative;
  padding: 6px 30px !important;
  margin-bottom: 12px !important;
  cursor: pointer;
  font-size: var(--base-text-size) !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#calculation-ui .checkbox-wrapper .checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#calculation-ui .checkbox-wrapper .checkbox-label input:checked + .checkmark {
  background-color: var(--input-primary-color);
}
#calculation-ui .checkbox-wrapper .checkbox-label input:checked + .checkmark:after {
  display: block;
}
#calculation-ui .checkbox-wrapper .checkbox-label input:disabled + .checkmark {
  opacity: 0.25;
}
#calculation-ui .checkbox-wrapper .checkbox-label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid var(--input-primary-color) !important;
}
#calculation-ui .checkbox-wrapper .checkbox-label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 0px;
  width: 9px;
  height: 17px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  #calculation-ui .checkbox-wrapper .checkbox-label .checkmark {
    height: 20px;
    width: 20px;
  }
  #calculation-ui .checkbox-wrapper .checkbox-label .checkmark:after {
    width: 6px;
    height: 14px;
  }
}#calculation-ui .input-wrapper {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--neutral-500);
  border-radius: 4px;
}
#calculation-ui .input-wrapper input {
  border: none;
  height: 42px;
  border-radius: 4px;
  padding: 5px 10px;
  width: 100%;
  font-size: var(--base-text-size);
}
#calculation-ui .input-wrapper input:focus {
  outline: none;
}
#calculation-ui .input-wrapper .label-uom {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  font-weight: bolder;
  position: relative;
  text-wrap: nowrap;
}
#calculation-ui .input-wrapper .label-uom:before {
  content: "";
  height: 25px;
  width: 1px;
  background-color: var(--color-black);
  display: block;
  margin-right: 10px;
}#calculation-ui .label {
  margin: 15px 0;
  font-size: var(--base-text-size);
  opacity: 1;
}
#calculation-ui .label.longtext {
  text-align: justify;
}
#calculation-ui .label.longtext label {
  font-weight: 200;
  line-height: 1.25;
}
#calculation-ui .label.center {
  text-align: center;
}
#calculation-ui .label.right {
  text-align: right;
}
#calculation-ui .label.h1, #calculation-ui .label.h2, #calculation-ui .label.h3, #calculation-ui .label.h4, #calculation-ui .label.h5 {
  margin-top: calc(var(--base-text-size) * 1.5);
}
#calculation-ui .label.normal {
  font-weight: 800;
}
#calculation-ui .label.warning label {
  color: rgba(0, 0, 0, 0.5) !important;
}
#calculation-ui .label.label-icon label {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.25;
}
#calculation-ui .label.label-icon label img {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}
#calculation-ui .label label {
  margin-top: 1rem;
}
#calculation-ui .label label::first-letter {
  text-transform: capitalize;
}
@media (max-width: 768px) {
  #calculation-ui .label.h1, #calculation-ui .label.h2, #calculation-ui .label.h3, #calculation-ui .label.h4, #calculation-ui .label.h5 {
    margin: 5px 0;
  }
  #calculation-ui .label label {
    line-height: 1.25;
  }
}#calculation-ui .radio-wrapper.inline-radio {
  display: inline-flex;
  flex-wrap: wrap;
}
#calculation-ui .radio-wrapper.block-radio {
  display: inline-block;
}
#calculation-ui .radio-wrapper .incompatible {
  color: var(--text-color-disabled);
}
#calculation-ui .radio-wrapper .label-container {
  display: flex;
  position: relative;
  margin-right: 30px;
  cursor: pointer;
  font-size: var(--base-text-size);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 2.25;
  min-width: auto;
  align-items: center;
}
#calculation-ui .radio-wrapper .label-container:hover input ~ .checkmark {
  background-color: #fff;
}
#calculation-ui .radio-wrapper .label-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  font-size: var(--base-text-size);
}
#calculation-ui .radio-wrapper .label-container input:checked ~ .checkmark {
  background-color: var(--input-primary-color);
  border: 2px solid var(--input-primary-color);
}
#calculation-ui .radio-wrapper .label-container input:checked ~ .checkmark:after {
  display: block;
}
#calculation-ui .radio-wrapper .label-container .checkmark {
  display: flex;
  margin-right: 12px;
  align-items: center;
  justify-content: center;
  height: 29px;
  width: 29px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid var(--input-primary-color);
}
#calculation-ui .radio-wrapper .label-container .checkmark:after {
  content: "";
  display: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--color-white);
}
@media (max-width: 768px) {
  #calculation-ui .radio-wrapper .label-container {
    flex-basis: 20%;
    flex-grow: 0;
    margin-bottom: 5px;
  }
  #calculation-ui .radio-wrapper .label-container .checkmark {
    height: 22px;
    width: 22px;
  }
  #calculation-ui .radio-wrapper .label-container .checkmark:after {
    width: 10px;
    height: 10px;
  }
}#calculation-ui select {
  appearance: none !important;
  background-color: transparent;
  border: none;
  padding: 0 35px 0 10px;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: var(--base-text-size);
  cursor: inherit;
  line-height: inherit;
  height: 42px;
  z-index: 1;
  outline: none;
}
#calculation-ui select::-ms-expand {
  display: none;
}
#calculation-ui select option.incompatible {
  color: var(--text-color-disabled);
}
#calculation-ui select:disabled {
  color: inherit;
  opacity: inherit;
}
#calculation-ui .select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  background-color: var(--color-white);
  width: 100%;
  border: 1px solid var(--neutral-500);
  border-radius: 4px;
  font-size: var(--base-text-size);
  cursor: pointer;
  line-height: 2;
}
#calculation-ui .select select, #calculation-ui .select::after {
  grid-area: select;
  border-radius: 0;
}
#calculation-ui .select::after {
  content: "\f107";
  font-family: "Font Awesome 6 free";
  font-size: 24px;
  color: var(--color-black);
  right: 10px;
  top: -2px;
  height: 42px;
  position: absolute;
  pointer-events: none;
  transform: rotate(0deg);
}
#calculation-ui .select:has(select:disabled)::after {
  display: none;
}
#calculation-ui select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid var(--color-black);
  border-radius: inherit;
}
@media (max-width: 768px) {
  #calculation-ui {
    font-size: var(--mobile-text-size-medium);
  }
}#calculation-ui .tiles-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}
#calculation-ui .tiles-container.center {
  justify-content: center;
}
#calculation-ui .tiles-container.right {
  justify-content: flex-end;
}
#calculation-ui .tiles-container.left {
  justify-content: flex-start;
}
#calculation-ui .tile-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#calculation-ui .tile-wrapper.large {
  width: 300px;
}
#calculation-ui .tile-wrapper.large .option label {
  border: none;
  height: 240px;
  width: 220px;
}
#calculation-ui .tile-wrapper.large .option label img {
  margin-top: 4em;
  width: 100px;
}
#calculation-ui .tile-wrapper.large .option label .img-title {
  height: 70px;
}
#calculation-ui .tile-wrapper.large .option label .img-title span {
  font-size: 20px;
}
#calculation-ui .tile-wrapper.large span {
  margin-top: 1em;
}
#calculation-ui .tile-wrapper .option input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
#calculation-ui .tile-wrapper .option input[type=checkbox]:checked + .label-wrapper label {
  border: 2px solid var(--input-primary-color);
  background-color: var(--input-primary-color);
}
#calculation-ui .tile-wrapper .option input[type=checkbox]:checked + .label-wrapper label span {
  color: var(--color-white);
}
#calculation-ui .tile-wrapper .option label {
  border: 2px solid var(--neutral-500);
  height: 177px;
  width: 167px;
  display: block;
  cursor: pointer;
  background-color: var(--neutral-400);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#calculation-ui .tile-wrapper .option label:active {
  transform: scale(0.99);
}
#calculation-ui .tile-wrapper .option label img {
  position: relative;
  height: 70px;
  width: 70px;
  object-fit: contain;
  margin-top: 35px;
}
#calculation-ui .tile-wrapper .option label .img-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 58px;
}
#calculation-ui .tile-wrapper .option label .img-title span {
  text-align: center;
  font-weight: 800;
  line-height: 1.125;
  color: var(--neutral-800);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#calculation-ui .tile-wrapper span {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
}
#calculation-ui .tile-wrapper .option.incompatible label .img-title span {
  color: var(--text-color-disabled);
}
@media (max-width: 768px) {
  #calculation-ui .tiles-container {
    gap: 10px;
  }
  #calculation-ui .tiles-container .tile-wrapper .option label {
    width: 107px;
    height: 111px;
  }
  #calculation-ui .tiles-container .tile-wrapper .option label img {
    margin-top: 1em;
    width: 50px;
  }
  #calculation-ui .tiles-container .tile-wrapper .option label .img-title {
    padding: 0 5px;
  }
  #calculation-ui .tiles-container .tile-wrapper .option label .img-title span {
    font-size: var(--mobile-text-size);
  }
}
@media (max-width: 412px) {
  #calculation-ui .tiles-container {
    justify-content: space-between;
  }
  #calculation-ui .tiles-container .tile-wrapper .option label {
    width: 90px;
    height: 110px;
  }
}#calculation-ui .img-wrapper {
  margin: 10px 0;
}
#calculation-ui .img-wrapper .responsive {
  max-width: 100%;
  height: auto;
}
#calculation-ui .img-wrapper .thumbnail {
  height: 250px;
  width: 250px;
  object-fit: cover;
}
#calculation-ui .img-wrapper .column {
  object-fit: scale-down;
  display: block;
  margin: 0px;
  max-width: 100%;
}
#calculation-ui .img-wrapper .center {
  margin: 0px auto;
}
#calculation-ui .img-wrapper .right {
  margin: 0px 0px 0px auto;
}
@media (max-width: 768px) {
  #calculation-ui .img-wrapper {
    margin: 20px 0;
  }
}#calculation-ui .listview-wrapper .listview-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
#calculation-ui .listview-wrapper .switch {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
#calculation-ui .listview-wrapper .switch.switch-right {
  justify-content: flex-end;
}
#calculation-ui .listview-wrapper .switch.switch-left {
  justify-content: flex-start;
}
#calculation-ui .listview-wrapper .switch.switch-center {
  justify-content: center;
}
#calculation-ui .listview-wrapper .switch button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0;
  color: var(--input-primary-color);
  background-color: var(--color-white);
  cursor: pointer;
  height: 40px;
  width: 40px;
}
#calculation-ui .listview-wrapper .switch button:first-child {
  margin-right: 5px;
}
#calculation-ui .listview-wrapper .switch button.switch-active, #calculation-ui .listview-wrapper .switch button:hover {
  color: var(--color-white) !important;
  background-color: var(--neutral-100) !important;
  border-radius: 4px;
}
#calculation-ui .listview-wrapper .switch button.switch-active path, #calculation-ui .listview-wrapper .switch button:hover path {
  fill: var(--color-white);
}
#calculation-ui .listview-wrapper .switch button .icon {
  font-size: 2.25em;
  margin: 0;
}
@media (max-width: 768px) {
  #calculation-ui .listview-wrapper {
    margin-bottom: 10px;
  }
}#calculation-ui .pagination-wrapper ul {
  justify-content: flex-end;
  display: flex;
  padding: 1rem 0;
  justify-items: baseline;
}
#calculation-ui .pagination-wrapper ul li {
  margin: auto 5px;
  list-style: none;
}
#calculation-ui .pagination-wrapper ul li button {
  border: none;
  background-color: transparent;
  font-size: 16px;
  color: var(--input-primary-color);
  font-weight: bold;
  cursor: pointer;
}
#calculation-ui .pagination-wrapper ul li button.disabled {
  opacity: 0.65;
  font-weight: 400;
  cursor: context-menu;
}
#calculation-ui .pagination-wrapper ul li input {
  border: 1px solid var(--neutral-200);
  padding: 5px;
  border-radius: 4px;
  width: 60px;
  margin-bottom: 0 !important;
  font-size: 16px;
}#calculation-ui {
  /* Add a media query for mobile devices hhh*/
}
#calculation-ui .highlight-background .table-wrapper .flex-row ~ .flex-row {
  border-top: 1px solid var(--neutral-500);
  background-color: var(--background-highlight);
  padding: 10px 0px !important;
}
#calculation-ui .highlight-background .table-wrapper .flex-row ~ .flex-row:not(:first-child) {
  background-color: none;
}
#calculation-ui .highlight-background.horizontal-lines .flex-row {
  padding: 10px 0 !important;
}
#calculation-ui .table-wrapper {
  /* Adjusting styles for the new structure */
  /* ... Previous CSS styles ... */
  /* Style for even rows */
  /* Styling for radio and checkbox labels */
  /* Styling for radio and checkbox inputs */
}
#calculation-ui .table-wrapper .flex-cell {
  padding: 5px;
  display: flex;
}
#calculation-ui .table-wrapper .flex-cell .flex-sub-cell ~ .flex-sub-cell {
  margin-left: 5px;
}
#calculation-ui .table-wrapper .flex-cell .title-cell p {
  font-weight: bold;
  color: black;
}
#calculation-ui .table-wrapper .flex-cell .flex-sub-cell {
  flex-grow: 1;
  flex-basis: 0;
}
#calculation-ui .table-wrapper .flex-cell .flex-sub-cell select,
#calculation-ui .table-wrapper .flex-cell .flex-sub-cell input {
  font-size: 14px;
  height: 38px;
}
#calculation-ui .table-wrapper .flex-cell .flex-sub-cell .sub-info:not(:last-child) {
  margin-bottom: 10px;
}
#calculation-ui .table-wrapper .flex-cell .flex-sub-cell .title {
  margin-bottom: 5px;
  font-size: 11px;
  text-wrap: nowrap;
}
#calculation-ui .table-wrapper .flex-cell .flex-sub-cell .value {
  font-weight: 800;
  font-size: 11px;
}
#calculation-ui .table-wrapper .col-selection {
  width: 40px;
  /* You can adjust the width as needed */
  display: flex;
  align-items: center;
}
#calculation-ui .table-wrapper .flex-row {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}
#calculation-ui .table-wrapper .flex-cell {
  flex: 1;
  padding-left: 5px;
}
#calculation-ui .table-wrapper .flex-row:nth-child(odd) {
  background-color: var(--background-highlight);
  /* You can adjust the text color as needed */
}
#calculation-ui .table-wrapper .flex-cell label {
  display: flex;
  align-items: center;
}
#calculation-ui .table-wrapper .title-cell {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}
#calculation-ui .table-wrapper .title-cell p {
  line-height: 1.5;
}
#calculation-ui .table-wrapper .radio-input {
  margin-right: 5px;
}
#calculation-ui .table-wrapper .checkbox-input {
  margin-right: 5px;
}
#calculation-ui .table-wrapper .empty-records {
  text-align: center;
  margin: 1rem;
}
@media (max-width: 767px) {
  #calculation-ui {
    /* Reset any other relevant flex properties for other elements within your table */
  }
  #calculation-ui .table-container {
    /* Hide any overflowing content */
  }
  #calculation-ui .table-container .table-wrapper {
    width: 108%;
    overflow-x: auto;
    display: block;
    /* Change the display property to block */
  }
  #calculation-ui .table-container .table-wrapper .flex-row {
    padding: 10px;
  }
  #calculation-ui .table-container .flex-cell,
  #calculation-ui .table-container .flex-sub-cell {
    flex: 0 0 auto !important;
    /* Reset the flex properties */
    display: block;
    margin: 0 !important;
    /* Change the display property to block */
  }
  #calculation-ui .table-container .flex-cell {
    display: flex !important;
    width: 130px !important;
    padding: 0 !important;
  }
  #calculation-ui .table-container .flex-cell .col-selection {
    width: 26px;
  }
  #calculation-ui .table-container .flex-cell .title-cell {
    font-size: 13px;
  }
  #calculation-ui .table-container .flex-cell .flex-sub-cell {
    width: 175px;
    padding: 15px 5px;
  }
  #calculation-ui .table-container .flex-row {
    padding: 10px !important;
  }
  #calculation-ui .table-container .flex-row:nth-child(odd) .flex-sub-cell {
    background-color: var(--background-highlight);
    height: 135px;
    /* You can adjust the text color as needed */
  }
}#calculation-ui .data-tile-wrapper {
  display: flex;
  justify-content: center;
}
#calculation-ui .data-tile-wrapper .tile {
  position: relative;
  flex-direction: column;
  height: auto;
  width: 350px;
  margin-bottom: 20px;
}
#calculation-ui .data-tile-wrapper .tile .tile-checkbox {
  position: absolute;
  top: 10px;
  right: -25px;
}
#calculation-ui .data-tile-wrapper .tile .tile-radio {
  position: absolute;
  right: -15px;
  top: 10px;
}
#calculation-ui .data-tile-wrapper .tile .tile-radio .label-container {
  margin-right: 15px !important;
}
#calculation-ui .data-tile-wrapper .tile h3 {
  margin: 0.5em 0;
  cursor: default;
  font-size: 18px;
  min-height: 54px;
  line-height: 1.45;
}
#calculation-ui .data-tile-wrapper .tile p {
  color: var(--text-dark);
  line-height: 1.25;
  font-size: 14px;
  margin-bottom: 1em;
  text-align: justify;
}
#calculation-ui .data-tile-wrapper .tile .img-tile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem auto;
  height: 240px;
  background-color: var(--neutral-400);
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  width: 100%;
}
#calculation-ui .data-tile-wrapper .tile .tile-content {
  display: flex;
  flex-wrap: wrap;
}
#calculation-ui .data-tile-wrapper .tile .tile-content .item {
  width: 100%;
  margin: 0.5em 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
#calculation-ui .data-tile-wrapper .tile .tile-content .item .value {
  font-weight: 600;
  max-width: 50%;
}
#calculation-ui .data-tile-wrapper .tile .tile-content .customer-render-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0.5em 0;
}
#calculation-ui .data-tile-wrapper .tile .tile-content .customer-render-item .input-wrapper {
  margin: 10px 0;
}
#calculation-ui .data-tile-wrapper .tile .tile-content .customer-render-item .custom-render .select {
  margin: 10px 0 0 0 !important;
}
#calculation-ui .data-tile-wrapper .empty-records {
  text-align: center;
  margin: 1rem;
  width: 100%;
}
@media (min-width: 1000px) {
  #calculation-ui .data-tile-wrapper .tile h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #calculation-ui .data-tile-wrapper .tile p {
    display: -webkit-box;
    max-width: 300px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: default;
    height: 52px;
  }
}
@media (max-width: 767px) {
  #calculation-ui .data-tile-wrapper .tile {
    width: 100%;
  }
  #calculation-ui .data-tile-wrapper .tile.col-3 {
    --cols: 1;
  }
}#calculation-ui .iconbutton {
  display: block;
  cursor: pointer;
  user-select: none;
  transition: 0.2s all;
}
#calculation-ui .iconbutton > img {
  margin: 0;
}
#calculation-ui .iconbutton.iconbutton-center {
  margin: 0px auto;
}
#calculation-ui .iconbutton.iconbutton-right {
  margin: 0px 0px 0px auto;
}
#calculation-ui .iconbutton.iconbutton-large, #calculation-ui .iconbutton.iconbutton-large img {
  width: 40px;
  height: 40px;
}
#calculation-ui .iconbutton.iconbutton-medium, #calculation-ui .iconbutton.iconbutton-medium img {
  width: 24px;
  height: 24px;
}
#calculation-ui .iconbutton.iconbutton-small, #calculation-ui .iconbutton.iconbutton-small img {
  width: 16px;
  height: 16px;
}
#calculation-ui .iconbutton.iconbutton-disabled {
  pointer-events: none;
  filter: invert(50%);
}#calculation-ui .label-input-layout {
  /* TODO: implement "bottom" */
  /* TODO: fix dropdown arrow location */
  /* TODO: fix button sizing */
  margin: 5px 0;
}
#calculation-ui .label-input-layout.right {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-areas: "c1 c2";
}
#calculation-ui .label-input-layout.right :nth-child(1) {
  grid-area: c2;
}
#calculation-ui .label-input-layout.right :nth-child(2) {
  grid-area: c1;
}
#calculation-ui .label-input-layout.left {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-areas: "c1 c2";
}
#calculation-ui .col-0 .label-input-layout.left {
  grid-template-columns: unset;
}#calculation-ui .bullet span {
  margin-bottom: 1rem;
  display: block;
}
#calculation-ui .bullet span.center {
  text-align: center;
}
#calculation-ui .bullet span.right {
  text-align: right;
}
#calculation-ui .bullet ul {
  margin: 0rem 3rem 0rem 3rem;
}
#calculation-ui .bullet ul li {
  margin-bottom: 0.75rem;
}
#calculation-ui .bullet ul.bullet-list {
  list-style-type: disc;
}
#calculation-ui .bullet ul.numbered-list {
  list-style-type: decimal;
}
#calculation-ui .bullet ul.warning {
  list-style-type: none;
}
#calculation-ui .bullet ul.warning li {
  color: rgba(0, 0, 0, 0.5) !important;
  font-weight: 300;
}
#calculation-ui .bullet ul.warning li img {
  margin-right: 5px;
  height: 16px;
  width: auto;
  position: relative;
  top: 2px;
}#calculation-ui .accordion-wrapper {
  margin: 20px 0;
}
#calculation-ui .accordion-wrapper .accordion-item {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 1.25rem 0;
}
#calculation-ui .accordion-wrapper .accordion-item.accordion-item:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
#calculation-ui .accordion-wrapper .accordion-item .expand {
  display: flex;
}
#calculation-ui .accordion-wrapper .accordion-item .collapse {
  display: none;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-actions {
  display: flex;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-section {
  width: 100%;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-section .label-with-ctrl {
  margin-bottom: 0px;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-section .label,
#calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-section .label-input-layout {
  margin: 0 5px 0 0 !important;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-section .label-input-layout {
  align-items: baseline;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-section .center {
  text-align: center;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-section .left {
  text-align: left;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-section .right {
  text-align: right;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-section .header {
  margin-bottom: 0.5em;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header button {
  background-color: #fff;
  border: none;
  font-size: 1.5em;
  color: var(--input-primary-color);
  cursor: pointer;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header button svg {
  margin: 0;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-header button .icon-active {
  color: var(--input-primary-color);
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-expand {
  padding: 0.5rem 0;
}
#calculation-ui .accordion-wrapper .accordion-item .accordion-expand .accordion-content .label-with-ctrl .label {
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 32px;
}
@media (max-width: 767px) {
  #calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-section .container {
    display: inline !important;
  }
  #calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-section .header {
    font-size: 20px;
  }
  #calculation-ui .accordion-wrapper .accordion-item .accordion-header .header-actions img.icon {
    height: 20px;
  }
}#calculation-ui .train {
  display: flex;
  justify-content: center;
  align-items: center;
}
#calculation-ui .train li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 1rem 65px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--neutral-400);
  color: var(--input-secondary-color);
}
#calculation-ui .train li span {
  margin: 0 10px;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
}
#calculation-ui .train li.active {
  background-color: var(--input-primary-color);
}
#calculation-ui .train li.active span {
  color: #ffffff;
}
#calculation-ui .train li.active svg path {
  fill: #ffffff;
}
#calculation-ui .train li.active:before, #calculation-ui .train li.active:after {
  background-color: var(--input-primary-color);
}
#calculation-ui .train li:before, #calculation-ui .train li:after {
  content: "";
  height: 2px;
  width: 65px;
  background-color: var(--neutral-500);
  position: absolute;
}
#calculation-ui .train li:before {
  margin-left: -115px;
}
#calculation-ui .train li:after {
  margin-right: -115px;
}
#calculation-ui .train li:first-child:before {
  display: none;
}
#calculation-ui .train li:last-child:after {
  display: none;
}
@media (max-width: 1000px) {
  #calculation-ui .train li {
    margin: 1rem 12px;
    height: 38px;
    width: 38px;
  }
  #calculation-ui .train li span {
    font-size: 14px;
  }
  #calculation-ui .train li:before {
    width: 14px;
    margin-left: -50px;
  }
  #calculation-ui .train li:after {
    width: 15px;
    margin-left: -65px;
  }
}#calculation-ui .paging-buttons {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid var(--neutral-500);
  margin-top: 50px;
}
#calculation-ui .paging-buttons .sub-paging-btns {
  display: flex;
  align-items: center;
}
#calculation-ui .paging-buttons.btn-end {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  #calculation-ui {
    padding: 20px 0;
  }
}#calculation-ui .marketo-error-message {
  font-size: 16px;
  font-weight: 400;
  color: #EB002F;
}
#calculation-ui .mb-16 {
  margin-bottom: 16px !important;
}
#calculation-ui .sample-order-page {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: grid;
  grid-template-rows: auto 1fr 98px;
  zoom: 65%;
}
#calculation-ui .sample-order-page .flex-end-center {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}
#calculation-ui .sample-order-page a {
  color: #00658C;
}
#calculation-ui .sample-order-page .sample-order-header {
  display: flex;
  width: 100%;
  padding: 27px 15% 0px 15%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}
#calculation-ui .sample-order-page .sample-order-header .product-title {
  height: 39px;
  font-size: 24px;
  font-weight: 400;
  line-height: 38.4px;
  color: #161616;
}
#calculation-ui .sample-order-page .sample-order-header .product-discription-area {
  font-size: 22px;
  font-weight: 500;
}
#calculation-ui .sample-order-page .sample-order-header .product-discription-area a {
  color: #00658C;
  cursor: pointer;
}
#calculation-ui .sample-order-page .order-done {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 40px 15% 32px 15%;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
#calculation-ui .sample-order-page .order-done .order-done-containter {
  width: 700px;
  margin-top: 40px;
}
#calculation-ui .sample-order-page .order-done .order-done-containter .heading-area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
}
#calculation-ui .sample-order-page .order-done .order-done-containter .heading-area img {
  width: 36px;
  height: 36px;
}
#calculation-ui .sample-order-page .order-done .order-done-containter .heading-area .done-heading {
  font-size: 36px;
  font-weight: 400;
  line-height: 43.2px;
  color: #161616;
  margin-left: 16px;
}
#calculation-ui .sample-order-page .order-done .order-done-containter .thanks-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 21.86px;
}
#calculation-ui .sample-order-page .container-sample-order {
  display: flex;
  width: 100%;
  padding: 0px 15% 32px 15%;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
#calculation-ui .sample-order-page .container-sample-order .show-quantity {
  width: 63px;
  height: 50px;
  background: #d9d9d9;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#calculation-ui .sample-order-page .container-sample-order .loading-page {
  width: 100%;
  opacity: 0.5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
#calculation-ui .sample-order-page .container-sample-order .loading-page .loader h1 {
  font-weight: 500;
  font-size: 1.75rem;
  margin-bottom: 10px;
}
#calculation-ui .sample-order-page .container-sample-order .loading-page .loader h1::after {
  content: "";
  animation: dot-animation 1s steps(5, end) infinite;
}
@keyframes dot-animation {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "...";
  }
}
#calculation-ui .sample-order-page .container-sample-order .loading-page .horizontal-line {
  width: 100%;
  height: 1px;
  background-color: #000;
}
#calculation-ui .sample-order-page .container-sample-order .loading-page .img-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#calculation-ui .sample-order-page .container-sample-order .loading-page .img-container .img-wrapper {
  margin: 0px !important;
}
#calculation-ui .sample-order-page .container-sample-order .page-heading {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
#calculation-ui .sample-order-page .container-sample-order .page-heading .header {
  font-size: 28px;
  font-weight: 400;
  line-height: 33.6px;
  color: #161616;
}
#calculation-ui .sample-order-page .container-sample-order .page-heading .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 21.86px;
  margin-top: 8px;
}
#calculation-ui .sample-order-page .container-sample-order .page-heading .error-message {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #eb002f;
  margin-top: 8px;
}
#calculation-ui .sample-order-page .container-sample-order .page-heading .color-discription-area {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
#calculation-ui .sample-order-page .container-sample-order .page-heading .color-discription-area .description-heading {
  font-size: 16px;
  font-weight: 500;
  line-height: 21.86px;
  color: #161616;
}
#calculation-ui .sample-order-page .container-sample-order .page-heading .color-discription-area .description {
  width: 700px;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #161616;
}
#calculation-ui .sample-order-page .container-sample-order .train-component {
  width: 100%;
  margin-bottom: 46px;
}
#calculation-ui .sample-order-page .container-sample-order .train-component .train {
  position: relative;
}
#calculation-ui .sample-order-page .container-sample-order .train-component .train li.active {
  background-color: #d9d9d9;
  border: 3px solid #000000;
}
#calculation-ui .sample-order-page .container-sample-order .train-component .train li {
  padding: 0px;
  margin: 0px 50px;
  height: 36px;
  width: 36px;
  background-color: #d9d9d9;
}
#calculation-ui .sample-order-page .container-sample-order .train-component .train li span {
  display: none;
}
#calculation-ui .sample-order-page .container-sample-order .train-component .train li::before {
  content: "";
  height: 2px;
  width: 50px;
  background-color: #000;
  position: absolute;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
  margin-left: -100px;
}
#calculation-ui .sample-order-page .container-sample-order .train-component .train li::after {
  content: "";
  height: 2px;
  width: 50px;
  background-color: #000;
  position: absolute;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
  margin-right: -100px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  margin-bottom: 24px;
  margin-top: -32px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .text-field-on-page {
  display: flex;
  gap: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .text-field-on-page .sectionDescription {
  font-size: 16px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .text-field-on-page .sectionDescription strong {
  font-weight: 500;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .text-field-on-page .sectionDescription h1 {
  font-size: 36px;
  font-weight: 400;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .text-field-on-page .sectionDescription h3 {
  font-size: 24px;
  font-weight: 400;
  color: #161616;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .f-0 {
  height: 468px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .f-1 {
  max-height: 324px;
  flex-direction: row !important;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .f-2 {
  height: 100%;
}
@media screen and (max-width: 767px) {
  #calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .f-1 {
    height: auto;
  }
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container {
  display: flex;
  gap: 24px 40px;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field {
  width: calc(50% - 20px);
  height: 58px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .label {
  margin: 0px 0px 4px 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.86px;
  color: rgb(0, 0, 0);
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .country-code-combined {
  margin-right: 5px;
  width: 56.65px;
  height: 29px;
  gap: 8px;
  padding: 2px 0px 2px 0px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .country-code-combined-select {
  width: 56.65px !important;
  height: 25px;
  padding: 0px !important;
  border: none;
  outline: none;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .required {
  color: #000;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .Input-Fname .error {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #eb002f;
  margin-top: 4px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .Input-Fname .input-wrapper {
  width: 100%;
  height: 34px;
  color: #ffffff;
  border: 1px solid #8a8c8f;
  border-radius: 0px;
  box-shadow: inset 0px 0px 0px 0px #8a8c8f;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .Input-Fname .input-wrapper input {
  padding: 5px 8px;
  height: 100%;
  width: 100%;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .Input-Fname .input-wrapper .select-country {
  border: 0px;
  width: 64px;
  padding-right: 8px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .Input-Fname .input-wrapper .select-country select {
  width: 48px;
  padding: 0px !important;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .Input-Fname .input-wrapper .select-country select:focus + .focus {
  border: 0px;
  border-radius: 0px !important;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .Input-Fname .input-wrapper .select-country select:focus + .focus .select-country::after {
  font-size: 0px;
  background-color: #d20014;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .Input-Fname .input-wrapper .select-country select:active {
  border-radius: 0px;
  width: 220px;
  background-color: transparent;
  outline: none;
  appearance: none;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .input-field .Input-Fname .input-wrapper .select-country select::after {
  font-size: 8px;
  top: 4px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .order-checkbox {
  width: 100%;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .order-checkbox .checkbox-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #000000;
  margin-bottom: 0px !important;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .order-checkbox .checkbox-label a {
  color: #00658C;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .order-checkbox .checkmark {
  border-color: #000 !important;
  top: 9px;
  height: 20px;
  width: 20px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .order-checkbox .checkmark:after {
  width: 6px;
  height: 14px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .form-container .order-checkbox input:checked ~ .checkmark {
  background-color: #000 !important;
  top: 9px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .error {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #eb002f;
  margin-top: 4px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .describe {
  width: 100%;
  min-height: 110px;
  margin-bottom: 40px;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .describe .label {
  margin: 0px 0px 4px 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.86px;
  color: rgb(0, 0, 0);
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container .top-formContainer .describe .describe-input .helper-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #63666a;
}
#calculation-ui .sample-order-page .container-sample-order .finzalize-order-page .finzalize-order-page-container:last-child {
  flex-direction: column-reverse;
  gap: 40px;
}
#calculation-ui .sample-order-page .sample-order-summary {
  font-size: 36px;
  font-weight: 400;
  line-height: 43.2px;
  text-align: left;
  color: #161616;
}
#calculation-ui .sample-order-page .review-order-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 21.86px;
  color: #000;
  margin-top: 8px;
  margin-bottom: 24px;
}
#calculation-ui .sample-order-page .order-details-colors {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#calculation-ui .sample-order-page .order-details-colors .order-details-colors-section {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
#calculation-ui .sample-order-page .order-details-colors .orderdetail-diff-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #161616;
}
#calculation-ui .sample-order-page .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px 15%;
  box-shadow: 0px 1px 0px 0px #e0e0e0 inset;
  height: 98px;
  background: #eff0f0;
  position: relative;
}
#calculation-ui .sample-order-page .footer .back-button .button-ghost {
  background-color: #eff0f0 !important;
  padding: 0px !important;
}
#calculation-ui .sample-order-page .footer .back-button .button-ghost span {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
}
#calculation-ui .sample-order-page .footer .submit-order-button .button {
  width: 122px;
  height: 50px;
  padding: 0px 8px 0px 8px;
  background: #00658c;
  animation-timing-function: ease-out;
  animation-duration: 300ms;
  border: 0px;
}
#calculation-ui .sample-order-page .footer .submit-order-button .button span {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: center;
  color: #ffffff;
}
#calculation-ui .sample-order-page .footer .submit-order-button .button:disabled {
  background: #d8d9da;
}
#calculation-ui .sample-order-page .footer .submit-order-button .button:disabled span {
  text-align: center;
  color: #b1b2b5;
}
#calculation-ui .sample-order-page .footer .close-button .button {
  width: 57px;
  height: 50px;
  padding: 0px 8px 0px 8px;
  background: #00658c;
  animation-timing-function: ease-out;
  animation-duration: 300ms;
  border: 0px;
}
#calculation-ui .sample-order-page .footer .close-button .button span {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: center;
  color: #ffffff;
}
#calculation-ui .sample-order-page .footer .close-button .button:disabled {
  background: #d8d9da;
}
#calculation-ui .sample-order-page .footer .close-button .button:disabled span {
  text-align: center;
  color: #b1b2b5;
}
#calculation-ui .sample-order-page .footer .next-button .button {
  width: 52px;
  height: 50px;
  padding: 0px 8px 0px 8px;
  background: #00658c;
  animation-timing-function: ease-out;
  animation-duration: 300ms;
  border: 0px;
}
#calculation-ui .sample-order-page .footer .next-button .button span {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: center;
  color: #ffffff;
}
#calculation-ui .sample-order-page .footer .next-button .button:disabled {
  background: #d8d9da;
}
#calculation-ui .sample-order-page .footer .next-button .button:disabled span {
  text-align: center;
  color: #b1b2b5;
}
@media screen and (max-width: 1000px) {
  #calculation-ui .sample-order-page .train li::before {
    margin-left: -100px;
    margin-right: 0px;
  }
  #calculation-ui .sample-order-page .train li::after {
    margin-right: -100px;
    margin-left: 0px;
  }
}#calculation-ui .detail-container {
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  padding: 40px;
  margin-top: 32px;
  display: flex;
  gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#calculation-ui .detail-container .detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}
#calculation-ui .detail-container .detail .detail-heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #000000;
}
#calculation-ui .detail-container .detail .detail-heading .detail-title {
  font-size: 24px;
  font-weight: 700;
  color: #161616;
}
#calculation-ui .detail-container .detail .detail-heading .detail-title-description {
  font-size: 16px;
  font-weight: 500;
  color: #161616;
}
#calculation-ui .detail-container .detail .detail-properties {
  display: flex;
  gap: 20px 40px;
  flex-wrap: wrap;
}
#calculation-ui .detail-container .detail .detail-properties .property {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 212px;
  max-width: 224px;
}
#calculation-ui .detail-container .detail .detail-properties .property .prop-name {
  font-size: 16px;
  font-weight: 700;
  color: #161616;
}
#calculation-ui .detail-container .detail .detail-properties .property .prop-description {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}#calculation-ui .input-wrapper .phone-number-sample-order {
  display: grid;
  grid-template-areas: "select";
  grid-template-columns: 1fr 8px;
  position: relative;
  width: 56px;
  height: 30px;
  cursor: pointer;
  border: 0px !important;
  padding: 0px !important;
}
#calculation-ui .input-wrapper .phone-number-sample-order .phone-select-content {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#calculation-ui .input-wrapper .phone-number-sample-order .empty {
  color: #8a8c8f !important;
}
#calculation-ui .input-wrapper .phone-number-sample-order .phone-arrow-content::after {
  content: "\f107";
  font-family: "Font Awesome 6 free";
  height: 30px;
  width: 8px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
#calculation-ui .input-wrapper .display-none {
  display: none !important;
}
#calculation-ui .input-wrapper .options {
  width: 220px;
  height: 100%;
  max-height: 248px;
  background-color: #fff;
  border-top: 0px !important;
  border-bottom: 1px solid #8a8c8f !important;
  border-left: 1px solid #8a8c8f !important;
  border-right: 1px solid #8a8c8f !important;
  position: relative;
  z-index: 3;
  overflow-y: overlay;
  overflow-x: hidden;
  top: 0px;
  left: 0px;
}
#calculation-ui .input-wrapper .options::-webkit-scrollbar {
  width: 6px;
}
#calculation-ui .input-wrapper .options::-webkit-scrollbar-thumb {
  background-color: #63666a;
  border-radius: 4px;
  height: 54px;
}
#calculation-ui .input-wrapper .options ul li {
  display: flex;
  align-items: center;
  list-style: none;
  width: 220px;
  height: 31px;
  padding: 4px 12px;
}
#calculation-ui .input-wrapper .options ul li:hover {
  background-color: #4a93de;
  color: #fff;
}
#calculation-ui .input-wrapper .options ul li .selected {
  background-color: #4a93de;
  color: #fff;
}
#calculation-ui .input-wrapper .phone-number-combined-input {
  border: 0px !important;
  outline: none;
  width: calc(100% - 56px) !important;
  height: 30px;
}
@media (max-width: 768px) {
  #calculation-ui .input-wrapper {
    font-size: var(--mobile-text-size-medium);
  }
}#calculation-ui .select-sample-order {
  display: grid;
  grid-template-areas: "select";
  grid-template-columns: calc(100% - 24px) 24px;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 1px solid #8a8c8f;
  padding: 1.5px 8px;
}
#calculation-ui .select-sample-order .select-content {
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  height: 29px;
  display: flex;
  align-items: center;
}
#calculation-ui .select-sample-order input {
  border: none !important;
  outline: none !important;
}
#calculation-ui .select-sample-order input:focus {
  border: none !important;
  outline: none !important;
}
#calculation-ui .select-sample-order .empty {
  color: #8a8c8f !important;
}
#calculation-ui .select-sample-order .arrow-content::after {
  content: "\f107";
  background-color: #fff;
  font-family: "Font Awesome 6 free";
  height: 29px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#calculation-ui .display-none {
  display: none !important;
}
#calculation-ui .options {
  width: 100%;
  height: 100%;
  max-height: 248px;
  background-color: #fff;
  border-top: 0px !important;
  border-bottom: 1px solid #8a8c8f !important;
  border-left: 1px solid #8a8c8f !important;
  border-right: 1px solid #8a8c8f !important;
  position: relative;
  z-index: 3;
  overflow-y: overlay;
  overflow-x: hidden;
  top: 0px;
  left: 0px;
}
#calculation-ui .options::-webkit-scrollbar {
  width: 6px;
}
#calculation-ui .options::-webkit-scrollbar-thumb {
  background-color: #63666A;
  border-radius: 4px;
  height: 54px;
}
#calculation-ui .options ul li {
  display: flex;
  align-items: center;
  list-style: none;
  width: 100%;
  min-height: 31px;
  height: auto;
  padding: 4px 12px;
}
#calculation-ui .options ul li:hover {
  background-color: #4a93de;
  color: #fff;
}
#calculation-ui .options ul li .selected {
  background-color: #4a93de;
  color: #fff;
}
@media (max-width: 768px) {
  #calculation-ui {
    font-size: var(--mobile-text-size-medium);
  }
}#calculation-ui .textarea {
  position: relative;
}
#calculation-ui .textarea textarea {
  resize: vertical;
  border: 1px solid #8a8c8f;
  border-radius: 0px;
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 80px;
  max-height: 160px;
  font-size: 16px;
  line-height: 21.86px;
}
#calculation-ui .textarea textarea:focus {
  outline: none;
}
#calculation-ui .textarea .textarea-content {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  color: #8a8c8f;
  width: fit-content;
  position: absolute;
  right: 10px;
  bottom: 4px;
  z-index: 4;
}#calculation-ui .flex-start-start {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
#calculation-ui .display-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
#calculation-ui .font-size-20 {
  font-size: 20px !important;
}
#calculation-ui .font-size-17 {
  font-size: 16.8px !important;
}
#calculation-ui .chip-width {
  width: 230px;
}
#calculation-ui .color-chip-width {
  width: 192px;
}
#calculation-ui .chip-container {
  gap: 40px;
}
#calculation-ui .chip-container .chip {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#calculation-ui .chip-container .chip .img-wrapper {
  margin: 0px;
  height: 135px !important;
  width: inherit;
}
#calculation-ui .chip-container .chip .img-wrapper img {
  width: 100%;
  height: 135px;
}
#calculation-ui .chip-container .chip .chip-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 22.4px;
  margin-top: 8px;
}
#calculation-ui .chip-container .chip .color-details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
}
#calculation-ui .chip-container .chip .color-details .color-key {
  font-size: 16px;
  font-weight: 800;
  line-height: 21.86px;
}
#calculation-ui .chip-container .chip .color-details .color-value {
  font-size: 16px;
  font-weight: 500;
  line-height: 21.86px;
}
#calculation-ui .chip-container .chip .chip-discription {
  font-weight: 500;
  font-size: 16px;
  line-height: 21.86px;
  margin-top: 8px;
}
#calculation-ui .chip-container .chip .label-container {
  display: flex;
  position: relative;
  height: 26px;
  cursor: pointer;
  font-size: var(--base-text-size);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 22.4px;
  min-width: auto;
  align-items: center;
  margin: 24px 0px 0px 0px;
}
#calculation-ui .chip-container .chip .label-container:hover input ~ .checkmark {
  background-color: #fff;
}
#calculation-ui .chip-container .chip .label-container p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
}
#calculation-ui .chip-container .chip .label-container .checkmark {
  display: flex;
  margin-right: 7px;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  border: 1px solid var(--input-primary-sample-order-color);
}
#calculation-ui .chip-container .chip .label-container .checkmark:after {
  content: "";
  display: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--input-primary-sample-order-color);
}
#calculation-ui .chip-container .chip .label-container input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  font-size: var(--base-text-size);
}
#calculation-ui .chip-container .chip .label-container input[type=radio]:checked ~ .checkmark {
  background-color: #fff;
  border: 1px solid var(--input-primary-sample-order-color);
  box-shadow: 0 0 0 2px #4a93de;
}
#calculation-ui .chip-container .chip .label-container input[type=radio]:checked ~ .checkmark:after {
  display: block;
}
#calculation-ui .chip-container .chip .quantity-counter {
  margin-top: 24px;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 6.5px;
}
#calculation-ui .chip-container .chip .quantity-counter .counter-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 50px;
  cursor: pointer;
  color: #00658c;
  background-color: #fff;
  border: 1px solid #00658c;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
}
#calculation-ui .chip-container .chip .quantity-counter .counter-button:disabled {
  cursor: default;
}
#calculation-ui .chip-container .chip .quantity-counter .number-counter {
  width: 63px;
  height: 50px;
  padding: 0px 8px 0px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00658c;
  color: #fff;
}
#calculation-ui .chip-container .chip .quantity-counter .error {
  border: 1px solid #ff0000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
#calculation-ui .chip-container .chip .counter-error {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #eb002f;
  margin: 8px 2.5px 0px 2.5px;
}
@media screen and (min-width: 768px) and (min-width: 1021px) {
  #calculation-ui .chip-width {
    width: 192px;
  }
  #calculation-ui .color-chip-width {
    width: 192px;
  }
}
@media screen and (max-width: 1022px) {
  #calculation-ui .chip-width {
    width: 192px;
  }
  #calculation-ui .color-chip-width {
    width: 192px;
  }
  #calculation-ui .display-grid {
    zoom: 80%;
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1023px) and (max-width: 1239px) {
  #calculation-ui .chip-width {
    width: 212px;
  }
  #calculation-ui .color-chip-width {
    width: 180px;
  }
}
@media screen and (min-width: 1240px) and (max-width: 1439px) {
  #calculation-ui .chip-width {
    width: 230px;
  }
  #calculation-ui .color-chip-width {
    width: 180px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1599px) {
  #calculation-ui .chip-width {
    width: 220px;
  }
  #calculation-ui .color-chip-width {
    width: 192px;
  }
  #calculation-ui .display-grid {
    zoom: 95%;
  }
}