.breadcrumb {
  border-bottom: 1px solid #e6e6e6;
  background: #f8f9fa;
}

.breadcrumb ul {
  max-width: 1680px;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 2vw;
  box-sizing: border-box;
}

.breadcrumb li {
  position: relative;
  min-width: 210px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-right: 1px solid #e6e6e6;
  cursor: pointer;
  transition: background-color 0.2s;
}

.breadcrumb .icon-arrow-right {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}

.breadcrumb li.home {
  min-width: auto;
  border-left: 1px solid #e6e6e6;
}

.breadcrumb li.home a {
  font-size: 0;
  width: 20px;
  height: 20px;
  background: url('../../../../images/react/icon/ico_home.svg') center no-repeat;
  background-size: cover;
}

.breadcrumb li.active {
  background: var(--color-white);
}

.breadcrumb .page__link__box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: translateY(-10px);
  max-height: 0;
  display: flex;
  flex-direction: column;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: #f8f9fa;
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease,
    visibility 0.3s ease;
}

.breadcrumb li.active .page__link__box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
  overflow-y: auto;
}

.breadcrumb .page__link__box a {
  padding: 17px 16px;
  font-weight: var(--font-weight-medium);
  color: #606060;
  text-decoration: none;
  border-bottom: 1px solid #e6e6e6;
  transition: background-color 0.2s;
}

.breadcrumb .page__link__box a:last-child {
  border-bottom: none;
}

.breadcrumb .page__link__box a:hover,
.breadcrumb .page__link__box a.active {
  color: var(--primary-300);
  background-color: #edf4fe;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 1680px;
  width: 100%;
  min-height: calc(100vh - 542px);
  margin: 40px auto 0;
  /* padding: 0 12px; */
  padding: 0 2vw;
  box-sizing: border-box;
}

.container__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.container__header span {
  font-family: "GMarketSans";
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  color: var(--primary-300);
}

.container__header h3 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-family: "GMarketSans";
  font-size: var(--font-size-4xl5);
  font-weight: var(--font-weight-medium);
}

.container__header h3 .mobile__title {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-normal);
  display: none;
}

.container__header h3 .FSU__popup {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  height: 42px;
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-normal);
  color: #000;
  padding: 0 12px 0 18px;
  border-radius: var(--border-radius-full);
  border: 1px solid #e8e8e8;
  background: var(--color-white);
  cursor: pointer;
}

.container__header h3 .FSU__popup i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: url(../../../../images/react/icon/ico_question_mark.svg) center no-repeat;
  background-size: cover;
}

.container__header p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-xs);
  color: #606060;
}

.container__header .caption__list {
  display: flex;
  align-items: center;
  gap: 5px 30px;
  flex-wrap: wrap;
}

.container__header .caption__list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: "Noto Sans KR", sans-serif;
  color: #606060;
}

.container__header .caption__list span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 23px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: var(--font-size-xs);
  padding: 3px 10px;
  border-radius: var(--border-radius-full);
}

.container__header .caption__list span.blue {
  color: var(--primary-300);
  background: #e0ecff;
}

.container__header .caption__list span.red {
  color: var(--error-red);
  background: #ffe9e9;
}

.container__header .caption__list span.green {
  color: #3eae7d;
  background: #defff1;
}

.container__header .caption__list p {
  font-size: var(--font-size-md);
}

.container__header .caption__list li:nth-child(n + 2)::before {
  position: absolute;
  left: -15px;
  content: "";
  display: block;
  width: 1px;
  height: 23px;
  border-left: 1px dashed #d4d4d4;
}

.box__wrap {
  position: relative;
  border-radius: var(--border-radius-3xl);
  background: #fcfcfc;
  box-shadow: 0 3px 0 #c4c4c4 inset, 0 0 8px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.box__wrap.no-bg {
  box-shadow: none;
}

.box__wrap.blue {
  padding: 34px;
  box-shadow: 0 3px 0 #c4d8f9 inset, 0 0 8px 3px rgba(0, 0, 0, 0.05);
}

.box__wrap.none {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.05);
}

.box__wrap h4 {
  font-size: var(--font-size-xl);
}

.box__wrap h4:nth-child(n + 2) {
  margin-top: 27px;
}

.box__wrap h4 strong {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-300);
}

.box__wrap.none > .list__wrap {
  width: 100%;
  margin: 0 auto;
}

.box__wrap.none > .list__wrap ul {
  margin: 0;
}

.box__wrap > .list__wrap .input__group.row {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-grow: 1;
}

.flight__banner {
  display: none;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 30px;
  background: #fcfcfc;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.flight__banner.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.flight__banner span {
  max-width: 197px;
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: var(--border-radius-full);
  border: 1px solid #e9e9e9;
  background: var(--color-white);
}

.flight__banner span img {
  max-height: 28px;
}

.flight__banner p {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-medium);
  color: var(--primary-300);
}

.flight__info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.flight__info__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 90px;
  height: 75px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-white);
  background: var(--color-white);
  box-shadow: 0 0 8px 6px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: border 0.2s;
}

.flight__info__item:hover,
.flight__info__item.active {
  border: 1px solid #c4d8f9;
}

.flight__info__item span {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-medium);
}

.flight__link {
  display: flex;
  align-items: center;
  gap: 48px 17px;
  flex-wrap: wrap;
}

.flight__link__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1;
}

