.rd-checkbox-wrapper {
  --border: var(--rd-color-grey-dark);
  --border-checked: var(--rd-color-utility-attention-bright);
  --border-hover: var(--rd-color-utility-attention-bright);
  --background-checked: var(--rd-color-primary-action-dark);
  position: relative;
  width: 1rem;
  height: 1rem;
}
.rd-checkbox-wrapper input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  font: inherit;
  border: 0.0625rem solid var(--border);
  -webkit-border-radius: 0.25rem;
     -moz-border-radius: 0.25rem;
          border-radius: 0.25rem;
  cursor: pointer;
}
.rd-checkbox-wrapper input[type=checkbox]:checked {
  border-color: var(--border-checked);
  background: var(--background-checked) border-box;
  -webkit-box-shadow: 0 0 0 0.0625rem inset #fff;
     -moz-box-shadow: 0 0 0 0.0625rem inset #fff;
          box-shadow: 0 0 0 0.0625rem inset #fff;
}
.rd-checkbox-wrapper input[type=checkbox]:not(:checked):hover {
  border-color: var(--border-hover);
}
.rd-checkbox-wrapper input[type=checkbox]:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
}
.rd-checkbox-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}

.carousel {
  overflow: hidden;
  width: 100%;
  margin: 0 auto 1rem;
}
.carousel__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: -o-transform 0.4s ease-in-out;
  -moz-transition: transform 0.4s ease-in-out, -moz-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out, -moz-transform 0.4s ease-in-out, -o-transform 0.4s ease-in-out;
  width: 100%;
}
.carousel__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.carousel__controls {
  margin: 2rem auto 0.375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}
.carousel__position {
  font-size: var(--rd-font-size-xs);
  line-height: var(--rd-line-height-xs);
  margin: 0 2rem;
  font-weight: 700;
}
.carousel__length {
  color: var(--rd-color-azl-grey-light);
}
.carousel__button svg path {
  stroke: var(--rd-color-utility-action-bright);
}
.carousel__button:disabled {
  background-color: transparent;
}
.carousel__button:disabled svg path {
  stroke: var(--rd-color-azl-grey-light);
}

/* Disclosure */
.disclosure {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
}
.disclosure p {
  font-size: var(--rd-font-size-6xs);
  line-height: var(--rd-line-height-4xs);
  letter-spacing: var(--rd-letter-spacing-m);
  color: var(--rd-color-grey-bright);
}

.dw-container {
  position: relative;
  display: inline-block;
  width: 100%;
  color: var(--rd-color-grey-dark);
}
.dw-container .dw-trigger:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
}
.dw-container.sp-input-negative .dw-trigger {
  border: 0.0625rem solid var(--rd-color-azl-grey-light) !important;
}
.dw-container.sp-input-negative .dw-trigger:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
  outline-color: var(--rd-color-primary-white) !important;
}
.dw-container .rd-dropdown__tick-icon {
  display: none;
}

.dw-trigger {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem;
  border: 0;
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-3xs);
  -webkit-border-radius: 0.25rem;
     -moz-border-radius: 0.25rem;
          border-radius: 0.25rem;
  cursor: pointer;
  border-radius: 0.25rem !important;
  border: 0.0625rem solid var(--rd-color-grey-dark) !important;
}

.dw-trigger,
.dw-trigger:active,
.dw-trigger:focus {
  color: var(--rd-color-grey-dark);
  background-color: var(--rd-color-primary-white);
}

.dw-trigger:hover {
  background-color: var(--rd-color-primary-white);
  color: var(--rd-color-grey-dark);
  outline: none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

.dw-trigger.is-active {
  border-color: var(--rd-color-utility-attention-bright) !important;
}

.dw-icon {
  width: 1rem;
  height: 1rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: -o-transform 0.2s;
  -moz-transition: transform 0.2s, -moz-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s, -moz-transform 0.2s, -o-transform 0.2s;
}
.dw-icon.is-rotated {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.dw-icon.is-rotated path {
  stroke: var(--rd-color-utility-action-bright);
}
.dw-icon path {
  stroke: var(--rd-color-grey-dark);
}

.dw-dropdown-wrapper {
  position: absolute;
  top: -webkit-calc(100% + 0.0625rem);
  top: -moz-calc(100% + 0.0625rem);
  top: calc(100% + 0.0625rem);
  left: 0;
  right: 0;
  margin-top: 0.25rem;
  -webkit-border-radius: 0.25rem;
     -moz-border-radius: 0.25rem;
          border-radius: 0.25rem;
  background-color: var(--rd-color-primary-white);
  -webkit-box-shadow: 0px -4px 8px 0px rgba(134, 134, 134, 0.1607843137), 0px 4px 8px 0px rgba(134, 134, 134, 0.1607843137);
     -moz-box-shadow: 0px -4px 8px 0px rgba(134, 134, 134, 0.1607843137), 0px 4px 8px 0px rgba(134, 134, 134, 0.1607843137);
          box-shadow: 0px -4px 8px 0px rgba(134, 134, 134, 0.1607843137), 0px 4px 8px 0px rgba(134, 134, 134, 0.1607843137);
  z-index: 50;
  padding: 0.375rem 0.375rem 0.375rem 0;
  display: none;
}
.dw-dropdown-wrapper.is-visible {
  display: block;
}

.dw-listbox {
  width: 100%;
  overflow-y: auto;
  outline: none; /* Focus managed via items/descendant */
  margin: 0;
}

.dw-option {
  padding: 0.5rem;
  cursor: pointer;
  color: var(--rd-color-primary-black);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dw-option.is-focused {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
  outline-offset: -0.25rem !important;
  -webkit-border-radius: 0.5rem !important;
     -moz-border-radius: 0.5rem !important;
          border-radius: 0.5rem !important;
  color: var(--rd-color-utility-action-bright);
}

.rd-dropdown__tick-icon-wrapper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1rem;
  margin-right: 0.5rem;
}
.rd-dropdown__option-content {
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-3xs);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dw-option.is-selected {
  color: var(--rd-color-utility-action-bright);
}
.dw-option.is-selected .rd-dropdown__tick-icon {
  display: block;
}
.dw-option.is-selected .rd-dropdown__tick-icon svg path {
  fill: var(--rd-color-utility-action-bright);
}

.dw-listbox::-webkit-scrollbar-button {
  display: none;
}

.dw-listbox::-webkit-scrollbar {
  width: 0.4375rem;
}

.dw-listbox::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background-color: var(--rd-color-utility-attention-grey);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.dw-listbox::-webkit-scrollbar-thumb:hover {
  background-color: var(--rd-color-utility-disabled);
}

/* Firefox only */
@-moz-document url-prefix() {
  .dw-listbox {
    scrollbar-width: thin;
    scrollbar-color: var(--rd-color-utility-attention-grey) var(--rd-color-primary-white);
  }
  .dw-listbox:hover {
    scrollbar-color: var(--rd-color-utility-disabled) var(--rd-color-primary-white);
  }
}
.sp-input {
  width: 100%;
  height: 2.25rem;
  padding: 0.5rem 1.875rem;
  -webkit-border-radius: 0.25rem;
     -moz-border-radius: 0.25rem;
          border-radius: 0.25rem;
  border: 0.0625rem solid var(--rd-color-grey-dark);
  color: var(--rd-color-grey-dark);
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.sp-input::-webkit-input-placeholder {
  color: var(--rd-color-grey-dark);
  font-size: var(--rd-font-size-5xs);
}
.sp-input:-moz-placeholder {
  color: var(--rd-color-grey-dark);
  font-size: var(--rd-font-size-5xs);
}
.sp-input::-moz-placeholder {
  color: var(--rd-color-grey-dark);
  font-size: var(--rd-font-size-5xs);
}
.sp-input:-ms-input-placeholder {
  color: var(--rd-color-grey-dark);
  font-size: var(--rd-font-size-5xs);
}
.sp-input::-ms-input-placeholder {
  color: var(--rd-color-grey-dark);
  font-size: var(--rd-font-size-5xs);
}
.sp-input::placeholder {
  color: var(--rd-color-grey-dark);
  font-size: var(--rd-font-size-5xs);
}
.sp-input:focus {
  border-color: var(--rd-color-utility-attention-bright);
}
.sp-input:focus::-webkit-input-placeholder {
  color: transparent;
}
.sp-input:focus:-moz-placeholder {
  color: transparent;
}
.sp-input:focus::-moz-placeholder {
  color: transparent;
}
.sp-input:focus:-ms-input-placeholder {
  color: transparent;
}
.sp-input:focus::-ms-input-placeholder {
  color: transparent;
}
.sp-input:focus::placeholder {
  color: transparent;
}
.sp-input:not(.rd-no-outline):not(:active):focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
}
.sp-input_negative {
  border: 0.0625rem solid var(--rd-color-azl-grey-light);
}
.sp-input_negative:not(.rd-no-outline):not(:active):focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
  outline-color: var(--rd-color-primary-white) !important;
}

.sp-item {
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-4xs);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}
.sp-item:not(.sp-item_empty):hover {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
  outline-offset: -0.25rem !important;
  -webkit-border-radius: 0.5rem !important;
     -moz-border-radius: 0.5rem !important;
          border-radius: 0.5rem !important;
  margin-right: 0.25rem;
  color: var(--rd-color-utility-action-bright);
}
.sp-item_empty {
  cursor: default;
}

.sp-highlight {
  text-decoration: underline;
}

.sp-search-wrapper {
  position: relative;
  width: 100%;
}

