.custom-text__heading-1 {
  font-size: var(--text-heading-1);
  color: var(--color-title);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .custom-text__heading-1 {
    line-height: 100%;
    font-size: 26px;
  }
}
.custom-text__large, .custom-text__large-3, .custom-text__large-2 {
  font-weight: var(--fw-black);
  color: var(--color-title);
  font-size: var(--font-size-2xl);
}
@media (max-width: 768px) {
  .custom-text__large, .custom-text__large-3, .custom-text__large-2 {
    font-size: var(--font-size-xl);
  }
}
@media (max-width: 768px) {
  .custom-text__large-2 {
    font-size: var(--font-size-lg);
  }
}
@media (max-width: 768px) {
  .custom-text__large-3 {
    font-size: var(--font-size-lg);
  }
}
.custom-text__normal, .js-form-type-select label,
.custom-select-color-group label, .custom-text__normal-2 {
  font-weight: var(--fw-black);
  color: var(--color-title);
  font-size: var(--font-size-lg);
}
@media (max-width: 768px) {
  .custom-text__normal, .js-form-type-select label,
  .custom-select-color-group label, .custom-text__normal-2 {
    font-size: var(--font-size-md);
  }
}
@media (max-width: 768px) {
  .custom-text__normal-2 {
    font-size: var(--font-size-xs);
  }
}
.custom-text__small, .js-form-type-select .select2-selection,
.custom-select-color-group .select2-selection, .custom-text__small-2 {
  color: var(--color-body);
  font-size: var(--font-size-lg);
}
@media (max-width: 768px) {
  .custom-text__small, .js-form-type-select .select2-selection,
  .custom-select-color-group .select2-selection, .custom-text__small-2 {
    font-size: var(--font-size-md) !important;
  }
}
@media (max-width: 768px) {
  .custom-text__small-2 {
    font-size: var(--font-size-xs) !important;
  }
}

.nip-colour-discover-paint {
  background-color: var(--color-grayscale-100);
  margin-bottom: 40px;
}

.views-exposed-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 16px 0;
}
@media (max-width: 1199.98px) {
  .views-exposed-form {
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .views-exposed-form {
    padding: 24px 0;
  }
}
.views-exposed-form__left {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 16px;
  width: 64.85%;
}
@media (max-width: 1199.98px) {
  .views-exposed-form__left {
    flex: 1;
  }
}
@media (max-width: 767.98px) {
  .views-exposed-form__left {
    flex-wrap: wrap;
  }
}
.views-exposed-form__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 31.5%;
  position: relative;
}
.views-exposed-form__right .select2-action {
  position: absolute;
}
.views-exposed-form__right .btn-reset,
.views-exposed-form__right .btn-apply {
  display: none !important;
}
@media (max-width: 1199.98px) {
  .views-exposed-form__right {
    flex: 1;
  }
}
.views-exposed-form__right .search-filter {
  display: flex;
  align-items: center;
  position: absolute;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  background-color: var(--color-transparent);
  border: none;
}
.views-exposed-form .divider {
  width: 1px;
  height: 56px;
  background-color: #d9d9d9;
}
@media (max-width: 1199.98px) {
  .views-exposed-form .divider {
    display: block;
    width: 100%;
    height: 1px;
  }
}

.select2-results__options {
  max-height: 327px !important;
  overflow-y: auto;
  border-radius: 16px;
  padding-right: 7px;
}
.select2-results__options::-webkit-scrollbar {
  width: 2px;
}
.select2-results__option {
  font-size: var(--font-size-sm);
  border: 1px solid var(--color-grayscale-100);
  border-radius: 40px;
  padding: 8px;
  margin-bottom: 8px;
  position: relative;
  display: flex;
  align-items: center;
  height: 42px;
  width: 100%;
}
.select2-results__option.select2-results__option--selected {
  background-color: unset !important;
}
.select2-results__option.select2-results__option--selected::before {
  background-image: url("../../images/check_circle.svg");
}
.select2-results__option[aria-selected=true] {
  background-color: unset !important;
}
.select2-results__option[aria-selected=true]::before {
  background-image: url("../../images/check_circle.svg");
}
.select2-results__option::before {
  content: "";
  right: 8px;
  top: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  border: 1px solid var(--color-grayscale-100);
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}
.select2-results__option--highlighted[aria-selected] {
  background-color: unset !important;
  color: var(--color-body) !important;
}
.select2-results__option .select2-option-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 30px);
  padding-left: 8px;
}
.select2-results__message {
  all: unset !important;
  font-size: 14px !important;
}
.select2-results__message::before {
  all: unset !important;
}