.flight__link__item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.04);
  background: var(--color-white);
}

.flight__link__item .desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.flight__link__item .desc strong {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  text-align: center;
}

.flight__link__item .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.flight__link__item .badge span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 23px;
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-medium);
  padding: 3px 10px;
  border-radius: var(--border-radius-full);
}

.flight__link__item .badge span.blue {
  color: var(--primary-300);
  background: #e0ecff;
}

.flight__link__item .badge span.red {
  color: var(--error-red);
  background: #ffe9e9;
}

.flight__link__item .badge span.green {
  color: #3eae7d;
  background: #defff1;
}

.form__container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 50px;
  background: #f5f5f5;
  border-top: 1px solid #e6e6e6;
  transition: grid-template-columns 0.3s ease;
}

.header__row.expanded {
  grid-template-columns: 1fr 1fr 1fr;
}

.header__row.num7 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.header__cell {
  padding: 16px 0;
  font-weight: var(--font-weight-semibold);
  color: #000;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.header__cell.select {
  display: none;
}

.header__row.expanded .header__cell.select {
  display: block;
}

/* expanded 상태일 때 Carrier와 ORG - DESK 숨기기 */
.header__row.expanded .header__cell:first-child,
.header__row.expanded .header__cell:nth-child(2) {
  display: none;
}

.body__row {
  padding: 20px 25px 30px;
}

.data__row {
  display: grid;
  /* 자식 .data__cell 개수(보이는 것만)에 따라 2컬럼/3컬럼 자동 조정 */
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  grid-gap: 50px;
  padding: 8px 0;
  position: relative;
  transition: grid-template-columns 0.3s ease;
}

.data__cell.select {
  display: none;
}

.data__row.expanded .data__cell.select {
  display: flex;
}

.data__row.expanded .data__cell.display-none {
  display: none;
}

.data__row:last-child {
  border-bottom: none;
}

.data__cell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
}

.data__cell:nth-child(n + 2)::before {
  position: absolute;
  left: -25px;
  top: -8px;
  bottom: -8px;
  width: 1px;
  border-left: 1px dotted #d4d4d4;
  content: "";
}

.data__cell select::-ms-expand {
  display: none;
}

.data__cell.input__group .awb__carrier {
  flex: 1;
  width: 100%;
}

.data__cell.input__group span {
  color: #000;
  font-size: var(--font-size-base);
  margin: 0 4px;
}

.data__cell.input__group button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #e6e6e6;
  border-radius: var(--border-radius-sm);
  background: var(--color-white);
  font-size: var(--font-size-base);
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.data__cell.input__group button:hover {
  background: #f5f5f5;
}

.data__cell:last-child {
  position: relative;
}

.data__cell:last-child button {
  display: none;
}

.data__cell select:focus,
.data__cell input[type="text"]:focus {
  outline: none;
  border-color: var(--primary-300);
}

.form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
}

.form__btn.p-0 {
  padding: 0;
}

.tableArea,
.graphArea {
  display: none;
}

.tableArea.active,
.graphArea.active {
  display: block;
}

.summary__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin: 0 30px 20px;
  padding: 13px 30px;
  border-radius: var(--border-radius-md);
  background: var(--color-white);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.03);
}

.summary__wrap.num2 {
  flex-wrap: wrap;
  gap: 0 60px;
}

.summary__wrap.num2 .summary__item {
  flex: 1 1 calc(50% - 30px);
  min-width: 0;
}

/* flight__banner가 없을 때 summary__wrap에 margin-top 추가 */
.box__wrap > .summary__wrap:first-child {
  margin-top: 20px;
}

.summary__wrap .summary__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding: 13px 0;
}

.summary__wrap .summary__item:nth-child(n+2)::before {
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1px dotted #d4d4d4;
  content: "";
}

.summary__wrap .summary__item.no-border::before {
  border-left: none;
}

.summary__wrap .summary__item strong {
  font-weight: var(--font-weight-semibold);
}

.awb__step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin: 15px auto;
}

.awb__step .awb__step__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 90px;
}

.awb__step .awb__step__item:nth-child(n + 2)::before {
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #bfbfbf;
  border-top: 2px solid #bfbfbf;
  content: "";
}

.awb__step .awb__step__item.on img {
  filter: invert(32%) sepia(64%) saturate(1400%) hue-rotate(195deg)
    brightness(93%) contrast(91%);
}

.awb__step .awb__step__item.on span {
  color: var(--primary-300);
}

.table__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: -20px;
}

.table__top.mb-20 {
  margin-bottom: 20px;
}

.table__top h4 {
  font-size: var(--font-size-2xl);
}

.table__top .total {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: var(--font-weight-medium);
  color: #000;
}

.table__top .total strong {
  font-weight: var(--font-weight-bold);
  color: var(--error-red);
}

.table__top .comment__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.search__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.search__top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.search__top strong {
  font-family: "GMarketSans";
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-medium);
  line-height: 50px;
}

.search__top .search__input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.search__top .search__input input {
  max-width: 360px;
  padding: 11px 45px 11px 15px;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--primary-300);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.03);
  background: url('../../../../images/react/icon/ico_search.svg') no-repeat right 15px center;
  background-size: 20px;
  cursor: text;
}

.search__top .tag {
  display: flex;
  align-items: center;
  gap: 27px;
  padding-left: 15px;
}

