@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --light-1: #fff;
  --light-2: #c3c3c3;
  --light-3: #d1d1d1;
  --light-4: #dfdfdf;
  --gray-1: #5f5f5f;
  --gray-2: #989898;
  --gray-3: #838383;
  --gray-4: #b8b8b8;
  --dark-1: #000;
  --dark-2: #15181e;
  --blue-1: #212b3b;
  --blue-2: #375682;
  --gold-1: #fde59f;
  --orange-1: #ee5d22;
  --red-1: #e4636f;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC";
  font-weight: 400;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  position: relative;
  height: 100%;
  margin: 0;
}

body {
  counter-reset: section;
  background: var(--blue-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

nav {
  width: 100%;
  background: var(--light-1);
  padding: 12px 20px;
}

nav .navContainer {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .logo {
  max-width: 200px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  nav .logo {
    max-width: 126px;
  }
}

nav .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  nav .navbar {
    display: none;
  }
}

nav .navbar a {
  color: var(--dark-1);
  text-decoration: none;
}

nav .rightItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .rightItems .shopCart a svg {
  margin-top: 4px;
}

nav .rightItems .mobileBar {
  margin-left: 20px;
  display: none;
  position: relative;
}

@media screen and (max-width: 768px) {
  nav .rightItems .mobileBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

nav .rightItems .mobileBar .close {
  border: none;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobileLink {
  position: absolute;
  left: 0;
  top: 61px;
  width: 100%;
  background: var(--light-1);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 30px 8px 30px;
}

.mobileLink a {
  color: var(--dark-1);
  text-decoration: none;
  padding: 12px 0px;
  border-bottom: 1px solid var(--gray-4);
}

.mobileLink a:last-child {
  border-bottom: none;
}

.mainContainer {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(33, 43, 59, 0.94))), url("../imgs/bg.svg");
  background-image: linear-gradient(0deg, rgba(33, 43, 59, 0.94)), url("../imgs/bg.svg");
  background-repeat: repeat;
  background-size: auto;
  background-position: left;
}

.mainContainer .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 26px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  min-height: 400px;
}

@media screen and (max-width: 768px) {
  .mainContainer .container {
    padding: 20px 15px;
  }
}

.mainContainer .container .lightUpBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}

.mainContainer .container .lightUpBar h1 {
  color: var(--light-1);
  font-size: 22px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .mainContainer .container .lightUpBar h1 {
    font-size: 18px;
  }
}

.mainContainer .container .lightUpBar a {
  text-decoration: none;
}

.mainContainer .container h1 {
  color: var(--light-1);
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}

footer {
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9))), url("../imgs/bg.svg");
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.9)), url("../imgs/bg.svg");
  background-repeat: repeat;
  background-size: auto;
  background-position: left center;
  padding: 40px 25px;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 24px 25px;
  }
}