.js-form-type-select,
.custom-select-color-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.js-form-type-select select,
.custom-select-color-group select {
  opacity: 0;
  display: none;
}
@media (max-width: 767.98px) {
  .js-form-type-select,
  .custom-select-color-group {
    flex: 0 0 calc(100% - 0px) !important;
    flex-direction: column;
    align-items: unset;
    flex: unset;
  }
}
.js-form-type-select label,
.custom-select-color-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--color-grayscale-100);
  border-radius: 40px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.js-form-type-select .select2-selection,
.custom-select-color-group .select2-selection {
  border-radius: 46px !important;
  background-color: var(--color-white);
  border: none;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
.js-form-type-select .select2-selection input,
.custom-select-color-group .select2-selection input {
  margin-top: 0 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100% !important;
}

.form-item-filter-color {
  flex: 1;
}
@media (max-width: 767.98px) {
  .form-item-filter-color {
    flex: 0 0 calc(100% - 0px) !important;
    flex: unset;
  }
}
.form-item-filter-color input {
  color: var(--text-body);
  font-size: var(--font-size-lg);
  border-radius: 46px !important;
  background-color: var(--color-white);
  border: none;
  height: 56px;
  display: flex;
  align-items: center;
  padding-left: 16px !important;
  width: 100%;
}
.form-item-filter-color input::-moz-placeholder {
  color: var(--color-grayscale-400);
}
.form-item-filter-color input::placeholder {
  color: var(--color-grayscale-400);
}

.select2-selection--multiple {
  padding: 0 12px;
}
.select2-selection--multiple::before {
  font-family: "IcoMoon";
  content: "\e902";
  position: absolute;
  right: 16px;
  font-size: 9px;
  padding: 10px 8px;
  cursor: pointer;
}

.select2-dropdown {
  margin-top: 8px;
  padding: 16px;
  padding-right: 7px;
  border-radius: 16px !important;
  border: none;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1607843137);
  min-width: 327px;
}
.select2-option {
  display: flex;
  align-items: center;
  width: 100%;
}
.select2-option-color {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.select2-option-text {
  width: calc(100% - 60px) !important;
}
.select2-container {
  flex: 1;
  width: unset !important;
}
.select2-container .select2-selection__choice {
  background-color: var(--color-transparent) !important;
  border: none !important;
  margin: 0 !important;
}
.select2-container .select2-selection__choice__remove {
  display: none !important;
}
.select2-container .select2-selection__rendered {
  display: flex !important;
}
.select2-container .select2-selection__rendered .select2-selection__choice:nth-of-type(n + 6) {
  display: none !important;
}
.select2-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0px 16px;
  padding-right: 6px;
  margin-top: 16px;
}
.select2-note {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-black);
  color: var(--color-title);
  padding-bottom: 16px;
}

.no-result {
  display: flex;
  justify-content: center;
}

