:root {
  --primary-white: #ffffff;
  --primary-dhl-red: #d40511;

  --web-black: rgba(0, 0, 0, 0.9);
  --Web-Black: #1a1a1a;

  --red-40: #eb131e;
  --gray-10: #e5e5e5;
  --gray-20: #ccc;
  --gray-40: rgba(0, 0, 0, 0.4);
  --gray-45: #8c8c8c;
  --gray-50: #f2f2f2;
  --gray-60: #666;
  --gray-80: #333;
  --gray-50-opacity-06: #f2f2f299;

  --neutral-black: #000000;

  --Text-text-subdued: #333;
  
  --header-height: 64px; /* Declare var for height */

}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Delivery";
}

@font-face {
  font-family: "Delivery";
  font-style: normal;
  font-weight: 400;
  src:
    local(""),
    url("../assets/fonts/Delivery_W_Rg.013e4230f155.woff") format("woff");
}

@font-face {
  font-family: "Delivery";
  font-style: normal;
  font-weight: 700;
  src:
    local(""),
    url("../assets/fonts/Delivery_W_Bd.9e17783be429.woff") format("woff");
}

@font-face {
  font-family: "Delivery";
  font-style: normal;
  font-weight: 800;
  src:
    local(""),
    url("../assets/fonts/Delivery_W_CdBlk.8c0239f801c7.woff") format("woff");
}

.main {
  padding: 32px 16px;
  position: relative;
  margin-top: 96px;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: content-box;
}

.main::-webkit-scrollbar {
  display: none;
}

.section {
  display: inline-flex;
  width: 100%;
  padding: 24px 16px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 8px;
  background: var(--primary-white, #fff);

  /* card/drop shadow */
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
}

.h1 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 800;
}

