@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
html, body {
    font-family: "Inter", sans-serif;
    /* font-family: "Plus Jakarta Sans", sans-serif; */
    /* font-family: "Fraunces", serif; */
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

:root{
  --paper:#FBFAF6;
  --paper-elev:#FFFFFF;
  --font-color:#3B4A63;
  --font-color-2: #8695AB;
  --ink:#0E2340;
  --slate:#6B7889;
  --rule:#E7E1D3;
  --rule-strong:#D4CCB8;
  --teal:#0F9D8B;
  --teal-deep:#0A6E62;
  --teal-tint:#E5F4F1;
  --blue:#1E5A9E;
  --blue-deep:#143459;
  --blue-tint:#E3EDF7;
  --gold:#E8B040;
  --gold-tint:#F6EFD7;
  --up:#2E7A46;
  --up-tint:#E4F0E6;
  --down:#B24A3E;
  --down-tint:#F7E7E4;
  --shadow-sm: 0 1px 2px #0E23400A;
  --shadow-md: 0 6px 24px #0E23400F;
  /* --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Menlo', monospace; */
  /* Origin colors used across market page */
  --c-eu:#0F9D8B;
  --c-us:#1E5A9E;
  --c-nz:#C89A3E;
  --c-ar:#B24A3E;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 3px #0F9D8B33
    }
    50% {
        box-shadow: 0 0 0 6px #0F9D8B0D
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes tickerScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, var(--scroll-distance), 0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes priceSlideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes priceSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    color: var(--font-color);
    display: flex;
    flex-direction: column;
    min-height: 100svh;
}

.custom-scrollbar::-webkit-scrollbar {
	width: 0.375rem;
    height: 0.375rem;
}

.multiselect-input .multiselect-container::-webkit-scrollbar-track,
.ui-widget.ui-widget-content::-webkit-scrollbar-track,
.custom-dropdown .dropdown-menu::-webkit-scrollbar-track,
.custom-scrollbar::-webkit-scrollbar-track {
    background: var(--paper-elev);
}
   
.multiselect-input .multiselect-container::-webkit-scrollbar-thumb,
.ui-widget.ui-widget-content::-webkit-scrollbar-thumb,
.custom-dropdown .dropdown-menu::-webkit-scrollbar-thumb,
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--rule-strong);
    border-radius: 0.1875rem;
}

.flex-center-g-5,
.flex-center-g-10,
.flex-center-g-12,
.flex-center,
.custom-check-wrapper,
.custom-radio-wrapper,
.flex-btw {
    display: flex;
    align-items: center;
}

.flex-center-g-5 {
    gap: 0.3125rem;
}

.flex-center-g-10 {
    gap: 0.625rem;
}

.flex-center-g-12 {
    gap: 0.75rem;
}

.flex-btw {
    justify-content: space-between;
}

.flex-end {
    align-items: flex-end;
}

.flex-start,
.flex-end {
    display: flex;
    justify-content: space-between;
}

.flex-j-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-start {
    align-items: start;
}

label.error,
.error-txt {
    font-size: 0.75rem !important;
    line-height: 1rem;
    color: #FF6767 !important;
    position: absolute;
    left: 0;
    top: 100%;
}

.btn.secondary-btn,
.btn.primary-btn {
    font-size: 15.5px;
    line-height: 21px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 0.5rem;
    padding: 4px 14px;
    height: 40px;
    align-content: center;
    border: 1px solid;
}

.btn.btn-h-45 {
    height: 45px;
    padding-inline: 1.5rem;
}

.btn.btn-h-36 {
    font-size: 14.5px;
    line-height: 20px;
    height: 36px;
}

.btn.btn-h-31 {
    font-size: 13.5px;
    line-height: 18px;
    height: 31px;
}

.btn.primary-btn {
    background: var(--teal);
    color: var(--paper-elev) !important;
    border-color: var(--teal);
}

.btn.primary-btn:is(:hover, :active) {
    background: var(--teal-deep);
    border-color: var(--teal-deep);
}

.btn.secondary-btn {
    background: transparent;
    color: var(--ink) !important;
    border-color: var(--rule-strong);
}

.btn.secondary-btn:is(:hover, :active) {
    background: #F3EEDF;
    border-color: var(--font-color);
}

.btn.primary-btn.btn-bg-1 {
    background: var(--ink);
    border-color: var(--ink);
}

.btn.primary-btn.btn-bg-1:is(:hover, :active) {
    background: #1A3358;
    border-color: #1A3358;
}

.btn.primary-btn.btn-bg-2 {
    background: var(--paper-elev);
    border-color: var(--paper-elev);
    color: var(--ink) !important;
}

.btn.primary-btn.btn-bg-2:is(:hover, :active) {
    background: #EBEEF5;
    border-color: #EBEEF5;
}

.btn.secondary-btn.btn-bg-3 {
    background: transparent !important;
    color: var(--paper-elev) !important;
    border: 1px solid #FFFFFF4D !important;
}

.btn.secondary-btn.btn-bg-4 {
    background: var(--paper-elev);
    border-color: var(--rule-strong) !important;
}

.btn.secondary-btn.btn-bg-4:is(:hover, :active) {
    background: #FDFCF8;
    border-color: var(--ink) !important;
}

.link-btn {
    color: var(--ink);
}

.link-btn,
.link-btn-secondary { 
    font-weight: 500;
    transition: color .15s;
    text-decoration: none;
}

.link-btn:hover,
.link-btn-secondary { 
    color: var(--teal-deep);
}

