.Form {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  display: flex;
  box-sizing: border-box;
}

.Form .Checkbox {
  height: 32px;
  display: inline-flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.252px;
  cursor: pointer;
  padding-left: 32px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: fit-content;
}

.Form .Checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.Form .checkmark {
  position: absolute;
  top: 4px;
  left: 0px;
  height: 24px;
  width: 24px;
  border: 2px solid var(--Primary600);
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
}

.Form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}


.Form .Checkbox:hover input[type="checkbox"]~.checkmark {
  background-color: var(--Gray50);
}

.Form .Checkbox input[type="checkbox"]:checked~.checkmark {
  background-color: var(--Primary600);
}

.Form .Checkbox input[type="checkbox"]:checked~.checkmark:after {
  display: block;
}

.Form .Checkbox .checkmark:after {
  content: url('../../images/icon_checked.svg');
}

.Form .Radio {
  height: 32px;
  display: inline-flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.252px;
  cursor: pointer;
  padding-left: 32px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.Form .Radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.Form .radiomark {
  position: absolute;
  top: 4px;
  left: 0px;
  height: 24px;
  width: 24px;
  border: 2px solid var(--Primary600);
  box-sizing: border-box;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}

.Form .radiomark:after {
  content: "";
  position: absolute;
  display: none;
}

.Form .Radio:hover input[type="radio"]~.radiomark {
  background-color: var(--Gray50);
}

.Form .Radio input[type="radio"]:checked~.radiomark {
  background-color: white;
}

.Form .Radio input[type="radio"]:checked~.radiomark:after {
  display: block;
}

.Form .Radio .radiomark:after {
  width: 16px;
  height: 16px;
  align-self: center;
  border-radius: 50%;
  background: var(--Primary600);
}

.Form_Header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.Form_Container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 48px;
  border-radius: 12px;
  border: 2px solid var(--Gray300);
  gap: 48px;
  box-sizing: border-box;
}

.Form_Container .Section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}

.Form_Container .Section .Title {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.Form_Container .Section .ColumnLayout {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.Form_Container .Section .RowLayout {
  display: inline-flex;
  gap: 12px;
  box-sizing: border-box;
}

.Form_Container .Section .GridLayout {
  display: grid;
  grid-template-columns: 195px 1fr;
  grid-gap: 10px;
  align-items: center;
}

.Form_Container .Section .RowItemHeight {
  height: 56px;
}

.Form_Container .Section .RowItemAlign {
  align-items: center;
}

.Form_Container .Section .Body {
  width: 100%;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.252px;
  box-sizing: border-box;
}

.Form_Container .Section .Checkboxes {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
  color: var(--Gray900);
  column-gap: 24px;
  row-gap: 12px;
}

.Form_Container .Section .RowLayout .Text {
  display: inline-flex;
  color: var(--Gray900);
  font-size: 1.25em;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.28px;
  box-sizing: border-box;
}

.Form_Container .Section .RowLayout .AddressFieldText{
  padding-top: 10px;
}

.Form_Container .RadioSet {
  flex: 1;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.252px;
  box-sizing: border-box;
  color: var(--Gray900);
}

.Form_Container .Input {
  flex: 1 1 auto;
  height: 56px;
  min-width: 180px;
  padding: 12px 24px 12px 24px;
  color: var(--Gray900);
  font-size: 1.125rem;
  line-height: 28.8px;
  letter-spacing: 0.252px;
  border: 2px solid var(--Gray300);
  border-radius: 8px;
  box-sizing: border-box;
}

.Form_Container .Input:focus {
  border-color: var(--Primary600);
  outline: none;
}

.Form_Container .Input:disabled {
  background-color: #F3F4F6;
  border-color: #D1D5D8;
  color: #6B7280;
  cursor: not-allowed;
  opacity: 1.0;
}

.Form_Container .Input::placeholder {
  color: var(--Gray500);
  font-weight: 400;
  opacity: 1;
  font-family: "Noto Sans TC", sans-serif;
}

.Form_Container .Section .RowLayout .Dropdown {
  height: 56px;
  flex: 1;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  color: var(--Gray900);
}

.Form_Container .Section .RowLayout .Dropdown .Arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.Form_Container .Section .RowLayout .Dropdown .Select {
  height: 56px;
  width: 100%;
  padding: 0px 60px 0px 24px;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 27px;
  font-family: "Noto Sans TC", sans-serif;
  box-sizing: border-box;
  background-color: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--Gray500);
  border: 2px solid var(--Gray300);
  border-radius: 8px;
  cursor: pointer;
}

.Form_Container .Section .RowLayout .Dropdown .Select option {
  color: var(--Gray900);
}

.Form_Container .Section .ColumnLayout .Label {
  width: 100%;
  height: 27px;
  display: inline-flex;
  gap: 8px;
  box-sizing: border-box;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 27px;
  color: var(--Gray900);
  padding: 0px 0px 0px 192px;
}

.Form_Container .Table {
  border-radius: 8px;
  box-sizing: border-box;
  border-collapse: collapse;
}

.Form_Container .Table_Header_Row {
  height: 56px;
  border-color: var(--Gray300);
  box-sizing: border-box;
}

.Form_Container .Table_Header {
  height: 100%;
  border: 1px solid var(--Gray300);
  padding: 12px 16px 12px 16px;
  gap: 8px;
  box-sizing: border-box;
}

.Form_Container .FirstColumn {
  min-width: 240px;
  max-width: 240px;
  flex: 0 1 auto;
}

.Form_Container .WidthAutoMobileFull {
  width: auto !important;
}

.d-none {
  display: none;
}

@media (max-width: 1200px) {}

@media (max-width: 767px) {
  .Form_Container {
    border: 0;
    padding: 0;
  }

  .Form_Container .Section .RowLayout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .Form_Container .Section .GridLayout {
    grid-template-columns: auto;
  }

  .Form_Container .Section .RowItemHeight {
    height: auto;
  }

  .Form_Container .Section .RowItemAlign {
    align-items: flex-start;
  }

  .Form_Container .RadioSet {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .Form_Container .Input {
    width: 100%;
  }

  .Form_Container .Section .RowLayout .Dropdown {
    width: 100%;
  }

  .Form_Container .WidthAutoMobileFull {
    width: 100% !important;
  }

  .Form_Container .Section .Checkboxes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .Form_Container .FirstColumn {
    min-width: 164px;
    max-width: 240px;
    flex: 999 1 auto;
  }

}