.sp-results {
  position: absolute;
  top: 100%;
  width: 100%;
  padding: 0.375rem 0;
  border: 0.0625rem solid var(--rd-color-grey-soft);
  -webkit-border-radius: 0.25rem;
     -moz-border-radius: 0.25rem;
          border-radius: 0.25rem;
  max-height: 12.875rem;
  overflow: auto;
  color: var(--rd-color-primary-black);
  background: var(--rd-color-primary-white);
  z-index: 2;
  opacity: 0;
}
.sp-results.open {
  opacity: 1;
}

.sp-search-icon {
  position: absolute;
  top: 0.625rem;
  left: 0.5rem;
}
.sp-search-icon path {
  fill: var(--rd-color-grey-dark);
}

.sp-clear-button {
  position: absolute;
  top: 0.625rem;
  right: 0.5rem;
  width: 1rem;
  height: 1rem;
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in-out;
  -o-transition: opacity 300ms ease-in-out;
  -moz-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  cursor: pointer;
}
.sp-clear-button_visible {
  opacity: 1;
}

.sp-item-highlighted {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
  outline-offset: -0.25rem !important;
  -webkit-border-radius: 0.5rem !important;
     -moz-border-radius: 0.5rem !important;
          border-radius: 0.5rem !important;
  margin-right: 0.25rem;
}

.sp-label {
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-4xs);
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: block;
}

.sp-results::-webkit-scrollbar-button {
  display: none;
}

.sp-results::-webkit-scrollbar {
  width: 0.4375rem;
  background-color: var(--rd-color-primary-white);
}

.sp-results::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background-color: var(--rd-color-utility-attention-grey);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.sp-results::-webkit-scrollbar-thumb:hover {
  background-color: var(--rd-color-utility-disabled);
}

/* Firefox only */
@-moz-document url-prefix() {
  .sp-results {
    scrollbar-width: thin;
    scrollbar-color: var(--rd-color-utility-attention-grey) var(--rd-color-primary-white);
  }
  .sp-results:hover {
    scrollbar-color: var(--rd-color-utility-disabled) var(--rd-color-primary-white);
  }
}
/* Widget Container */
.msw-container {
  color: var(--rd-color-grey-dark);
  position: relative;
  display: inline-block;
  width: 100%;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  /* Trigger Button */
}
.msw-container .msw-trigger {
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-4xs);
  letter-spacing: 0.2px;
  line-height: 1.25rem;
  padding: 0.5rem;
  color: var(--rd-color-grey-dark);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: white;
  border: 0.0625rem solid var(--rd-color-azl-grey-light);
  -webkit-border-radius: 0.25rem;
     -moz-border-radius: 0.25rem;
          border-radius: 0.25rem;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.msw-container .msw-trigger:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
  outline-color: var(--rd-color-primary-white) !important;
}
.msw-container .msw-trigger:hover {
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.msw-container .msw-trigger .msw-icon {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: -o-transform 0.2s;
  -moz-transition: transform 0.2s, -moz-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s, -moz-transform 0.2s, -o-transform 0.2s;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.msw-container .msw-trigger .msw-icon.is-rotated {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.msw-container {
  /* Dropdown Panel */
}
.msw-container .msw-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: -webkit-calc(100% + 0.0625rem);
  top: -moz-calc(100% + 0.0625rem);
  top: calc(100% + 0.0625rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-border-radius: 0.25rem;
     -moz-border-radius: 0.25rem;
          border-radius: 0.25rem;
  padding: 0.375rem 0;
  -webkit-box-shadow: 0px -4px 8px 0px rgba(134, 134, 134, 0.1607843137), 0px 4px 8px 0px rgba(134, 134, 134, 0.1607843137);
     -moz-box-shadow: 0px -4px 8px 0px rgba(134, 134, 134, 0.1607843137), 0px 4px 8px 0px rgba(134, 134, 134, 0.1607843137);
          box-shadow: 0px -4px 8px 0px rgba(134, 134, 134, 0.1607843137), 0px 4px 8px 0px rgba(134, 134, 134, 0.1607843137);
  background-color: var(--rd-color-primary-white);
  z-index: 50;
  display: none;
}
.msw-container .msw-dropdown.is-visible {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.msw-container .msw-dropdown {
  /* Scroll Area */
}
.msw-container .msw-dropdown .msw-scroll-area {
  overflow-y: auto;
  -ms-scroll-chaining: chained;
      overscroll-behavior: auto;
  padding: 0 0.5rem;
}
.msw-container .msw-dropdown .msw-scroll-area::-webkit-scrollbar {
  width: 6px;
}
.msw-container .msw-dropdown .msw-scroll-area::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.msw-container .msw-dropdown .msw-scroll-area::-webkit-scrollbar-thumb {
  background: #888;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}
.msw-container .msw-dropdown {
  /* Group Header */
}
.msw-container .msw-dropdown .msw-group-header {
  font-weight: 700;
  margin: 0.5rem 0;
}
.msw-container .msw-dropdown {
  /* Group Container */
}
.msw-container .msw-dropdown .msw-group-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.msw-container .msw-dropdown {
  /* Option */
}
.msw-container .msw-dropdown .msw-option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.625rem 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* Checkbox */
}
.msw-container .msw-dropdown .msw-option .msw-checkbox {
  margin: 0;
}
.msw-container .msw-dropdown .msw-option {
  /* Label */
}
.msw-container .msw-dropdown .msw-option .msw-label {
  margin-left: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.msw-container .msw-dropdown .msw-option:hover {
  color: var(--rd-color-utility-action-bright);
}
.msw-container .msw-dropdown {
  /* Footer */
}
.msw-container .msw-dropdown .msw-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem;
  /* Clear Button */
}
.msw-container .msw-dropdown .msw-footer .msw-btn-clear {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
  cursor: not-allowed;
}
.msw-container .msw-dropdown .msw-footer .msw-btn-clear:enabled {
  cursor: pointer;
  opacity: 1;
}
.msw-container .msw-dropdown .msw-footer {
  /* Submit Button */
}
.msw-container .msw-dropdown .msw-footer .msw-btn-submit {
  width: 7.875rem;
}

.msw-container::-webkit-scrollbar-button {
  display: none;
}

.msw-container::-webkit-scrollbar {
  width: 0.4375rem;
  background-color: var(--rd-color-primary-white);
}

.msw-container::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background-color: var(--rd-color-utility-attention-grey);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.msw-container::-webkit-scrollbar-thumb:hover {
  background-color: var(--rd-color-utility-disabled);
}

/* Firefox only */
@-moz-document url-prefix() {
  .msw-container {
    scrollbar-width: thin;
    scrollbar-color: var(--rd-color-utility-attention-grey) var(--rd-color-primary-white);
  }
  .msw-container:hover {
    scrollbar-color: var(--rd-color-utility-disabled) var(--rd-color-primary-white);
  }
}
.how-to-invest-popup {
  padding: 2rem;
  -webkit-border-radius: 1.5rem;
     -moz-border-radius: 1.5rem;
          border-radius: 1.5rem;
  margin: 0 auto;
  color: var(--rd-color-primary-black);
}
.how-to-invest-popup .main-title {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0.5rem 0 1.125rem;
}
.how-to-invest-popup .investment-professional-tab__details,
.how-to-invest-popup .individual-investor-tab__details {
  font-size: var(--rd-font-size-xs);
  line-height: var(--rd-line-height-xs);
  margin: 1.625rem 1rem 0.625rem;
  font-weight: 700;
}
.how-to-invest-popup .e-n-tabs-content > div {
  padding: 0;
}

.main-content-invest {
  padding-top: 0.1875rem;
  margin-bottom: 0.1875rem;
}

.main-content-invest p {
  font-size: 1rem;
  line-height: 1.25rem;
  margin: 0;
}

.main-content-invest a:focus-visible,
.dialog-close-button:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
  -moz-border-radius: 0.125rem !important;
  border-radius: 0.125rem !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.section p.schedule {
  font-size: 0.875rem;
}

.main-content-invest .section-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

.main-content-invest .contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin: 1rem 0;
}

.main-content-invest .contacts-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.875rem;
}

.main-content-invest .contacts-item span {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1rem;
}

.main-content-invest .contacts-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.main-content-invest .contacts svg {
  width: 1rem;
  height: 1rem;
}

.main-content-invest .investing-options {
  display: flex-column;
}

.main-content-invest .option {
  padding: 0.5rem 1rem;
}
.main-content-invest .option__image-wrapper {
  height: 2rem;
}
.main-content-invest .option + .option {
  margin-top: 0.5rem;
}

.main-content-invest .option p.option-title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
}

.main-content-invest .option span {
  font-size: 0.875rem;
  line-height: 1rem;
}

.main-content-invest .investing-contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0.5rem 0 0.625rem;
}

.main-content-invest .investing-contacts > span {
  margin-bottom: 0.375rem;
}

.investing-contacts a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.main-content-invest .investing-contacts svg {
  width: 1rem;
  height: 1rem;
}

.main-content-invest div.footer-popup {
  margin-top: 1.875rem;
}

.main-content-invest p.footer-popup-text {
  line-height: 1.25rem;
}

.main-content-invest p.footer-popup-disclaimer {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--rd-color-grey-bright);
  margin-top: 0.625rem;
  padding-bottom: 2.5rem;
}

.dialog-widget-content .dialog-message.dialog-lightbox-message .how-to-invest-popup .elementor-how-to-invest-tabs .e-n-tabs {
  gap: 0.5rem;
}
.dialog-widget-content .dialog-message.dialog-lightbox-message .how-to-invest-popup .elementor-how-to-invest-tabs .e-n-tabs .e-n-tabs-heading {
  margin-left: 0.5rem;
}
.dialog-widget-content .dialog-message.dialog-lightbox-message .how-to-invest-popup .elementor-how-to-invest-tabs .e-n-tabs .e-n-tab-title {
  height: auto !important;
}

.dialog-message::-webkit-scrollbar-button {
  display: none;
}