.toggle-btn-wrapper .btn.secondary-btn,
.btn.toggle-radio-btn>label {
    font-size: 13.5px;
    line-height: 18px;
    color: var(--font-color) !important;
    background: var(--paper-elev);
    padding-inline: 1rem;
    height: 34px;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.toggle-btn-wrapper .icon-start::before {
    content: '';
    display: inline-block;
    transition: 0.4s ease-in-out;
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.toggle-btn-wrapper .btn.secondary-btn.selected,
.btn.toggle-radio-btn:has(input:checked)>label {
    background: var(--ink);
    color: var(--paper-elev) !important;
}

.toggle-btn-wrapper .btn.secondary-btn.selected,
.btn.toggle-radio-btn:has(input:checked) {
    border-color: var(--ink) !important;
}

.btn.toggle-radio-btn>label {
    font-weight: 500;
    letter-spacing: 0.01em;
    padding-block: 0.25rem;
    cursor: pointer;
    height: 100%;
}

.btn.toggle-radio-btn {
    border: 1px solid var(--rule) !important;
    border-radius: 0.5rem;
    padding: 0;
    overflow: hidden;
    height: 34px;
}

.toggle-btn {
    width: 30px;
    height: 16px;
    background: var(--slate);
    position: relative; 
    transition: 0.4s;
    border-radius: 20px;
    cursor: pointer;
}

.toggle-btn::before {
    content: '';
    height: 12px;
    width: 12px;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-btn:has(input:checked) {
    background: var(--teal-deep);
}

.toggle-btn:has(input:checked)::before {
    transform: translate(14px, -50%);
}

.list-icon::before {
    background: url(../images/list_icon.svg) center/contain no-repeat;
}

.map-icon::before {
    background: url(../images/map_icon.svg) center/contain no-repeat;
}

.list-icon.selected::before {
    background: url(../images/list_active_icon.svg) center/contain no-repeat;
}

.map-icon.selected::before {
    background: url(../images/map_active_icon.svg) center/contain no-repeat;
}

.btn-delete {
	background: url(../images/delete_icon.svg) center/contain no-repeat;
	width: 13px;
	height: 15px;
	border: 0;
	outline: none !important;
}

.edit-btn,
.profile-edit-btn::before {
    background: url(../images/edit_icon.svg) center/contain no-repeat;
    width: 0.875rem;
    height: 0.875rem;
}

.line-divider {
    border-top: 1px solid var(--rule);
    opacity: 1;
}

.highlight {
    background: #E5FFDE !important;
}

.jetBrains-mono-font {
    font-family: "JetBrains Mono", monospace !important;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 400;
    font-family: "Fraunces", serif;
    letter-spacing: -0.015em;
    color: var(--ink);
    font-variation-settings: "opsz" 96;
}

.section-secondary-title {
    font-size: 1.5rem;
    line-height: 2.375rem;
    color: var(--ink);
    font-weight: bold;
}

.section-title.f-30 {
    font-size: 1.875rem;
}

.section-title.f-26 {
    font-size: 1.625rem;
    font-variation-settings: unset;
    letter-spacing: unset;
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 35rem;
}

.section-title.f52 {
    font-size: 3.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
}

.section-link {
    font-size: 0.90625rem;
    font-weight: 500;
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
    padding-bottom: 2px;
    white-space: nowrap;
    text-decoration: none;
}

.section-link:hover,
.clear-filter-btn:hover {
    color: var(--ink);
}

.spinner-wrapper {
    background: #FFFFFFCC;
    position: fixed;
    height: 100svh;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
}

.spinner {
    margin: 0 auto;
    width: 4.5rem;
    height: 4.5rem;
    animation: rotate 0.8s infinite linear;
    border: 0.4375rem solid var(--teal);
    border-right-color: transparent;
    border-radius: 50%;
}

.font-10 {
    font-size: 0.625rem !important;
    line-height: 1rem !important;
}

.font-12 {
    font-size: 0.75rem !important;
    line-height: 1.125rem !important;
}

.font-13 {
    font-size: 0.8125rem !important;
    line-height: 1.1875rem !important;
}

.font-14 {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
}

.font-14-5 {
    font-size: 0.90625rem !important;
    line-height: 1.6 !important;
}

.font-15 {
    font-size: 0.9375rem !important;
    line-height: 1.375rem !important;
}

.font-16 {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}

.mb-6 {
    margin-bottom: 0.375rem !important;
}

.mb-10 {
    margin-bottom: 0.625rem !important;
}

.mb-12 {
    margin-bottom: 0.75rem !important;
}

.mb-14 {
    margin-bottom: 0.875rem !important;
}

.mb-20 {
    margin-bottom: 1.25rem !important;
}

.mb-32 {
    margin-bottom: 2rem !important;
}

.mb-40 {
    margin-bottom: 2.5rem;
}

.font-color-1 {
    color: var(--blue) !important;
}

.font-color-2 {
    color: var(--slate) !important;
}

.font-color-3 {
    color: var(--up) !important;
}

.font-color-4 {
    color: var(--down) !important;
}

.font-color-5 {
    color: #B9C2D2 !important;
}

.font-color-6 {
    color: var(--ink) !important;
}

.font-color-7 {
    color: var(--teal-deep) !important;
}

.font-color-8 {
    color: #C7D0DE !important;
}

.input-wrapper {
    position: relative;
}

.input-wrapper .form-label {
    font-size: 0.8125rem;
    line-height: 1.25rem;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.input-wrapper :where(.form-control, .form-select),
.multiselect-input .multiselect,
.btn.select-btn {
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 400;
    border-radius: 0.5rem;
    border: 1px solid var(--rule-strong);
    padding: 0.25rem 0.875rem;
    color: var(--ink);
}

.input-wrapper :where(.form-control:not(textarea), .form-select),
.multiselect-input .multiselect,
.btn.select-btn {
    height: 35px;
}

.input-wrapper textarea.form-control {
    padding-block: 0.5rem;
}

.input-wrapper :where(.form-control:focus, .form-select:focus),
.multiselect-input .multiselect:focus,
.contact-number-input:has(.multiselect:focus)> .form-control,
.contact-number-input:has(.form-control:focus) .multiselect,
.btn.select-btn:focus {
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 3px var(--teal-tint) !important;
}

.input-wrapper .form-control::placeholder {
    color:var(--slate);
}

.input-wrapper.filter-serach .form-control {
    font-size: 1rem;
    line-height: 1.25rem;
    height: 3.75rem;
    padding-inline: 3.375rem 0.375rem;
    box-shadow: var(--shadow-sm);
    transition: border-color .15s, box-shadow .15s;
    border-radius: 0.75rem;
}

.input-wrapper.filter-serach .search-btn,
.filter-serach::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.input-wrapper.filter-serach .search-btn {
    right: 0.375rem;
    height: calc(100% - 0.75rem);
    padding-inline: 1.5rem;
}

.filter-serach::before {
    content: '';
    background: url(../images/search_icon.svg)center/contain no-repeat;
    width: 1.25rem;
    height: 1.25rem;
    left: 1.25rem;
}

.input-wrapper .form-select,
.multiselect-input .multiselect,
.btn.select-btn {
    background: url(../images/arrow_down.svg) center no-repeat #FFFFFF;
    background-position-x: calc(100% - 0.875rem);
    padding-right: 30px !important;
}

.custom-check-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    flex-shrink: 0;
}

.custom-check-input,
.multiselect-input .multiselect-container .dropdown-item .form-check-input {
    width: 1rem;
    height: 1rem;
    background: url(../images/checkbox_normal.svg) center/contain no-repeat;
}

.custom-check-input:checked,
.multiselect-input .multiselect-container .dropdown-item .form-check-input:checked {
    background: url(../images/checkbox_active.svg) center/contain no-repeat;
}

.custom-check-wrapper,
.custom-radio-wrapper {
    gap: 0.375rem;
}

.multiselect-input .multiselect-container,
.multiselect-input .multiselect,
.btn.select-btn,
.multiselect-input .multiselect-native-select>.btn-group {
    width: 100%;
}

.multiselect-input .multiselect,
.btn.select-btn {
    text-align: left !important;
}

.multiselect-input .multiselect-container,
.custom-dropdown .dropdown-menu {
    border: unset !important;
    box-shadow: -2px 4px 15px 1px #81818140;
    border-radius: 0px 0px 0.5rem 0.5rem;
    padding: 0;
    min-width: 100%;
    z-index: 99999999999 !important;
}

.multiselect-input .multiselect-container,
.custom-dropdown .dropdown-menu,
.dropdown-menu-scroll {
    max-height: 25rem;
    overflow: auto;
    overflow-x: hidden;
}

.multiselect-input .multiselect-container[data-popper-placement^="top-"] {
    transform: unset !important;
    inset: auto auto calc(100% + 2px) !important;
}

.multiselect-input .multiselect-container .multiselect-filter>input.multiselect-search {
    margin-left: 0;
    border: 1px solid var(--rule-strong);
    border-radius: 0.5rem;
    padding: 0.25rem 0.75rem;
    height: 34px;
    font-size: 0.8125rem;
    line-height: 1.25rem;
    font-weight: 400;
    color: var(--ink);
    box-sizing: border-box;
    box-shadow: none;
}

.multiselect-input .multiselect-container .multiselect-filter i {
    display: none;
}

.multiselect-input .multiselect-container .multiselect-filter {
    padding: 0.5rem 0.875rem;
    position: sticky;
    top: 0;
    z-index: 9;
    background: var(--paper-elev);
}

.multiselect-input .multiselect-container .dropdown-item .form-check-input {
    margin-left: 0;
    border: none;
    border-radius: 0;
    margin-top: 0;
    box-shadow: none;
}

.multiselect-input .multiselect-container .dropdown-item .form-check {
    padding: 0;
    margin-bottom: 0;
    min-height: 0;
}

.multiselect-input .multiselect-container .dropdown-item .form-check,
.contact-number-input .multiselect-container .multiselect-option .form-check-label,
.contact-number-input .multiselect-input .multiselect .multiselect-selected-text,
.multiselect-input .multiselect-container .multiselect-group {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.multiselect-input .multiselect-container .dropdown-item.active,
.multiselect-input .multiselect-container .dropdown-item-text.multiselect-group:is(:hover, :focus, :active) {
    background-color: var(--paper-elev) !important;
}

.multiselect-input .multiselect-container .dropdown-item .form-check-label,
.custom-dropdown>.dropdown-menu .custom-check-wrapper>label {
    font-size: 0.75rem;
    line-height: 1.125rem;
    color: var(--ink);
    margin: 0;
    font-weight: 400;
}

.multiselect-input .multiselect-container .multiselect-all:is(:hover, :focus),
.multiselect-input .multiselect-container .multiselect-option:is(:hover, :focus),
.contact-number-input .multiselect-input .multiselect-container .multiselect-option.active,
.single-selection .multiselect-container .dropdown-item.active {
    background-color: var(--teal-tint) !important;
}

.multiselect-input .multiselect-container .dropdown-item,
.select-dropdown-item,
.multiselect-input .multiselect-container .dropdown-item-text.multiselect-group {
    padding: 0.375rem 0.875rem;
}

.multiselect-input .multiselect-container::-webkit-scrollbar,
.ui-widget.ui-widget-content::-webkit-scrollbar,
.custom-dropdown .dropdown-menu::-webkit-scrollbar {
	width: 0.25rem;
    height: 0.25rem;
}

.multiselect-input .multiselect-native-select {
    display: block;
}

.multiselect-input:not(.multiselect-option-wrap) .multiselect-container .dropdown-item .form-check-label {
    text-overflow: ellipsis;
    overflow: hidden;
}

.multiselect-input.multiselect-option-wrap .multiselect-container .dropdown-item {
    white-space: normal;
}

.multiselect-input.multiselect-option-wrap .multiselect-container .dropdown-item .form-check {
    align-items: baseline;
}

.multiselect-input.multiselect-option-wrap .multiselect-container .dropdown-item .form-check-input {
    position: relative;
    top: 3px;
}

.multiselect-input .multiselect-container .dropdown-item-text.multiselect-group {
    font-size: 0.8125rem;
    line-height: 1.125rem;
    color: var(--ink);
    font-weight: 600;
}

.multiselect-input .multiselect-container .multiselect-group .caret-container.dropdown-toggle::after {
    border-width: 0.4375rem 0.3125rem 0;
    flex-shrink: 0;
    vertical-align: middle;
    border-top-color: var(--teal);
    transform: rotate(180deg);
    transition: 0.2s ease;
}

.multiselect-input .multiselect-container .multiselect-group.closed .dropdown-toggle::after {
    transform: rotate(0deg);
}

.multiselect-input .multiselect-container .dropdown-item.multiselect-group-option-indented-full {
    padding-left: 1.875rem;
}

.multiselect-input .multiselect-container .dropdown-item.disabled,
.single-selection .multiselect-container .form-check-input,
.single-selection .multiselect-container .dropdown-item.disabled {
    display: none !important;
}

.no-result-wrapper {
    padding: 1.25rem;
    text-align: center;
}

.multiselect-container .no-result-wrapper p {
    font-size: 0.875rem !important;
    line-height: 1.375rem !important;
    font-weight: 400;
    color: var(--font-color-2);
}

.contact-number-input .multiselect-container .multiselect-option .form-check-label>img,
.contact-number-input .multiselect-input .multiselect .multiselect-selected-text>img {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	flex-shrink: 0;
}

.contact-number-input .multiselect-input .multiselect-container .multiselect-option .form-check-input[type="radio"] {
	display: none !important;
}

.contact-number-input .multiselect-input .multiselect {
	border-radius: 0.5rem 0 0 0.5rem;
}

.contact-number-input .multiselect-input {
	width: 115px;
    flex-shrink: 0;
}

.contact-number-input .multiselect-input .btn-group,
.contact-number-input .multiselect-input span.multiselect-native-select {
	position: static;
}

.ui-widget.ui-widget-content:not(.timeline-progress) {
	border: none !important;
	box-shadow: -2px 4px 15px 1px #81818140;
	border-radius: 0.5rem;
	max-height: 18.75rem;
	overflow-y: auto;
}

.ui-widget.ui-widget-content .ui-menu-item .ui-menu-item-wrapper {
	padding: 0.375rem 0.875rem;
	font-size: 0.75rem;
    line-height: 1.125rem;
    color: var(--ink);
}

.ui-widget.ui-widget-content .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
	background: var(--teal-tint);
	color: var(--paper-elev);
	border: none;
}

.ui-widget.ui-widget-content .ui-menu-item:first-child .ui-menu-item-wrapper.ui-state-active {
	border-radius: 0.5rem 0.5rem 0 0;
}

.ui-widget.ui-widget-content .ui-menu-item:last-child .ui-menu-item-wrapper.ui-state-active {
	border-radius: 0 0 0.5rem 0.5rem;
}

.select-dropdown-item.custom-check-wrapper {
    align-items: flex-start;
}

.select-dropdown-item.custom-check-wrapper .custom-check-input {
    margin-top: 1px;
}

.input-wrapper.select-dropdown-item>.form-control {
    height: 34px;
    font-size: 0.8125rem;
}

.toast.toast-wrapper {
	align-items: center;
	justify-content: space-between;
	background: #DCFBF7;
	border: 1px solid #24B500;
	border-radius: 0.5rem;
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	top: 4.75rem;
	z-index: 9999;
	padding: 0.625rem 1rem;
	min-width: 350px;
    gap: 1rem;
}

.toast.toast-wrapper.show {
    display: flex;
}

.tick-icon {
	background: url(../../dashboard_portal/images/tick_icon.svg) no-repeat center;
	width: 1.25rem;
	height: 1.25rem;
	margin-right: 15px;
}

.toast-wrapper p {
	font-size: 0.875rem;
	line-height: 1.375rem;
	color: var(--slate);
}

.close-btn {
	background: url(../../dashboard_portal/images/close_icon.svg) no-repeat center;
	width: 1rem;
	height: 1rem;
	border: none;
	cursor: pointer;
    padding: 0;
}

.toast.toast-wrapper.error-toast {
    background: #FFF5F5;
    border: 1px solid #F91313
}

.modal.modal-wrapper .modal-dialog {
    max-width: 930px;
    padding: 0 1.5rem;
}

.modal.modal-wrapper .modal-content {
    border: 0;
    border-radius: 0.75rem;
    color: var(--font-color);
}

.modal.modal-wrapper .modal-header {
    padding: 1.125rem 1.5rem;
    border-bottom: 1px solid var(--rule);
    justify-content: space-between;
    gap: 1rem;
}

.modal.modal-wrapper .modal-header .modal-title,
.five-year-median h6 {
    font-family: "Fraunces", serif;
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 500;
    color: var(--ink);
}

.modal.modal-wrapper .modal-header .btn-close {
    background: url(../images/close_icon.svg) center/contain no-repeat;
    width: 0.9375rem;
    height: 0.9375rem;
    opacity: 1;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}

.modal.modal-wrapper .modal-body {
    padding: 1.25rem 1.5rem;
}

.modal.modal-wrapper .modal-footer {
    padding: 0.875rem 1.5rem;
    border: 0;
    gap: 1rem;
    border-top: 1px solid var(--rule);
}

.modal.modal-wrapper .modal-footer>* {
    margin: 0;
}

.modal.modal-wrapper .modal-footer .btn {
    min-width: 5.625rem;
}

.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #FBFAF6EB;
    border-bottom: 1px solid var(--rule);
}

.navbar-wrapper:has(.offcanvas:not(.show)) {
    backdrop-filter: blur(8px);
}

.navbar-wrapper .navbar {
    padding: 1rem 1.5rem;
}

.navbar-wrapper .navbar-brand>img {
    max-width: 8.75rem;
    height: auto;
}

.navbar-wrapper .navbar-nav {
    gap: 1.75rem;
    align-items: center;
}

.navbar-wrapper .navbar-nav .nav-link,
.profile-dropdown .dropdown-toggle {    
    font-size: 0.90625rem;
    line-height: 1.125rem;
    color: var(--font-color);
    font-weight: 500;
}

.navbar-wrapper .navbar-nav .nav-link {
    transition: color .15s;
    position: relative;
    padding: 0;
}

.navbar-wrapper .navbar-nav .nav-link:hover, 
.navbar-wrapper .navbar-nav .nav-link.active {
    color: var(--blue);
}

.navbar-wrapper .navbar-nav .nav-link.nav-btn {
    background: var(--ink);
    color: var(--paper-elev);
    padding: 5px 12px;
    border-radius: 4px;
}

.navbar-wrapper .navbar-toggler {
    background: url(../images/hamburger_icon.svg) center / contain no-repeat;
    width: 24px;
    height: 20px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-left: 1rem;
}

.profile-dropdown .dropdown-toggle {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-transform: capitalize;
}

.profile-dropdown .dropdown-toggle::after {
    border-width: 0.4375rem 0.375rem 0;
    border-top-color: var(--font-color);
    margin-left: 0;
    flex-shrink: 0;
    margin-top: 1px;
}

.profile-dropdown>.dropdown-menu {
    border-radius: 0.25rem;
    border: 0;
    padding: 0.75rem;
    box-shadow: -2px 3px 16px 3px #0E23400A;
    width: 15.875rem;
}

.user-name {
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 600;
    color: var(--ink);
}

.profile-dropdown>.dropdown-menu p,
.supplier-map-legend .legend-wrapper-div>span {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.profile-dropdown>.dropdown-menu p::before {
    content: '';
    display: inline-block;
    width: 0.9375rem;
    margin-right: 5px;
}

.customer-email::before {
    background: url(../images/mail_fill_icon.svg) center / contain no-repeat;
    height: 0.625rem;
    vertical-align: -1px;
}

.cutomer-number::before {
    background: url(../images/phone_icon.svg) center / contain no-repeat;
    height: 0.75rem;
}

.currency-icon::before {
    background: url(../images/currency_icon.svg) center / contain no-repeat;
    height: 0.5625rem;
}

.profile-dropdown>.dropdown-menu hr {
    margin: 0.625rem 0;
    border-top: 1px solid var(--rule);
    opacity: 1;
}

.content-wrapper {
    flex-grow: 1;
    background: var(--paper);
}

.footer-wrapper {
    background: var(--ink);
    padding: 3.75rem 1.5rem 1.875rem;
}

.footer-logo {
    max-width: 6.25rem;
    height: auto;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--font-color-2);
    line-height: 1.6;
}

.footer-wrapper h6 {
    font-size: 0.75rem;
    line-height: 1.125rem;
    color: #7FD8C9;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin: 0;
    padding: 0;
}

.footer-links a {
    font-size: 0.875rem;
    line-height: 1.125rem;
}

.footer-links a,
.footer-bottom a {
    color: #B9C2D2;
    transition: color .15s;
    text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--paper-elev);
}

.footer-bottom {
    margin-top: 2.75rem;
    border-top: 1px solid #FFFFFF14;
    padding-top: 1.5rem;
    font-size: 0.8125rem;
    color: var(--font-color-2);
    flex-wrap: wrap;
    gap: 1rem;
}

.marketplace-footer-link {
    opacity: 0.5;
    pointer-events: none;
}

.table-wrapper {
    border: 1px solid var(--rule-strong);
    border-radius: 0.5rem;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-wrapper :where(th, td) {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.table-wrapper th {
    border-bottom: 1px solid var(--rule-strong);
    font-weight: 500;
    color: var(--slate);
    height: 34px;
}

.table-wrapper td {
    color: var(--ink);
}

.table-wrapper :where(tr>th:not(:last-child), tr>td:not(:last-child)) {
    border-right: 1px solid var(--rule);
}

.table-wrapper>tbody>tr:not(:last-child) td {
    border-bottom: 1px solid var(--rule);
}

.section-wrapper {
    padding: 4.5rem 1.5rem;
}

.home-banner-wrapper {
    padding: 5rem 1.5rem 4rem;
}

.eyebrow {
    font-size: 0.75rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--teal-deep);
    font-weight: 600;
    margin-bottom: 1.375rem;
}

.home-banner-wrapper h1 {
    font-family: "Fraunces", serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-variation-settings: "opsz" 144;
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards;
    animation-delay: 1.4s;
}

.banner-sub {
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    line-height: 1.35;
    font-weight: 400;
    color: var(--ink);
    max-width: 32.5rem;
    letter-spacing: -0.01em;
    font-style: italic;
    opacity: 0;
    animation: heroFadeUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.banner-note {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--slate);
    padding-left: 0.875rem;
    border-left: 2px solid var(--rule-strong);
    margin-bottom: 2rem;
    max-width: 30rem;
    opacity: 0;
    animation: heroFadeUp 0.6s ease forwards;
    animation-delay: 1s;
}

.banner-action-btns {
    opacity: 0;
    animation: heroFadeUp 0.6s ease forwards;
    animation-delay: 1.7s;
}

.live-price-tracker {
    background: var(--paper-elev);
    border: 1px solid var(--rule);
    border-radius: 0.875rem;
    padding: 1.625rem 1.625rem 1.375rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.live-price-tracker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ink), var(--blue), var(--teal));
}