footer .footerContainer {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

@media screen and (max-width: 768px) {
  footer .footerContainer {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

footer .footerContainer .footerCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footerContainer .footerCard .title {
  color: var(--light-1);
  font-weight: 500;
  margin-bottom: 12px;
}

footer .footerContainer .footerCard .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}

footer .footerContainer .footerCard .content p {
  color: var(--light-2);
  margin: 0;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  footer .footerContainer .footerCard .content p {
    font-size: 15px;
  }
}

footer .footerContainer .footerCard .content .socialIcon {
  border-radius: 100%;
  border: 1px solid var(--light-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  aspect-ratio: 1/1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkboxItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.btn {
  border: none;
  padding: 6px 10px;
  color: var(--light-1);
  background: var(--blue-2);
  display: block;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: 14px;
  }
}

.btn.orange {
  background: var(--orange-1);
}

.btn.blue {
  background: var(--blue-1);
}

.btn.white {
  background: var(--light-1);
  color: var(--dark-1);
  border: 1px solid var(--dark-1);
}

.btn.formBtn {
  font-size: 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 20px;
}

@media screen and (max-width: 768px) {
  .btn.formBtn {
    font-size: 15px;
  }
}

.btn.right {
  margin: 0 0 0 auto;
}

.btn.middle {
  margin: 0 auto;
}

a.btn {
  display: block;
  text-decoration: none;
}

.calendarHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calendarHeader .currentDate {
  font-size: 22px;
  color: var(--light-1);
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
}

.calendarHeader .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.calendarHeader .icons .materialSymbolsRounded {
  border: 1px solid var(--light-2);
  border-radius: 100%;
  width: 26px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.calendar {
  margin-bottom: 50px;
}

.calendar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  text-align: center;
}

.calendar li {
  color: var(--gray-1);
  width: calc(100% / 7);
}

@media screen and (max-width: 768px) {
  .calendar li {
    font-size: 12px;
  }
}

.calendar .weeks li {
  color: var(--light-1);
  padding: 6px 8px;
  background: var(--dark-2);
  font-size: 15px;
}

.calendar .days li {
  padding: 13px 0px;
  aspect-ratio: 2/1.75;
  border: 1px solid var(--light-3);
  position: relative;
}

@media screen and (max-width: 768px) {
  .calendar .days li {
    padding: 5px 0px;
    aspect-ratio: 1/1.75;
  }
}

@media screen and (max-width: 360px) {
  .calendar .days li {
    aspect-ratio: 1/2.75;
  }
}

.calendar .days li .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.calendar .days li .date p {
  font-size: 14px;
  width: 26px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .calendar .days li .date p {
    font-size: 12px;
  }
}

.calendar .days li .date span {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .calendar .days li .date span {
    font-size: 12px;
  }
  .calendar .days li .date span:last-child {
    display: none;
  }
}

.calendar .days li .content {
  font-size: 14px;
  background: var(--gold-1);
  max-width: 70px;
  width: 100%;
  border-radius: 3.278px;
  padding: 5px 0px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 60%;
}

@media screen and (max-width: 768px) {
  .calendar .days li .content {
    font-size: 12px;
  }
}

.calendar .days li.inactive {
  background: var(--light-4);
  color: var(--gray-2);
}

.calendar .days li.inactive .content {
  background: transparent;
}

.calendar .days li.today .date p {
  color: var(--light-1);
  background: var(--dark-1);
  border-radius: 100%;
  width: 26px;
  aspect-ratio: 1/1;
  padding: 2px 0px 2px 0px;
}

.calendar .days li.active {
  cursor: pointer;
  background: var(--light-1);
}

.calendar .days li.active .content {
  color: var(--dark-1);
}

.heroBanner {
  aspect-ratio: 1/0.215;
  height: auto;
  background-image: url("../imgs/hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--light-1);
  font-size: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 768px) {
  .heroBanner {
    aspect-ratio: 1 / 0.45;
    font-size: 26px;
  }
}

.heroBanner p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.heroBanner p a {
  font-size: 14px;
  color: inherit;
  text-decoration: none;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 25px;
  width: 100%;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form.small {
  max-width: 335px;
}

.form .formInput .formLabel {
  position: relative;
  display: block;
  margin-bottom: 5px;
  color: var(--light-1);
}

.form .formInput .formLabel span.required {
  color: var(--red-1);
  font-weight: 500;
  font-size: 15px;
}

.form .formInput .customInput {
  width: 100%;
  background: var(--light-1);
  padding: 8px 12px;
  color: var(--dark-1);
}

.form .formInput .customInput:focus {
  outline: none;
}

.form .formInput .customInput.priceInput {
  min-width: 90px;
  margin: 0 10px 0 -10px;
  height: 32px;
}

.form .formInput .customInput:disabled {
  background: #ddd;
}

.form .formInput textarea {
  resize: none;
  height: 85px;
}

.form .singleInput {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.form .singleInput.halfInput {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 15px);
          flex: 0 0 calc(50% - 15px);
}

.desktopTable {
  width: 100%;
  border-collapse: collapse;
}

@media screen and (max-width: 768px) {
  .desktopTable {
    display: none;
  }
}

.desktopTable tr th,
.desktopTable tr td {
  text-align: start;
  color: #fff;
  padding: 10px 20px;
  vertical-align: top;
  border-bottom: 1px solid #6a6a6a;
}

.desktopTable tr th {
  background: #0c1625;
}

.desktopTable tr td {
  padding: 20px;
}

.desktopTable tr td a {
  text-decoration: none;
  color: var(--gold-1);
}

.desktopTable tbody tr:last-child td {
  border-bottom: none;
}

.mobileTable {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobileTable {
    display: block;
  }
}

.mobileTable .tableCard {
  padding: 10px 18px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.mobileTable .tableCard:last-child {
  margin-bottom: 0;
}

.mobileTable .tableCard .tableList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  margin-bottom: 10px;
}

.mobileTable .tableCard .tableList:last-child {
  margin-bottom: 0;
}

.mobileTable .tableCard .tableList .labe,
.mobileTable .tableCard .tableList .text {
  font-size: 15px;
}

.mobileTable .tableCard .tableList .label {
  -ms-flex-preferred-size: 130px;
      flex-basis: 130px;
}

.mobileTable .tableCard .tableList .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.mobileTable .tableCard .tableList .text a {
  text-decoration: none;
  color: var(--gold-1);
}

.pagination {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
}

.pagination .pageItem {
  width: 37px;
  height: 38px;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  font-size: 15px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.pagination .pageItem.active {
  background-color: #ee5d22;
}

.pagination span {
  color: #fff;
}

.recordDetail {
  margin-bottom: 30px;
}

.recordDetail .detailTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid var(--gray-3);
  padding-bottom: 20px;
  gap: 20px;
}

.recordDetail .detailTitle p {
  color: var(--light-1);
}

.recordDetail .detailTable .tableTitle,
.recordDetail .detailTable .tableContent {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  border-bottom: 1px solid var(--gray-3);
  padding: 10px;
}

.recordDetail .detailTable .tableTitle p,
.recordDetail .detailTable .tableContent p {
  color: var(--light-1);
  text-align: center;
}

.recordDetail .detailTable .tableTitle p:first-child,
.recordDetail .detailTable .tableContent p:first-child {
  text-align: left;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}

.recordDetail .detailTable .tableTitle p:nth-child(2),
.recordDetail .detailTable .tableContent p:nth-child(2) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-column: 4/6;
}

.recordDetail .detailTable .tableTitle p:last-child,
.recordDetail .detailTable .tableContent p:last-child {
  -ms-grid-column: 6;
  -ms-grid-column-span: 2;
  grid-column: 6/8;
}

.recordDetail .detailTable .tableContent {
  padding: 30px 10px;
}

.recordDetail .detailTable.shopCart .tableTitle,
.recordDetail .detailTable.shopCart .tableContent {
  -ms-grid-columns: (1fr)[9];
      grid-template-columns: repeat(9, 1fr);
}

.recordDetail .detailTable.shopCart .tableTitle p:first-child,
.recordDetail .detailTable.shopCart .tableContent p:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}

.recordDetail .detailTable.shopCart .tableTitle p:nth-child(2),
.recordDetail .detailTable.shopCart .tableContent p:nth-child(2) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-column: 4/6;
}

.recordDetail .detailTable.shopCart .tableTitle p:nth-child(3),
.recordDetail .detailTable.shopCart .tableContent p:nth-child(3) {
  -ms-grid-column: 6;
  -ms-grid-column-span: 3;
  grid-column: 6/9;
}

.recordDetail .detailTable.shopCart .tableTitle p:last-child,
.recordDetail .detailTable.shopCart .tableContent p:last-child {
  -ms-grid-column: 9;
  -ms-grid-column-span: 1;
  grid-column: 9/10;
}

.recordDetail .detailTable.shopCart .tableTitle svg,
.recordDetail .detailTable.shopCart .tableContent svg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 7px;
}

.recordDetail .detailContent {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 600px) {
  .recordDetail .detailContent {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.recordDetail .detailContent .info p,
.recordDetail .detailContent .price p {
  color: var(--light-1);
  margin-bottom: 20px;
}

.recordDetail .detailContent .info p:last-child,
.recordDetail .detailContent .price p:last-child {
  margin-bottom: 0;
}

.recordDetail .detailContent .info h2,
.recordDetail .detailContent .price h2 {
  color: var(--light-1);
  font-size: 18px;
  margin: 30px 0px;
}

.recordDetail .detailContent .price p {
  padding: 20px 10px;
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.recordDetail .detailContent .price span {
  color: var(--gold-1);
  font-size: 20px;
}

.recordDetail .detailContent .price hr {
  border: none;
  border-top: 1px solid var(--gray-3);
}

.success {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-bottom: 70px;
}

.success h1 {
  font-size: 30px !important;
  margin-bottom: 0px !important;
}

.success svg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.success p {
  color: var(--light-1);
}

.success p a {
  color: var(--gold-1);
  text-decoration: none;
}

.popupOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 999;
}

.popupOverlay .popupModal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 600px;
  width: 100%;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .popupOverlay .popupModal {
    max-width: 91%;
  }
}

.popupOverlay .popupModal .popupContent {
  position: relative;
  margin: 0 auto;
  background: var(--light-1);
  -webkit-box-shadow: 0px 6px 8px 5px rgba(167, 167, 167, 0.2);
          box-shadow: 0px 6px 8px 5px rgba(167, 167, 167, 0.2);
}

.popupOverlay .popupModal .popupContent .button {
  border: none;
  background: transparent;
  position: absolute;
  top: 20px;
  right: 17px;
  z-index: 2;
}

.popupOverlay .popupModal .popupContent .header {
  padding: 14px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #dddddd;
}

.popupOverlay .popupModal .popupContent .header button {
  border: none;
  background: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.popupOverlay .popupModal .popupContent .content .main {
  padding: 20px 20px 30px 20px;
}

.popupOverlay .popupModal .popupContent .content .main .note {
  color: #3a4c61;
  font-size: 14px;
}

.popupOverlay .popupModal .popupContent .content .footer {
  border-top: 1px solid #dddddd;
  padding: 20px;
}

.popupOverlay .popupModal .popupContent .small {
  padding: 30px 0px;
}

.popupOverlay .popupModal .popupContent .small p {
  text-align: center;
}

.btnGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.btnGroup .btn {
  max-width: 190px;
  width: 100%;
}

.radioItem {
  position: relative;
  margin-right: 0.75rem;
  margin-bottom: 15px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.radioItem:last-child {
  margin-right: 0px;
  margin-bottom: 0px;
}

.radioItem input[type="radio"] {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
}

.radioItem label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
}

.radioItem label:before {
  position: relative;
  top: 4px;
  margin-right: 0.75rem;
  display: inline-block;
  height: 18px;
  width: 18px;
  border-radius: 9999px;
  border-width: 1px;
  border: 1px solid var(--gray-3);
  content: "";
}

.radioItem input[type="radio"]:checked + label:after {
  position: absolute;
  left: 5px;
  top: 9px;
  display: block;
  height: 10px;
  width: 10px;
  border-radius: 9999px;
  background: var(--blue-1);
  content: "";
}

.chooseDate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.chooseDate input {
  padding: 7px 10px;
  font-size: 15px;
  background: var(--light-1);
  color: var(--dark-1);
  border: 1px solid var(--gray-3);
  max-width: 250px;
  width: 100%;
}

.chooseDate input:focus {
  outline: none;
}
/*# sourceMappingURL=all.css.map */