.search__top .tag a {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-medium);
  color: #848484;
}

.search__top .tag a:before {
  content: "#";
}

.search__content {
  flex: 1;
  width: 100%;
}
.search__bottom {
	flex-wrap: wrap;
  	display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
 }

.search__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.search__tab input[type="radio"],
.search__tab .content {
  display: none;
}

.search__tab .tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 7px 10px;
  border-radius: var(--border-radius-full);
  border: 1px solid #d0d0d0;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.03);
  flex-wrap: wrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.search__tab .tabs::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.search__tab .tabs label {
  font-size: var(--font-size-lg);
  text-align: center;
  padding: 10px 20px;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.search__tab .tabs label:hover {
  background: var(--primary-300);
  color: var(--color-white);
}

.search__tab .tab__contents {
  width: 100%;
}

.search__tab #total:checked ~ .tab__contents #total-content,
.search__tab #notice:checked ~ .tab__contents #notice-content,
.search__tab #news:checked ~ .tab__contents #news-content,
.search__tab #dataCollection:checked ~ .tab__contents #dataCollection-content,
.search__tab #bankLogis:checked ~ .tab__contents #bankLogis-content,
.search__tab #menu:checked ~ .tab__contents #menu-content,
.search__tab #page:checked ~ .tab__contents #page-content {
  display: flex;
}

.search__tab #total:checked ~ .tabs #total,
.search__tab #notice:checked ~ .tabs #notice,
.search__tab #news:checked ~ .tabs #news,
.search__tab #dataCollection:checked ~ .tabs #dataCollection,
.search__tab #bankLogis:checked ~ .tabs #bankLogis,
.search__tab #menu:checked ~ .tabs #menu,
.search__tab #page:checked ~ .tabs #page {
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  background: var(--primary-300);
}

.search__tab .tab__contents .content {
  flex-direction: column;
  gap: 20px;
}

.search__tab .tab__contents #total-content {
  gap: 60px;
}

.search__tab .tab__contents .content > div {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.search__tab .tab__contents .content .no-data,
.search__tab .tab__contents .content .no-search-results {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  line-height: var(--line-height-base);
  color: #606060;
  text-align: center;
}

.search__tab .tab__contents .content .content__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px dashed #d4d4d4;
}

.search__tab .tab__contents .content .content__title h3 {
  font-size: var(--font-size-2xl);
}

.search__tab .tab__contents .content .content__title h3 span {
  color: var(--primary-300);
}

.search__tab .tab__contents .content .content__title .more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  padding: 10px 15px;
  border-radius: var(--border-radius-full);
  border: 1px solid #dbdbdb;
  box-shadow: 0 0 4px 3px rgba(0, 0, 0, 0.003);
}

.search__tab .tab__contents .content .content__title .more:after {
  width: 5px;
  height: 5px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  content: "";
}

.search__tab .tab__contents .content .content__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search__tab .tab__contents .content .content__list .list__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search__tab .tab__contents .content .content__list .item__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-xs);
}

.search__tab .tab__contents .content .content__list .item__desc {
  font-size: calc(var(--font-size-base) * 1.06);
  font-weight: var(--font-weight-light);
  color: #606060;
  line-height: var(--line-height-base);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search__tab .tab__contents .content .content__list .item__title span,
.search__tab .tab__contents .content .content__list .item__desc span {
  color: #e35f57;
  font-weight: var(--font-weight-semibold);
}

.terminal__list {
  /* display: flex;
  flex-flow: column wrap;
  align-content: space-between; */
  column-count: 2;
  column-gap: 28px;
}

.terminal__list .terminal__item {
  /* display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 calc(50% - 14px);
  min-width: 0; */
  display: flex;
  flex-direction: column;
  gap: 14px;
  break-inside: avoid;
  margin-bottom: 48px;
}

.terminal__list .terminal__item:last-child {
  margin-bottom: 0;
}

.terminal__list .terminal__item h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

.terminal__list .terminal__item > div {
  padding: 15px 20px 25px;
  border-radius: var(--border-radius-md);
  box-shadow: inset 0 1px 0 0 #000, 0 0 10px 3px rgba(0, 0, 0, 0.05);
}

.terminal__item thead th {
  font-weight: var(--font-weight-semibold);
  text-align: center;
  padding: 0 8px 17px 8px;
  border-bottom: 1px solid #e6e6e6;
}

.terminal__item tbody td {
  text-align: center;
  padding: 15px 8px;
  border-bottom: 1px dashed #d4d4d4;
}

.btn__wrap.right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: wrap;
}

.btn__wrap.top {
  margin: -40px 0 -20px;
}

.btn__wrap span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #606060;
}

.btn__wrap span:nth-child(n+2) {
  margin-left: 7px;
  padding-left: 14px;
  border-left: 1px dashed #D8D8D8;
}

.general__tab {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #f2f2f2;
}

.general__tab button {
  position: relative;
  flex: 1;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: #787878;
  padding: 7px 20px 15px;
  margin-bottom: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.general__tab.flex-0 button {
  flex: 0 0 auto;
}

.general__tab button:before {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-300);
  transition: all 0.3s ease;
  content: "";
}

.general__tab button.active {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-300);
}

.general__tab button.active:before {
  width: 100%;
}

.general__tab__content {
  display: none;
}

.general__tab__content.active {
  display: block;
}

