@font-face {
  font-family: Montserrat;
  src: url(https://media.hkgccluckydraw.com/web/assets/font/Montserrat-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: Montserrat;
  src: url(https://media.hkgccluckydraw.com/web/assets/font/Montserrat-Bold.ttf);
  font-weight: bold;
}
body {
  margin: 0;
  font-size: 14px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  font-family: Helvetica, Arial;
  line-height: normal;
  color: #313131;
}
* {
  font-family: Montserrat;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
a {
  color: #00a2ff;
  text-decoration: underline;
}
a.faq_button_wrapper {
  text-decoration: none;
}
.header_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  margin: auto;
  margin-left: 137px;
  margin-right: 139px;
}
.header_left {
  display: flex;
  align-items: center;
}
.header_left img {
  margin-right: 40px;
}
.banner_wrapper {
  padding-top: 120px;
  width: 100%;
}
.banner_wrapper img {
  width: 100%;
}
.faq_btn {
  color: #09b5b0;
  font-size: 20px;
  text-decoration-line: underline;
  margin-right: 48px;
}
.radio_title {
  color: #4e4e4e;
  font-weight: bold;
  font-size: 18px;
}
.radio_wrapper {
  margin: 14px 0;
  position: relative;
}
.radio_label {
  padding-left: 30px;
  cursor: pointer;
  position: relative;
  display: block;
}
.radio_label:before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #6d6e71;
  border-radius: 100px;
  top: 0px;
  left: 0px;
}
.radio_option {
  display: none;
}
.radio_option:checked + .radio_label:before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #275ca3;
  border-radius: 100px;
  top: 0px;
  left: 0px;
}
.radio_option:checked + .radio_label:after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  transform: translateY(-50%);
  left: 3px;
  background-color: #275ca3;
  border: 2px solid #275ca3;
  width: 18px;
  height: 18px;
  border-radius: 50px;
}
.scroll_table {
  overflow: scroll;
}
.scroll_table::-webkit-scrollbar {
  display: none;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
}
tr td {
  padding-left: 15px;
  padding-right: 15px;
  vertical-align: top;
}
.timeline_table,
.prize_table {
  margin-bottom: 15px;
  min-width: 767px;
  max-width: 980px;
}
.timeline_table td,
.prize_table td,
.timeline_table th,
.prize_table th {
  border: 1px solid #c9f2ec;
  padding: 8px;
}
.timeline_table th,
.prize_table th {
  background-color: #1b696c;
  color: #ffffff;
  text-align: center;
}
.timeline_table td,
.prize_table td {
  color: #1b696c;
}
sup {
  font-size: 10px;
}
.fixed_header {
  position: fixed;
  width: 100%;
  background-color: white;
  z-index: 99;
}
.page_wrapper {
  margin: 0 220px;
}
.bold_words {
  font-weight: bold;
}
.highlight_words {
  color: #275ca3;
  font-weight: bold;
}
.small_words {
  font-size: 12px;
  display: contents;
}
th.small_column {
  width: 163px;
}
.center_words {
  text-align: center;
}
.underline_words {
  text-decoration: underline;
}
.collapsible_wrapper {
  background-color: white;
  padding: 10px 0;
}
.tnc_table {
  width: auto;
  margin: 0;
  white-space: nowrap;
}
.tnc_table tr th:not(:first-child) {
  text-align: center;
}
.tnc_table td,
.tnc_table th {
  border: 1px solid #000000;
}
.tnc_table .sub_list {
  text-align: left;
  list-style: inside;
}
.collapsible {
  background-color: #ffffff;
  color: #313131;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  padding-right: 35px;
}
.collapsible:after {
  content: "\002B";
  color: #09b5b0;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.active:after {
  content: "\2212";
}
.checkbox_label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
/* Hide the browser's default checkbox */
.checkbox_label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ffffff;
  border: 1px solid #6d6e71;
}
/* On mouse-over, add a grey background color */
.checkbox_label:hover input ~ .checkmark {
  background-color: #ffffff;
}
/* When the checkbox is checked, add a blue background */
.checkbox_label input:checked ~ .checkmark {
  background-color: #2196f3;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.checkbox_label input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.checkbox_label .checkmark:after {
  left: 7px;
  top: 0px;
  width: 10px;
  height: 17px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.submit-button {
  background: #275ca3;
  max-width: 514px;
  padding: 16px 25px;
  color: white;
  text-align: center;
  margin: 0 auto;
  margin-top: 60px;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
}
.submit-button.disabled {
  pointer-events: none;
  font-weight: bold;
  font-size: 20px;
  background: #ebede9;
  color: #929292;
}
.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #ffffff;
}
.modal {
  text-align: center;
  /* padding: 0 20px; */
}
.modal:before {
  content: "";
  display: inline-block;
  /* height: 100%; */
  vertical-align: middle;
  margin-right: -4px;
}
.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: calc(100% - 20px);
}
.modal .modal-body {
  padding: 50px 42px;
  padding-top: 86px;
}
.modal-content {
  max-width: 759px;
  margin: 0 auto;
  border-radius: 0px;
  /* height: 828px; */
}
.modal-close-btn {
  position: absolute;
  right: 38px;
  top: 38px;
  cursor: pointer;
}
.modal .modal-body .modal-title {
  color: #275ca3;
  border: none;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.modal .modal-body .modal-subTitle {
  margin-top: 6px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #920b25;
}
.modal-message {
  text-align: center;
  margin-top: 24px;
  font-size: 16px;
  padding: 0 15px;
  line-height: 24px;
}
.modal-message p {
  margin: 0;
  font-size: 16px;
}
.modal-message .important {
  color: #b67968;
  font-weight: 700;
}
.modal .modal-body .modal-btn {
  display: flex;
  text-align: center;
  justify-content: center;
}
.confirmationSubmitDetail_title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 26px;
  color: #920b25;
}
.submit-information-container {
  text-align: center;
  margin-top: 45px;
  background: #edf4fd;
  padding: 30px 10px;
}
.submit-information-container .input-field-container label {
  color: #4e4e4e;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 14px;
}
.submit-information-container .input-field-container p {
  color: #313131;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 23px;
}
.modal .modal-body .modal-btn button {
  padding: 16px 30px;
  margin: 0 15px;
  margin-top: 45px;
  height: 57px;
  font-weight: bold;
  font-size: 21px;
  min-width: 179px;
  line-height: 28px;
  height: inherit;
  border: 0;
  border-radius: 0px;
}
.modal .modal-body .modal-btn button.btn-primary-outline {
  border: 1px solid #275ca3;
  color: #275ca3;
  background-color: white;
}
.tnc {
  font-size: 16px;
}
.index_page {
  padding-top: 120px;
}
.register_btn {
  background: #fbd249;
  border-radius: 100px;
  padding: 16px 20px;
  font-weight: bold;
  font-size: 20px;
  margin: 0 auto;
  text-decoration: none;
  color: #1b696c;
  box-sizing: border-box;
  text-align: center;
  display: table;
}
.lang_btn {
  background: #f0f0f0;
  border-radius: 100px;
  padding: 10px 20px;
  color: #920b25;
  text-decoration: none;
}
footer {
  font-size: 14px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 37px 19px;
  line-height: 30px;
}
footer .footer_title {
  color: #920b25;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 30px;
}
footer .second_title {
  margin-top: 30px;
}
footer img {
  max-width: 100%;
  margin-bottom: 30px;
}
footer .promotion_lisence {
  color: #6d6e71;
  font-size: 16px;
  line-height: 28px;
  margin-top: 30px;
}
.documents_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
  color: #09b5b0;
  text-decoration-line: underline;
  max-width: 670px;
  margin: 0 auto;
}
.bottom_btn_wrapper {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -15.52%, #ffffff 92.24%);
}
.bottom_btn_wrapper .join-btn {
  margin: 0 auto;
  margin-top: 26px;
  min-width: 235px;
  width: max-content;
}
.form_wrapper {
  background: #ffffff;
  margin: 0 271px 0 300px;
  margin-top: 99px;
}
.registration_form_wrapper {
  margin: 0 auto;
  max-width: 1135px;
  margin-top:99px
}