.field {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.btn {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%;

  padding: 10px 32px;
  border-radius: 4px;

  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--primary-dhl-red, #d40511);
}

.border-bottom {
  border-bottom-style: solid;
  border-bottom-color: var(--gray-20);
  border-bottom-width: 1px;
}

.btn.btn-red {
  color: var(--primary-white);
  background: var(--DHL-Red, #d40511);
}

.btn.btn-white {
  color: var(--primary-dhl-red);
  background: var(--primary-white);
}

.btn.btn-red:hover {
  background: var(--red-40, #eb131e);
  border: 1px solid var(--red-40, #eb131e);
}

.btn.btn-white:hover {
  color: var(--red-40, #eb131e);
  border: 1px solid var(--red-40, #eb131e);
}

.btn.btn-disable {
  opacity: 0.4;
  background: var(--gray-45) !important;
  border: 1px solid var(--gray-45, #8c8c8c) !important;
}

.disable-click {
  cursor: no-drop !important;
}

.text-bold {
  font-weight: 700;
}

.text-sm {
  font-size: 14px;
}

.hide {
  display: none !important;
}

.lock-scroll {
  overflow: hidden;
}

main {
  min-height: calc(100vh - 239px);
}

.link {
  color: var(--primary-dhl-red);
  text-decoration: none;
}

.link--hover:hover {
  color: var(--red-40) !important;
  cursor: pointer !important;
}

.link-underline--hover:hover {
  text-decoration: underline !important;
}

.link-svg--hover:hover {
  filter: invert(13%) sepia(95%) saturate(5393%) hue-rotate(352deg)
    brightness(94%) contrast(95%) !important;
}

.link-gray--hover:hover {
  color: var(--Text-text-subdued, #333) !important;
  cursor: pointer !important;
}

.link-gray-underline--hover:hover {
  text-decoration: underline !important;
}

.link-gray-svg--hover:hover {
  filter: invert(15%) sepia(1%) saturate(750%) hue-rotate(11deg)
    brightness(106%) contrast(87%);
}

.link-text-font {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.error-message {
  margin-top: 8px;
  display: flex;
  gap: 4px;
  color: var(--primary-dhl-red);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.error-message::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../assets/svg/error_circle.ae0182016cca.svg");
}

.copyable-text {
  display: inline-block;
  cursor: pointer;
  font-weight: 700;
  color: var(--Web-Black);
}

.copyable-text::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("../assets/svg/copy_clipboard.7f533c9129a4.svg");
  margin-left: 4px;
}

/* accordion */
.accordion {
  box-shadow:
    0 -1px 0 0 var(--gray-45, #8c8c8c),
    0 1px 0 0 var(--gray-45, #8c8c8c);
}

.accordion:not(:last-child) {
  box-shadow:
    0 -1px 0 0 var(--gray-45, #8c8c8c),
    0 0px 0 0 var(--gray-45, #8c8c8c);
}

.accordion:has(.accordion__header):has(.accordion__input:checked) + .accordion {
  box-shadow:
    0 0 0 0 var(--gray-45, #8c8c8c),
    0 0 0 0 var(--gray-45, #8c8c8c);
}

section.accordion:has(.accordion__header):has(.accordion__input:checked) {
  box-shadow:
    inset 0px 2px 0px 0px var(--gray-80, #333),
    inset 0px -2px 0px 0px var(--gray-80, #333) !important;
}

section.accordion:has(.accordion__header):has(.accordion__input:checked)
  + .accordion:last-child {
  box-shadow:
    0 0 0 0 var(--gray-45, #8c8c8c),
    0 1px 0 0 var(--gray-45, #8c8c8c);
}

section.accordion:hover {
  box-shadow:
    0 -2px 0 0 var(--gray-80, #333),
    0 2px 0 0 var(--gray-80, #333) !important;
}

.accordion:hover + .accordion {
  box-shadow:
    0 0 0 0 var(--gray-45, #8c8c8c),
    0 0 0 0 var(--gray-45, #8c8c8c);
}

.accordion:hover + .accordion:last-child {
  box-shadow:
    0 0 0 0 var(--gray-45, #8c8c8c),
    0 1px 0 0 var(--gray-45, #8c8c8c);
}

.accordion__input {
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  z-index: 1;
  opacity: 0;
}

.accordion__arrow {
  width: 24px;
  height: 24px;
  background-image: url("../assets/svg/chevron_down_rgb_red.789bf2f11bc7.svg");
  background-size: 24px 24px;
}

.accordion__header:has(.accordion__input:checked) ~ .accordion__content {
  opacity: 1;
  height: auto;
}

.accordion__input:checked ~ .accordion__arrow {
  transform: rotate(180deg);
}

.accordion__header {
  position: relative;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;

  padding: 16px 0px;
}

html[dir="rtl"] .accordion__input {
  left: 0;
  right: unset;
}

.accordion__title {
  cursor: pointer;
  width: 100%;

  flex-grow: 1;

  z-index: 1;
}

.accordion__content {
  transition: all 0.3s ease-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .accordion {
    gap: 8px;
  }

  .accordion__header {
    padding: 24px 0px;
  }

  .accordion__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;

    cursor: pointer;
  }

  .accordion__input,
  .accordion__arrow {
    width: 32px;
    height: 32px;
  }
  .accordion__arrow {
    background-size: 32px 32px;
  }
}

/* breakdown-of-charges */
.breakdown-of-charges__title {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22.5px;
}

.breakdown-of-charges__currency-annoucement {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
  margin-bottom: 12px;
}

.breakdown-of-charges__charges-detail {
  border: 1px solid var(--gray-10);
  border-radius: 8px;
  margin-bottom: 32px;
}

.charge-detail {
  margin-bottom: 24px;
  position: relative;
}

.charge-detail--last {
  margin-bottom: 16px;
}

.charge-detail__header {
  display: flex;
  padding: 14px 16px 14px 16px;
  gap: 8px;

  border-radius: 8px 8px 0px 0px;
  background: var(--gray-10, #e5e5e5);
}

.charge-detail__content {
  display: flex;
  flex-direction: column;
  gap: 13px;

  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.charge-detail__item {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;

  display: flex;
  justify-content: space-between;
}

.charge-detail__vat-amount {
  font-size: 16px;
  font-weight: normal;
  line-height: 22.5px;
  color: var(--gray-60);
  display: flex;
  margin-left: 11px;
}

[dir="rtl"] .charge-detail__vat-amount {
  margin-left: 0;
  margin-right: 11px;
}

.charge-detail__title {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.2px;
}

.charge-detail__stroke {
  border-bottom: 1px solid var(--gray-20);
}

.charge-detail__item--total {
  align-self: flex-end;
  gap: 32px;
}

.charge-detail__vat-amount span:first-child {
  display: flex;
  align-items: center;
  gap: 11px;
}
.charge-detail__vat-amount span:first-child:before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background-color: var(--gray-60);
}

.breakdown-of-charges__charges-total {
  display: flex;
  justify-content: flex-end;
  align-items: center;

  background: var(--secondary-light-yellow, #fdfaec);
  padding: 14px 16px;
  border-radius: 0px 0px 8px 8px;
}

.breakdown-of-charges__charges-total--item {
  display: flex;
  gap: 32px;

  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16.1px;
}

.breakdown-of-charges__surcharge--mobile {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 16px;
}

.breakdown-of-charges__surcharge--desktop {
  display: none;
}

/* receive-docs-via-email-modal */
.receive-docs-via-email-modal-content__header {
  margin-bottom: 32px;
}

.receive-docs-via-email-modal-content__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.receive-docs-via-email-modal-content__sub-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000e5;

  display: block;
  margin-bottom: 24px;
}

.receive-docs-via-email-modal-content__input {
  width: 100%;
  padding: 14px 12px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--gray-20);
  border-radius: 4px;

  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  font-style: normal;
}

.receive-docs-via-email-modal-content__input::placeholder {
  color: #8c8c8c;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  font-style: normal;
}

.receive-docs-via-email-modal-content__input::-ms-input-placeholder {
  color: #8c8c8c;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  font-style: normal;
}

.receive-docs-via-email-modal-content__input--error,
.receive-docs-via-email-modal-content__input--error:focus {
  border: 1px solid var(--primary-dhl-red, #d40511);
  outline: none;
}

.receive-docs-via-email-modal-content__email-message {
  margin-top: 8px;
  display: flex;
  gap: 4px;

  color: var(--primary-dhl-red);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.receive-docs-via-email-modal-content__action {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 2;
}

.modal--open {
  display: block;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #818181;
  z-index: 2;
  opacity: 0.4;
}

.modal-wrapper {
  max-width: 343px;
  width: 100%;
  background-color: white;
  box-shadow: 0px 3px 12px 0px #00000026;
  border-radius: 4px;
  padding: 24px 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* relevant-documentation */
.relevant-documentation__title {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22.5px;
}

.relevant-documentation__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.relevant-documentation__stroke {
  border-bottom: 1px solid var(--gray-20);
}

/*Document  */

.document {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.document--first {
  padding-top: 16px;
}

.document__icon {
  font-size: 24px;
}

[dir="rtl"] .document__icon {
  transform: scaleX(-1);
}

.document__name {
  color: var(--Web-Black, #1a1a1a);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/*  */
.relevant-documentation__download {
  display: flex;
  flex-direction: column;
}

.relevant-documentation__download-notification {
  display: flex;
  align-items: center;
  gap: 8px;
}

.relevant-documentation__download-icon {
  align-self: flex-start;
}

.relevant-documentation__download-notification-text {
  color: var(--Text-text-subdued, #333);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.1px;
}

.relevant-documentation__download-notification-button {
  text-decoration: none;

  margin-top: 24px;
}

/* Relevant-no documentation */
.relevant-documentation__no-documents-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shipment-charges-relevant-documentation__no-documents-details {
  padding: 8px 0 24px 0;
}

.relevant-documentation__no-documents-download-notification {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.relevant-documentation__no-documents-download-icon {
}

.relevant-documentation__no-documents-download-text {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
}

.relevant-documentation__no-documents-files-via-email {
  display: flex;
  gap: 16px;
  align-items: center;
}

.relevant-documentation__no-documents-files-via-email__input {
  width: 24px;
  height: 24px;
  flex-shrink: 0;

  appearance: none;

  border-radius: 4px;
  border: 1px solid var(--gray-20, #ccc);
  background: var(--primary-white, #fff);
}

.relevant-documentation__no-documents-files-via-email__input:checked {
  border-color: var(--gray-20, #ccc);
  background-color: var(--primary-white, #fff);
}

.relevant-documentation__no-documents-files-via-email__input:checked:before {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  border: solid var(--web-black);
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  margin-left: 7px;
  margin-top: 2px;
}

.relevant-documentation__no-documents-files-via-email__text {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
}

.relevant-documentation__no-documents-emails {
  padding-left: 40px;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.relevant-documentation__no-documents-emails--send-to {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.relevant-documentation__no-documents-emails--send-to-section {
  display: flex;
  gap: 8px;
}

.relevant-documentation__no-documents-emails--send-to-email {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.relevant-documentation__no-documents-emails--send-to-button {
  /* reset default button styles */
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;

  /* styles for button */

  color: var(--primary-dhl-red, #d40511);
  text-align: center;
  font-family: Delivery;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

/* paperwork-download */
/* .shipment-charges-relevant-documentation__no-documents-details { */
.shipment-charges-relevant-documentation__paperwork-download-details {
  padding: 8px 0 24px 0;
}
.relevant-documentation__paperwork-download-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shipment-charges-relevant-documentation__paperwork-download-details {
  padding: 8px 0 24px 0;
}

.relevant-documentation__paperwork-download-download-notification {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.relevant-documentation__paperwork-download-download-icon {
}

.relevant-documentation__paperwork-download-download-text {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
}

.relevant-documentation__paperwork-download-files-via-email {
  display: flex;
  gap: 16px;
  align-items: center;
}

.relevant-documentation__paperwork-download-files-via-email__input {
  width: 24px;
  height: 24px;
  flex-shrink: 0;

  appearance: none;

  border-radius: 4px;
  border: 1px solid var(--gray-20, #ccc);
  background: var(--primary-white, #fff);
}

.relevant-documentation__paperwork-download-files-via-email__input:checked {
  border-color: var(--gray-20, #ccc);
  background-color: var(--primary-white, #fff);
}

.relevant-documentation__paperwork-download-files-via-email__input:checked:before {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  border: solid var(--web-black);
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  margin-left: 7px;
  margin-top: 2px;
}

.relevant-documentation__paperwork-download-files-via-email__text {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
}

.relevant-documentation__paperwork-download-emails {
  padding-left: 40px;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.relevant-documentation__paperwork-download-emails--send-to {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.relevant-documentation__paperwork-download-emails--send-to-section {
  display: flex;
  gap: 8px;
}

.relevant-documentation__paperwork-download-emails--send-to-email {
  color: var(--web-black, rgba(0, 0, 0, 0.9));
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.relevant-documentation__paperwork-download-emails--send-to-button {
  /* reset default button styles */
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;

  /* styles for button */

  color: var(--primary-dhl-red, #d40511);
  text-align: center;
  font-family: Delivery;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

/* header */
#header {
  width: 100vw;
  height: var(--header-height);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  position: fixed;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #fc0 0, #fc0 48%, #ffe57f 70%, #fff0b2);
}

[dir="rtl"] #header {
  background: linear-gradient(-90deg, #fc0 0, #fc0 48%, #ffe57f 70%, #fff0b2);
}

.header__left {
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.header__right {
  display: flex;
  align-items: center;
  list-style: none;
}

.header__right a:not(.header__open-menu-icon):not(.header__close-menu-icon) {
  display: flex;
  align-items: center;
}

.header__right a {
  text-decoration: none;
  line-height: 115%;
  color: var(--Web-Black);
}

.header__portal-name {
  display: none;
}

.logo {
  width: 112px;
}

.header__faq-link {
  color: var(--neutral-black);
}

.header__globe-icon {
  width: 24px;
  height: 24px;
  display: none;
}

.header__open-menu-icon,
.header__close-menu-icon {
  width: 24px;
  height: 24px;
  margin-inline-start: 16px;
}

.header__question-icon {
  width: 18px;
  height: 18px;
}

.desktop-only {
  display: none;
}

.header__faq {
  display: flex;
  gap: 8px;
}

.header__country {
  display: flex;
  align-items: center;
}

.language-selector-container__location {
  color: var(--Web-Black);
  text-decoration: none;
  padding: 16px 0;
  display: flex;
  gap: 8px;
  border-bottom-style: solid;
  border-bottom: 1px solid var(--gray-20);
  line-height: 120%;
}

.language-selector-container__language {
  padding: 16px 0;
  display: flex;
  border-bottom-style: solid;
  border-bottom: 1px solid var(--gray-20);
  justify-content: space-between;
  line-height: 120%;
  align-items: center;
}

.language-selector-container__language > div {
  min-width: 76px;
}

.language-selector-container__language-item:first-child {
  padding-right: 16px;
  border-right-style: solid;
  border-right: 1px solid var(--gray-20);
  color: var(--primary-dhl-red);
  text-decoration: none;
}

.language-selector-container__language-item:last-child {
  padding-left: 16px;
  color: var(--Web-Black);
  text-decoration: none;
}

.language-selector-container {
  display: block;
  padding: 0 16px 16px;
  position: absolute;
  background: white;
  top: var(--header-height);
  width: 100vw;
  height: calc(100vh - 64px);
  left: 0;
  font-size: 16px;
  gap: 8px;
}

/* footer */
#footer {
  padding: 24px 16px;
  font-size: 12px;
  background: var(--gray-50);
  color: var(--gray-60);
}

.footer__logo {
  width: 112px;
}

.footer__list {
  padding: 16px 0 24px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  row-gap: 24px;
  column-gap: 80px;
}

.footer__list > li {
  width: 100px;
}

.footer__link {
  text-decoration: none;
  color: var(--gray-60);
}

.footer__social-list {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 8px 0 32px;
}

.footer__social-title {
  color: var(--web-black);
}

.footer__text {
  text-align: center;
}

@media (min-width: 1024px) {
  .main {
    width: 796px;
    margin: 80px auto 0;
    padding: 40px 110px;
  }

  .section {
    display: inline-flex;
    width: 100%;
    padding: 32px 0;

    /* card/drop shadow */
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
  }

  .h1 {
    font-size: 32px;
    line-height: 32px;
  }

  .btn {
    border: 1px solid var(--primary-dhl-red, #d40511);
  }

  .link-text-font {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
  }

  /* breakdown-of-charges */
  .breakdown-of-charges__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 33.6px;
  }

  .breakdown-of-charges__currency-annoucement {
    color: var(--web-black, rgba(0, 0, 0, 0.9));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
    margin-bottom: 8px;
  }

  .charge-detail {
    margin-bottom: 24px;
  }

  .charge-detail__title {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px;
  }

  .charge-detail--last {
    margin-bottom: 16px;
  }

  .charge-detail__header {
    display: flex;
    padding: 16px 24px 16px 24px;
  }

  .charge-detail__content {
    display: flex;
    flex-direction: column;
    gap: 16px;

    padding-top: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .charge-detail__item {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
  }
  .charge-detail__vat-amount {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.5px;
    color: var(--gray-60);
    display: flex;
    margin-left: 11px;
  }

  [dir="rtl"] .charge-detail__vat-amount {
    margin-left: 0;
    margin-right: 11px;
  }

  .breakdown-of-charges__charges-total {
    justify-content: flex-end;
    padding: 16px 24px;
  }

  .breakdown-of-charges__charges-total--surcharge {
    justify-content: space-between;
  }

  .breakdown-of-charges__charges-total--item {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px;
  }

  .breakdown-of-charges__surcharge--mobile {
    display: none;
  }

  .breakdown-of-charges__surcharge--desktop {
    display: block;
    color: var(--web-black, rgba(0, 0, 0, 0.9));
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.1px;
  }

  /* receive-docs-via-email-modal */
  .receive-docs-via-email-modal-content__header {
    margin-bottom: 24px;
  }

  .receive-docs-via-email-modal-content__title {
    font-weight: 800;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .receive-docs-via-email-modal-content__action {
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 24px;
  }

  .btn-custom {
    margin: 0;
  }

  /* modal */
  .modal-wrapper {
    max-width: 592px;
    padding: 32px;
  }

  /* relevant-documentation */
  .relevant-documentation__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 33.6px;
  }

  .relevant-documentation__details {
    gap: 24px;
  }

  .relevant-documentation__details--item {
    padding-left: 24px;
  }
  .relevant-documentation__details--centre-item {
    align-self: center;
  }

  /*Document  */

  .document {
    gap: 16px;
  }

  .document:first-of-type {
    padding-top: 0px;
  }

  .document__icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .document__name {
    font-size: 18px;
    font-weight: 400;
  }

  .relevant-documentation__download {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 24px 24px 24px;
  }

  .relevant-documentation__download-notification {
    align-self: center;

    display: flex;
    align-items: center;
    gap: 8px;
  }

  .relevant-documentation__download-icon {
    width: 24px;
    height: 24px;
  }

  .relevant-documentation__download-notification-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 120% */
  }

  .relevant-documentation__download-notification-button {
    margin: 0;
  }

  /* Relevant-no documentation */
  .shipment-charges-relevant-documentation__no-documents-details {
    padding: 0px 0 32px 0;
  }

  .relevant-documentation__no-documents-download-notification {
    align-items: center;
  }

  .relevant-documentation__no-documents-download-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .relevant-documentation__no-documents-download-text {
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
  }

  .relevant-documentation__no-documents-files-via-email {
    gap: 8px;
    margin-left: 24px;
  }

  .relevant-documentation__no-documents-files-via-email__text {
    font-size: 18px;
    line-height: normal;
  }

  .relevant-documentation__no-documents-emails {
    padding-left: 56px;

    flex-direction: row;
    align-items: center;
  }

  .relevant-documentation__no-documents-emails--send-to {
    line-height: normal;
    font-size: 18px;
  }

  .relevant-documentation__no-documents-emails--send-to-section {
    display: flex;
    gap: 10px;
  }

  .relevant-documentation__no-documents-emails--send-to-email {
    font-size: 18px;
  }

  .relevant-documentation__no-documents-emails--send-to-button {
    font-size: 18px;
    line-height: 22.5px;
    text-decoration-line: underline;
  }
  
  /* paperwork-download */
    .shipment-charges-relevant-documentation__paperwork-download-details {
    padding: 0px 0 32px 0;
  }

  .relevant-documentation__paperwork-download-download-notification {
    align-items: center;
  }

  .relevant-documentation__paperwork-download-download-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .relevant-documentation__paperwork-download-download-text {
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
  }

  .relevant-documentation__paperwork-download-files-via-email {
    gap: 8px;
    margin-left: 24px;
  }

  .relevant-documentation__paperwork-download-files-via-email__text {
    font-size: 18px;
    line-height: normal;
  }

  .relevant-documentation__paperwork-download-emails {
    padding-left: 56px;

    flex-direction: row;
    align-items: center;
  }

  .relevant-documentation__paperwork-download-emails--send-to {
    line-height: normal;
    font-size: 18px;
  }

  .relevant-documentation__paperwork-download-emails--send-to-section {
    display: flex;
    gap: 10px;
  }

  .relevant-documentation__paperwork-download-emails--send-to-email {
    font-size: 18px;
  }

  .relevant-documentation__paperwork-download-emails--send-to-button {
    font-size: 18px;
    line-height: 22.5px;
    text-decoration-line: underline;
  }

  /* header */
  #header {
    padding: 0 118px;
  }

  .header__right {
    gap: 24px;
  }

  .header__portal-name {
    color: var(--primary-dhl-red);
    display: inline;
    line-height: normal;
  }

  .logo {
    width: 138px;
  }

  .header__globe-icon {
    width: 16px;
    height: 16px;
    margin-left: 0;
    display: block;
  }

  .header__open-menu-icon,
  .header__close-menu-icon,
  .language-selector-container {
    display: none;
  }

  .desktop-only {
    display: inline;
  }

  .header__country {
    gap: 4px;
  }

  /* footer */
  #footer {
    font-size: 14px;
    padding: 24px 118px;
  }

  #footer > div {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
  }

  .footer__logo {
    width: 140px;
    height: 37px;
  }

  .footer__list {
    gap: 40px;
  }

  .footer__list > li {
    width: auto;
  }

  .footer__social-list {
    gap: 24px;
  }
}
/*
 * JavaScript browser settings style
 */
.top-message {
    top: var(--header-height);
    position: fixed;
    text-align: center;
    width: 100%;
    border: 3px solid var(--primary-dhl-red, #d40511);
    border-radius: 6px;
    z-index: 1000;
    background: white;
    font-weight: 700;
}
.main-js {
    margin: var(--header-height) auto 0;
}
@media (max-width: 540px) {
    /* Reduced font for message on small screen */
    .top-message {
        font-size: 12px;
    }
}