.dangerous__tab {
  display: flex;
  align-items: flex-start;
  border-bottom: 2px solid #f2f2f2;
}

.dangerous__tab button {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: #787878;
  padding: 7px 20px 15px;
  margin-bottom: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dangerous__tab button.active {
  color: var(--primary-300);
  font-weight: var(--font-weight-semibold);
  border-bottom: 2px solid var(--primary-300);
  margin-bottom: -2px;
}

.dangerous__tab__content {
  display: none;
}

.dangerous__tab__content.active {
  display: block;
}

body.dangerous input[type="checkbox"],
body.member_forwarder input[type="checkbox"],
body.reference input[type="checkbox"] {
  position: relative;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  border: 1px solid #dedede;
  border-radius: var(--border-radius-sm);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

body.logistics input[type="checkbox"],
body.cargo_planner input[type="checkbox"] {
  position: relative;
  width: 25px;
  height: 25px;
  padding: 0;
  margin: 0;
  border: 1px solid #dedede;
  border-radius: var(--border-radius-sm);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

body.dangerous input[type="checkbox"]:checked::after,
body.member_forwarder input[type="checkbox"]:checked::after,
body.logistics input[type="checkbox"]:checked::after,
body.cargo_planner input[type="checkbox"]:checked::after,
body.reference input[type="checkbox"]:checked::after {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 8px;
  border-bottom: 2px solid var(--primary-300);
  border-right: 2px solid var(--primary-300);
  content: "";
}

body.CargoPlanner input[type="radio"] {
  position: relative;
  width: 25px;
  height: 25px;
  padding: 0;
  margin: 0;
  border: 1px solid #dedede;
  border-radius: var(--border-radius-full);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.map__wrap,
.img__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  background: var(--color-white);
  overflow: hidden;
}

.img__wrap.p-40 {
  padding: 40px;
}

.map__wrap img,
.img__wrap img {
  max-width: 100%;
  object-fit: cover;
}

.img__wrap.shadow {
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, .04);
}

.sitemap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #434343;
  box-sizing: border-box;
}

.sitemap li {
  display: flex;
  border-bottom: 1px solid #e6e6e6;
}

.sitemap .sitemap__title {
  flex-shrink: 0;
  width: 20%;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  padding: 20px;
  border-right: 1px solid #e6e6e6;
}

.sitemap .sitemap__list {
  display: flex;
  gap: 15px 0;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 23px 38px;
}

.sitemap .sitemap__list p {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 25%;
}

.sitemap .sitemap__list p > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #606060;
}

.sitemap .sitemap__list p > a:before {
  width: 4px;
  height: 4px;
  border-radius: var(--border-radius-full);
  background: #000;
  content: "";
}

.sitemap .sitemap__list .first_page {
  margin-top: 10px;
}

.sitemap .sitemap__list span > a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-s);
  color: #606060;
  padding-left: 15px;
}

.contact__wrap {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.contact__wrap h3 {
  font-family: "GmarketSans";
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
}

.contact__wrap .contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__wrap .contact__info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: var(--line-height-xs);
}

.contact__wrap .contact__info ul li {
  position: relative;
  padding-left: 20px;
}

.contact__wrap .contact__info ul li:before {
  position: absolute;
  left: 5px;
  top: 10px;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: var(--border-radius-full);
  background: #000;
  content: "";
}

.contact__wrap .img__cover {
  border-radius: var(--border-radius-3xl);
  border: 1px solid #e4e4e4;
  overflow: hidden;
}

.contact__wrap .img__cover img {
  width: 100%;
}

.contact__wrap .img__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  padding: 30px 40px;
  border-radius: var(--border-radius-3xl);
  background: #f8f9fa;
}

.contact__wrap .img__legend p {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 25%;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-xs);
}

.contact__wrap .img__legend span {
  width: 42px;
  height: 9px;
  font-size: 0;
}

.contact__wrap .img__legend span.orange {
  background: #f46942;
}
.contact__wrap .img__legend span.red {
  background: #fa524f;
}
.contact__wrap .img__legend span.skyblue {
  background: #288ad1;
}
.contact__wrap .img__legend span.purple {
  background: #a057c0;
}
.contact__wrap .img__legend span.green {
  background: #57a34b;
}
.contact__wrap .img__legend span.brown {
  background: #9b7e52;
}
.contact__wrap .img__legend span.yellow {
  background: #f7bf46;
}
.contact__wrap .img__legend span.blue {
  background: #4f6dc5;
}

.contact__wrap .location__car {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__wrap .location__car > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__wrap .location__car strong {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

.contact__wrap .location__car strong.blue {
  color: var(--primary-300);
}
.contact__wrap .location__car strong.red {
  color: #e35f57;
}

.contact__wrap .location__car p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__wrap .location__car p span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-xs);
}

.contact__wrap .location__car p span:nth-child(n + 2):before {
  content: "»";
}

.worldtime__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: var(--border-radius-md);
  background: var(--color-white);
  box-shadow: 0 0 7px 3px rgba(0, 0, 0, .04);
}

.worldtime__wrap.m-20 {
  margin: 20px 0;
}

.worldtime__wrap > div {
  position: relative;
}