.live-price-tracker-header {
    margin-bottom: 1.125rem;
}

.live-price-tracker-header>p:first-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.live-price-tracker-header>p {
    font-size: 0.71875rem;
    line-height: 1.125rem;
}

.live-price-tracker-header>p:first-child::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 3px #0F9D8B33;
    animation: pulse 2s ease-in-out infinite;
}

.live-price-tracker-body {
    overflow: hidden;
    position: relative;
    height: 276px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.live-price-tracker-conatiner {
    will-change: transform;
    animation: tickerScroll linear infinite;
    animation-play-state: paused;
}

.live-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--rule);
}

.live-price-row p {
    margin-bottom: 0;
}

.live-price-row .live-product {
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: var(--ink);
    font-weight: 500;
}

.live-price-row .live-product>span {
    color: var(--slate);
    font-weight: 400;
    margin-left: 0.375rem;
    font-size: 0.78125rem;
    line-height: 0.875rem;
}

.live-product-price {
    font-size: 0.96875rem;
    line-height: 1.25rem;
    font-weight: 500;
    font-family: "JetBrains Mono", monospace;
    color: var(--ink);
}

.live-product-price>span {
    font-size: 0.78125rem;
    line-height: 1rem;
    margin-left: 0.625rem;
}

.weekly-market-prices {
    padding: 1.5rem 1.5rem 5rem;
}