.dialog-message::-webkit-scrollbar {
  width: 0.4375rem;
  background-color: var(--rd-color-primary-white);
}

.dialog-message::-webkit-scrollbar-thumb {
  background-color: var(--rd-color-utility-attention-grey);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
}

/* Firefox only */
@-moz-document url-prefix() {
  .dialog-message {
    scrollbar-width: thin;
    scrollbar-color: var(--rd-color-utility-attention-grey) var(--rd-color-primary-white);
  }
}
.elementor-popup-modal:has(.how-to-invest-popup) .dialog-close-button {
  top: 2.875rem !important;
  right: 1.875rem !important;
  -webkit-transition: none;
  -o-transition: none;
  -moz-transition: none;
  transition: none;
}
.elementor-popup-modal:has(.how-to-invest-popup) .dialog-close-button .eicon-close::before {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjQxMzk3IDcuOTk5ODVMMTQuNzA3IDIuNzA2ODVDMTQuODk0NSAyLjUxOTM0IDE0Ljk5OTggMi4yNjUwMyAxNC45OTk4IDEuOTk5ODVDMTQuOTk5OCAxLjczNDY3IDE0Ljg5NDUgMS40ODAzNiAxNC43MDcgMS4yOTI4NUMxNC41MTk1IDEuMTA1MzQgMTQuMjY1MSAxIDE0IDFDMTMuNzM0OCAxIDEzLjQ4MDUgMS4xMDUzNCAxMy4yOTMgMS4yOTI4NUw3Ljk5OTk3IDYuNTg1ODVMMi43MDY5NyAxLjI5Mjg1QzIuNjE0MTMgMS4yIDIuNTAzOSAxLjEyNjM2IDIuMzgyNiAxLjA3NjExQzIuMjYxMjkgMS4wMjU4NiAyLjEzMTI3IDEgMS45OTk5NyAxQzEuODY4NjcgMSAxLjczODY1IDEuMDI1ODYgMS42MTczNSAxLjA3NjExQzEuNDk2MDQgMS4xMjYzNiAxLjM4NTgyIDEuMiAxLjI5Mjk3IDEuMjkyODVDMS4yMDAxMyAxLjM4NTY5IDEuMTI2NDggMS40OTU5MiAxLjA3NjIzIDEuNjE3MjJDMS4wMjU5OCAxLjczODUzIDEuMDAwMTIgMS44Njg1NSAxLjAwMDEyIDEuOTk5ODVDMS4wMDAxMiAyLjEzMTE1IDEuMDI1OTggMi4yNjExNyAxLjA3NjIzIDIuMzgyNDdDMS4xMjY0OCAyLjUwMzc4IDEuMjAwMTMgMi42MTQgMS4yOTI5NyAyLjcwNjg1TDYuNTg1OTcgNy45OTk4NUwxLjI5Mjk3IDEzLjI5MjhDMS4xMDU0NiAxMy40ODA0IDEuMDAwMTIgMTMuNzM0NyAxLjAwMDEyIDEzLjk5OThDMS4wMDAxMiAxNC4yNjUgMS4xMDU0NiAxNC41MTkzIDEuMjkyOTcgMTQuNzA2OUMxLjQ4MDQ4IDE0Ljg5NDQgMS43MzQ3OSAxNC45OTk3IDEuOTk5OTcgMTQuOTk5N0MyLjI2NTE1IDE0Ljk5OTcgMi41MTk0NiAxNC44OTQ0IDIuNzA2OTcgMTQuNzA2OUw3Ljk5OTk3IDkuNDEzODVMMTMuMjkzIDE0LjcwNjlDMTMuMzg1NiAxNC44IDEzLjQ5NTggMTQuODc0IDEzLjYxNzEgMTQuOTI0NEMxMy43Mzg1IDE0Ljk3NDkgMTMuODY4NiAxNS4wMDA5IDE0IDE1LjAwMDlDMTQuMTMxNCAxNS4wMDA5IDE0LjI2MTUgMTQuOTc0OSAxNC4zODI4IDE0LjkyNDRDMTQuNTA0MiAxNC44NzQgMTQuNjE0MyAxNC44IDE0LjcwNyAxNC43MDY5QzE0Ljc5OTkgMTQuNjE0MSAxNC44NzM3IDE0LjUwMzkgMTQuOTI0IDE0LjM4MjVDMTQuOTc0MyAxNC4yNjEyIDE1LjAwMDIgMTQuMTMxMiAxNS4wMDAyIDEzLjk5OThDMTUuMDAwMiAxMy44Njg1IDE0Ljk3NDMgMTMuNzM4NSAxNC45MjQgMTMuNjE3MkMxNC44NzM3IDEzLjQ5NTggMTQuNzk5OSAxMy4zODU2IDE0LjcwNyAxMy4yOTI4TDkuNDEzOTcgNy45OTk4NVoiIGZpbGw9IiM5Mjk0OTciLz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  width: 1rem;
  height: 1rem;
  display: block;
}
.elementor-popup-modal:has(.how-to-invest-popup) .dialog-close-button:hover .eicon-close::before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjQxMzk3IDcuOTk5ODVMMTQuNzA3IDIuNzA2ODVDMTQuODk0NSAyLjUxOTM0IDE0Ljk5OTggMi4yNjUwMyAxNC45OTk4IDEuOTk5ODVDMTQuOTk5OCAxLjczNDY3IDE0Ljg5NDUgMS40ODAzNiAxNC43MDcgMS4yOTI4NUMxNC41MTk1IDEuMTA1MzQgMTQuMjY1MSAxIDE0IDFDMTMuNzM0OCAxIDEzLjQ4MDUgMS4xMDUzNCAxMy4yOTMgMS4yOTI4NUw3Ljk5OTk3IDYuNTg1ODVMMi43MDY5NyAxLjI5Mjg1QzIuNjE0MTMgMS4yIDIuNTAzOSAxLjEyNjM2IDIuMzgyNiAxLjA3NjExQzIuMjYxMjkgMS4wMjU4NiAyLjEzMTI3IDEgMS45OTk5NyAxQzEuODY4NjcgMSAxLjczODY1IDEuMDI1ODYgMS42MTczNSAxLjA3NjExQzEuNDk2MDQgMS4xMjYzNiAxLjM4NTgyIDEuMiAxLjI5Mjk3IDEuMjkyODVDMS4yMDAxMyAxLjM4NTY5IDEuMTI2NDggMS40OTU5MiAxLjA3NjIzIDEuNjE3MjJDMS4wMjU5OCAxLjczODUzIDEuMDAwMTIgMS44Njg1NSAxLjAwMDEyIDEuOTk5ODVDMS4wMDAxMiAyLjEzMTE1IDEuMDI1OTggMi4yNjExNyAxLjA3NjIzIDIuMzgyNDdDMS4xMjY0OCAyLjUwMzc4IDEuMjAwMTMgMi42MTQgMS4yOTI5NyAyLjcwNjg1TDYuNTg1OTcgNy45OTk4NUwxLjI5Mjk3IDEzLjI5MjhDMS4xMDU0NiAxMy40ODA0IDEuMDAwMTIgMTMuNzM0NyAxLjAwMDEyIDEzLjk5OThDMS4wMDAxMiAxNC4yNjUgMS4xMDU0NiAxNC41MTkzIDEuMjkyOTcgMTQuNzA2OUMxLjQ4MDQ4IDE0Ljg5NDQgMS43MzQ3OSAxNC45OTk3IDEuOTk5OTcgMTQuOTk5N0MyLjI2NTE1IDE0Ljk5OTcgMi41MTk0NiAxNC44OTQ0IDIuNzA2OTcgMTQuNzA2OUw3Ljk5OTk3IDkuNDEzODVMMTMuMjkzIDE0LjcwNjlDMTMuMzg1NiAxNC44IDEzLjQ5NTggMTQuODc0IDEzLjYxNzEgMTQuOTI0NEMxMy43Mzg1IDE0Ljk3NDkgMTMuODY4NiAxNS4wMDA5IDE0IDE1LjAwMDlDMTQuMTMxNCAxNS4wMDA5IDE0LjI2MTUgMTQuOTc0OSAxNC4zODI4IDE0LjkyNDRDMTQuNTA0MiAxNC44NzQgMTQuNjE0MyAxNC44IDE0LjcwNyAxNC43MDY5QzE0Ljc5OTkgMTQuNjE0MSAxNC44NzM3IDE0LjUwMzkgMTQuOTI0IDE0LjM4MjVDMTQuOTc0MyAxNC4yNjEyIDE1LjAwMDIgMTQuMTMxMiAxNS4wMDAyIDEzLjk5OThDMTUuMDAwMiAxMy44Njg1IDE0Ljk3NDMgMTMuNzM4NSAxNC45MjQgMTMuNjE3MkMxNC44NzM3IDEzLjQ5NTggMTQuNzk5OSAxMy4zODU2IDE0LjcwNyAxMy4yOTI4TDkuNDEzOTcgNy45OTk4NVoiIGZpbGw9IiMzQzNDM0MiLz4KPC9zdmc+Cg==);
}

