@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Montserrat:wght@4300;00;500;600;700&family=Noto+Sans+TC:wght@400;500;700&display=swap");
@import url("now-icon.css");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
body.overflow {
  overflow: hidden;
}

/* webkit */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  background-color: #ffffff !important;
  background-clip: content-box !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* colours */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  color: #0b0b0b;
}

button {
  cursor: pointer;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
}

button,
input,
select {
  outline: none;
}

input::-moz-placeholder {
  color: #9B9B9B;
}

input::placeholder {
  color: #9B9B9B;
}

.nowrap {
  white-space: nowrap;
}

.clear {
  clear: both;
}

@keyframes ripple {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-8px) rotate(-30deg);
  }
  50% {
    transform: translateX(8px) rotate(30deg);
  }
  75% {
    transform: translateX(-8px) rotate(-30deg);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes dot-carousel {
  0% {
    box-shadow: 9980px 0 0 -1px rgba(255, 255, 255, 0.5), 9999px 0 0 1px #fff, 10018px 0 0 -1px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 10018px 0 0 -1px rgba(255, 255, 255, 0.5), 9980px 0 0 -1px rgba(255, 255, 255, 0.5), 9999px 0 0 1px #fff;
  }
  100% {
    box-shadow: 9999px 0 0 1px #fff, 10018px 0 0 -1px rgba(255, 255, 255, 0.5), 9980px 0 0 -1px rgba(255, 255, 255, 0.5);
  }
}
.animate-wrap {
  display: none;
  position: absolute;
}

.loading .animate-wrap {
  display: block;
}

.dot-carousel {
  position: relative;
  left: -9999px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #ffffff;
  box-shadow: 9980px 0 0 0 #fff, 9999px 0 0 0 #fff, 10018px 0 0 0 #fff;
  animation: dot-carousel 0.8s infinite linear;
}

.btn {
  position: relative;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 30px !important;
  font-size: 18px !important;
  font-weight: 500;
  line-height: 1;
  transition: all 0.5s ease;
  text-decoration: none;
}
.btn.primary {
  color: #ffffff;
  background-color: #EF9528;
}
.btn.primary:hover {
  color: #ffffff;
  background-color: #F37D16;
}
.btn.outline, .btn.select-btn {
  color: #CF6B0D;
  border: 2px solid #CF6B0D;
}
.btn.outline:hover, .btn.select-btn:hover {
  border: 2px solid #EF9528;
  color: #ffffff;
  background-color: #EF9528;
}
.btn.select-btn {
  position: relative;
}
.btn.select-btn.selected {
  color: #ffffff;
  background-color: #EF9528;
  border: 2px solid #EF9528;
}
.btn.select-btn.selected::before {
  position: absolute;
  content: "\e905";
  font-family: "nowicon";
  top: 50%;
  left: 20px;
  font-size: 16px;
  transform: translate(0, -50%);
}
.btn.secondary {
  background-color: #F1F1F1;
  color: #0b0b0b;
}
.btn.secondary:hover {
  background-color: #C9C9C9;
}
.btn.secondary:focus {
  background-color: #B1AFAF;
}
.btn:disabled, .btn[disabled] {
  pointer-events: none;
  opacity: 0.3;
}
.btn.loading {
  pointer-events: none;
  background-color: #EF9528 !important;
  color: rgba(0, 0, 0, 0) !important;
  transition: all 0.3s ease;
}
.btn.success {
  min-width: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 0;
  border: 0;
  box-shadow: inset 0px 0px 0px 2px #EF9528;
}
.btn.success::before {
  opacity: 0;
  color: #fff;
  font-family: "nowicon";
  content: "\e902";
  font-size: 18px;
  animation: ripple 0.3s ease-out 0.4s normal forwards;
  position: absolute;
  left: 0;
  width: 100%;
}

.link {
  position: relative;
  color: #CF6B0D;
  text-decoration: none;
  font-weight: 400;
}
.link.underline {
  text-decoration: underline;
}
.link:hover {
  font-weight: 500;
}
.link.arrow::after {
  position: relative;
  right: -6px;
  font-family: "nowicon";
  content: "\e904";
  font-size: 12px;
}
.link.new-window::after {
  position: relative;
  right: -8px;
  font-family: "nowicon";
  content: "\e907";
  font-size: 14px;
}
.link.warning {
  color: #b00020;
}

.label-big-check {
  position: relative;
  display: inline-block;
  padding: 0 0 0 35px;
  margin: 0;
  cursor: pointer;
  left: 0;
  width: auto;
  min-height: 30px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.label-big-check input {
  display: none;
}
.label-big-check .check-title {
  cursor: pointer;
  position: relative;
  left: 0;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #4a4a4a;
}
.label-big-check input[type=checkbox] + .check-title:before,
.label-big-check input[type=radio] + .check-title:before {
  position: absolute;
  left: -35px;
  top: -2px;
  width: 24px;
  height: 24px;
  display: inline-block;
  font-family: "nowicon";
  content: "";
  border-radius: 4px;
  line-height: 1;
  color: #4a4a4a;
  background-color: #ffffff;
  padding: 6px 6px 0 0;
  border: 1px solid #9b9b9b;
}
.label-big-check input[type=checkbox]:disabled + .check-title:before,
.label-big-check input[type=radio]:disabled + .check-title:before {
  background-color: #eee;
}
.label-big-check input[type=checkbox]:checked + .check-title:before,
.label-big-check input[type=radio]:checked + .check-title:before {
  content: "\e902";
  font-size: 10px;
  color: #4a4a4a;
  position: absolute;
}
.label-big-check[disabled] {
  pointer-events: none;
}

.custom-select {
  width: 100%;
  position: relative;
}
.custom-select button.select-button {
  width: 100%;
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 4px;
  font-size: 18px;
  border: 1px solid #9B9B9B;
  color: #9b9b9b;
  text-align: left;
  font-weight: 400;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  position: relative;
  max-height: 58px;
}
.custom-select button.select-button.withvalue {
  color: #0b0b0b;
}
.custom-select button.select-button::after {
  content: "\e900";
  font-family: "nowicon";
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  right: 16px;
  font-size: 10px;
  color: #0b0b0b;
  transition: transform 0.2s linear;
}
.custom-select button.select-button.active::after {
  transform: translate(0%, -50%) rotate(180deg);
}
.custom-select button.select-button[disabled] {
  pointer-events: none;
  opacity: 0.3;
}
.custom-select ul {
  position: absolute;
  margin: 10px 0 0 0;
  padding: 0 0 0 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.13);
  opacity: 1;
  transition: all 0.2s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  overflow-y: scroll;
  max-height: 300px;
}
.custom-select ul.show {
  opacity: 1;
  margin: 5px 0 0 0;
  pointer-events: all;
}
.custom-select ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #E0E0E0;
}
.custom-select ul li:last-child {
  margin: 0;
  border-bottom: 0;
}
.custom-select ul li button {
  width: 100%;
  padding: 16px 24px;
  text-align: left;
  margin: 0;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  font-size: 18px;
}