.weekly-market-prices-info-wrapper {
    border: 1px solid var(--rule);
    border-radius: 0.875rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--rule);
}

.weekly-price-card {
    background: var(--paper-elev);
    padding: 1.375rem 1.375rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    transition: opacity 0.22s ease, transform 0.22s ease, background .15s;
    overflow: hidden;
}

.weekly-price-card:hover {
    background: #FDFCF8;
}

.weekly-price-card.updating {
    animation: priceSlideOut 0.22s ease forwards;
}

.weekly-price-card.refreshed {
    animation: priceSlideIn 0.22s ease forwards;
}

.price-card-head {
    color: var(--slate);
    gap: 0.3125rem;
}

.price-name {
    font-size: 0.84375rem;
    line-height: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.price-region,
.weekly-price-card p,
.service-num {
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
}

.weekly-price-card h3 {
    font-family: "JetBrains Mono", monospace;
    font-size: 1.625rem;
    line-height: 1.1;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.weekly-price-card p {
    color: var(--slate);
}

.weekly-price-card>p:not(.flat)::before {
    content: '';
    display: inline-block;
    border-left: 0.25rem solid transparent;
    border-right: 0.25rem solid transparent;
    vertical-align: middle;
    margin-right: 0.3125rem;
}

.weekly-price-card>p.up::before {
    border-bottom: 0.3125rem solid var(--up);
}

.weekly-price-card>p.down::before {
    border-top: 0.3125rem solid var(--down);
}

.statistics-section {
    background: var(--ink);
    color: var(--paper-elev);
    padding: 2.75rem 1.5rem;
}

.statistics-info h2 {
    font-family: "Fraunces", serif;
    font-size: 2.75rem;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 96;
    margin-bottom: 0.375rem;
}

.statistics-info h2 span {
    color: #7FD8C9;
}

.category-card {
    background: var(--paper-elev);
    border: 1px solid var(--rule);
    border-radius: 0.875rem;
    padding: 2rem 1.75rem 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    height: 100%;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    text-decoration: none;
    color: var(--font-color);
}

.category-card:hover {
    transform: translateY(-2px);
    border-color: var(--rule-strong);
    box-shadow: var(--shadow-md);
}

.category-card h6 {
    font-size: 0.71875rem;
    line-height: 1.125rem;
    font-weight: 600;
    color: var(--teal-deep);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.category-card h4 {
    font-size: 1.625rem;
    line-height: 1.2;
    font-weight: 400;
    font-family: "Fraunces", serif;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.category-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.category-card-link {
    color: var(--teal-deep);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.category-card-link::after {
    content: '→';
    transition: transform .2s;
}

.category-card:hover .category-card-link::after {
    transform: translateX(3px);
}

.process-section {
    background: #F4F0E3;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.step-num {
    font-family: "Fraunces", serif;
    font-size: 1.375rem;
    line-height: 1.875rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.step-card:not(.step-card-secondary) .step-num {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--rule-strong);
    align-content: center;
    text-align: center;
    box-shadow: 0 0 0 6px #F4F0E3;
    position: relative;
}

.step-card.step-card-secondary .step-num {
    font-size: 4rem;
    line-height: 1;
    color: #7FD8C9;
    font-variation-settings: "opsz" 144;
}

.step-card h4,
.service h3 {
    font-family: "Fraunces", serif;
    font-size: 1.375rem;
    line-height: 1.75rem;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 0.625rem;
}

.step-card.step-card-secondary h4 {
    font-size: 1.5rem;
    line-height: 2.375rem;
}

.step-card p {
    font-size: 0.90625rem;
    line-height: 1.6;
}

.step-card.step-card-secondary p {
    font-size: 0.9375rem;
}

.source-wrapper {
    border: 1px solid var(--rule);
    border-radius: 0.875rem;
    padding: 1.375rem 1.25rem 1.25rem;
    background: var(--paper-elev);
}

.source-card h4 {
    font-family: "Fraunces", serif;
    font-size: 1.0625rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1.375rem;
    letter-spacing: -0.01em;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid var(--teal);
    display: inline-block;
}

.source-card.blue h4 {
    border-bottom-color: var(--blue);
}

.source-card.gold h4 {
    border-bottom-color: var(--gold);
}

.source-item h6 {
    font-size: 0.84375rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.source-item p {
    font-size: 0.71875rem;
    line-height: 1.4;
    color: var(--slate);
    font-family: "JetBrains Mono", monospace;
}

.source-list .source-item:not(:last-child) {
    border-bottom: 1px dashed var(--rule);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.marketplace-cta {
    background: linear-gradient(135deg, var(--ink) 0%, var(--blue-deep) 100%);
    color: var(--paper-elev);
    border-radius: 1.25rem;
    padding: 3.5rem;
}

.marketplace-live-tag {
    font-size: 0.71875rem;
    line-height: 1.125rem;
    letter-spacing: 0.14em;
    color: #7FD8C9;
    font-weight: 600;
}

.marketplace-live-tag::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #7FD8C9;
    box-shadow: 0 0 0 3px #7FD8C940;
    animation: pulse 2s ease-in-out infinite;
}

.marketplace-cta-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #C7D0DE;
    max-width: 28.75rem;
    margin-bottom: 1.5rem;
}

.subscribe-form {
    max-width: 23.75rem;
}

.subscribe-form .form-control {
    padding: 0.625rem 0.875rem;
    background: #FFFFFF14;
    border: 1px solid #FFFFFF24;
    border-radius: 0.5rem;
    color: var(--paper-elev);
    font-size: 0.90625rem;
    line-height: 1.375rem;
    outline: none;
    box-shadow: none;
    transition:border-color .15s;
}

.subscribe-form input::placeholder {
    color: var(--font-color-2)
}

.subscribe-form input:focus {
    border-color: #7FD8C9
}

.subscribe-form .btn.primary-btn {
    width: 100%;
    font-size: 0.90625rem;
}

.subscribe-note {
    color: var(--font-color-2);
    margin-top: 0.5rem
}

.marketplace-features {
    background: #FFFFFF0A;
    border: 1px solid #FFFFFF1F;
    border-radius: 14px;
    padding: 26px;
    position: relative;
    z-index: 1;
}

.marketplace-features li {
    font-size: 0.90625rem;
    line-height: 1.5;
    color: #EBEEF5;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.marketplace-features ul>li:not(:last-child) {
    margin-bottom: 0.875rem;
}

.marketplace-features ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.marketplace-features ul>li::before {
    content: '';
    background: url(../images/tick_icon.svg) center/contain no-repeat;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.marketplace-features ul>li.lock-icon::before {
    background: url(../images/lock_icon.svg) center/contain no-repeat;
}

.marketplace-features ul>li.shield-icon::before {
    background: url(../images/shield_icon.svg) center/contain no-repeat;
}

.marketplace-features ul>li.doc-icon::before {
    background: url(../images/doc_icon.svg) center/contain no-repeat;
}

.marketplace-features ul>li.arrow-icon::before {
    background: url(../images/arrow_icon.svg) center/contain no-repeat;
}

.marketplace-features ul>li.dashboard-icon::before {
    background: url(../images/dashboard_icon.svg) center/contain no-repeat;
}

.section-wrapper.contact-section {
    /* padding-block: 5rem 6.25rem; */
    padding-block: 0 6.25rem;
}

.contact-section .section-title {
    font-size: 2.75rem;
}

.contact-btn-icon::before {
    content: '';
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.mail-icon::before {
    background: url(../images/mail_icon.svg) center/contain no-repeat;
}

.linkedin-icon::before {
    background: url(../images/linkedin_icon.svg) center/contain no-repeat;
}

.location-icon::before {
    background: url(../images/location_icon.svg) center/contain no-repeat;
}

.contact-btn-wrapper .btn.secondary-btn {
    font-size: 14.5px;
    height: 3.25rem;
    background: var(--paper-elev) !important;
    padding-inline: 1.375rem;
    justify-content: center;
}

.location-icon {
    cursor: default;
}

.about-banner h1 {
    font-family: "Fraunces", serif;
    font-size: 4.75rem;
    line-height: 1.03;
    font-weight: 400;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 57.5rem;
    margin-bottom: 2rem;
    font-variation-settings: "opsz" 144;
}

.about-banner-desc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    max-width: 57.5rem;
    font-size: 1.125rem;
    line-height: 1.65;
}

.founding-wrapper {
    display: flex;
    gap: 3.5rem;
    font-family: "Fraunces", serif;
}

.founding-mark {
    font-size: 7.5rem;
    line-height: 0.8;
    font-weight: 400;
    color: #1E5A9E66;
    font-variation-settings: "opsz" 144;
}

.founding-wrapper p {
    font-size: 2.125rem;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -0.012em;
    color: var(--ink);
    max-width: 51.25rem;
    font-variation-settings: "opsz" 96;
}

.source-wrapper.services-wrapper {
    padding: 2rem 1.625rem 1.875rem;
}

.service-num {
    color: var(--slate);
    letter-spacing: 0.02em;
}

.section-wrapper.about-process-section {
    padding-block: 5rem;
    background: var(--ink);
    color: var(--paper-elev);
}

.region-card {
    background: var(--paper-elev);
    border: 1px solid var(--rule);
    border-radius: 0.875rem;
    padding: 1.75rem 1.625rem;
    height: 100%;
}

.region-card h4,
.movers-widget h6,
.chart-title,
.login-form h5 {
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    line-height: 1.625rem;
    font-weight: 400;
    color: var(--ink);
}

.region-card h4,
.movers-widget h6,
.chart-title {
    letter-spacing: -0.01em;
}

.country-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.country-chip {
    padding: 0.375rem 0.75rem;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink-2);
}

.region-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.globe-icon {
    background: url(../images/globe_icon.svg) center/1.25rem no-repeat var(--teal-tint);
}

.region-location-icon {
    background: url(../images/location_icon.svg) center/1.25rem no-repeat var(--teal-tint);
}

.section-wrapper:has(.principle-wrapper) {
    padding-block: 5rem;
}

.principle {
    padding: 2rem 1.5rem;
}

.principle-name {
    font-family: "Fraunces", serif;
    font-size: 1.625rem;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.principle-name span {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.875rem;
    color: var(--teal-deep);
    font-weight: 500;
    margin-left: 0.5rem;
}

.principle p {
    font-size: 0.96875rem;
    line-height: 1.65;
}

.section-wrapper.about-cta {
    padding-block: 6rem;
}

.about-cta .section-desc {
    font-size: 1.125rem;
}

.about-cta .contact-btn-icon::before {
    width: 1rem;
    height: 1rem;
}

.about-cta .contact-btn-wrapper {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
}

.breadcrumb-wrapper .breadcrumb-item,
.breadcrumb-wrapper .breadcrumb-item a {
    font-size: 13px;
    color: var(--slate);
    text-decoration: none;
    transition: color .15s;
}

.breadcrumb-wrapper .breadcrumb-item a:hover {
    color: var(--blue);
}

.breadcrumb-wrapper .breadcrumb-item+.breadcrumb-item::before {
    content: '›';
    padding-inline: 0.5rem;
}

.breadcrumb-wrapper .breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.breadcrumb-wrapper .breadcrumb-item.active {
    color: var(--rule-strong);
}

.supplier-directory-header-wrapper {
    padding: 3.5rem 1.5rem 2.25rem;
}

.page-header .section-desc {
    font-size: 1.09375rem;
    max-width: 40rem;
}

.filter-widget {
    background: var(--paper-elev);
    border: 1px solid var(--rule);
    border-radius: 0.75rem;
    padding: 1.25rem 1.375rem;
    cursor: pointer;
    transition: all .15s;
    height: 100%;
}

.filter-widget:hover {
    border-color: var(--teal);
    background: #FDFCF8;
    transform: translateY(-1px);
}

.filter-widget.active {
    border-color: var(--teal);
    background: var(--teal-tint);
}

.filter-widget h6 {
    font-family: "Fraunces", serif;
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 0.375rem;
}

.filter-widget p {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.8125rem;
    color: var(--slate);
    font-weight: 500;
}

.supplier-directory-filter {
    border: solid var(--rule);
    border-width: 1px 0;
    background: #FBFAF6F0;
    padding: 1rem 1.5rem;
}

.clear-filter-btn {
    font-size: 0.84375rem;
    color: var(--slate);
    text-decoration: underline;
}

.suppliers-list-wrappper {
    padding: 2rem 1.5rem 3.75rem;
}

.results-count {
    font-size: 14.5px;
}

.supplier-join-cta {
    padding: 0 1.5rem 5rem;
}

.input-wrapper.sort-select .form-label {
    font-size: 0.84375rem;
    line-height: 1.125rem;
    font-weight: 400;
    color: var(--slate);
}

.supplier-card {
    background: var(--paper-elev);
    border: 1px solid var(--rule);
    border-top: 3px solid var(--gold);
    border-radius: 0.75rem;
    transition: all .2s;
    text-decoration: none;
    height: 100%;
    display: block;
}

.supplier-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold) var(--rule-strong) var(--rule-strong);
}

.supplier-card-header {
    height: 7.5rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--rule);
    align-content: center;
    text-align: center;
}

.supplier-card-header img {
    max-height: 5rem;
    max-width: 15.625rem;
    margin: 0 auto;
    min-width: 0;
}

.supplier-info {
    padding: 1.25rem 1.5rem;
}

.supplier-info h6 {
    font-size: 1.1875rem;
    line-height: 1.25;
    color: var(--teal);
    font-weight: 600;
    letter-spacing: -0.005em;
    margin-bottom: 0.25rem;
}

.supplier-info p {
    color: var(--ink);
}

.supplier-address {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    border-top: 1px solid var(--rule);
    padding-top: 0.875rem;
    margin-top: 1.75rem;
}

.supplier-address>img,
.detail-flag {
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px var(--rule);
}

.supplier-address>img {
    width: 1.375rem;
    height: 1.375rem;
}

.supplier-address>p {
    font-size: 0.84375rem;
    line-height: 1.5;
    color: var(--font-color);
}

.supplier-details-wrapper {
    padding: 3.5rem 1.5rem 5rem;
}

.details-wrapper {
    background: var(--paper-elev);
    border: 1px solid var(--rule);
    border-radius: 1rem;
    padding: 1.75rem 2rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.supplier-detail-header {
    border-top: 4px solid var(--gold);
    padding: 2.25rem 2rem;
    gap: 1.25rem;
    flex-wrap: wrap-reverse;
}

.supplier-detail-header .section-title {
    font-variation-settings: 'opsz' 144;
    margin-bottom: 1rem;
}

.supplier-detail-header>img {
    max-width: 13.75rem;
    max-height: 5rem;
}

.details-wrapper h4,
.product-row h5 {
    font-family: "Fraunces", serif;
    font-size: 1.125rem;
    line-height: 1.625rem;
    font-weight: 400;
    color: var(--ink);
}

.details-wrapper h4 {
    margin-bottom: 0.875rem;
}

.supplier-description {
    line-height: 1.7;
}

.supplier-location::before,
.chat-icon::before {
    content: '';
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.description-icon::before {
    content: '';
    background: url(../images/description_icon.svg)center/contain no-repeat;
    width: 1.125rem;
    height: 1.125rem;
}

.supplier-location::before {
    background: url(../images/location_secondary_icon.svg)center/contain no-repeat;
}

.chat-icon::before {
    background: url(../images/chat_icon.svg)center/contain no-repeat;
}

.supplier-type-icon::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
}

.processor-icon::before {
    background: url(../images/processor_icon.svg)center/contain no-repeat;
    width: 1rem;
    height: 1rem;
}

.coop-icon::before {
	background: url(../images/coop_icon.svg) center left/contain no-repeat;
	width: 1.25rem;
	height: 1.5rem;	
}

.allied-icon::before {
	background: url(../images/allied_icon.svg) center left/contain no-repeat;
	width: 1.25rem;
	height: 1.125rem;	
}

.trader-icon::before {
	background: url(../images/trader_icon.svg) center left/contain no-repeat;
	width: 1.4375rem;
	height: 1.25rem;	
}

.local-distributor-icon::before {
	background: url(../images/local_distributor_icon.svg) center/contain no-repeat;
	width: 1.25rem;
	height: 1.25rem;
}

.detail-flag {
    width: 1.75rem;
    height: 1.75rem;
}

.product-row {
    border: 1px solid var(--rule);
    border-radius: 0.875rem;
    background: var(--paper-elev);
    overflow: hidden;
}

.product-row h5 {
    background: #F4F0E3;
    padding: 0.875rem 1.375rem;
    border-bottom: 1px solid var(--rule);
}

.product-item {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--rule);
}

.product-item.highlight {
    border-color: #00B2CF !important;
    z-index: 1;
}

.product-item h6 {
    font-size: 0.9375rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: var(--teal-deep);
    margin-bottom: 0.625rem;
}

.item-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
}

.each-item {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 0.375rem;
    color: var(--ink);
}

.product-item p {
    font-size: 0.75rem;
    line-height: 1.125rem;
    color: var(--slate);
}

.package-type::before {
    content: '';
	display: inline-block;
	flex-shrink: 0;
	width: 1.125rem;
	height: 1.125rem;
    vertical-align: middle;
}

.type-UHT-Cartons-package::before {
	background: url(../images/uht_carton_icon.svg) center/contain no-repeat;
}

.type-Tanker-package::before {
	background: url(../images/tanker_icon.svg) center/contain no-repeat;
}

.type-5-kg-Bags-package::before,
.type-10-kg-bags-package::before,
.type-20-kg-bags-package::before,
.type-25-kg-bags-package::before {
	background: url(../images/bag_icon.svg) center/contain no-repeat;
}

.type-Drums-package::before {
	background: url(../images/drum_icon.svg) center/contain no-repeat;
}

.type-Retail-package::before {
	background: url(../images/trolly_icon.svg) center/contain no-repeat;
}

.type-Bulk-bags-package::before {
	background: url(../images/bulk_bag_icon.svg) center/contain no-repeat;
}

.type-Bag-in-Box-package::before {
	background: url(../images/bag_box_icon.svg) center/contain no-repeat;
}

.type-Tote-package::before {
	background: url(../images/tote_box_icon.svg) center/contain no-repeat;
}

.type-5-kg-Carton-package::before,
.type-Bulk-Carton-package::before {
	background: url(../images/carton_icon.svg) center/contain no-repeat;
}

.type-Butter-sheets-package::before {
	background: url(../images/butter_sheet_icon.svg) center/contain no-repeat;
}

.type-Foodservice-package::before {
	background: url(../images/food_bag_icon.svg) center/contain no-repeat;
}

.package-type.type-5-kg-Bags-package::before {
	width: 0.75rem;
	height: 0.75rem;
}

.package-type.type-10-kg-bags-package::before {
	width: 0.875rem;
	height: 0.875rem;
}

.package-type.type-20-kg-bags-package::before {
	width: 1rem;
	height: 1rem;
}

.sub-products-wrapper.packages .custom-check-wrapper>.form-check-label {
	display: inline-flex;
	align-items: center;
    gap: 0.25rem;
}

.product-item p span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.supplier-details-wrapper .section-title.f-30 {
    font-variation-settings: unset;
}

.hint-label {
    display: flex;
    gap: 0.25rem;
    color: var(--font-color-2);
    word-break: break-all;
}

.cerficates-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.certificate-item {
    display: flex;
    gap: 0.5rem;
    width: calc((100% / 8) - 0.875rem);
    color: var(--font-color-2);
    align-items: flex-start;
}

.certificate-image-wrapper {
    width: 5rem;
    height: 5rem;
    border: 0.5px solid var(--rule-strong);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.3125rem;
}

.certificate-image {
	max-width: 100%;
	max-height: 100%;
}

.sub-products-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.add-product :where(tr th:last-child, tr td:last-child) {
	width: 40px;
}

.map-url-input label.error:not([style="display: none;"]) + .hint-label {
    color: #FF6767;
}

.add-product label.error {
    position: static;
}

.upload-logo {
    width: 11.25rem;
}

.upload-logo label {
    width: 11.25rem;
    height: 11.25rem;
    background: url(../images/placeholder_img.svg) center/contain no-repeat;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.375rem;
    font-weight: 500;
    color: var(--teal-deep);
    border-radius: 2px;
}

.upload-logo>img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    margin-inline: auto;
}

.supplier-map-wrapper .supplier-map-view {
    height: 32.5rem;
    border: 1px solid var(--rule);
    border-radius: 1rem;
}

.supplier-map-legend {
    background: var(--paper-elev);
    padding: 0.75rem;
    border-radius: 0.25rem;
    margin: 0 0 -2px 0.75rem;
    box-shadow: #0000004D 0px 1px 4px -1px;
}

.supplier-map-legend .legend-wrapper-div {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.supplier-map-legend .legend-wrapper-div:not(:last-child) {
    margin-bottom: 0.5rem;
}

.supplier-map-legend .legend-wrapper-div>img {
    max-width: 1rem;
    height: auto;
    flex-shrink: 0;
}

.supplier-map-legend .legend-wrapper-div>span {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.details-wrapper.latest-update-info {
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
}

.movers-widget-title {
    letter-spacing: 0.14em;
    font-weight: 600;
}

.movers-widget-wrapper {
    margin-bottom: 5.75rem;
}

.movers-widget {
    background: var(--paper-elev);
    border: 1px solid var(--rule);
    border-radius: 0.75rem;
    padding: 1.25rem 1.375rem;
    position: relative;
    overflow: hidden;
    transition: all .15s;
}

.movers-widget:not(.price-widget):hover {
    border-color: var(--rule-strong);
    transform: translateY(-1px);
}

.movers-widget:not(.price-widget)::before {
    content: '';
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.movers-widget.up::before {
    background: var(--up);;
}

.movers-widget.down::before {
    background: var(--down);
}

.movers-widget-title {
    font-size: 0.71875rem;
    line-height: 1.125rem;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mover-region {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78125rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: var(--slate);
}

.movers-widget h5 {
    font-family: "JetBrains Mono", monospace;
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 2.125rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.mover-change {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.84375rem;
    line-height: 1.25rem;
    font-weight: 500;
}

.movers-widget:not(.flat) .mover-change::before {
    content: '';
    display: inline-block;
    border-left: 0.3125rem solid transparent;
    border-right: 0.3125rem solid transparent;
}

.movers-widget.up .mover-change::before {
    border-bottom: 0.375rem solid var(--up);
}

.movers-widget.down .mover-change::before {
    border-top: 0.375rem solid var(--down);
}

.section-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.75rem;
    line-height: 1.125rem;
    font-weight: bold;
    color: var(--teal-deep);
    letter-spacing: 0.12em;
    margin-bottom: 0.875rem;
}

.section-num::before {
    content: '';
    width: 1.5rem;
    height: 1px;
    background: var(--teal);
}

.market-price-tab {
    background: var(--paper-elev);
    border: 1px solid var(--rule);
    gap: 2px;
    border-radius: 0.75rem;
    padding: 0.375rem;
    width: fit-content;
    margin-bottom: 1rem;
}

.nav-pills.market-price-tab .nav-link {
    font-size: 0.90625rem;
    line-height: 1.125rem;
    font-weight: 500;
    color: var(--font-color);
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    transition: all .15s;       
}

.nav-pills.market-price-tab .nav-link.active {
    background: var(--ink);
    color: var(--paper-elev);
}

.nav-pills.market-price-tab .nav-link:not(.active):hover {
    background: #F4F0E3;
    color: var(--ink);
}

.product-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.product-pill {
    background: var(--paper-elev);
    border: 1px solid var(--rule-strong);
    padding: 0.5rem 1rem 0.5rem 0.875rem;
    border-radius: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 500;
    color: var(--font-color);
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.product-pill:hover {
    border-color: var(--teal);
    color: var(--ink);
}

.product-pill.active {
    background: var(--teal-tint);
    border-color: var(--teal);
    color: var(--teal-deep);
}

.product-pill>span:last-child {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.71875rem;
    line-height: 1rem;
    font-weight: 500;
    color: var(--slate);
    background: var(--paper);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    border: 1px solid var(--rule);
}

.product-pill.active>span:last-child {
    background: var(--paper-elev);
    border-color: var(--teal-tint);
    color: var(--teal-deep);
}

.product-detail-header {
    background: #FDFCF8;
    padding: 1.75rem 2rem 1.5rem;
    border-bottom: 1px solid var(--rule);
    gap: 1.5rem;
    flex-wrap: wrap;
    border-radius: 1rem 1rem 0 0;
}

.product-detail-header h3 {
    font-family: "Fraunces", serif;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 96;
}

.product-code {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 0.375rem;
    display: inline-block;
}

.movers-widget.price-widget {
    border-radius: 0;
    padding: 1.375rem 1.5rem;
    border: 0;
    border-left: 0.1875rem solid var(--slate);
    border-bottom: 1px solid var(--rule);
}

.price-widget-color-1 {
    border-left-color: var(--blue) !important;
}

.price-widget-color-2 {
   border-left-color: var(--teal) !important; 
}

.price-widget-color-3 {
    border-left-color: #7B61FF !important;
}

.price-widget-color-4 {
   border-left-color: var(--c-nz) !important; 
}

.price-widget-color-5 {
   border-left-color: var(--c-ar) !important; 
}

.price-widget-color-6 {
   border-left-color: #E65100 !important; 
}

.price-widget .movers-widget-title {
    font-size: 0.75rem;
}

.movers-widget.price-widget h5 {
    font-size: 1.75rem;
    line-height: 1.1;
}

.movers-widget.price-widget h5>span {
    font-size: 0.75rem;
    color: var(--slate);
    font-weight: 400;
    letter-spacing: 0;
    margin-left: 0.25rem;
}

.price-widget .mover-change {
    font-size: 0.8125rem;
}

.movers-widget.price-widget:not(.flat) .mover-change::before {
    border-left-width: 0.25rem;
    border-right-width: 0.25rem;
}

.movers-widget.price-widget.up .mover-change::before {
    border-bottom-width: 0.3125rem;
}

.movers-widget.price-widget.down .mover-change::before {
    border-top-width: 0.3125rem;
}

.product-detail-body {
    padding: 1.75rem 2rem 2rem;
}

.legend-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.legend-item>label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 1.25rem;
    cursor: pointer;
    transition: all .15s;
    user-select: none;
}

.legend-item>input:not(:checked)+label {
    opacity: 0.4;
}

.legend-item>label::before,
.region-bullet::before {
    content: '';
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-item>label::before {
    width: 0.625rem;
    height: 0.625rem;
}

.legend-color-1>label::before,
.product_legend_8>label::before,
.region-color-1::before {
    background: var(--teal);
}

.legend-color-2>label::before,
.product_legend_2>label::before,
.region-color-2::before {
    background: var(--blue);
}

.legend-color-3>label::before,
.product_legend_3>label::before,
.region-color-3::before {
    background: var(--c-nz);
}

.legend-color-4>label::before,
.product_legend_4>label::before,
.region-color-4::before {
    background: var(--down);
}

.legend-color-5>label::before,
.product_legend_7>label::before,
.region-color-5::before {
    background: #7B61FF;
}

.legend-color-6>label::before,
.product_legend_5>label::before,
.region-color-6::before {
    background: #E65100;
}

.product_legend_19>label::before,
.region-color-7::before {
    background: #2E7D32;
}

.product_legend_23>label::before,
.region-color-8::before {
    background: #C62828;
}

.product_legend_24>label::before,
.region-color-9::before {
    background: #00838F;
}

.product_legend_25>label::before,
.region-color-10::before {
    background: #6A1B9A;
}

.product_legend_26>label::before,
.region-color-11::before {
    background: #EF6C00;
}

.product_legend_27>label::before,
.region-color-12::before {
    background: #1565C0;
}

.product_legend_28>label::before,
.region-color-13::before {
    background: #4E342E;
}

.product_legend_32>label::before {
    background: #D4E964;
}

.product_legend_33>label::before {
    background: #AF64FF;
}

.chart-wrapper {
    background: #FDFCF8;
    border: 1px solid var(--rule);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 2.75rem;
}

.chart-container {
    min-height: 450px;
}

.product-data-table {
    border-radius: 0.625rem;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #FDFCF8;
}

.product-data-table th {
    font-size: 0.75rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: var(--font-color);
    padding: 0.75rem 1rem;
    background: #F4F0E3;
    border-bottom: 1px solid var(--rule);
}

.product-data-table td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: var(--ink);
}

.product-data-table>tbody>tr:not(:last-child) td {
    border-bottom: 1px solid var(--rule);
}

.product-data-table tr>th:first-child {
    border-top-left-radius: 0.625rem;
}

.product-data-table tr>th:last-child {
    border-top-right-radius: 0.625rem;
}

.region-bullet,
.supplier-type-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.region-bullet::before {
    width: 0.5rem;
    height: 0.5rem;
}

.change-cell,
.price-badge {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.8125rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.3125rem;
}

.change-cell.up {
    background: var(--up-tint);
    color: var(--up);
}

.change-cell.down {
    background: var(--down-tint);
    color: var(--down);
}

.change-cell.flat {
    background: var(--paper);
    color: var(--slate);
    border: 1px solid var(--rule);
}

.change-cell:not(.flat)::before {
    content: '';
    display: inline-block;
    border-left: 0.25rem solid transparent;
    border-right: 0.25rem solid transparent;
}

.change-cell.up::before {
    border-bottom: 0.3125rem solid var(--up);
}

.change-cell.down::before {
    border-top: 0.3125rem solid var(--down);
}

.market-price-tab .region-bullet.active::before {
    box-shadow: 0 0 0 2px #FFFFFF4D;
}

.details-wrapper.weekly-comment-wrapper {
    padding: 2.25rem 2.5rem;
    border-radius: 0.875rem;
    height: 100%;
}

.weekly-comment-wrapper .section-num {
    font-family: "Inter", sans-serif;
    font-size: 0.71875rem;
    font-weight: 600;
}

.weekly-comment {
    border-bottom: 1px solid var(--rule);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    flex-grow: 1;
}

.weekly-comment p {
    font-size: 1rem;
    line-height: 1.7;
}

.commentary-sig-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #143459, var(--blue));
    color: var(--paper-elev);
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    align-content: center;
    flex-shrink: 0;
}

.commentary-sig h6 {
    font-size: 0.84375rem;
    line-height: 1.375rem;
    font-weight: bolder;
}

.weekly-report-subscribe {
    background: linear-gradient(135deg, #0E2340 0%, #143459 100%);
    color: var(--paper-elev);
    border-radius: 0.875rem;
    padding: 2.25rem 2rem;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.weekly-report-subscribe .section-title.f-26 {
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 96;
}

.weekly-report-subscribe::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -25%;
    width: 80%;
    height: 180%;
    background: radial-gradient(circle at center, #0F9D8B29, transparent 60%);
    pointer-events: none;
}

.login-wrapper {
    padding: 3.75rem 1.5rem;
}

.login-logo {
    max-width: 110px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.login-wrapper h2 {
    font: 400 2rem/2.75rem "Fraunces", serif;;
    color: var(--ink);
}

.login-form {
    background: var(--paper-elev);
    border: 1px solid var(--rule);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 440px;
    margin: 2.25rem auto 1.25rem;
}

.login-form .input-wrapper :where(.form-control, .form-select),
.login-form .multiselect-input .multiselect {
    font-size: 0.90625rem;
    height: 2.625rem;
}

.login-form .input-wrapper input[type="file"]::file-selector-button {
    height: 2.625rem;
}

.login-form .link-btn-secondary {
    font-size: 0.78125rem;
    line-height: 1.25rem;
    font-weight: 400;
}

.login-form .btn.primary-btn,
.login-form .btn.secondary-btn {
    height: 36px;
}

.login-form .contact-number-input>.form-control {
    border-radius: 0 0.5rem 0.5rem 0 !important;
}

.register-btns-wrapper {
    display: flex;
    gap: 0.75rem;
}

.custom-checkbox {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.register-pagination {
    gap: 3.75rem;
    margin-top: 2rem;
}

.register-pagination>span {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--paper-elev);
    color: var(--slate);
    border: 2px solid var(--rule-strong);
    align-content: center;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

.register-pagination>span.active,
.register-pagination:has(span:nth-child(2).active) span:first-child,
.register-pagination:has(span:last-child.active) span:not(:last-child) {
    background: var(--teal);
    color: var(--paper-elev);
    border-color: var(--teal);
}

.register-pagination>span:not(:first-child)::before {
    content: '';
    width: 3.75rem;
    height: 2px;
    background: var(--rule-strong);
    position: absolute;
    right: calc(100% + 2px);
    top: 50%;
    transform: translateY(-50%);
}

.register-pagination>span.active:not(:first-child)::before,
.register-pagination:has(span:last-child.active) span:nth-child(2)::before {
    background: var(--teal);
}

.register-wrapper .login-form {
    max-width: 28.125rem;
}

.show-password-btn {
	background: url(../images/eye_icon.svg) center/contain no-repeat;
	position: absolute;
	right: 0.875rem;
	top: 50%;
    transform: translateY(-50%);
	width: 1.25rem;
	height: 1rem;
	cursor: pointer;	
}

.show-password-btn.active {
	background: url(../images/eye_cross_icon.svg) center/contain no-repeat;
}

.input-wrapper:has(.show-password-btn) .form-control[type="password"] {
    padding-right: 2.25rem;
}

.content-wrapper:has(.register-success) {
    display: flex;
    flex-direction: column;
}

.register-success {
    align-content: center;
    flex-grow: 1;
}

.no-result-container {
    text-align: center;
    height: 13.75rem;
    align-content: center;
}

.terms-conditions-wrapper h6 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--ink);
}

.terms-conditions-wrapper :where(p, li) {
    font-size: 0.9375rem;
    line-height: 1.5;
    font-weight: 400;
}

.terms-conditions-wrapper ul li {
    list-style: disc;
}

.terms-conditions-wrapper ul {
	padding-inline-start: 2rem;
}

.terms-conditions-wrapper>*:not(.section-title):not(:last-child) {
	margin-bottom: 1rem;
}

.signin-alert-overlay {
    position: relative;
}

.signin-alert-overlay::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #FFFFFFB3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 7;
    border-radius: 1rem;
}

.timeline-progress .timeline-item.active::after,
.timeline-progress .timeline-item.active::before,
.signin-alert {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.signin-alert {
    z-index: 9;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.5rem;
    padding: 1.25rem;
}

.signin-alert-overlay .product-data-table>tbody>tr>td>span,
.signin-alert-overlay .price-widget>* {
    filter: blur(3px);
}

.edit-profile-image img {
    width: 9.375rem;
    height: 9.375rem;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    display: block;
    border: 1px solid var(--rule);
    border-radius: 0.5rem;
}

.profile-edit-btn::before {
    content: '';
    display: inline-block;
    vertical-align: -1px;
    margin-right: 0.375rem;
}

.change-pswd-btn {
    display: block;
    width: fit-content;
    margin: 0.875rem auto 1.125rem;
    margin-bottom: 0.875rem;
}

.contact-info {
    display: flex;
    gap: 0.75rem;
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--teal-tint);
    text-align: center;
    align-content: center;
    color: var(--teal-deep);
}

.contact-info h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--ink);
}

.contact-info-wrapper>.contact-info:not(:last-child) {
    border-bottom: 1px solid var(--rule);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.timeline-progress.ui-widget.ui-widget-content {
    border: unset;
}

.timeline-progress.ui-slider .ui-slider-range,
.timeline-progress.ui-slider .ui-slider-handle {
	visibility: hidden;
}

.timeline-progress {
	display: flex;
	height: 0.875rem !important;
	border-radius: 0.625rem !important;
	/* background: #EAEAEA !important; */
    background: var(--rule);
	margin-bottom: 0.75rem;
}

.timeline-progress .timeline-item {
	width: calc(100%/6);
	transition: 0.3s all;
	position: relative;
}

.timeline-progress .timeline-item.active::after,
.timeline-progress .timeline-item.active::before {
	content: '';
	border-radius: 50%;
}

.timeline-progress .timeline-item.active::after {
    background: linear-gradient(90deg, #063967 21.47%, #18C7B0 100%);
    width: 1.75rem;
    height: 1.75rem;
    box-shadow: 2px 2px 3px 0px #00000080;
}

.timeline-progress .timeline-item.active::before {
	background: var(--paper-elev);
	width: 1.25rem;
	height: 1.25rem;
	z-index: 2;
}

.timeline-progress .timeline-item:not(:nth-last-child(-n+3)) {
	border-right: 2px solid var(--paper-elev);
}

.timeline-progress .timeline-item:first-child {
	border-radius: 0.625rem 0 0 0.625rem;
}

.timeline-progress .timeline-item:nth-child(6) {
	border-radius: 0 0.625rem 0.625rem 0;
}

.timeline-progress .timeline-item.active {
    background: linear-gradient(-95.53deg, var(--teal) 1.09%, var(--teal-deep) 98.36%);
	cursor: grab;
}

.timeline-item-label {
	display: flex;
}

.timeline-item-label>span {
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.125rem;
	text-align: center;
	color: var(--font-color);
	width: calc(100%/6);
}

.timeline-item-label.week-labels {
	margin-bottom: 0.375rem;
}

.timeline-item-label.week-labels>span>span {
	background: #FDFCF8;
    border-radius: 0.9375rem;
    padding: 1.5px 0.5rem;
	min-width: 4.25rem;
	display: inline-block;
	transition: 0.2s ease;
}

.timeline-item-label.week-labels.median-week-labels>span>span {
	background: #F0ECE4;
}

.timeline-item-label.week-labels>span>span.spot-badge.AR {
	background: #FBE9E7;
    color: var(--down);
}

.timeline-item-label.week-labels>span>span.spot-badge.GDT {
	background: #EEEAFE;
    color: #7B61FF;
}

.timeline-item-label.week-labels>span>span.spot-badge.NZ {
	background: #FBF2DD;
    color: var(--c-nz);
}

.timeline-item-label.week-labels>span>span.spot-badge.US {
	background: #E5F0FA;
    color: var(--blue);
}

.timeline-item-label.week-labels>span>span.spot-badge.EU {
	background: #E1F5F2;
    color: var(--teal);
}

.timeline-item-label.week-labels>span>span.spot-badge.IND {
	background: #FCE9DC;
    color: #E65100;
}

.price-badge {
    min-width: 4rem;
    justify-content: center;
}

.five-year-median {
	display: flex;
	align-items: center;
    flex-wrap: wrap;
	gap: 0.75rem 1rem;
	min-height: 35px;
}

.chart-indication {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    color: var(--slate);
    margin-left: auto;
}

.chart-indication>p::before {
    content: '';
    display: inline-block;
    width: 1.5rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.futures-indication::before {
    border-top: 5px dotted var(--slate);
}

.historical-value-indication::before {
    border-top: 4px solid var(--slate);
}

#what_we_source_section {
    scroll-margin-top: 60px;
}