@media (max-width: 42.875rem) {
  .elementor-popup-modal:has(.how-to-invest-popup) .dialog-close-button {
    top: 1.75rem !important;
    right: 0.75rem !important;
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .dialog-close-button .eicon-close::before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjQxMzk3IDcuOTk5ODVMMTQuNzA3IDIuNzA2ODVDMTQuODk0NSAyLjUxOTM0IDE0Ljk5OTggMi4yNjUwMyAxNC45OTk4IDEuOTk5ODVDMTQuOTk5OCAxLjczNDY3IDE0Ljg5NDUgMS40ODAzNiAxNC43MDcgMS4yOTI4NUMxNC41MTk1IDEuMTA1MzQgMTQuMjY1MSAxIDE0IDFDMTMuNzM0OCAxIDEzLjQ4MDUgMS4xMDUzNCAxMy4yOTMgMS4yOTI4NUw3Ljk5OTk3IDYuNTg1ODVMMi43MDY5NyAxLjI5Mjg1QzIuNjE0MTMgMS4yIDIuNTAzOSAxLjEyNjM2IDIuMzgyNiAxLjA3NjExQzIuMjYxMjkgMS4wMjU4NiAyLjEzMTI3IDEgMS45OTk5NyAxQzEuODY4NjcgMSAxLjczODY1IDEuMDI1ODYgMS42MTczNSAxLjA3NjExQzEuNDk2MDQgMS4xMjYzNiAxLjM4NTgyIDEuMiAxLjI5Mjk3IDEuMjkyODVDMS4yMDAxMyAxLjM4NTY5IDEuMTI2NDggMS40OTU5MiAxLjA3NjIzIDEuNjE3MjJDMS4wMjU5OCAxLjczODUzIDEuMDAwMTIgMS44Njg1NSAxLjAwMDEyIDEuOTk5ODVDMS4wMDAxMiAyLjEzMTE1IDEuMDI1OTggMi4yNjExNyAxLjA3NjIzIDIuMzgyNDdDMS4xMjY0OCAyLjUwMzc4IDEuMjAwMTMgMi42MTQgMS4yOTI5NyAyLjcwNjg1TDYuNTg1OTcgNy45OTk4NUwxLjI5Mjk3IDEzLjI5MjhDMS4xMDU0NiAxMy40ODA0IDEuMDAwMTIgMTMuNzM0NyAxLjAwMDEyIDEzLjk5OThDMS4wMDAxMiAxNC4yNjUgMS4xMDU0NiAxNC41MTkzIDEuMjkyOTcgMTQuNzA2OUMxLjQ4MDQ4IDE0Ljg5NDQgMS43MzQ3OSAxNC45OTk3IDEuOTk5OTcgMTQuOTk5N0MyLjI2NTE1IDE0Ljk5OTcgMi41MTk0NiAxNC44OTQ0IDIuNzA2OTcgMTQuNzA2OUw3Ljk5OTk3IDkuNDEzODVMMTMuMjkzIDE0LjcwNjlDMTMuMzg1NiAxNC44IDEzLjQ5NTggMTQuODc0IDEzLjYxNzEgMTQuOTI0NEMxMy43Mzg1IDE0Ljk3NDkgMTMuODY4NiAxNS4wMDA5IDE0IDE1LjAwMDlDMTQuMTMxNCAxNS4wMDA5IDE0LjI2MTUgMTQuOTc0OSAxNC4zODI4IDE0LjkyNDRDMTQuNTA0MiAxNC44NzQgMTQuNjE0MyAxNC44IDE0LjcwNyAxNC43MDY5QzE0Ljc5OTkgMTQuNjE0MSAxNC44NzM3IDE0LjUwMzkgMTQuOTI0IDE0LjM4MjVDMTQuOTc0MyAxNC4yNjEyIDE1LjAwMDIgMTQuMTMxMiAxNS4wMDAyIDEzLjk5OThDMTUuMDAwMiAxMy44Njg1IDE0Ljk3NDMgMTMuNzM4NSAxNC45MjQgMTMuNjE3MkMxNC44NzM3IDEzLjQ5NTggMTQuNzk5OSAxMy4zODU2IDE0LjcwNyAxMy4yOTI4TDkuNDEzOTcgNy45OTk4NVoiIGZpbGw9IiMzQzNDM0MiLz4KPC9zdmc+Cg==);
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .dialog-widget-content {
    margin: 0;
    -webkit-border-radius: 0 !important;
       -moz-border-radius: 0 !important;
            border-radius: 0 !important;
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .dialog-widget-content .dialog-message.dialog-lightbox-message {
    padding: 0 !important;
    height: 100dvh !important;
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .dialog-widget-content .dialog-message.dialog-lightbox-message .how-to-invest-popup {
    padding: 0;
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .dialog-widget-content .dialog-message.dialog-lightbox-message .how-to-invest-popup .elementor-how-to-invest-tabs {
    padding: 1rem 0.8125rem;
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .dialog-widget-content .dialog-message.dialog-lightbox-message .how-to-invest-popup .elementor-how-to-invest-tabs .e-n-tabs-heading {
    margin-left: 0.5rem;
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .dialog-widget-content .dialog-message.dialog-lightbox-message .how-to-invest-popup .elementor-how-to-invest-tabs .e-n-tab-title {
    height: auto !important;
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .dialog-widget-content .dialog-message.dialog-lightbox-message .how-to-invest-popup .main-title {
    margin: 0;
    padding: 1.25rem 1.5rem 1.125rem;
    border-bottom: 0.0625rem solid var(--rd-color-utility-disabled);
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .find-specialist-section.find-specialist-section_v2 {
    min-height: -webkit-calc(100dvh - 242px);
    min-height: -moz-calc(100dvh - 242px);
    min-height: calc(100dvh - 242px);
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .elementor-element.e-con-full.e-child:contains(.investment-professional-tab) {
    height: -webkit-calc(100dvh - 71px);
    height: -moz-calc(100dvh - 71px);
    height: calc(100dvh - 71px);
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .elementor-element.e-con-full.e-child:contains(.investment-professional-tab) .elementor-how-to-invest-tabs {
    height: 100%;
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .elementor-element.e-con-full.e-child:contains(.investment-professional-tab) .elementor-how-to-invest-tabs .e-n-tabs {
    height: 100%;
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .elementor-element.e-con-full.e-child:contains(.investment-professional-tab) .elementor-how-to-invest-tabs .e-n-tabs .elementor-widget.elementor-widget-html {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .elementor-element.e-con-full.e-child:contains(.investment-professional-tab) .elementor-how-to-invest-tabs .e-n-tabs .elementor-widget.elementor-widget-html .investment-professional-tab {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .elementor-popup-modal:has(.how-to-invest-popup) .elementor-element.e-con-full.e-child:contains(.investment-professional-tab) .elementor-how-to-invest-tabs .e-n-tabs .elementor-widget.elementor-widget-html .investment-professional-tab .find-specialist-section {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .elementor-popup-modal.dialog-type-lightbox {
    display: block !important;
  }
}
@media (min-width: 31.25rem) {
  .elementor-popup-modal:has(.how-to-invest-popup) .dialog-widget-content .dialog-message.dialog-lightbox-message .how-to-invest-popup .elementor-how-to-invest-tabs .e-n-tab-title-text {
    font-size: var(--rd-font-size-xs);
    line-height: var(--rd-line-height-xs);
  }
}
.find-specialist-section__label {
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-4xs);
  letter-spacing: 0.2px;
}

.find-specialist-section .specialist-card__name {
  font-size: var(--rd-font-size-xs);
  line-height: var(--rd-line-height-xs);
}

.find-specialist-section {
  background-color: var(--rd-color-primary-brand);
  color: var(--rd-color-primary-white);
  padding: 2rem 1.5rem;
  -webkit-border-radius: 1rem;
     -moz-border-radius: 1rem;
          border-radius: 1rem;
  min-height: 17.5rem;
}
.find-specialist-section__call-info {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.find-specialist-section__call-info a {
  padding-left: 0.625rem;
}
.find-specialist-section__email-info {
  margin-top: 0.25rem;
}
.find-specialist-section_light-bg {
  background-color: var(--rd-color-primary-action-lightest);
  color: var(--rd-color-primary-black);
}

.find-specialist-section__title {
  font-size: var(--rd-font-size-2m);
  line-height: var(--rd-line-height-2m);
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.find-specialist-section__containers {
  margin-top: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.find-specialist-section__container {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.find-specialist-section__container:first-child {
  max-width: 17.875rem;
}

.find-specialist-section__label {
  font-weight: 700;
  margin-bottom: 0.25rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.find-specialist-section__label#find-specialist-cards-label {
  display: none;
}

.find-specialist-section__input-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.find-specialist-section input {
  color: var(--rd-color-primary-black);
}

.find-specialist-section__cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin: 0;
}

.find-specialist-section__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 17.875rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.find-specialist-section__card:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
  -webkit-border-radius: 0.75rem !important;
     -moz-border-radius: 0.75rem !important;
          border-radius: 0.75rem !important;
}

.find-specialist-section .specialist-card {
  padding: 1rem;
  background-color: var(--rd-color-primary-white);
  -webkit-border-radius: 0.75rem;
     -moz-border-radius: 0.75rem;
          border-radius: 0.75rem;
  color: var(--rd-color-primary-black);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.find-specialist-section .specialist-card__avatar-and-name-and-position {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.find-specialist-section .specialist-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.find-specialist-section .specialist-card__avatar img {
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  width: 100%;
  height: 100%;
}

.find-specialist-section .specialist-card__name-and-position {
  margin-left: 1rem;
}

.find-specialist-section .specialist-card__name {
  font-weight: 700;
}

.find-specialist-section .specialist-card__position {
  color: var(--rd-color-grey-bright);
  font-size: var(--rd-font-size-6xs);
  letter-spacing: 0.005em;
}

.find-specialist-section .specialist-card__contact-info {
  font-size: var(--rd-font-size-5xs);
  letter-spacing: 0.005em;
}

.carousel__item .etf-card {
  width: 18rem;
}

@media (max-width: 59.9375rem) {
  .strategy-page-header__content {
    margin: 0 0.25rem;
    padding: 2.5rem 0;
  }
  .chart-banner-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
  }
  .chart-banner-section__content {
    padding: 0;
    max-width: unset;
  }
  .chart-banner-section__details {
    max-width: unset;
  }
  .find-specialist-section__containers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 60rem) {
  .benefit-cards-section__cards {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 42.875rem) {
  .find-specialist-section {
    min-height: auto;
  }
  .find-specialist-section__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .find-specialist-section__card {
    max-width: 100%;
  }
  .find-specialist-section__title {
    text-align: center;
  }
  .find-specialist-section__container:first-child {
    max-width: 100%;
  }
}
.find-specialist-section.find-specialist-section_v2 {
  min-height: 16.875rem;
  position: relative;
}
.find-specialist-section.find-specialist-section_v2 ul li {
  list-style: none;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__title-with-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__title-with-icon svg {
  margin-right: 0.625rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__title {
  font-size: var(--rd-font-size-2m);
  line-height: var(--rd-line-height-2m);
  margin: 0;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__input-wrapper {
  margin-bottom: 6.125rem;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__contact-info {
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-3xs);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__contact-info > span {
  margin-right: 0.375rem;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__contact-info a {
  padding-left: 0;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__contact-info_call-info {
  margin-top: 0;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__contact-info_email {
  margin-top: 0.25rem;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__containers {
  margin: 1rem 0 0;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__container_cards .find-specialist-section__label {
  margin-top: 1.5rem;
}
.find-specialist-section.find-specialist-section_v2 .find-specialist-section__contacts {
  margin-top: 1.25rem;
}
.find-specialist-section.find-specialist-section_v2 .specialist-card__avatar-and-name-and-position {
  height: 2.75rem;
  margin-bottom: 0.875rem;
}
.find-specialist-section.find-specialist-section_v2 .specialist-card__phone {
  height: 1.25rem;
}
.find-specialist-section.find-specialist-section_v2 .specialist-card__email {
  margin-top: 0.25rem;
  height: 1.25rem;
}
.find-specialist-section.find-specialist-section_v2 .dw-container {
  width: 18rem;
}

.find-specialist-section_light-bg .find-specialist-section__title-with-icon svg path {
  fill: var(--rd-color-primary-black);
}

@media (max-width: 42.875rem) {
  .find-specialist-section__title-with-icon svg {
    display: none;
  }
}
@media (max-width: 59.9375rem) {
  .find-specialist-section.find-specialist-section_v2 .find-specialist-section__containers {
    gap: 0;
  }
  .find-specialist-section.find-specialist-section_v2 .find-specialist-section__input-wrapper {
    margin-bottom: 0;
  }
}
@media (min-width: 60rem) {
  .find-specialist-section.find-specialist-section_v2 .find-specialist-section__contacts {
    position: absolute;
    margin-top: 0;
    top: 8.875rem;
  }
  .find-specialist-section.find-specialist-section_v2 .find-specialist-section__container_cards .find-specialist-section__label {
    margin-top: 0;
  }
}
@media (max-width: 60rem) {
  .find-specialist-section.find-specialist-section_v2 .dw-container {
    max-width: 18rem;
    width: 100%;
  }
}
.elementor-fund-section-tabs {
  max-width: 38.4375rem;
  padding-top: 0.5rem !important;
}

.elementor-rd-tabs .e-n-tabs-heading {
  --n-tabs-title-gap: 1rem;
  position: relative;
}
.elementor-rd-tabs .e-n-tabs-heading:after {
  content: "";
  width: 100%;
  position: absolute;
  top: -webkit-calc(100% + 0.375rem);
  top: -moz-calc(100% + 0.375rem);
  top: calc(100% + 0.375rem);
  left: 0;
  height: var(--rd-ui-tabs-border-bottom-height-active);
  -webkit-border-radius: var(--rd-ui-tabs-border-radius-active);
     -moz-border-radius: var(--rd-ui-tabs-border-radius-active);
          border-radius: var(--rd-ui-tabs-border-radius-active);
  background-color: var(--rd-ui-tabs-heading-divider-color);
}
.elementor-rd-tabs .e-n-tab-title {
  --n-tabs-title-font-size: var(--rd-ui-tabs-title-font-size);
  --n-tabs-title-padding-block-start: var(--rd-ui-tabs-title-padding-top);
  --n-tabs-title-padding-inline-end: var(--rd-ui-tabs-title-padding-right);
  --n-tabs-title-padding-block-end: var(--rd-ui-tabs-title-padding-bottom);
  --n-tabs-title-padding-inline-start: var(--rd-ui-tabs-title-padding-left);
  margin: var(--rd-ui-tabs-title-margin);
  line-height: var(--rd-ui-tabs-title-line-height);
  letter-spacing: var(--rd-ui-tabs-title-letter-spacing);
  height: 1rem !important;
  margin: 0 !important;
  padding: 0 !important;
}
.elementor-rd-tabs .e-n-tab-title:hover {
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.elementor-rd-tabs .e-n-tab-title:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
}
.elementor-rd-tabs .e-n-tab-title .e-n-tab-title-text {
  font-weight: 400;
}
.elementor-rd-tabs .e-n-tab-title:first-child {
  margin-left: 0;
}
.elementor-rd-tabs .e-n-tab-title:last-child {
  margin-right: 0;
}
.elementor-rd-tabs .e-n-tab-title[aria-selected=true]:after {
  content: "";
  width: 100%;
  position: absolute;
  top: -webkit-calc(100% + 0.375rem);
  top: -moz-calc(100% + 0.375rem);
  top: calc(100% + 0.375rem);
  left: 0;
  height: var(--rd-ui-tabs-border-bottom-height-active);
  -webkit-border-radius: var(--rd-ui-tabs-border-radius-active);
     -moz-border-radius: var(--rd-ui-tabs-border-radius-active);
          border-radius: var(--rd-ui-tabs-border-radius-active);
  background-color: var(--rd-ui-tabs-border-bottom-color-active);
  z-index: var(--rd-ui-tabs-border-bottom-z-index-active);
}
.elementor-rd-tabs .e-n-tab-title[aria-selected=false] {
  --n-tabs-title-color: var(--rd-ui-tabs-title-color);
  --n-tabs-title-background-color: var(--rd-ui-tabs-title-bg-color);
}
.elementor-rd-tabs .e-n-tab-title[aria-selected=true] {
  --n-tabs-title-background-color-active: var(--rd-ui-tabs-title-bg-color-active);
  --n-tabs-title-color-active: var(--rd-ui-tabs-title-color-active);
}
.elementor-rd-tabs .e-n-tab-title[aria-selected=true]:hover {
  --n-tabs-title-color-active: var(--rd-ui-tabs-title-color-active-hover);
}
.elementor-rd-tabs .e-n-tab-title[aria-selected=true] .e-n-tab-title-text {
  font-weight: 700;
}
.elementor-rd-tabs .e-n-tab-title[aria-selected=false]:hover {
  --n-tabs-title-background-color-hover: var(--rd-ui-tabs-title-bg-color-hover);
  --n-tabs-title-color-hover: var(--rd-ui-tabs-title-color-hover);
  --n-tabs-title-background-color-active: var(--rd-ui-tabs-title-bg-color-hover);
  --n-tabs-title-color-active: var(--rd-ui-tabs-title-color-hover);
}
.elementor-rd-tabs .elementor-widget-n-tabs {
  --n-tabs-gap: 20px;
}
.elementor-rd-tabs .elementor-widget-n-tabs .e-n-tabs-heading {
  --n-tabs-heading-justify-content: flex-start;
}
.elementor-rd-tabs .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs[data-touch-mode=true] > .e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover {
  --n-tabs-title-background-color-active: var(--rd-ui-tabs-title-bg-color-hover);
}
.elementor-rd-tabs .elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover {
  --n-tabs-title-color-active: var(--rd-ui-tabs-title-color-active);
}
.elementor-rd-tabs .elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover a {
  --n-tabs-title-color-active: var(--rd-ui-tabs-title-color-active);
}

@media screen and (max-width: 960px) {
  .elementor-fund-section-tabs {
    max-width: 37.5rem;
    margin: 0.5rem auto 0;
  }
  .elementor-fund-section-tabs .e-n-tab-title {
    padding-bottom: 0.75rem;
  }
  .elementor-fund-section-tabs .e-n-tabs-heading {
    padding-bottom: 0.75rem;
    padding-top: 0.375rem;
    padding-left: 0.375rem;
  }
  .elementor-fund-section-tabs .e-n-tabs-heading:after {
    top: 86%;
    min-width: 29.375rem;
  }
  .elementor-fund-section-content {
    padding: 0 1rem !important;
  }
}
.jquery-modal.blocker {
  z-index: 1000000;
  background-color: color-mix(in srgb, var(--rd-color-blue-dark), transparent 20%);
}
.jquery-modal .modal {
  padding: 0;
}
.jquery-modal .modal a.close-modal {
  display: block;
  position: absolute;
  top: 24px;
  right: 23px;
  width: 24px;
  height: 24px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMy40MTQgMTEuOTk5OEwxOC43MDcgNi43MDY4NUMxOC44OTQ1IDYuNTE5MzQgMTguOTk5OCA2LjI2NTAzIDE4Ljk5OTggNS45OTk4NUMxOC45OTk4IDUuNzM0NjcgMTguODk0NSA1LjQ4MDM2IDE4LjcwNyA1LjI5Mjg1QzE4LjUxOTUgNS4xMDUzNCAxOC4yNjUxIDUgMTggNUMxNy43MzQ4IDUgMTcuNDgwNSA1LjEwNTM0IDE3LjI5MyA1LjI5Mjg1TDEyIDEwLjU4NThMNi43MDY5NyA1LjI5Mjg1QzYuNjE0MTMgNS4yIDYuNTAzOSA1LjEyNjM2IDYuMzgyNiA1LjA3NjExQzYuMjYxMjkgNS4wMjU4NiA2LjEzMTI3IDUgNS45OTk5NyA1QzUuODY4NjcgNSA1LjczODY1IDUuMDI1ODYgNS42MTczNSA1LjA3NjExQzUuNDk2MDQgNS4xMjYzNiA1LjM4NTgyIDUuMiA1LjI5Mjk3IDUuMjkyODVDNS4yMDAxMyA1LjM4NTY5IDUuMTI2NDggNS40OTU5MiA1LjA3NjIzIDUuNjE3MjJDNS4wMjU5OCA1LjczODUzIDUuMDAwMTIgNS44Njg1NSA1LjAwMDEyIDUuOTk5ODVDNS4wMDAxMiA2LjEzMTE1IDUuMDI1OTggNi4yNjExNyA1LjA3NjIzIDYuMzgyNDdDNS4xMjY0OCA2LjUwMzc4IDUuMjAwMTMgNi42MTQgNS4yOTI5NyA2LjcwNjg1TDEwLjU4NiAxMS45OTk4TDUuMjkyOTcgMTcuMjkyOEM1LjEwNTQ2IDE3LjQ4MDQgNS4wMDAxMiAxNy43MzQ3IDUuMDAwMTIgMTcuOTk5OEM1LjAwMDEyIDE4LjI2NSA1LjEwNTQ2IDE4LjUxOTMgNS4yOTI5NyAxOC43MDY5QzUuNDgwNDggMTguODk0NCA1LjczNDc5IDE4Ljk5OTcgNS45OTk5NyAxOC45OTk3QzYuMjY1MTUgMTguOTk5NyA2LjUxOTQ2IDE4Ljg5NDQgNi43MDY5NyAxOC43MDY5TDEyIDEzLjQxMzhMMTcuMjkzIDE4LjcwNjlDMTcuMzg1NiAxOC44IDE3LjQ5NTggMTguODc0IDE3LjYxNzEgMTguOTI0NEMxNy43Mzg1IDE4Ljk3NDkgMTcuODY4NiAxOS4wMDA5IDE4IDE5LjAwMDlDMTguMTMxNCAxOS4wMDA5IDE4LjI2MTUgMTguOTc0OSAxOC4zODI4IDE4LjkyNDRDMTguNTA0MiAxOC44NzQgMTguNjE0MyAxOC44IDE4LjcwNyAxOC43MDY5QzE4Ljc5OTkgMTguNjE0MSAxOC44NzM3IDE4LjUwMzkgMTguOTI0IDE4LjM4MjVDMTguOTc0MyAxOC4yNjEyIDE5LjAwMDIgMTguMTMxMiAxOS4wMDAyIDE3Ljk5OThDMTkuMDAwMiAxNy44Njg1IDE4Ljk3NDMgMTcuNzM4NSAxOC45MjQgMTcuNjE3MkMxOC44NzM3IDE3LjQ5NTggMTguNzk5OSAxNy4zODU2IDE4LjcwNyAxNy4yOTI4TDEzLjQxNCAxMS45OTk4WiIgZmlsbD0iI0JDQkNCQyIvPgo8L3N2Zz4K);
}
.jquery-modal .modal a.close-modal:hover, .jquery-modal .modal a.close-modal:focus-visible {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuNzA3MTEgNS4yOTI4OUM2LjMxNjU4IDQuOTAyMzcgNS42ODM0MiA0LjkwMjM3IDUuMjkyODkgNS4yOTI4OUM0LjkwMjM3IDUuNjgzNDIgNC45MDIzNyA2LjMxNjU4IDUuMjkyODkgNi43MDcxMUwxMC41ODU4IDEyTDUuMjkyOTIgMTcuMjkyOUM0LjkwMjQgMTcuNjgzNCA0LjkwMjQgMTguMzE2NiA1LjI5MjkyIDE4LjcwNzFDNS42ODM0NSAxOS4wOTc2IDYuMzE2NjEgMTkuMDk3NiA2LjcwNzE0IDE4LjcwNzFMMTIgMTMuNDE0MkwxNy4yOTI5IDE4LjcwNzFDMTcuNjgzNCAxOS4wOTc2IDE4LjMxNjYgMTkuMDk3NiAxOC43MDcxIDE4LjcwNzFDMTkuMDk3NiAxOC4zMTY2IDE5LjA5NzYgMTcuNjgzNCAxOC43MDcxIDE3LjI5MjlMMTMuNDE0MiAxMkwxOC43MDcxIDYuNzA3MTFDMTkuMDk3NyA2LjMxNjU4IDE5LjA5NzcgNS42ODM0MiAxOC43MDcxIDUuMjkyODlDMTguMzE2NiA0LjkwMjM3IDE3LjY4MzQgNC45MDIzNyAxNy4yOTI5IDUuMjkyODlMMTIgMTAuNTg1OEw2LjcwNzExIDUuMjkyODlaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4);
}
.jquery-modal .modal a.close-modal:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
}

@media (max-width: calc(60rem - 0.0625rem)) {
  .jquery-modal.blocker {
    padding: 0;
  }
  .jquery-modal .modal {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
  }
}
.rd-strategy-page .rd-strategy-page-content {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.rd-strategy-page .strategy-page-section {
  margin: 2rem auto;
}
.rd-strategy-page .strategy-page-header {
  text-align: center;
}
.rd-strategy-page .strategy-page-header__title {
  font-size: var(--rd-font-size-xl);
  line-height: var(--rd-line-height-xl);
}
.rd-strategy-page .strategy-page-header__hero {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
  height: 21.25rem;
  width: 100%;
}
.rd-strategy-page .strategy-page-header__content {
  padding: 2rem 0;
  margin: 0 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rd-strategy-page .strategy-page-header__button {
  margin-top: 1.5rem;
}
.rd-strategy-page .strategy-page-header__button-content {
  width: 7.125rem;
  height: 2.5rem;
  color: var(--rd-color-primary-white);
  background-color: var(--rd-color-primary-action-dark);
  -webkit-border-radius: 0.25rem;
     -moz-border-radius: 0.25rem;
          border-radius: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--rd-font-size-5x);
  line-height: var(--rd-line-height-4xs);
}
.rd-strategy-page .strategy-page-header__button-content:hover {
  background-color: var(--rd-color-primary-action-bright);
}
.rd-strategy-page .strategy-page-header__description {
  margin-top: 1rem;
  font-size: var(--rd-font-size-s);
  line-height: var(--rd-line-height-m);
}
.rd-strategy-page .strategy-page-header__button {
  margin-top: 1.5rem;
  width: 7.125rem;
}
.rd-strategy-page .top-section__first-banner {
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  -webkit-border-radius: 1rem;
     -moz-border-radius: 1rem;
          border-radius: 1rem;
  background-color: var(--rd-color-blue-soft);
}
.rd-strategy-page .top-section__first-banner-title {
  font-size: var(--rd-font-size-s);
  line-height: var(--rd-line-height-m);
  font-weight: 700;
  padding: 1rem;
  margin-bottom: 1rem;
}
.rd-strategy-page .top-section__first-banner-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rd-strategy-page .top-section__text-wrapper {
  padding: 0 1rem 1rem;
  margin-right: 1rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.rd-strategy-page .top-section__text-wrapper p {
  font-size: var(--rd-font-size-2xs);
  line-height: var(--rd-line-height-2xs);
  letter-spacing: var(--rd-letter-spacing-xs);
}
.rd-strategy-page .top-section__text-wrapper p + p {
  margin-top: 1rem;
}
.rd-strategy-page .top-section__image-caption {
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-4xs);
  letter-spacing: 0.2px;
  text-align: center;
  margin-top: 0.25rem;
}
.rd-strategy-page .top-section__second-banner {
  margin-top: 1rem;
  padding: 2.5rem;
  -webkit-border-radius: 1rem;
     -moz-border-radius: 1rem;
          border-radius: 1rem;
  color: var(--rd-color-primary-white);
  background-color: var(--rd-color-primary-brand);
}
.rd-strategy-page .top-section__second-banner-title {
  font-size: var(--rd-font-size-s);
  line-height: var(--rd-line-height-m);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.rd-strategy-page .top-section__second-banner-text {
  font-size: var(--rd-font-size-2xs);
  line-height: var(--rd-line-height-2xs);
}
.rd-strategy-page .document-thumbnail-card {
  width: 18rem;
  padding: 0 0.25rem 0.25rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.rd-strategy-page .document-thumbnail-card:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
  outline-offset: -0.25rem !important;
  -webkit-border-radius: 1.125rem !important;
     -moz-border-radius: 1.125rem !important;
          border-radius: 1.125rem !important;
}
.rd-strategy-page .document-thumbnail-card.rd-tooltip {
  cursor: default;
}
.rd-strategy-page .document-thumbnail-card.rd-tooltip:focus, .rd-strategy-page .document-thumbnail-card.rd-tooltip:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
  outline-width: 0.25rem !important;
  outline-offset: -0.25rem !important;
  -webkit-border-radius: 1.125rem !important;
     -moz-border-radius: 1.125rem !important;
          border-radius: 1.125rem !important;
}
.rd-strategy-page .document-thumbnail-card__title {
  font-size: var(--rd-font-size-l);
  line-height: var(--rd-line-height-l);
  text-align: center;
  padding: 2rem 0 1.5rem;
}
.rd-strategy-page .document-thumbnail-card__content-wrapper {
  -webkit-border-radius: 1.125rem !important;
     -moz-border-radius: 1.125rem !important;
          border-radius: 1.125rem !important;
  padding: 0 0.25rem 0.25rem 0;
}
.rd-strategy-page .document-thumbnail-card__box-shadow {
  width: 100%;
  -webkit-box-shadow: 0.125rem 0.25rem 0.25rem 0 rgba(60, 60, 60, 0.1019607843);
     -moz-box-shadow: 0.125rem 0.25rem 0.25rem 0 rgba(60, 60, 60, 0.1019607843);
          box-shadow: 0.125rem 0.25rem 0.25rem 0 rgba(60, 60, 60, 0.1019607843);
  -webkit-border-radius: 1.125rem !important;
     -moz-border-radius: 1.125rem !important;
          border-radius: 1.125rem !important;
}
.rd-strategy-page .document-thumbnail-card__img-wrapper {
  height: 13.9375rem;
  padding: 0 1rem;
  background-color: color-mix(in srgb, var(--rd-color-grey-soft), white 70%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-border-top-left-radius: 1rem;
     -moz-border-radius-topleft: 1rem;
          border-top-left-radius: 1rem;
  -webkit-border-top-right-radius: 1rem;
     -moz-border-radius-topright: 1rem;
          border-top-right-radius: 1rem;
}
.rd-strategy-page .document-thumbnail-card__img {
  height: 9.875rem;
  -webkit-border-radius: 0.25rem;
     -moz-border-radius: 0.25rem;
          border-radius: 0.25rem;
  background-color: var(--rd-color-primary-white);
}
.rd-strategy-page .document-thumbnail-card__img:hover {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.rd-strategy-page .document-thumbnail-card.rd-tooltip .document-thumbnail-card__img:hover {
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
}
.rd-strategy-page .document-thumbnail-card__footer {
  font-size: var(--rd-font-size-3xs);
  line-height: var(--rd-line-height-3xs);
  letter-spacing: var(--rd-letter-spacing-m);
  padding: 1rem;
  height: 4.5rem;
  width: 100%;
  color: var(--rd-color-primary-black);
}
.rd-strategy-page .want-more-section {
  padding: 1.5rem 0;
}
.rd-strategy-page .want-more-section__container {
  padding: 2.5rem 1rem;
  background-color: color-mix(in srgb, var(--rd-color-blue-soft), white 70%);
  -webkit-border-radius: 1rem;
     -moz-border-radius: 1rem;
          border-radius: 1rem;
  width: 100%;
  text-align: center;
}
.rd-strategy-page .want-more-section__title {
  font-size: var(--rd-font-size-2m);
  line-height: var(--rd-line-height-2m);
  margin: 0 auto;
}
.rd-strategy-page .want-more-section__text {
  margin-top: 1rem;
}
.rd-strategy-page .want-more-section__link-wrapper {
  margin-top: 1rem;
}
.rd-strategy-page .strategy-page-disclosure {
  margin: 2rem auto;
}
.rd-strategy-page .etf-card {
  padding: 0 0.25rem 0.25rem 0;
}
.rd-strategy-page .etf-card:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
  outline-offset: -0.25rem !important;
  -webkit-border-radius: 1.125rem !important;
     -moz-border-radius: 1.125rem !important;
          border-radius: 1.125rem !important;
}
.rd-strategy-page .etf-card__box-shadow {
  -webkit-box-shadow: 0.125rem 0.25rem 0.25rem 0 rgba(60, 60, 60, 0.1019607843);
     -moz-box-shadow: 0.125rem 0.25rem 0.25rem 0 rgba(60, 60, 60, 0.1019607843);
          box-shadow: 0.125rem 0.25rem 0.25rem 0 rgba(60, 60, 60, 0.1019607843);
  -webkit-border-radius: 1.125rem !important;
     -moz-border-radius: 1.125rem !important;
          border-radius: 1.125rem !important;
  padding: 1rem;
}
.rd-strategy-page .etf-card__label-wrapper {
  background-color: var(--rd-color-primary-brand);
  color: var(--rd-color-primary-white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-border-radius: 1rem;
     -moz-border-radius: 1rem;
          border-radius: 1rem;
  width: 6.875rem;
  height: 6.875rem;
}
.rd-strategy-page .etf-card__label {
  font-size: var(--rd-font-size-m);
  line-height: var(--rd-line-height-m);
  color: var(--rd-primary-white);
  font-weight: 700;
}
.rd-strategy-page .etf-card__upper-title {
  margin-top: 1.5rem;
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-4xs);
}
.rd-strategy-page .etf-card__title {
  font-size: 1.375rem;
  line-height: 1.625rem;
  margin-top: 0.375rem;
  font-weight: 700;
  max-width: 15.625rem;
}
.rd-strategy-page .etf-card__details {
  padding: 1.5rem 0;
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-4x);
}
.rd-strategy-page .etf-card .rd-link {
  font-size: var(--rd-font-size-xs);
  line-height: var(--rd-line-height-xs);
  font-weight: 400;
}
.rd-strategy-page .etf-card .rd-link + .rd-link {
  margin-top: 1rem;
}
.rd-strategy-page .section-with-title__title-wrapper {
  padding: 2rem 0 1.5rem;
  text-align: center;
}
.rd-strategy-page .section-with-title__title {
  font-size: var(--rd-font-size-l);
  line-height: var(--rd-line-height-l);
}
.rd-strategy-page .section-with-title__subtitle {
  margin-top: 0.25rem;
  font-size: var(--rd-font-size-s);
  line-height: var(--rd-line-height-m);
}
.rd-strategy-page .section-with-title__content {
  margin-top: 1rem;
}
.rd-strategy-page .card-with-title-and-text {
  padding: 2rem 1rem;
  -webkit-border-radius: 0.5rem;
     -moz-border-radius: 0.5rem;
          border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--rd-color-blue-soft), white 70%);
}
.rd-strategy-page .card-with-title-and-text__title {
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 3rem;
  text-align: center;
}
.rd-strategy-page .card-with-title-and-text__title + .card-with-title-and-text__text {
  margin-top: 1rem;
}
.rd-strategy-page .card-with-title-and-text__text {
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
}

@media (max-width: 53.75rem) {
  .rd-strategy-page .top-section {
    margin: 2rem auto;
  }
  .rd-strategy-page .top-section__first-banner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
  }
  .rd-strategy-page .top-section__first-banner-title {
    padding: 0rem;
  }
  .rd-strategy-page .top-section__first-banner-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .rd-strategy-page .top-section__text-wrapper {
    padding: 0;
    margin-bottom: 1rem;
  }
  .rd-strategy-page .top-section__second-banner {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 31.25rem) {
  .rd-strategy-page .strategy-page-section {
    margin: 1rem auto;
  }
  .rd-strategy-page .want-more-section {
    padding: 1rem 0;
  }
  .rd-strategy-page .want-more-section__title {
    max-width: 15rem;
  }
}
@media (max-width: 54.375rem) {
  .rd-strategy-page .strategy-page-header {
    background-color: #f0f9fa;
  }
  .rd-strategy-page .strategy-page-header__hero {
    display: none;
  }
  .rd-strategy-page .strategy-page-header__content {
    padding: 5rem 0;
  }
}
.rd-etfs-homepage-page .strategy-page-header__hero {
  background-position: center center;
  background-image: url(/wp-content/uploads/images/etfs-homepage/etfs-homepage-hero-wide.webp);
}
.rd-etfs-homepage-page .strategy-page-header__title {
  max-width: 46.5rem;
}
.rd-etfs-homepage-page .strategy-page-header__description {
  max-width: 53.125rem;
}
.rd-etfs-homepage-page .strategy-page-header__cards {
  margin-top: 2rem;
}
.rd-etfs-homepage-page .strategy-page-header__cards .chart-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.rd-etfs-homepage-page .strategy-page-header__cards .chart-cards .chart-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 18rem;
  padding: 2rem 1rem;
}
.rd-etfs-homepage-page .strategy-page-header__cards .chart-cards .chart-card__img {
  width: 6.25rem;
  height: 6.25rem;
}
.rd-etfs-homepage-page .strategy-page-header__cards .chart-cards .chart-card__percent {
  font-size: var(--rd-font-size-s);
  line-height: var(--rd-line-height-m);
  font-weight: 700;
  margin-top: 1rem;
}
.rd-etfs-homepage-page .strategy-page-header__cards .chart-cards .chart-card__text {
  font-size: var(--rd-font-size-5xs);
  line-height: 1.5;
  letter-spacing: 0.2px;
  margin-top: 1rem;
}
.rd-etfs-homepage-page .strategy-page-header__info {
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-4xs);
  letter-spacing: 0.2px;
  margin-top: 1rem;
}
.rd-etfs-homepage-page .strategy-page-header__info p {
  text-align: center;
}
.rd-etfs-homepage-page .meet-fof-etfs-section .etf-card__box-shadow {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.rd-etfs-homepage-page .meet-fof-etfs-section .etf-card__title {
  height: 4.875rem;
}
.rd-etfs-homepage-page .meet-fof-etfs-section .etf-card__details {
  margin-left: -0.125rem;
  margin-right: -0.125rem;
  height: 7.875rem;
}
.rd-etfs-homepage-page .filters-section .filters-card {
  padding: 2rem 1.5rem 3.375rem;
  -webkit-border-radius: 1rem;
     -moz-border-radius: 1rem;
          border-radius: 1rem;
  color: var(--rd-color-primary-white);
  background-color: var(--rd-color-primary-brand);
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-4xs);
}
.rd-etfs-homepage-page .filters-section .filters-card__title {
  font-size: var(--rd-font-size-2m);
  line-height: var(--rd-line-height-2m);
}
.rd-etfs-homepage-page .filters-section .filters-card__content {
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.rd-etfs-homepage-page .filters-section .filters-card__column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.rd-etfs-homepage-page .filters-section .filters-card__column:nth-child(1) {
  width: 34.75rem;
}
.rd-etfs-homepage-page .filters-section .filters-card__column:nth-child(1) .filters-card__label {
  font-weight: 700;
}
.rd-etfs-homepage-page .filters-section .filters-card__column:nth-child(2) .filters-card__row {
  margin-left: 2.5rem;
  padding-left: 1.5rem;
  border-left: 0.0625rem solid var(--rd-color-primary-white);
}
.rd-etfs-homepage-page .filters-section .filters-card__column:nth-child(2) .filters-card__label {
  font-size: var(--rd-font-size-3xs);
  line-height: var(--line-height-3xs);
}
.rd-etfs-homepage-page .filters-section .filters-card__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 1.5rem;
}
.rd-etfs-homepage-page .filters-section .filters-card__field {
  width: 100%;
}
.rd-etfs-homepage-page .filters-section .filters-card__label {
  margin-bottom: 0.25rem;
}
.rd-etfs-homepage-page .filters-section .filters-card__link {
  background-color: var(--rd-color-primary-white);
  text-align: center;
  display: inline-block !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.rd-etfs-homepage-page .filters-section .filters-card__input-wrapper {
  margin-top: 0.25rem;
}
.rd-etfs-homepage-page .our-products-section .section-with-title__subtitle {
  max-width: 47.625rem;
  margin: 0 auto;
}
.rd-etfs-homepage-page .our-products-section .product-card {
  background-color: #f7f8f8;
  -webkit-border-radius: 1.25rem;
     -moz-border-radius: 1.25rem;
          border-radius: 1.25rem;
  width: 18rem;
  padding: 0 0.25rem 0.25rem 0;
}
.rd-etfs-homepage-page .our-products-section .product-card__content {
  padding: 1.5rem 1.25rem;
}
.rd-etfs-homepage-page .our-products-section .product-card__title {
  font-size: var(--rd-font-size-s);
  line-height: var(--rd-line-height-m);
  font-weight: 700;
}
.rd-etfs-homepage-page .our-products-section .product-card__link {
  margin-top: 1rem;
  font-size: var(--rd-font-size-xs);
  line-height: var(--rd-line-height-xs);
}
.rd-etfs-homepage-page .our-products-section .product-card__link button {
  text-align: left;
}
.rd-etfs-homepage-page .our-products-section .product-card:focus-visible {
  outline: 0.25rem solid var(--rd-color-utility-attention-bright) !important;
  outline-offset: 0.125rem !important;
  -webkit-border-radius: 0.125rem !important;
     -moz-border-radius: 0.125rem !important;
          border-radius: 0.125rem !important;
  outline-offset: -0.25rem !important;
  -webkit-border-radius: 1.125rem !important;
     -moz-border-radius: 1.125rem !important;
          border-radius: 1.125rem !important;
}
.rd-etfs-homepage-page .our-products-section .product-card__box-shadow {
  width: 100%;
  -webkit-box-shadow: 0.125rem 0.25rem 0.25rem 0 rgba(60, 60, 60, 0.1019607843);
     -moz-box-shadow: 0.125rem 0.25rem 0.25rem 0 rgba(60, 60, 60, 0.1019607843);
          box-shadow: 0.125rem 0.25rem 0.25rem 0 rgba(60, 60, 60, 0.1019607843);
  -webkit-border-radius: 1.125rem !important;
     -moz-border-radius: 1.125rem !important;
          border-radius: 1.125rem !important;
}
.rd-etfs-homepage-page .dive-deep-into-details-section .details-cards {
  margin-top: 0.5rem;
}
.rd-etfs-homepage-page .dive-deep-into-details-section .details-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
.rd-etfs-homepage-page .dive-deep-into-details-section .details-card__img-wrapper {
  max-width: 21.375rem;
  height: 11.875rem;
  width: 100%;
}
.rd-etfs-homepage-page .dive-deep-into-details-section .details-card__content {
  padding: 1.625rem 0;
}
.rd-etfs-homepage-page .dive-deep-into-details-section .details-card__title {
  font-size: var(--rd-font-size-m);
  line-height: var(--rd-line-height-m);
  font-weight: 700;
}
.rd-etfs-homepage-page .dive-deep-into-details-section .details-card__description {
  font-size: var(--rd-font-size-2xs);
  line-height: var(--rd-line-height-2xs);
  margin: 1rem 0 0.625rem;
  max-width: 26.875rem;
}
.rd-etfs-homepage-page .dive-deep-into-details-section .details-card__links {
  font-size: var(--rd-font-size-xs);
  line-height: var(--rd-line-height-xs);
}
.rd-etfs-homepage-page .dive-deep-into-details-section .details-card__link {
  padding: 1rem 0;
}
.rd-etfs-homepage-page .dive-deep-into-details-section .section-with-title__content {
  background-color: var(--rd-color-primary-white);
  padding: 1.5rem;
  -webkit-border-radius: 1.25rem;
     -moz-border-radius: 1.25rem;
          border-radius: 1.25rem;
}
.rd-etfs-homepage-page .move-forward-section__content {
  margin-top: 1.5rem;
}
.rd-etfs-homepage-page .move-forward-section__title {
  font-size: var(--rd-font-size-2m);
  line-height: var(--rd-line-height-2m);
  padding: 1.25rem 0 1rem;
  font-weight: 700;
}
.rd-etfs-homepage-page .move-forward-section__subtitle {
  font-size: var(--rd-font-size-3xs);
  line-height: var(--rd-line-height-3xs);
  padding-bottom: 1rem;
}
.rd-etfs-homepage-page .move-forward-section__region + .move-forward-section__region {
  margin-top: 0.625rem;
}
.rd-etfs-homepage-page .move-forward-section .individual-investors__options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.rd-etfs-homepage-page .move-forward-section .individual-investors__option {
  padding: 0.5rem 0;
}
.rd-etfs-homepage-page .move-forward-section .individual-investors__option-title {
  font-size: var(--rd-font-size-s);
  line-height: var(--rd-line-height-m);
  font-weight: 700;
  margin: 0.5rem 0;
}
.rd-etfs-homepage-page .move-forward-section .individual-investors__text {
  font-size: var(--rd-font-size-5xs);
  line-height: var(--rd-line-height-4xs);
}
.rd-etfs-homepage-page .move-forward-section .individual-investors__contacts {
  margin-bottom: 0.5rem;
  height: 2.5rem;
}
.rd-etfs-homepage-page .move-forward-section .individual-investors__contacts p {
  line-height: 1rem;
}
.rd-etfs-homepage-page .move-forward-section .individual-investors__contacts a {
  padding: 0.125rem 0;
  margin-top: 0.25rem;
}
.rd-etfs-homepage-page .elementor-widget-html:has(.dive-deep-into-details-section) {
  background-color: color-mix(in srgb, #e1f2f4, transparent 30%);
}
.rd-etfs-homepage-page .elementor-widget-html:has(.dive-deep-into-details-section) .strategy-page-section {
  margin: 1.5rem 0 2.5rem;
}

@media (max-width: 60rem) {
  .rd-etfs-homepage-page .strategy-page-header__cards {
    margin-top: 1.5rem;
  }
  .rd-etfs-homepage-page .strategy-page-header__cards .chart-cards {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
  }
  .rd-etfs-homepage-page .strategy-page-header__cards .chart-cards .chart-card {
    padding: 0 1rem 1rem;
  }
  .rd-etfs-homepage-page .move-forward-section .individual-investors__options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 54.375rem) {
  .rd-strategy-page.rd-etfs-homepage-page .strategy-page-header__content {
    padding: 2.5rem 0;
  }
}
@media (max-width: 48.125rem) {
  .rd-etfs-homepage-page .move-forward-section .section-with-title__subtitle {
    font-size: var(--rd-font-size-2xs);
    line-height: var(--rd-line-height-2xs);
  }
}
@media (max-width: 53.75rem) {
  .rd-etfs-homepage-page .filters-section .filters-card__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .rd-etfs-homepage-page .filters-section .filters-card__content .filters-card__column {
    width: 100%;
  }
  .rd-etfs-homepage-page .filters-section .filters-card__content .filters-card__column:nth-child(2) {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 0.0625rem solid var(--rd-color-primary-white);
    max-width: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
  }
  .rd-etfs-homepage-page .filters-section .filters-card__content .filters-card__column:nth-child(2) .filters-card__row {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }
  .rd-etfs-homepage-page .filters-section .filters-card__content .filters-card__column:nth-child(2) .filters-card__link {
    width: 100%;
  }
}
@media (max-width: 40rem) {
  .rd-etfs-homepage-page .filters-section .filters-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .rd-etfs-homepage-page .filters-section .filters-card__title {
    font-size: var(--rd-font-size-s);
    line-height: var(--rd-line-height-m);
  }
  .rd-etfs-homepage-page .filters-section .filters-card__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .rd-etfs-homepage-page .filters-section .filters-card__content .filters-card__column {
    max-width: 17.875rem;
    width: 100%;
  }
  .rd-etfs-homepage-page .filters-section .filters-card__content .filters-card__column:nth-child(2) {
    max-width: 17.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .rd-etfs-homepage-page .filters-section .filters-card__content .filters-card__column .filters-card__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 50rem) {
  .rd-etfs-homepage-page .dive-deep-into-details-section .details-cards {
    margin-top: 0;
  }
  .rd-etfs-homepage-page .dive-deep-into-details-section .details-cards .details-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.0625rem;
  }
  .rd-etfs-homepage-page .dive-deep-into-details-section .details-cards .details-card__img-wrapper {
    height: auto;
  }
  .rd-etfs-homepage-page .dive-deep-into-details-section .details-cards .details-card__content {
    padding: 0;
  }
}
@media (max-width: 30rem) {
  .rd-etfs-homepage-page .strategy-page-header__title {
    font-size: var(--rd-font-size-l);
    line-height: var(--rd-line-height-l);
  }
}