.worldtime__wrap ul {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.worldtime__wrap li {
  position: absolute;
  max-width: 102px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px;
  border-radius: var(--border-radius-sm);
  border: 1px solid #7CADFF;
  background: rgba(255, 255, 255, .5);
}

.worldtime__wrap li.london {top: 30px; left: 300px;}
.worldtime__wrap li.moscow {top: 30px; right: 165px;}
.worldtime__wrap li.anchorage {top: 27px; left: 32px;}
.worldtime__wrap li.paris {top: 92px; left: 300px;}
.worldtime__wrap li.beijig {top: 92px; right: 165px;}
.worldtime__wrap li.seoul {top: 120px; right: 40px;}
.worldtime__wrap li.honolulu {top: 121px; left: -96px;}
.worldtime__wrap li.la {top: 121px; left: 18px;}
.worldtime__wrap li.newyork {top: 121px; left: 132px;}
.worldtime__wrap li.newdelhi {bottom: 179px; right: 211px;}
.worldtime__wrap li.singapore {bottom: 133px; right: 70px;}
.worldtime__wrap li.capetown {bottom: 63px; right: 268px;}
.worldtime__wrap li.sydney {bottom: 63px; right: -4px;}
.worldtime__wrap li.santiago {bottom: 63px; left: 76px;}
.worldtime__wrap li.rio {bottom: 129px; left: 172px;}

.worldtime__wrap li label {
  font-family: 'GmarketSans';
  font-size: var(--font-size-xxs);
  font-weight: var(--font-weight-bold);
  color: var(--primary-300);
  text-transform: uppercase;
}

.worldtime__wrap li span {
  font-size: var(--font-size-md);
}

.link__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin: 60px auto 90px;
}

.link__btn > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.link__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50px 15px;
  border: 1px solid #eee;
  background: var(--color-white);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, .03);
}

.dictionary__wrap {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #000;
  border-bottom: 1px dashed #D4D4D4;
}

.dictionary__wrap > div {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: 23px 0;
}

.dictionary__wrap > div:nth-child(n + 2) {
  border-top: 1px dashed #D4D4D4;
}

.dictionary__wrap strong {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
}

.dictionary__wrap p {
  color: #606060;
  line-height: var(--line-height-xs);
}

.sms__wrap {
  display: flex;
  align-items: stretch;
  gap: 120px;
  padding: 40px 30px 40px 110px;
  border-radius: var(--border-radius-3xl);
  background: #FCFCFC;
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, .03);
}

.sms__wrap .btn__wrap {
  display: none;
}

.phone__send {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 230px;
  width: 100%;
  height: 500px;
  padding: 30px 10px 20px;
  border-radius: 30px;
  border: 6px solid #000;
  background: linear-gradient(180deg,rgba(243, 255, 238, 1) 0%, rgba(229, 240, 255, 1) 100%);
}

.phone__send:before {
  position: absolute;
  top: 6px;
  right: 18px;
  width: 123px;
  height: 17px;
  background: url(../../../../images/react/ico_sms_top.svg) top center no-repeat;
  content: '';
}

.phone__send .input__box {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.phone__send .input__box textarea {
  font-size: var(--font-size-s);
}

.phone__send .input__box .textNumber {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  font-size: var(--font-size-xxs);
}

.phone__send .sms__date {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone__send .sms__date .transmit {
  display: flex;
  align-items: center;
  gap: 23px;
}

.phone__send .sms__date .transmit span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--font-size-s);
  cursor: pointer;
}

.phone__send .sms__date .date__time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.phone__send .sms__date .date__wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.phone__send .send__area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px dashed #D4D4D4;
}

.phone__send .send__area .sender {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: var(--font-size-md);
}

.phone__send .receiver__wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.phone__send .receiver__wrap .receiver {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-md);
}

.phone__send .receiver__wrap .receiver button {
  height: 23px;
  font-size: var(--font-size-xxs);
  padding: 0 10px;
  border-radius: 4px;
  background: var(--color-white);
}

.phone__send .receiver__list {
  width: 100%;
  height: 96px;
  padding: 8px 10px;
  border-radius: var(--border-radius-sm);
  border: 1px solid #dedede;
  background: var(--color-white);
  overflow-y: auto;
}

.phone__send .receiver__list ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone__send .receiver__list li {
  font-size: var(--font-size-xs);
}

.phone__send .receiver__list li:nth-child(n + 2) {
  padding-top: 5px;
  border-top: 1px dashed #D4D4D4;
}

.sms__desc {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.sms__desc > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px 30px;
  border-radius: var(--border-radius-md);
  background: var(--color-white);
}

.sms__desc strong {
  font-family: 'GmarketSans';
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
}

.sms__desc strong.blue {
  color: var(--primary-300);
}

.sms__desc strong.red {
  color: #E35F57;
}

.sms__desc ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-xs);
  color: #606060;
}

.sms__desc .sms__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0;
  background: none;
}

.page__intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page__intro.gap-10 {
  gap: 10px;
}

.page__intro h4 {
  font-family: 'GmarketSans';
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xs);
}

.page__intro > p {
  color: #606060;
  line-height: var(--line-height-xs);
}

.page__intro .img__wrap {
  position: relative;
  border-radius: var(--border-radius-md);
}

.page__intro .img__wrap img {
  width: 100%;
}

.page__intro .img__wrap .desc {
  position: absolute;
  top: 33px;
  left: 42px;
  right: 42px;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-medium);
  text-align: right;
  color: var(--color-white);
  line-height: var(--line-height-xs);
}

