.weight-calculator-desktop {
    background-color: var(--accent-color);
    padding: 48px 0;
    width: 100%
}

.weight-calculator-desktop .weight-calculator-container {
    margin: 0;
    padding: 0 24px
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans);
    text-align: center;
    margin-bottom: 74px;
    width: 100%
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: nowrap
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    flex: 1 1;
    max-width: 435px
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans);
    text-align: center
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    position: relative
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-scale-image {
    position: relative;
    top: -1.7rem;
    width: 300px;
    height: 320px;
    mix-blend-mode: multiply
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-scale-image .weight-scale-text {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 55%;
    left: 53%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-scale-image .weight-scale-text .weight-scale-text-number {
    font-size: 32px;
    font-weight: 700;
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: -.02em;
    text-rendering: optimizeLegibility;
    dominant-baseline: middle
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-scale-image .weight-scale-text .weight-scale-text-unit {
    font-size: 14px;
    font-family: system-ui, -apple-system, sans-serif;
    color: #666;
    margin-top: 8px;
    font-weight: 500
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider {
    width: 258px;
    height: 51px;
    position: absolute;
    bottom: 4rem
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0)
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-fill {
    position: absolute;
    left: 0;
    top: 23px;
    width: 258px;
    height: 6px;
    background-color: #787878;
    opacity: .2;
    border-radius: 3px
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-ticks {
    position: absolute;
    left: 16px;
    top: 33px;
    width: 226px;
    height: 4px
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-ticks .slider-tick {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #3c3c43;
    opacity: .18;
    border-radius: 50%
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-knob {
    position: absolute;
    top: 14px;
    width: 38px;
    height: 24px;
    background-color: var(--background);
    border-radius: 100px;
    box-shadow: 0 .5px 4px rgba(0, 0, 0, .12), 0 6px 13px rgba(0, 0, 0, .12);
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    transition: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-knob:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 1px 6px rgba(0, 0, 0, .16), 0 8px 18px rgba(0, 0, 0, .16);
    transition: transform .15s cubic-bezier(.175, .885, .32, 1.275)
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-knob.dragging {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2), 0 12px 24px rgba(0, 0, 0, .2);
    transition: none
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-interaction-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    will-change: transform
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: nowrap;
    flex: 1 1;
    max-width: 322px
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card {
    background-color: hsla(0, 0%, 100%, .5);
    border-radius: 8px;
    margin: 0;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: normal;
    gap: 8px;
    flex-wrap: nowrap
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: nowrap
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-row .projection-label {
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans);
    flex: 1 1
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-row .projection-value {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: baseline;
    gap: 0;
    flex-wrap: nowrap
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-row .projection-value .projection-number {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans)
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-row .projection-value .projection-unit {
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans);
    margin-left: 4px
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-divider {
    height: 1px;
    background-color: var(--accent-color);
    width: 100%
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section a {
    width: 100%;
    max-width: 298px
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section a .weight-calculator-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section a .weight-calculator-button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px
}

.weight-calculator-desktop .weight-calculator-container .weight-calculator-content .weight-projection-section a .weight-calculator-button {
    background-color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    color: var(--accent-color);
    font-family: var(--font-inria-sans);
    width: 100%;
    max-width: 298px
}

@media(min-width:768px)and (max-width:1023px) {
    .weight-calculator-desktop .weight-calculator-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 19px;
        flex-wrap: nowrap
    }
    .weight-calculator-desktop .weight-calculator-content .weight-projection-section,
    .weight-calculator-desktop .weight-calculator-content .weight-scale-section {
        max-width: 100%
    }
}

:root {
    --background: #ffffff;
    --foreground: #171717;
    --primary-color: #106278;
    --secondary-color: #112125;
    --tertiary-color: #07171b;
    --accent-color: #eee9e5;
    --secondary-green: #a9fcb3;
    --light-blue: #4790a3;
    --gray-shade1: #8c8c8c;
    --error-color: #dc3545;
    --error-bg: #f8d7da;
    --error-border: #f5c6cb;
    --button-hover: #2a3a3f;
    --button-disabled-bg: #ccc;
    --button-disabled-text: #999;
    --placeholder-color: rgba(112, 103, 95, 0.6);
    --display-bg: rgba(16, 98, 120, 0.1)
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

html {
    font-family: var(--font-inria-sans), system-ui, -apple-system, sans-serif
}

body,
html {
    max-width: 100vw;
    overflow-x: hidden
}

body {
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem
}

@media screen and (max-width:767px) {
    .zsiq-float {
        bottom: 6rem !important
    }
}

body.mobile-menu-open .zsiq-float {
    display: none !important
}

.text-primary {
    color: var(--primary-color)
}

.text-secondary {
    color: var(--secondary-color)
}

.text-accent {
    color: var(--accent-color)
}

.bg-primary {
    background-color: var(--primary-color)
}

.bg-secondary {
    background-color: var(--secondary-color)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-inria-sans);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s ease;
    border-radius: .5rem;
    min-height: 48px
}

.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.main-content {
    flex: 1 1;
    display: flex;
    flex-direction: column
}

.global-loader-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 9999;
    min-height: 100vh
}

.global-loader,
.global-loader-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.global-loader {
    gap: 32px;
    padding: 2rem;
    text-align: center
}

.loader-gif-container {
    display: flex;
    justify-content: center;
    align-items: center
}

.loader-text {
    font-size: 22px;
    font-family: var(--font-inria-sans);
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color)
}

.loader-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .8
}

@media(max-width:767px) {
    .global-loader {
        padding: 1.5rem;
        gap: 24px
    }
    .loader-gif-container img {
        width: 150px !important;
        height: 106px !important
    }
    .loader-text {
        font-size: 22px;
        font-family: var(--font-inria-sans);
        font-weight: 300;
        line-height: normal;
        color: var(--secondary-color)
    }
    .loader-logo img {
        width: 47px !important;
        height: 20px !important
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.global-loader {
    animation: fadeIn .3s ease-out
}

@supports(-webkit-touch-callout:none) {
    input[type=email],
    input[type=number],
    input[type=password],
    input[type=search],
    input[type=tel],
    input[type=text],
    select,
    textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none
    }
}

@media screen and (max-width:768px)and (-webkit-min-device-pixel-ratio:2) {
    input[type=email],
    input[type=number],
    input[type=password],
    input[type=search],
    input[type=tel],
    input[type=text],
    select,
    textarea {
        font-size: 16px !important
    }
}

@media screen and (max-width:767px) {
    input[type=email],
    input[type=number],
    input[type=password],
    input[type=search],
    input[type=tel],
    input[type=text],
    select,
    textarea {
        font-size: 16px !important;
        text-size-adjust: 100%
    }
}

elevenlabs-convai {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    right: 10px
}

@media screen and (max-width:767px) {
    elevenlabs-convai {
        bottom: 0;
        right: 0
    }
    .mobile-sticky-button.sticky elevenlabs-convai,
    .mobile-sticky-button.sticky~elevenlabs-convai {
        bottom: 80px !important
    }
}

@media screen and (max-width:767px) {
    body:has(.mobile-sticky-button.sticky) elevenlabs-convai {
        bottom: 80px !important
    }
}

.weight-calculator-mobile {
    background-color: var(--accent-color);
    padding: 48px 0;
    width: 100%
}

.weight-calculator-mobile .weight-calculator-container {
    margin: 0;
    padding: 0 16px
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans);
    text-align: center;
    margin-bottom: 24px;
    padding: 0 16px
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: nowrap
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    width: 100%
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans);
    text-align: center;
    margin-bottom: 19px
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    position: relative
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-scale-image {
    position: relative;
    top: -2.5rem;
    width: 300px;
    height: 248px;
    mix-blend-mode: multiply
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-scale-image .weight-scale-text {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 2.5rem;
    left: 53%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-scale-image .weight-scale-text .weight-scale-text-number {
    font-size: 32px;
    font-weight: 700;
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: -.02em;
    text-rendering: optimizeLegibility;
    dominant-baseline: middle
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-scale-image .weight-scale-text .weight-scale-text-unit {
    font-size: 14px;
    font-family: system-ui, -apple-system, sans-serif;
    color: #666;
    margin-top: 8px;
    font-weight: 500
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider {
    width: 258px;
    height: 51px;
    position: absolute;
    bottom: 0
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0)
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-fill {
    position: absolute;
    left: 0;
    top: 23px;
    width: 258px;
    height: 6px;
    background-color: #787878;
    opacity: .2;
    border-radius: 3px
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-ticks {
    position: absolute;
    left: 16px;
    top: 33px;
    width: 226px;
    height: 4px
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-ticks .slider-tick {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #3c3c43;
    opacity: .18;
    border-radius: 50%
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-knob {
    position: absolute;
    top: 14px;
    width: 38px;
    height: 24px;
    background-color: var(--background);
    border-radius: 100px;
    box-shadow: 0 .5px 4px rgba(0, 0, 0, .12), 0 6px 13px rgba(0, 0, 0, .12);
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    transition: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    touch-action: none
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-knob:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 1px 6px rgba(0, 0, 0, .16), 0 8px 18px rgba(0, 0, 0, .16);
    transition: transform .15s cubic-bezier(.175, .885, .32, 1.275)
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-knob.dragging {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2), 0 12px 24px rgba(0, 0, 0, .2);
    transition: none
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-scale-section .weight-scale-container .weight-slider .slider-track .slider-interaction-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    will-change: transform;
    touch-action: pan-x;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-projection-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 16px
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card {
    background-color: hsla(0, 0%, 100%, .5);
    border-radius: 8px;
    margin: 0;
    padding: 16px 24px
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-row .projection-label {
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans);
    flex: 1 1
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-row .projection-value {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: baseline;
    gap: 0;
    flex-wrap: nowrap
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-row .projection-value .projection-number {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans)
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-row .projection-value .projection-unit {
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans);
    margin-left: 4px
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-projection-section .projection-card .projection-divider {
    height: 1px;
    background-color: var(--accent-color);
    width: 100%
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-projection-section .weight-calculator-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-projection-section .weight-calculator-button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px
}

.weight-calculator-mobile .weight-calculator-container .weight-calculator-content .weight-projection-section .weight-calculator-button {
    background-color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    color: var(--accent-color);
    font-family: var(--font-inria-sans);
    width: 100%
}