body.hp-has-sticky-request {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    scroll-padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
}
.hp-sticky-request {
    position: fixed;
    z-index: 1030;
    inset: auto 0 0;
    padding: 14px 24px calc(14px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--hp-public-border, #cfe0eb);
    background: #fff;
    box-shadow: 0 -4px 20px rgba(7, 56, 84, .1);
}
.hp-sticky-request__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.hp-sticky-request__name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--hp-public-navy, #073854);
    font-size: 18px;
}
.hp-sticky-request__button {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--hp-public-navy, #073854);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}
.hp-sticky-request__button:hover,
.hp-sticky-request__button:focus {
    background: var(--hp-public-blue-strong, #075f9f);
    color: #fff;
    text-decoration: none;
}
.hp-sticky-request__button:focus-visible {
    outline: 3px solid var(--hp-public-blue, #0b6fb8);
    outline-offset: 3px;
}
body.hp-has-sticky-request #healthcare-feedback-widget .healthcare-feedback-button {
    bottom: calc(100px + env(safe-area-inset-bottom, 0px)) !important;
}
@media (max-width: 600px) {
    .hp-sticky-request { padding-inline: 16px; }
    .hp-sticky-request__name { display: none; }
    .hp-sticky-request__button { width: 100%; }
}
@media print {
    .hp-sticky-request { display: none; }
    body.hp-has-sticky-request { padding-bottom: 0; }
}