.page__intro .desc__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #606060;
  line-height: var(--line-height-xs);
}

.page__intro .table__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.page__intro .table__wrap h4 {
  font-family: 'GmarketSans';
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
}

.page__intro .table__wrap p {
  text-align: right;
}

.certification__wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.certification__wrap h3 {
  font-family: 'GmarketSans';
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-xs);
}

.certification__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 180px;
  padding: 70px;
  border-radius: var(--border-radius-md);
  background: var(--color-white);
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.04);
}

.certification__box div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.icon__list {
  display: flex;
  flex-direction: column;
  gap: 77px;
}

.icon__list .icon__item {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.icon__list.type2 .icon__item {
  gap: 45px;
}

.icon__list .icon__item.flex-end {
  flex-direction: column;
  align-items: flex-end;
  gap: 25px;
}

.icon__list .icon__item.flex-end div {
  display: flex;
  gap: 7px;
}

.icon__list .icon__item.flex-end a {
  font-size: var(--font-size-md);
  padding: 8px 25px;
  border-radius: var(--border-radius-sm);
  border: 1px solid #000;
}

.icon__list .icon__item.order {
  flex-direction: row-reverse;
}

.icon__list .icon__img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: var(--border-radius-full);
  background: #F8F9FA;
}

.icon__list.type2 .icon__img {
  max-width: 458px;
  width: 100%;
  height: 240px;
  border-radius: var(--border-radius-3xl);
  overflow: hidden;
}

.icon__list.type2 .icon__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon__list .icon__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.icon__list .icon__text.full {
  flex-basis: 100%;
}

.icon__list .icon__text h3 {
  font-family: 'GmarketSans';
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-xs);
}

.icon__list .icon__text strong {
  font-family: 'GmarketSans';
  font-size: var(--font-size-xl);
  color: var(--primary-300);
}

.icon__list .icon__text p {
  font-size: (var(--font-size-base) * 1.06);
  color: #606060;
  line-height: var(--line-height-xs);
}

.icon__list .icon__text p.icon__text__desc {
  font-size: var(--font-size-s);
  color: #000;
  margin-top: 20px;
}

.step__wrap {
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}

.step__wrap > div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom: 1px dashed #CFCFCF;
}

/* .step__wrap > div:nth-child(n+2):before {
  position: absolute;
  top: -34px;
  left: 0;
  width: 100%;
  border-top: 1px dashed #CFCFCF;
  content: '';
} */

.step__list {
  display: flex;
  align-items: stretch;
  gap: 45px;
}

.step__list li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 205px;
  height: 108px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 0 8px 6px rgba(0, 0, 0, 0.03);
  background: var(--color-white);
}

.step__list li.blue {
  background: var(--primary-300);
}

.step__list li.red {
  background: #D34B4B;
}

.step__list li.green {
  background: #30AE77;
}

.step__list li:nth-child(n+2):before {
  position: absolute;
  left: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 20px;
  background: url("../../img/icon/ico_arrow.svg") no-repeat center / cover;
  content: '';
}

.step__list li strong {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-align: center;
}

.step__list li.blue strong,
.step__list li.red strong,
.step__list li.green strong {
  color: var(--color-white);
}

.step__list li strong span {
  color: var(--primary-300);
}

.step__list li > span {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
}

.step__list li.blue > span {
  color: #FFE682;
}

.desc__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.desc__list li {
  color: #606060;
  line-height: var(--line-height-xs);
  position: relative;
  padding-left: 15px;
}

.desc__list li:before {
  position: absolute;
  left: 5px;
  top: 9px;
  display:block;
  width: 3px;
  height: 3px;
  border-radius: var(--border-radius-full);
  background: #606060;
  content: '';
}

.desc__list li a {
  color: #606060;
  text-decoration: underline;
}

.desc__list li p.red {
  color: #D34B4B;
}

.guide__wrap {
  display: flex;
  flex-direction: column;
  gap: 60px !important;
}

.guide__wrap .guide__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.guide__wrap .guide__item:nth-child(n + 2):before {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  border-top: 1px dashed #CFCFCF;
  content: '';
}

.guide__wrap .guide__item p {
  position: relative;
  padding-left: 20px;
  font-size: var(--font-size-md);
  color: #606060;
}

.guide__wrap .guide__item p strong {
  font-weight: var(--font-weight-semibold);
  color: #000;
}

.guide__wrap .guide__item p span {
  position: absolute;
  left: 0;
}

.guide__wrap .guide__item .img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 25px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.guide__wrap .guide__item .img img {
  object-fit: cover;
}

.guide__wrap .guide__item .img img.mobile {
  display: none;
}

.star__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.star__list li {
  position: relative;
  padding-left: 15px;
}

.star__list li:before {
  position: absolute;
  left: 0;
  top: 3px;
  content: '*';
}

.desc__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.desc__wrap > strong {
  font-size: var(--font-size-base) !important;
}




@media (max-width: 1200px) {
  .search__tab .tabs {
    border-radius: var(--border-radius-3xl);
  }
}

