<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Backgound Function Collection
 * Oct 19: Largely rewrite to be more flexible
 *      - Before/After taking "Content" now
 *      - Ignore the rest of parameters if neither Image nor color exist
 *      - Able to handle Hover &amp; Active BG
 */
/* Positioning &amp; Sizing Function Collection
 * 
 * Oct 19: Enhanced dimen, if only one parameter, make it square size
 */
/*
 * Backgound Function Collection
 * Oct 19: Largely rewrite to be more flexible
 *      - Before/After taking "Content" now
 *      - Ignore the rest of parameters if neither Image nor color exist
 *      - Able to handle Hover &amp; Active BG
 */
/* Positioning &amp; Sizing Function Collection
 * 
 * Oct 19: Enhanced dimen, if only one parameter, make it square size
 */
.combo-wrap.mobileProgressBarDropdown .listbox, .combo-wrap .listbox {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
}

.combo-wrap {
  position: relative;
  height: 44px;
}
.combo-wrap.size-s {
  width: 280px;
}
.combo-wrap.size-m {
  width: 380px;
}
.combo-wrap.size-l {
  width: 480px;
}
@media screen and (max-width: 767px) {
  .combo-wrap.size-s, .combo-wrap.size-m, .combo-wrap.size-l {
    width: 100%;
  }
}
.combo-wrap input[type=text] {
  width: 100%;
  height: 100%;
  padding: 9px 15px 11px 12px;
  border: solid 1px #6c757d;
  background-color: #ffffff;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
}
.combo-wrap button {
  width: 100%;
  height: 100%;
  text-align: left !important;
}
.combo-wrap .ddArrow {
  padding-right: 34px;
  background-image: url(../../public/images/common/icon-dropdown.svg);
  background-position: center right 15px;
  background-size: 9px 7px;
  background-repeat: no-repeat;
}
.combo-wrap .listbox {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 250px;
  padding: 0;
  background-color: #fff;
  overflow-y: auto;
  z-index: 99;
}
.combo-wrap .listbox .option {
  padding: 8px 12px;
  font-size: 1.6rem;
  font-weight: normal;
  cursor: pointer;
}
.combo-wrap .combobox[aria-expanded=true] ~ .listbox,
.combo-wrap .listbox.open {
  display: block;
}
.combo-wrap.mobileProgressBarDropdown {
  position: relative;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.combo-wrap.mobileProgressBarDropdown label {
  color: #778;
  font-weight: 700;
  margin-bottom: 0;
  margin-right: 8px;
}
.combo-wrap.mobileProgressBarDropdown .combobox {
  width: 24px;
  height: 24px;
  border: 1px solid #777778;
  position: relative;
  font-size: 1.4rem;
  text-align: left;
  background-color: #fff;
  color: #212E59;
}
.combo-wrap.mobileProgressBarDropdown .fa-caret-down {
  position: absolute;
  top: 0;
  right: 0;
  position: absolute;
  font-size: 1.188rem;
  line-height: 40px;
  padding: 0 10px;
  color: #272727;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.4);
}
.combo-wrap.mobileProgressBarDropdown .listbox {
  display: none;
  position: absolute;
  top: 24px;
  left: 0;
  width: 96%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  background: #fff;
  z-index: 99;
  text-align: left;
  max-height: 250px;
  overflow-y: auto;
}
.combo-wrap.mobileProgressBarDropdown .listbox.open {
  display: block;
}
.combo-wrap.mobileProgressBarDropdown .listbox .option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  padding: 10px 12px;
  font-size: 1.6rem;
  cursor: pointer;
}
.combo-wrap.mobileProgressBarDropdown .listbox .option + .option {
  border-top: 1px solid #c7c7d2;
}
.combo-wrap.mobileProgressBarDropdown .listbox .option.currentStep {
  font-weight: bold;
  cursor: default;
}
.combo-wrap.mobileProgressBarDropdown .listbox .option.disabled {
  background-color: #e1e1ea;
  color: #495057;
  cursor: default;
}
.combo-wrap.mobileProgressBarDropdown .listbox .option span {
  width: 24px;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.combo-wrap.mobileProgressBarDropdown .listbox .underline {
  text-decoration: underline;
}

.progressBarWrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  position: relative;
  padding-bottom: 25px;
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .progressBarWrapper {
    padding-bottom: 20px;
  }
}
.progressBarWrapper .step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}
.progressBarWrapper .step::before, .progressBarWrapper .step::after {
  content: "";
  position: absolute;
  top: 27.5px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c7c7d2;
  z-index: -1;
}
.progressBarWrapper .step::before {
  right: 50%;
}
.progressBarWrapper .step::after {
  left: 50%;
}
.progressBarWrapper .step:first-child::before {
  display: none;
}
.progressBarWrapper .step:last-child::after {
  display: none;
}
.progressBarWrapper .step .dot {
  width: 50px;
  height: 50px;
  border: solid 10px #fff;
  border-radius: 50%;
  background-color: #e1e1ea;
  color: #495057;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin-top: 3px;
  line-height: 1;
  font-size: 1.4rem;
}
.progressBarWrapper .step .desc {
  font-size: 1.4rem;
  text-align: center;
  color: #272727;
}
.progressBarWrapper .step.completed .dot, .progressBarWrapper .step.current .dot {
  background-color: #c91d20;
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
}
.progressBarWrapper .step.completed:hover {
  text-decoration: underline;
  cursor: pointer;
}
.progressBarWrapper .step.current .dot {
  width: 56px;
  height: 56px;
  font-weight: bold;
  font-size: 1.6rem;
  margin-top: 0;
}
.progressBarWrapper .step.current .desc {
  font-weight: bold;
}
.progressBarWrapper .step.completed::before, .progressBarWrapper .step.completed::after, .progressBarWrapper .step.current::before {
  background-color: #c91d20;
}
.progressBarWrapper.leq4 .step {
  width: 23%;
}
.progressBarWrapper.leq6 .step {
  width: 16%;
}
.progressBarWrapper.mobileView {
  display: none;
}
@media screen and (max-width: 991px) {
  .progressBarWrapper.desktopView {
    display: none;
  }
  .progressBarWrapper.mobileView {
    display: block;
  }
  .progressBarWrapper.mobileView .combo-wrap .listbox {
    width: 60%;
  }
  .progressBarWrapper.mobileView .listbox a.option {
    color: #272727;
    padding: 4px 6px !important;
    margin: 4px 6px !important;
  }
}
.progressBarWrapper .icn.menuStepDown {
  background-image: url(../../public/images/common/icon-step-dropdown.svg);
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .progressBarWrapper.mobileView .combo-wrap .listbox {
    width: 100%;
  }
}

main .noticeContainer label.ant-checkbox-group-item + label.ant-checkbox-group-item {
  margin-top: 8px;
}
</pre></body></html>