.form_wrapper .title {
  color: #1b696c;
  text-align: center;
  font-weight: bold;
  font-size: 36px;
  line-height: 40px;
}
.form_wrapper .form_input_wrapper {
  margin: 50px 0;
  margin-right: 68px;
}
.form_wrapper .form_input_wrapper .form_label {
  color: #4e4e4e;
  font-size: 18px;
  font-weight: bold;
}
.form_wrapper .form_input_wrapper .subtitle {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 24px;
}
.form_wrapper .form_input_wrapper input {
  width: 100%;
  padding: 10px;
  font-size: 17px;
  display: block;
  border: 1px solid #aaaaaa;
  border-radius: 5px;
}
.form_wrapper .form_input_wrapper .error_msg {
  color: #e12a2a;
  display: none;
  font-size: 12px;
  margin-top: 15px;
}
.faq_page,
.registration_page {
  width: 100%;
  min-height: 100vh;
}
.faq_page footer,
.registration_page footer {
  background-color: transparent;
}
.faq_page .title,
.registration_page .title {
  color: #275ca3;
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  margin-bottom: 24px;
}
.faq_page .description,
.registration_page .description {
  color: #4e4e4e;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.faq_page .form_label,
.registration_page .form_label {
  margin-bottom: 12px;
}
.faq_page .country-code,
.registration_page .country-code {
  padding-right: 14px;
}
.faq_page .submit-information-container,
.registration_page .submit-information-container {
  padding-bottom: 7px;
}
.faq_page .submit-information-container .highlight_words,
.registration_page .submit-information-container .highlight_words {
  font-size: 18px;
}
.faq_page .success_page_footer,
.registration_page .success_page_footer {
  color: #6d6e71;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  margin-top: 51px;
}
.registration_page .title {
  margin-bottom: 80px;
}
#success_page.form_wrapper {
  margin-top: 64px;
}
#success_page.form_wrapper .title {
  margin-top: 40px;
}
.faq_page .page_wrapper,
.tnc_page .page_wrapper,
.data_privacy_page .page_wrapper {
  padding: 0 20px;
  margin-top: 54px;
  line-height: 28px;
  margin-bottom: 54px;
  font-size: 16px;
}
.faq_page .question,
.tnc_page .question,
.data_privacy_page .question {
  color: #4e4e4e;
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
}
.faq_page .answer,
.tnc_page .answer,
.data_privacy_page .answer {
  color: #4e4e4e;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
  margin-left: 28px;
}
.faq_page .list_wrapper,
.tnc_page .list_wrapper,
.data_privacy_page .list_wrapper {
  display: flex;
}
.faq_page .list_wrapper .list_num,
.tnc_page .list_wrapper .list_num,
.data_privacy_page .list_wrapper .list_num {
  display: inline;
  margin-right: 5px;
  width: 22px;
  flex-shrink: 0;
}
.faq_page .list_wrapper .list_item,
.tnc_page .list_wrapper .list_item,
.data_privacy_page .list_wrapper .list_item {
  display: inline-block;
  font-size: 16px;
}
.faq_page .tnc_title,
.tnc_page .tnc_title,
.data_privacy_page .tnc_title {
  font-size: 18px;
  text-decoration: underline;
  margin-bottom: 20px;
  font-weight: bold;
}
.faq_page .tnc_subtitle,
.tnc_page .tnc_subtitle,
.data_privacy_page .tnc_subtitle {
  text-decoration: underline;
}
.index_page .banner_holder {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.index_page .banner_holder img {
  width: 100%;
}
.index_page .panel_container {
  margin: 60px auto;
  max-width: 1020px;
  padding: 0 20px;
  line-height: 32px;
}
.index_page .panel_container .small_title {
  font-size: 20px;
  color: #1b696c;
  font-weight: bold;
}
.index_page .panel_container .small_content {
  font-size: 16px;
  color: #313131;
}
.index_page .title {
  font-weight: bold;
  font-size: 36px;
  color: #09b5b0;
  text-align: center;
  margin-bottom: 30px;
  line-height: 40px;
}
.index_page .subtitle {
  color: #1b696c;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}
.index_page .des {
  color: #1b696c;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}
.index_page .prize_panel {
  background: #f5fdfd;
  padding: 30px 0;
}
.index_page .prize_panel .title {
  text-align: center;
  font-weight: bold;
  font-size: 36px;
  color: #09b5b0;
}
.index_page .register_button_wrapper {
  text-align: center;
  margin: 46px 0;
}
.index_page .prize_table .prize_wrapper {
  display: flex;
  margin: 15px 20px;
}
.index_page .prize_table .gold_prize {
  background: #fbd249;
  border-radius: 5px;
  width: 83px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: #1b696c;
  padding: 12px 0;
}
.index_page .prize_table .chill_prize {
  background: #09b5b0;
  border-radius: 5px;
  font-weight: bold;
  font-size: 12px;
  color: #ffffff;
  width: 83px;
  text-align: center;
  padding: 15px 0;
}
.index_page .prize_table .prize_details {
  display: flex;
  flex-direction: column;
  place-content: space-around;
  color: #1b696c;
  font-size: 18px;
  margin-left: 15px;
}
.index_page .timeline_table {
  width: 1000px;
  text-align: center;
  margin-top: 38px;
}
.index_page ol.sub_list {
  counter-reset: count;
  list-style: none;
}
.index_page ol.sub_list li {
  counter-increment: count;
  position: relative;
}
.index_page ol.sub_list li::after {
  content: "(" counter(count, lower-alpha) ")";
  position: absolute;
  top: 0;
  left: -20px;
}
.registration_page {
  padding-bottom: 60px;
  padding-top: 0px;
}
.registration_page .tnc_link {
  text-align: center;
  margin-top: 25px;
}
.registration_page .tnc_link a {
  color: #6d6e71;
  text-decoration-line: underline;
  font-weight: bold;
  font-size: 18px;
}
.registration_page .descriptions {
  font-size: 16px;
  color: #4e4e4e;
  margin: 45px 0;
  margin-bottom: 20px;
  max-width: 768px;
  line-height: 24px;
}
#success_page,
#error_page {
  text-align: center;
}
#success_page.form_wrapper,
#error_page.form_wrapper {
  margin-left: 336px;
  margin-right: 336px;
}
#success_page .title,
#error_page .title {
  margin-top: 55px;
  margin-bottom: 55px;
  line-height: 47px;
}
#success_page .success_page_des,
#error_page .success_page_des {
  line-height: 28px;
  font-size: 20px;
}
#success_page {
  display: none;
}
#success_page .please_print {
  font-size: 18px;
  line-height: 1.5;
  padding: 10px;
  color: #275ca3;
  font-weight: bold;
  margin-top: 10px;
}
#success_page a {
  text-decoration: none;
}
#success_page .confirmationSubmitDetail {
  margin-left: 50px;
  margin-right: 50px;
}
#success_page .title {
  margin-bottom: 51px;
}
@media (max-width: 767px) {
  .header_wrapper {
    height: 60px;
    margin-left: 20px;
    margin-right: 19px;
  }
  .header_left img {
    width: 145px;
  }
  .header_left .register_btn {
    display: none;
  }
  .banner_wrapper {
    padding-top: 60px;
  }
  .index_page {
    padding-top: 60px;
  }
  .index_page .title {
    font-size: 24px;
  }
  .index_page .subtitle {
    font-size: 18px;
  }
  .index_page .prize_panel .title {
    font-size: 24px;
  }
  .documents_wrapper {
    flex-direction: column;
  }
  .faq_page,
  .registration_page {
    width: 100%;
    min-height: 100vh;
  }
  .faq_page .title,
  .registration_page .title {
    font-size: 24px;
  }
  .lang_btn {
    font-size: 16px;
    padding: 5px 10px;
  }
  .faq_btn {
    font-size: 16px;
    margin-right: 40px;
  }
  .page_wrapper {
    margin-left: 20px;
    margin-right: 20px;
  }
  .page_wrapper .title {
    font-size: 24px;
  }
  .form_wrapper {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 30px;
  }
  .form_wrapper .form_input_wrapper {
    margin-right: 0;
    margin-top: 24px;
  }
  .form_wrapper .form_input_wrapper input {
    font-size: 14px;
  }
  .form_wrapper .form_input_wrapper .subtitle {
    font-size: 14px;
  }
  .form_wrapper .title,
  .form_wrapper .success_page_des,
  .form_wrapper .please_print,
  .form_wrapper .success_page_footer {
    margin-left: 20px;
    margin-right: 18px;
  }
  .form_wrapper .mobile-number-field,
  .form_wrapper .hkid-field {
    margin: 0 auto;
    width: 240px;
  }
  #success_page,
  #error_page {
    padding: 0px 0;
    margin: 0 10px;
    margin-top: 40px;
  }
  #success_page .title,
  #error_page .title {
    font-size: 24px;
    line-height: 30px;
    margin-top: 18px;
    margin-bottom: 50px;
  }
  #success_page.form_wrapper,
  #error_page.form_wrapper {
    margin-left: 0px;
    margin-right: 0px;
  }
  #success_page .confirmationSubmitDetail,
  #error_page .confirmationSubmitDetail {
    margin-left: 0px;
    margin-right: 0px;
  }
  .registration_page {
    padding-top: 0px;
  }
  .registration_page footer {
    padding-top: 84px;
  }
  .registration_page .title {
    margin-bottom: 30px;
  }
  .modal .modal-body .modal-title {
    font-size: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .modal .modal-body {
    padding-left: 0px;
    padding-right: 0px;
  }
  .modal .modal-body .modal-inner-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }
  .modal-message {
    padding-left: 12px;
    padding-right: 12px;
  }
  .modal .modal-body .modal-btn {
    margin-top: 40px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
  .modal .modal-body .modal-btn button {
    margin: 15px auto;
    display: block;
    width: 265px;
    padding-left: 0;
    padding-right: 0;
  }
  footer.index_footer {
    padding-bottom: 100px;
    line-height: 30px;
  }
  footer.index_footer .bold_words {
    display: block;
  }
  .faq_page .page_wrapper,
  .tnc_page .page_wrapper,
  .data_privacy_page .page_wrapper {
    padding: 0;
  }
}
@media print {
  .registration_page {
    padding-top: 60px;
  }
  #success_page .title,
  #error_page .title {
    margin: 0;
  }
  #success_page,
  #error_page {
    padding-top: 0;
    padding-bottom: 0;
  }
  .submit-information-container {
    margin-top: 10px;
  }
  .documents_wrapper {
    display: none;
  }
}