.test {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.test .calculate-paint__step {
  border: 1px solid black;
}
.paint-calculate {
  background-color: var(--color-white);
  padding-bottom: 80px;
}
.paint-calculate__progress {
  background-color: var(--color-grayscale-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  gap: 20px;
}
.paint-calculate__progress .text-progress-number {
  font-weight: var(--fw-black);
  color: var(--color-white);
}
.paint-calculate__progress .outlet-progress {
  width: 166px;
  height: 3px;
  background-color: #d9d9d9;
  border-radius: 100px;
}
.paint-calculate__progress .outlet-progress.active {
  background-color: var(--color-secondary);
}
.paint-calculate__progress .progress-step {
  width: 42px;
  height: 42px;
  background-color: #d9d9d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.paint-calculate__progress .progress-step-number {
  font-weight: var(--fw-black);
  color: var(--color-white);
}
.paint-calculate__progress .progress-step.active {
  background-color: var(--color-secondary);
}
.paint-calculate__progress .progress-step.active::before {
  border: 2px solid var(--color-secondary);
}
.paint-calculate__progress .progress-step::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border: 2px solid #d9d9d9;
  border-radius: 50%;
  background-color: transparent;
}
.paint-calculate__progress .progress-step .icon {
  display: none;
}
.paint-calculate__title {
  margin: 40px 0;
  color: var(--color-title);
}
@media (max-width: 1199.98px) {
  .paint-calculate__title {
    margin-bottom: 24px;
  }
}
.paint-calculate__title-result {
  margin: 40px 0;
  color: var(--color-title);
  display: none;
}
@media (max-width: 767.98px) {
  .paint-calculate__title-result {
    margin-bottom: 24px;
  }
}
.paint-calculate__step-one {
  display: flex;
  gap: 24px 40px;
  flex-wrap: wrap;
}
.paint-calculate .celling,
.paint-calculate .wall {
  flex: 0 0 calc(50% - 20px) !important;
  display: flex;
  align-items: center;
  padding: 24px;
  gap: 0 23px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1607843137);
  aspect-ratio: 10/6;
}
@media (max-width: 1199.98px) {
  .paint-calculate .celling,
  .paint-calculate .wall {
    flex: 0 0 calc(100% - 0px) !important;
  }
}
@media (max-width: 767.98px) {
  .paint-calculate .celling,
  .paint-calculate .wall {
    aspect-ratio: 1/1;
    flex-direction: column;
    padding: 16px;
  }
}
.paint-calculate .celling__noti,
.paint-calculate .wall__noti {
  font-size: var(--font-size-sm);
  margin-top: 76px;
  padding-bottom: 40px;
  color: var(--color-grayscale-400);
  text-align: center;
  width: 97%;
}
@media (max-width: 991px) {
  .paint-calculate .celling__noti,
  .paint-calculate .wall__noti {
    margin-top: 0px;
    padding-top: 24px;
    padding-bottom: 0;
  }
}
.paint-calculate .celling__left, .paint-calculate .celling__right,
.paint-calculate .wall__left,
.paint-calculate .wall__right {
  width: 50%;
}
@media (max-width: 1199.98px) {
  .paint-calculate .celling__left, .paint-calculate .celling__right,
  .paint-calculate .wall__left,
  .paint-calculate .wall__right {
    width: 100%;
  }
}
.paint-calculate .celling__right,
.paint-calculate .wall__right {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .paint-calculate .celling__right,
  .paint-calculate .wall__right {
    padding-top: 126px;
  }
}
.paint-calculate .celling__right .wrapper,
.paint-calculate .wall__right .wrapper {
  display: flex;
  font-size: 48px;
  align-items: center;
  justify-content: center;
  margin-right: 36px;
  margin-top: 8px;
}
.paint-calculate .celling__right .wrapper .unit,
.paint-calculate .wall__right .wrapper .unit {
  font-weight: var(--fw-black);
  color: var(--color-title);
  margin-left: 8px;
}
.paint-calculate .celling__right .wrapper .unit sup,
.paint-calculate .wall__right .wrapper .unit sup {
  top: -0.7em;
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .paint-calculate .celling__right,
  .paint-calculate .wall__right {
    align-items: center;
  }
}
.paint-calculate .celling__label,
.paint-calculate .wall__label {
  text-align: center;
}
.paint-calculate .celling__input,
.paint-calculate .wall__input {
  width: 5ch;
  border: none;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  font-weight: var(--fw-black);
  color: var(--color-title);
  direction: rtl;
}
.paint-calculate .celling__input::-webkit-inner-spin-button, .paint-calculate .celling__input::-webkit-outer-spin-button,
.paint-calculate .wall__input::-webkit-inner-spin-button,
.paint-calculate .wall__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.paint-calculate .celling__input::-moz-placeholder, .paint-calculate .wall__input::-moz-placeholder {
  color: var(--color-grayscale-100);
}
.paint-calculate .celling__input::placeholder,
.paint-calculate .wall__input::placeholder {
  color: var(--color-grayscale-100);
}
.paint-calculate .celling__input:focus, .paint-calculate .celling__input:focus-visible,
.paint-calculate .wall__input:focus,
.paint-calculate .wall__input:focus-visible {
  border: none !important;
  outline: none !important;
}
.paint-calculate .celling__value1, .paint-calculate .celling__value2, .paint-calculate .celling__value3,
.paint-calculate .wall__value1,
.paint-calculate .wall__value2,
.paint-calculate .wall__value3 {
  font-weight: var(--fw-black);
  color: var(--color-title);
}
.paint-calculate .celling__result1, .paint-calculate .celling__result2, .paint-calculate .celling__result3,
.paint-calculate .wall__result1,
.paint-calculate .wall__result2,
.paint-calculate .wall__result3 {
  border-top: 1px solid var(--color-grayscale-100);
  padding-top: 8px;
  margin-top: 8px;
}
.paint-calculate .celling__result,
.paint-calculate .wall__result {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .paint-calculate .wall .celling__noti {
    display: none;
  }
}
.paint-calculate__action {
  display: flex;
  justify-content: end;
  border-top: 1px solid var(--color-grayscale-100);
  padding-top: 40px;
}
@media (max-width: 767.98px) {
  .paint-calculate__action {
    padding-top: 24px;
  }
}
.paint-calculate__action-step-1, .paint-calculate__action-step-2 {
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .paint-calculate__action-step-1, .paint-calculate__action-step-2 {
    width: 100%;
  }
}
.paint-calculate__action-step-2 {
  gap: 24px 20px;
  display: none;
}
.paint-calculate__action-step-2 img {
  padding: 8px;
}
.paint-calculate .paint-result {
  display: none;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 767.98px) {
  .paint-calculate .paint-result {
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .paint-calculate .paint-result sup {
    top: -0.3em !important;
  }
}
.paint-calculate .paint-result .wrapper {
  font-size: var(--font-size-3xl) !important;
  justify-content: unset !important;
}
@media (max-width: 767.98px) {
  .paint-calculate .paint-result .wrapper {
    justify-content: unset !important;
    font-size: 22px !important;
  }
}
.paint-calculate .paint-result .celling__right,
.paint-calculate .paint-result .wall__right {
  padding-top: unset !important;
}
@media (max-width: 767.98px) {
  .paint-calculate .paint-result .celling__right,
  .paint-calculate .paint-result .wall__right {
    align-items: unset !important;
  }
}
.paint-calculate .paint-result .celling__heading,
.paint-calculate .paint-result .wall__heading {
  color: var(--color-secondary);
  margin-bottom: unset !important;
}
.paint-calculate .paint-result .celling__heading.text-blue,
.paint-calculate .paint-result .wall__heading.text-blue {
  color: var(--color-primary) !important;
}
.paint-calculate .mirror {
  position: absolute;
  visibility: hidden;
  white-space: pre;
  font: inherit;
  padding: 4px;
}
.paint-calculate .block-simple-blockcalculate-paint-noti {
  margin-bottom: 40px !important;
}
@media (max-width: 767.98px) {
  .paint-calculate .block-simple-blockcalculate-paint-noti {
    margin-bottom: 24px !important;
  }
}
@media (min-width: 1200px) {
  .paint-calculate .paint-calculate__step-one .wall__right {
    height: 100%;
  }
}
/*# sourceMappingURL=calculatePaint.css.map */