.box {
  position: relative;
}
.box input, .box input:not([type=checkbox]):not([type=submit]):not([type=file]):not([type=radio]), .box textarea, .box select {
  padding: 15px 20px;
  display: block;
  width: 100%;
  height: auto;
  border: none;
  border: 1px solid #9b9b9b !important;
  border-radius: 4px !important;
  color: #0b0b0b;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  font-size: 18px !important;
  background-color: #ffffff !important;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.box input:focus, .box input:not([type=checkbox]):not([type=submit]):not([type=file]):not([type=radio]):focus, .box textarea:focus, .box select:focus {
  outline: none;
  border-color: #CF6B0D;
}
.box label {
  color: #9b9b9b;
  font-weight: 400;
  position: absolute;
  pointer-events: none;
  left: 20px;
  top: 16px;
  font-size: 18px;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.box {
  /* active state */
}
.box input:focus ~ label,
.box input:valid ~ label {
  top: -13px;
  left: 16px;
  color: #9b9b9b;
  background-color: white;
  padding: 0 5px;
}
.box input:focus ~ label {
  color: #CF6B0D;
}
.box p {
  color: #b00020;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  margin: 6px 0 0 0;
}

.container {
  padding: 0 22px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.modal-open {
  overflow: hidden;
  padding: 0 15px 0 0;
}
.modal-open .modal-wrapper {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 22px;
  opacity: 0;
  pointer-events: none !important;
  transition: all 0.2s ease;
}
.modal-wrapper .modal-dialog {
  width: 100%;
  max-height: 100vh;
  max-width: 100%;
}
.modal-wrapper .modal-dialog .modal-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0;
  top: 20px;
  transition: all 0.3s ease;
}
.modal-wrapper .modal-dialog .modal-content-wrapper.sm {
  max-width: 600px;
}
.modal-wrapper .modal-dialog .modal-content-wrapper.md {
  max-width: 900px;
}
.modal-wrapper .modal-dialog .modal-content-wrapper .close-wrap {
  text-align: right;
}
.modal-wrapper .modal-dialog .modal-content-wrapper .close-wrap .close-btn {
  margin: 0 0 8px 0;
}
.modal-wrapper .modal-dialog .modal-content-wrapper .close-wrap .close-btn button {
  display: inline-flex;
  align-items: center;
  font-family: "Barlow", "Noto Sans TC", sans-serif !important;
  color: #fff;
  font-size: 16px !important;
}
.modal-wrapper .modal-dialog .modal-content-wrapper .close-wrap .close-btn button img {
  width: auto;
  height: 24px;
  margin: 0 0 0 5px;
}
.modal-wrapper.show {
  opacity: 1;
  pointer-events: auto !important;
}
.modal-wrapper.show .modal-dialog {
  pointer-events: all;
}
.modal-wrapper.show .modal-content-wrapper {
  top: 0;
}

.terms-conditions {
  margin: 80px 0 24px 0;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding: 0;
}
.terms-conditions h2 {
  position: relative;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-weight: 500;
  font-size: 24px !important;
  margin: 0;
  padding: 24px 0;
  cursor: pointer;
}
.terms-conditions h2:after {
  position: absolute;
  content: "\e900";
  font-family: "nowicon";
  font-size: 12px;
  color: #9B9B9B;
  right: 12px;
  top: 34px;
  transition: transform 0.2s linear;
}
.terms-conditions.active h2:after {
  color: #EF9528;
  transform: rotate(180deg);
}
.terms-conditions .content {
  display: none;
}
.terms-conditions .content p {
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  color: #4a4a4a;
  line-height: 1.4;
  margin: 16px 0;
}
.terms-conditions .content p:first-child {
  margin-top: 0;
}
.terms-conditions .content p a {
  color: #CF6B0D;
}
.terms-conditions .content p a:hover {
  font-weight: 500;
}

.error-template {
  text-align: center;
}
.error-template .heading {
  margin: 60px 0;
}
.error-template .heading h2 {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 40px 0;
}
.error-template .heading p {
  font-size: 18px;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  font-weight: 400;
  margin: 0 0 24px 0;
  line-height: 1.4;
}

.need-help-wrapper {
  display: none;
  margin: 100px 0 0 0;
  padding: 60px 0;
  background-color: #f7f7f7;
}
.need-help-wrapper.show {
  display: block;
}
.need-help-wrapper h2 {
  font-weight: 500;
  font-size: 28px;
  text-align: center;
  margin: 0 0 60px 0;
}
.need-help-wrapper .options-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.need-help-wrapper .options-wrap .item {
  margin: 0 60px;
}
.need-help-wrapper .options-wrap .item a {
  text-decoration: none;
  text-align: center;
}
.need-help-wrapper .options-wrap .item a .img-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1.5px solid #0b0b0b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.need-help-wrapper .options-wrap .item a .img-wrap img.phone {
  width: auto;
  height: 41px;
}
.need-help-wrapper .options-wrap .item a .img-wrap img.message {
  width: auto;
  height: 39px;
}
.need-help-wrapper .options-wrap .item a .img-wrap img.whatsapp {
  width: auto;
  height: 50px;
}
.need-help-wrapper .options-wrap .item a h4 {
  font-weight: 400;
  font-size: 18px !important;
  margin: 20px 0 0 0;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
}