@media (max-width: 765px) {
  .breadcrumb ul {
    padding: 0;
  }

  .breadcrumb li:not(.home):not(:last-child) {
    display: none;
  }

  .breadcrumb li:last-child {
    flex: 1;
    min-width: 0;
    border-right: none;
  }

  .breadcrumb .icon-arrow-right {
    width: 7px;
    height: 7px;
  }

  .container {
    gap: 20px;
    margin-top: 20px;
    padding: 0 12px;
  }

  .container__header span,
  .container__header h3 {
    display: none;
  }

  .container__header h3 .mobile__title,
  .table__scroll .mobile__scroll {
    display: flex;
  }

  .container__header p {
    font-size: var(--font-size-s);
    padding: 0 7px;
  }

  .container__header .caption__list {
    gap: 5px 10px;
  }

  .container__header .caption__list li:nth-child(n + 2)::before {
    display: none;
  }

  .container__header .caption__list span {
    font-size: var(--font-size-xxs);
  }

  .container__header .caption__list p {
    font-size: var(--font-size-s);
    padding: 0;
  }

  .box__wrap.blue {
    position: relative;
    /* padding: 0 30px; */
    padding: 20px;
    overflow: visible;
  }

  .flight__info {
    gap: 10px;
    flex-wrap: nowrap;
    padding: 20px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
  }

  .flight__info::-webkit-scrollbar {
    display: none;
  }

  .flight__info__item {
    flex-shrink: 0;
  }

  .flight-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s;
  }

  .flight-scroll-btn:hover {
    background: rgba(255, 255, 255, 1);
  }

  .flight-scroll-btn--prev {
    left: -10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M7.5 9L4.5 6L7.5 3' stroke='%23333' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }

  .flight-scroll-btn--next {
    right: -10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M4.5 3L7.5 6L4.5 9' stroke='%23333' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }

  .header__row {
    grid-gap: 10px;
    grid-template-columns: minmax(0, 100px) minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .header__row.expanded {
    grid-template-columns: minmax(0, 100px) minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .body__row {
    padding: 15px;
  }

  .data__row {
    grid-template-columns: minmax(0, 100px) minmax(0, 1.3fr) minmax(0, 1fr);
    grid-gap: 10px;
  }

  .data__cell {
    gap: 0;
  }

  .data__cell.input__group {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .data__cell.input__group span {
    margin: 0 2px;
    flex-shrink: 0;
  }

  .data__cell.input__group input {
    flex: 1;
    min-width: 0;
  }

  .data__cell select {
    min-width: auto;
    /* width: 100%; */
  }

  .data__cell input[type="text"] {
    width: 100%;
  }

  .data__cell:nth-child(n + 2):before {
    display: none;
  }

  .contact__wrap .img__legend {
    gap: 10px 20px;
    padding: 20px;
  }

  .contact__wrap .img__legend p {
    font-size: var(--font-size-s);
    gap: 10px;
    flex: 1;
    width: auto;
  }

  .contact__wrap .img__legend span {
    flex-shrink: 0;
    width: 20px;
  }

  .contact__wrap .location__car p {
    flex-wrap: wrap;
  }

  .contact__wrap .location__car p span {
    font-size: var(--font-size-md);
    white-space: nowrap;
  }

  .sitemap .sitemap__list p {
    width: 50%;
  }

  .worldtime__wrap img {
    width: 100%;
  }

  .worldtime__wrap {
    padding: 0;
  }

  .worldtime__wrap > div {
    width: 100%;
  }

  .worldtime__wrap img.none {
    display: none;
  }

  .worldtime__wrap ul {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .worldtime__wrap li {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 15px 20px;
  }

  .worldtime__wrap li label {
    font-size: var(--font-size-md);
  }

  .worldtime__wrap li span {
    font-size: var(--font-size-lg);
  }

  .sms__wrap {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  .sms__wrap .btn__wrap {
    display: flex;
    margin-bottom: -20px;
  }

  .sms__wrap .btn__wrap button {
    max-width: fit-content;
    flex-shrink: 0;
  }

  .phone__send {
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 0;
    border: none;
    background: none;
  }

  .phone__send:before {
    display: none;
  }

  .phone__send .sms__date .date__time {
    flex-direction: row;
  }

  .phone__send .sms__date .date__wrap {
    gap: 10px;
    flex: 1;
  }

  .phone__send .receiver__list ul {
    gap: 10px;
  }

  .phone__send .receiver__list li:nth-child(n+2) {
    padding-top: 10px;
  }

  .phone__send .sms__date .date__wrap > div {
    flex-shrink: 0;
  }

  .sms__desc > div:not(:last-child) {
    display: none;
  }

  .icon__list .icon__item {
    flex-direction: column;
    gap: 30px;
  }

  .icon__list .icon__img {
    /* width: 100px; */
    width: 50vw;
    height: 100px;
    margin: 0 auto;
  }

  .icon__list .icon__img img {
    /* width: 45x;
    height: 45ppx; */
    width: 55px;
    height: 55px;
  }

  .icon__list .icon__text,
  .icon__list.type2 .icon__item {
    gap: 10px;
  }

  .icon__list .icon__text h3 {
    font-size: var(--font-size-xl);
  }

  .icon__list .icon__text strong {
    font-size: var(--font-size-lg);
  }

  .icon__list {
    gap: 70px;
  }

  .certification__box {
    justify-content: space-around;
    gap: 0;
    padding: 30px 0;
  }

  .certification__box div img {
    height: 50px;
  }

  .certification__box div span {
    font-size: var(--font-size-s);
  }

  .guide__wrap .guide__item .img img.pc {
    display: none;
  }

  .guide__wrap .guide__item .img img.mobile {
    display: block;
  }

  .step__list {
    flex-direction: column;
  }

  .step__list li:nth-child(n+2):before {
    top: -33px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

@media (max-width: 480px) {
  .search__wrap form,
  .search__top .search__input {
    width: 100%;
    align-items: center;
  }

  .search__top {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .search__top .search__input input {
    max-width: 80vw;
    width: 100%;
  }

  .search__top .tag {
    padding: 0;
  }

  .search__top .tag a {
    font-size: var(--font-size-xs);
  }

  .search__tab .tabs {
    justify-content: flex-start;
    gap: 3px 10px;
    padding: 16px;
  }

  .search__tab .tabs label {
    font-size: var(--font-size-xs);
    flex: 1;
  }

  .search__tab .tab__contents {
    padding: 0 5px;
  }

  .search__tab .tab__contents .content .content__title h3 {
    font-size: var(--font-size-lg);
  }

  .search__tab .tab__contents .content .content__title .more {
    gap: 0;
    width: 31px;
    height: 31px;
    font-size: 0;
    padding: 0;
  }

  .search__tab .tab__contents .content .content__title .more:after {
    margin-left: -3px;
  }

  .search__tab .tab__contents .content > div {
    gap: 20px;
  }

  .search__tab .tab__contents .content .content__title {
    padding-bottom: 10px;
  }

  .search__tab .tab__contents .content .content__list .list__item {
    gap: 5px;
  }

  .search__tab .tab__contents .content .content__list .item__title {
    font-size: var(--font-size-s);
  }

  .search__tab .tab__contents .content .content__list .item__desc {
    font-size: var(--font-size-xxs);
  }

  .search__tab .tab__contents .content .no-data,
  .search__tab .tab__contents .content .no-search-results {
    min-height: 100px;
    font-size: var(--font-size-xxs);
  }

  .box__wrap.no-bg {
    border-radius: 0;
    background: none;
    box-shadow: none;
    overflow: visible;
  }

  .flight__banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    /* padding: 12px 0; */
    padding: 25px 0;
  }

  .flight__banner span {
    max-width: 150px;
    height: 42px;
    padding: 0;
  }

  .flight__banner span img {
    scale: 0.8;
  }

  .flight__banner p {
    font-size: var(--font-size-xxs);
    margin-left: auto;
  }

  .header__row {
    border-radius: var(--border-radius-md);
    box-shadow: inset 0 1px 0 #cfcfcf;
  }

  .header__cell {
    font-size: var(--font-size-xxs);
  }

  .flight__link {
    gap: 37px 22px;
  }

  .flight__link__item {
    flex: 0 0 calc(50% - 11px);
    min-width: 0;
    gap: 9px;
  }

  .flight__link__item .img {
    height: 95px;
  }

  .flight__link__item .img img {
    width: 100%;
  }

  .flight__link__item .desc {
    gap: 11px;
  }

  .flight__link__item .desc strong {
    font-size: var(--font-size-s);
  }

  .flight__link__item .badge span {
    font-size: var(--font-size-xxs);
  }

  .summary__wrap {
    flex-direction: column;
    gap: 10px;
    margin: 0 20px 20px;
    padding: 10px;
  }

  .summary__wrap .summary__item {
    width: 100%;
    font-size: var(--font-size-s);
    padding: 5px;
  }

  .table__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 0;
  }

  .data__row.flex-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .terminal__list {
    column-count: 1;
  }

  .awb__step {
    gap: 30px;
  }

  .awb__step .awb__step__item {
    gap: 0;
    min-width: auto;
  }

  .awb__step .awb__step__item:nth-child(n + 2):before {
    left: -22px;
    width: 6px;
    height: 6px;
  }

  .awb__step .awb__step__item img {
    scale: 0.7;
  }

  .awb__step .awb__step__item span {
    font-size: var(--font-size-xs);
  }

  .terminal__item thead th,
  .terminal__item tbody td {
    font-size: var(--font-size-s);
  }

  .dangerous__tab button {
    font-size: var(--font-size-md);
  }

  .box__wrap h4 {
    font-size: var(--font-size-lg);
  }

  .box__wrap h4:nth-child(n + 2) {
    margin-top: 20px;
  }

  .box__wrap > .list__wrap .input__group.row {
    flex-direction: column;
  }

  .box__wrap > .list__wrap .input__group.row button {
    width: 100%;
  }

  .btn__wrap.top {
    margin: -10px 0 0;
  }

  .sitemap li {
    flex-direction: column;
    border-bottom: 1px solid #434343;
  }

  .sitemap .sitemap__title {
    width: 100%;
    font-size: var(--font-size-md);
    border-right: none;
    border-bottom: 1px solid #434343;
  }

  .sitemap .sitemap__list {
    padding: 30px 20px;
  }

  .sitemap .sitemap__list p {
    font-size: var(--font-size-s);
  }

  .link__btn {
    flex-direction: column;
    gap: 20px;
  }
  
  .general__tab {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .general__tab button {
    flex: 1 1 auto;
    font-size: var(--font-size-base);
    text-wrap: nowrap;
  }

  .page__intro .img__wrap:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    content: '';
  }

  .page__intro .img__wrap img {
    height: 160px;
  }

  .page__intro .img__wrap .desc {
    top: 20px;
    left: 20px;
    font-size: var(--font-size-xl);
  }
}
