@charset "UTF-8";
.info-box {
  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;
}
.info-box * {
  color: #373f57;
}
@media all and (max-width: 539px) {
  .info-box {
    margin: unset;
  }
}
.info-box h4 {
  font-weight: bold;
  margin-bottom: 8px;
}
.info-box .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 30px;
  width: 100%;
  z-index: 1;
  overflow-x: hidden;
  overflow-y: auto;
}
.info-box .options::-webkit-scrollbar {
  width: 6px;
}
.info-box .options::-webkit-scrollbar-track {
  background-color: transparent;
}
.info-box .options::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #b7b7b7;
}
.info-box .options::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.info-box .options .flex-col {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: calc(50% - 15px);
  gap: 20px;
}
@media all and (max-width: 539px) {
  .info-box .options .flex-col {
    max-width: unset;
  }
}
.info-box .options .flex-col.disabled {
  opacity: 0.3;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.info-box .options .flex-col .option-headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 15px;
  font-weight: 600;
}
.info-box .options .flex-col .check-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media all and (max-width: 539px) {
  .info-box .options .flex-col .check-col::after {
    content: "";
    min-width: 150px;
  }
}
.info-box .options .flex-col .check-col input[type=checkbox] {
  position: relative;
  margin: 0px;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: -webkit-box-shadow 200ms linear;
  transition: -webkit-box-shadow 200ms linear;
  transition: box-shadow 200ms linear;
  transition: box-shadow 200ms linear, -webkit-box-shadow 200ms linear;
}
.info-box .options .flex-col .check-col input[type=checkbox]::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  background: url(../../shop/img/icon_circle_check_grey.svg) no-repeat;
}
.info-box .options .flex-col .check-col input[type=checkbox]:checked::before {
  background: url(../../shop/img/icon_circle_check_white.svg) no-repeat;
}
.info-box .options .flex-col .check-col .op-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .info-box .options .flex-col .check-col .op-box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.info-box .options .flex-col .check-col .op-box:last-child {
  margin-bottom: unset;
}
.info-box .options .flex-col .check-col .op-box #adapter_input,
.info-box .options .flex-col .check-col .op-box .adapter_input {
  margin-left: 6px;
  padding: 4px;
  width: 60px;
  height: 100%;
  text-align: center;
}
.info-box .options .flex-col .check-col .op-box #adapter_input::-webkit-input-placeholder, .info-box .options .flex-col .check-col .op-box .adapter_input::-webkit-input-placeholder {
  font-size: 14px;
}
.info-box .options .flex-col .check-col .op-box #adapter_input::-moz-placeholder, .info-box .options .flex-col .check-col .op-box .adapter_input::-moz-placeholder {
  font-size: 14px;
}
.info-box .options .flex-col .check-col .op-box #adapter_input:-ms-input-placeholder, .info-box .options .flex-col .check-col .op-box .adapter_input:-ms-input-placeholder {
  font-size: 14px;
}
.info-box .options .flex-col .check-col .op-box #adapter_input::-ms-input-placeholder, .info-box .options .flex-col .check-col .op-box .adapter_input::-ms-input-placeholder {
  font-size: 14px;
}
.info-box .options .flex-col .check-col .op-box #adapter_input::placeholder,
.info-box .options .flex-col .check-col .op-box .adapter_input::placeholder {
  font-size: 14px;
}
.info-box .options .flex-col .check-col .op-box .option-label:hover {
  -webkit-transition: none;
  transition: none;
  border: 1px solid #2755f9;
}
.info-box .options .flex-col .check-col .op-box label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 10px 8px;
  height: 44px;
  background: #f4f6fb;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.info-box .options .flex-col .check-col .op-box label.checked {
  background: #2755f9;
}
.info-box .options .flex-col .check-col .op-box label.checked .option-text * {
  color: #fff !important;
}
.info-box .options .flex-col .check-col .op-box label.checked .option-text .option-title {
  font-weight: 500;
}
.info-box .options .flex-col .check-col .op-box label.checked .option-text .option-price,
.info-box .options .flex-col .check-col .op-box label.checked .option-text .variable {
  font-weight: 400;
}
.info-box .options .flex-col .check-col .op-box label.checked .option-text .variable-box .variable {
  font-weight: 400;
}
.info-box .options .flex-col .check-col .op-box label .check-tooltip {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 50px 40px;
  max-width: 480px;
  width: calc(100% - 60px);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  text-align: left;
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 16px 40px rgba(112, 144, 176, 0.2);
          box-shadow: 0px 16px 40px rgba(112, 144, 176, 0.2);
  border-radius: 24px;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.info-box .options .flex-col .check-col .op-box label .check-tooltip.show {
  visibility: visible;
  opacity: 1;
}
.info-box .options .flex-col .check-col .op-box label .check-tooltip .option-title {
  font-size: 20px;
  font-weight: 600;
}
.info-box .options .flex-col .check-col .op-box label .check-tooltip ul li,
.info-box .options .flex-col .check-col .op-box label .check-tooltip ul p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8em;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}
.info-box .options .flex-col .check-col .op-box label .check-tooltip ul li {
  margin-left: 15px;
  text-indent: -17px;
  list-style: none;
}
.info-box .options .flex-col .check-col .op-box label .check-tooltip ul li::before {
  content: "•";
  margin-right: 10px;
  font-weight: 500;
  vertical-align: top;
}
.info-box .options .flex-col .check-col .op-box label .check-tooltip ul p {
  display: inline-block;
  width: calc(100% - 15px);
  text-indent: 0;
}
.info-box .options .flex-col .check-col .op-box label .check-tooltip ul img {
  width: 100%;
  max-width: 160px;
  border-radius: 10px;
}
.info-box .options .flex-col .check-col .op-box label .check-tooltip .btn-close {
  position: absolute;
  display: none;
  top: 10px;
  right: 10px;
  padding: 10px;
  cursor: pointer;
}
@media all and (max-width: 767px) {
  .info-box .options .flex-col .check-col .op-box label .check-tooltip .btn-close {
    display: block;
  }
}
.info-box .options .flex-col .check-col .op-box label .check-tooltip .btn-close img {
  width: 16px;
}
.info-box .options .flex-col .check-col .op-box label .option-text {
  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;
  width: 100%;
}
.info-box .options .flex-col .check-col .op-box label .option-text .option-title {
  font-size: 14px;
  font-weight: 600;
}
.info-box .options .flex-col .check-col .op-box label .option-text .option-price {
  font-size: 14px;
  font-weight: 500;
  color: #2755f9;
}
.info-box .options .flex-col .check-col .op-box label .option-text .variable-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.info-box .options .flex-col .check-col .op-box label .option-text .variable-box .variable {
  font-size: 14px;
  font-weight: 500;
  color: #2755f9;
}
.info-box .options .flex-col .check-col .op-box .btn-help {
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.info-box .options .flex-col .check-col .op-box .btn-help img {
  width: 20px;
}
.info-box .options .flex-col .check-col .op-box:has(input[type=checkbox]:disabled) {
  opacity: 0.3;
  pointer-events: none;
}
.info-box .options .flex-col .insurance-wrap {
  display: none;
  width: 100%;
}
.info-box .options .flex-col .insurance-wrap .insurance-con {
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e1e5ef;
}
@media screen and (max-width: 719px) {
  .info-box .options .flex-col .insurance-wrap .insurance-con {
    padding: 20px;
  }
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-detail-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 719px) {
  .info-box .options .flex-col .insurance-wrap .insurance-con .insurance-detail-con {
    gap: 20px;
  }
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-detail-con .insurance-tit-con {
  text-align: center;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-detail-con .insurance-tit-con .sub-tit {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4em;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-detail-con .insurance-tit-con .tit {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-detail-con .insurance-tit-con .tit b {
  font-weight: 600;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-reg-check-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-reg-check-con .insurance-reg-check {
  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: 10px;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-reg-check-con .insurance-reg-check span {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.04em;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 320px) {
  .info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-reg-check-con .insurance-reg-check {
    font-size: 13px;
  }
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-reg-check-con .insurance-reg-check input[type=checkbox] {
  margin: 0;
  padding: 0;
  min-width: 20px;
  max-width: 20px;
  width: 20px;
  height: 20px;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-reg-check-con .insurance-reg-check .i-check {
  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;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1.5px #bbc1d0;
          box-shadow: 0 0 0 1.5px #bbc1d0;
  -webkit-transition: -webkit-box-shadow 200ms linear;
  transition: -webkit-box-shadow 200ms linear;
  transition: box-shadow 200ms linear;
  transition: box-shadow 200ms linear, -webkit-box-shadow 200ms linear;
  cursor: pointer;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-reg-check-con .insurance-reg-check .i-check svg {
  -webkit-transform: translateY(0.5px);
          transform: translateY(0.5px);
  opacity: 0;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-reg-check-con .insurance-reg-check .i-check svg path {
  stroke: var(--this-page-color);
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-reg-check-con .insurance-reg-check input:checked + .i-check {
  -webkit-box-shadow: 0 0 0 1.5px var(--this-page-color);
          box-shadow: 0 0 0 1.5px var(--this-page-color);
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-reg-check-con .insurance-reg-check input:checked + .i-check svg {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-reg-check-con .insurance-reg-check:hover .i-check {
    -webkit-box-shadow: 0 0 0 1.5px var(--this-page-color);
            box-shadow: 0 0 0 1.5px var(--this-page-color);
  }
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e1e5ef;
  width: 100%;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table.m {
  display: none;
}
@media screen and (max-width: 719px) {
  .info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table.pc {
    display: none;
  }
  .info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table.m {
    display: block;
  }
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table {
  margin: 0;
  border: 0;
  border-spacing: 0;
  width: 100%;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table tr th,
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table tr td {
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table tr th {
  background-color: #f4f6fb;
  border-right: 1px solid;
  padding: 10px;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table tr td {
  border-right: 1px solid;
  padding: 16px;
}
@media screen and (max-width: 719px) {
  .info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table tr td {
    padding: 10px;
  }
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table tr th,
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table tr td {
  border-color: #e1e5ef;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table tr th:last-child,
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table tr td:last-child {
  border-right: 0;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table tr:last-child th,
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table table tr:last-child td {
  border-bottom: 0;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table .num-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table .num-ul li {
  list-style: decimal;
  list-style-position: inside;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
  text-indent: -1em;
  margin-left: 1em;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table .td-price span {
  font-weight: 600;
  color: var(--this-page-color);
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-reg-con .insurance-surmmary-table .td-price .chn-except-country-notice {
  font-size: 13px;
  line-height: 1.2em;
  font-weight: 400;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-price-notice {
  margin-top: 10px;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-price-notice li {
  list-style: disc;
  list-style-position: inside;
  text-indent: -1.4em;
  margin-left: 1.4em;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4em;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-terms-wrap {
  overflow-y: auto;
  border-radius: 10px;
  border: 1px solid #e1e5ef;
  margin: 20px 0 30px;
  max-height: 40vh;
  overflow-y: auto;
}
@media screen and (max-width: 719px) {
  .info-box .options .flex-col .insurance-wrap .insurance-con .insurance-terms-wrap {
    margin-bottom: 20px;
  }
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-terms-wrap h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 30px 16px 0;
  text-align: center;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-terms-wrap .insurance-terms-con {
  padding: 20px 16px;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-terms-wrap .insurance-terms-con ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-terms-wrap .insurance-terms-con ul li {
  margin-left: 20px;
  text-indent: -20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4em;
}
.info-box .options .flex-col .insurance-wrap .insurance-con .insurance-terms-wrap .insurance-terms-con ul li::before {
  content: "•";
  margin-left: 5px;
  margin-right: 10px;
}
.info-box .rocket-growth {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid var(--BG-G, #e1e5ef);
  background: #fff;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .info-box .rocket-growth {
    width: 100% !important;
    margin: 20px 0;
  }
}
.info-box .rocket-growth > img {
  width: 130px;
  -ms-flex-item-align: start;
      align-self: start;
}
@media (min-width: 0px) and (max-width: 1439px) {
  .info-box .rocket-growth > img {
    width: auto;
  }
}