.minisite-wrapper {
  position: relative;
  margin-top: 73px;
}
.minisite-wrapper .terms-wrapper {
  border-top: 9px solid #EF9528;
  padding: 15px 22px;
  background-color: #333;
}
.minisite-wrapper .terms-wrapper p {
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  color: #9E9E9E;
  font-size: 14px !important;
  margin: 0 0 14px 0;
}
.minisite-wrapper .terms-wrapper p:last-child {
  margin: 0;
}
.minisite-wrapper .terms-wrapper a {
  color: #9E9E9E;
  text-decoration: underline;
}
.minisite-wrapper .terms-wrapper a:hover {
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .minisite-wrapper {
    margin-top: 50px;
  }
  .need-help-wrapper {
    margin: 80px 0 0 0;
    padding: 40px 0;
  }
  .need-help-wrapper h2 {
    margin: 0 0 40px 0;
    font-size: 24px;
  }
  .need-help-wrapper .options-wrap .item {
    margin: 0 36px;
  }
  .need-help-wrapper .options-wrap .item a .img-wrap {
    width: 80px;
    height: 80px;
  }
  .need-help-wrapper .options-wrap .item a .img-wrap img.phone {
    width: auto;
    height: 35px;
  }
  .need-help-wrapper .options-wrap .item a .img-wrap img.message {
    width: auto;
    height: 33px;
  }
  .need-help-wrapper .options-wrap .item a .img-wrap img.whatsapp {
    width: auto;
    height: 43px;
  }
  .need-help-wrapper .options-wrap .item a h4 {
    font-size: 16px !important;
    margin: 16px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 16px !important;
  }
  .box input, .box input:not([type=checkbox]):not([type=submit]):not([type=file]):not([type=radio]), .box textarea, .box select {
    font-size: 16px !important;
  }
  .box label {
    font-size: 16px;
  }
  .box {
    /* active state */
  }
  .box input:focus ~ label,
  .box input:valid ~ label {
    top: -10px;
  }
  .custom-select {
    width: 100%;
    position: relative;
  }
  .custom-select button.select-button {
    font-size: 16px;
  }
  .custom-select button.select-button::after {
    font-size: 9px;
  }
  .custom-select ul li button {
    font-size: 16px;
  }
  .terms-conditions {
    margin-bottom: 20px;
  }
  .terms-conditions h2 {
    font-size: 20px !important;
    padding: 20px 0;
  }
  .terms-conditions h2:after {
    font-size: 10px;
    top: 28px;
  }
  .terms-conditions .content p {
    font-size: 14px;
  }
  .terms-conditions .content label {
    line-height: 1.4;
  }
  .minisite-wrapper .terms-wrapper p {
    font-size: 13px !important;
  }
  .error-template .heading {
    margin: 40px 0;
  }
  .error-template .heading h2 {
    font-size: 28px;
  }
  .error-template .heading p {
    font-size: 16px;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 575px) {
  /* sidebar */
  .sidebar {
    max-width: 100%;
  }
  .need-help-wrapper .options-wrap:has(> :nth-child(3)) .item {
    margin: 0 20px;
  }
  .need-help-wrapper .options-wrap:has(> :nth-child(3)) .item a h4 {
    font-size: 15px !important;
  }
}/*# sourceMappingURL=master.css.map */