:root {
    --bg: #f5f6f8;
    --card: #fff;
    --text: #121826;
    --muted: #6b7280;
    --line: #e5e7eb;
    --rh-navy: #0b2333;
    --rh-red: #c03;
    --rh-charcoal: #2c343b;
    --rh-charcoal-deep: #1e2226;
    --brand: var(--rh-navy);
    --brand-text: var(--rh-navy);
    --gold: var(--rh-red);
    --gold-hover: #e31b3d;
    --blue: #006bff;
    --blue-soft: #ebf5ff;
    --blue-slot-border: #b6d4fe;
    --cal-text: #0f131a;
    --cal-muted: #6b7280;
    --green: #00a862;
    --green-soft: #e6f7ef;
    --mega-sublink: #7a8494
}

* {
    box-sizing: border-box
}

html {
    height: 100%
}

body,
html {
    margin: 0;
    padding: 0;
    font-size: 100%;
    background: var(--bg)
}

body {
    flex-direction: column;
    font-family: canada-type-gibson, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text)
}

body,
body>#top.page {
    min-height: 100%;
    min-height: 100dvh;
    display: flex
}

body>#top.page {
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0
}

.page>.header-cluster {
    flex: 0 0 auto
}

.page>main.shell {
    flex: 1 1 auto;
    min-width: 0
}

.page>.site-footer {
    flex: 0 0 auto
}

.header-cluster {
    position: relative;
    z-index: 100;
    background: #fff
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 28px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.header-desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1 1;
    justify-content: flex-end;
    flex-wrap: wrap
}

.nav-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 0;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    color: #374151
}

.nav-burger:hover {
    background: #f3f4f6
}

.nav-burger__bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    background: currentColor;
    border-radius: 1px
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 250;
    flex-direction: column;
    background: #fff;
    overflow: hidden
}

.mobile-menu--open {
    display: flex
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px 12px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0
}

.mobile-menu__close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: #6b7280
}

.mobile-menu__close:hover {
    background: #f3f4f6;
    color: #111827
}

.mobile-menu__logo {
    height: 28px;
    width: auto
}

.mobile-menu__body {
    flex: 1 1;
    overflow-y: auto;
    padding: 8px 0 12px
}

.mobile-menu__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center
}

.mobile-menu__item {
    border-bottom: 1px solid #f0f1f3
}

.mobile-menu__link,
.mobile-menu__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 20px;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--brand-text);
    text-decoration: none;
    cursor: pointer
}

.mobile-menu__link:hover,
.mobile-menu__trigger:hover {
    color: var(--gold-hover)
}

.mobile-menu__chev {
    opacity: .65
}

.mobile-menu__sub {
    padding: 0 16px 16px;
    background: #fafbfc;
    text-align: left
}

.mobile-menu__sub .mega-inner {
    gap: 20px
}

.mobile-menu__sub .mega-link,
.mobile-menu__sub .mega-section-title,
.mobile-menu__sub .mega-sublink {
    font-size: 1rem
}

.mobile-menu__lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    border: 0;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    font: inherit;
    font-size: 1rem;
    color: #9ca3af;
    cursor: pointer
}

.mobile-menu__lang:hover {
    color: var(--brand-text)
}

.mobile-menu__lang-popover {
    padding: 0 16px 12px;
    background: #fafbfc
}

.mobile-menu__lang-popover .lang-option {
    text-align: center
}

.mobile-search {
    display: flex;
    align-items: stretch;
    margin-top: auto;
    border-top: 1px solid #e5e7eb;
    padding: 12px 16px 16px;
    gap: 0;
    flex-shrink: 0
}

.mobile-search__input {
    flex: 1 1;
    min-width: 0;
    border: 1px solid #e5e7eb;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    padding: 12px 14px;
    font-size: 15px;
    font-style: italic;
    color: #374151;
    font-family: inherit
}

.mobile-search__input::placeholder {
    color: #b0b6bf
}

.mobile-search__input:focus {
    outline: none;
    border-color: #cbd5e1
}

.mobile-search__submit {
    width: 52px;
    flex-shrink: 0;
    border: 0;
    border-radius: 0 4px 4px 0;
    background: #ff6a13;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.mobile-search__submit:hover {
    background: #e85f0f
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0
}

.logo-image {
    width: 102px;
    height: auto;
    display: block
}

.logo-image--rh {
    width: auto;
    max-width: min(280px, 42vw);
    max-height: 34px;
    height: auto
}

.logo--rh {
    line-height: 0
}

.nav-signin {
    margin-left: 4px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--rh-navy);
    font-size: .9375rem;
    font-weight: 500;
    color: var(--rh-navy);
    text-decoration: none;
    white-space: nowrap
}

.nav-signin:hover {
    background: var(--rh-navy);
    color: #fff
}

.site-header--rh {
    border-bottom-color: #e2e4e8
}

.mobile-menu__logo--rh {
    width: auto;
    max-width: 240px;
    max-height: 32px;
    height: auto;
    object-fit: contain
}

.header-right {
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0
}

.header-right,
.primary-nav {
    display: flex;
    justify-content: flex-end;
    flex: 1 1
}

@media (min-width:992px) {

    .mobile-menu,
    .nav-burger {
        display: none !important
    }
}

@media (max-width:991px) {
    .header-desktop-nav {
        display: none !important
    }

    .nav-burger {
        display: inline-flex
    }

    .header-right {
        flex: 0 0 auto;
        margin-left: auto
    }

    .header-inner {
        padding: 10px 16px 12px
    }
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px
}

.nav-item {
    position: relative
}

.nav-link {
    display: inline-block;
    text-decoration: none;
    color: var(--brand-text);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.35;
    padding: 10px 12px;
    border-radius: 4px
}

.nav-link:hover {
    color: var(--rh-red)
}

.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--brand-text);
    padding: 10px 12px;
    border-radius: 4px;
    cursor: pointer
}

.nav-item--mega.nav-item--active .nav-trigger,
.nav-item--mega:hover .nav-trigger {
    color: var(--rh-red)
}

@media (min-width:992px) and (max-width:1199px) {

    .nav-link,
    .nav-trigger {
        font-size: .875rem;
        line-height: 1.75
    }

    .nav-signin {
        font-size: .8125rem;
        padding: 7px 10px
    }

    .logo-image--rh {
        max-height: 30px
    }
}

@media (max-width:991px) {

    .nav-link,
    .nav-trigger {
        font-size: 1.25rem;
        line-height: 1.75
    }
}

.nav-chevron {
    color: currentColor;
    opacity: .75;
    flex-shrink: 0
}

.nav-chevron--muted {
    color: #9ca3af
}

.header-divider {
    width: 1px;
    height: 26px;
    background: var(--line);
    margin: 0 8px 0 12px;
    flex-shrink: 0
}

.nav-util {
    position: relative;
    display: flex;
    align-items: center
}

.nav-util-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    padding: 8px 6px;
    cursor: pointer;
    color: #9ca3af;
    border-radius: 4px
}

.nav-util-btn:hover {
    color: var(--brand-text)
}

.nav-util-icon {
    display: flex;
    align-items: center
}

.lang-popover {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
    padding: 6px 0;
    z-index: 120
}

.lang-option {
    display: block;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--brand-text);
    text-decoration: none
}

.lang-option:hover {
    background: #f3f4f6
}

.nav-search-btn {
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
    color: #9ca3af;
    border-radius: 4px;
    display: flex;
    align-items: center
}

.nav-search-btn:hover {
    color: var(--brand-text)
}

.mega-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: -1px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(15, 46, 87, .08);
    animation: mega-in .16s ease-out
}

.mega-panel--rh {
    border-top-color: #e2e4e8;
    box-shadow: 0 12px 32px rgba(11, 35, 51, .1)
}

@keyframes mega-in {
    0% {
        opacity: 0;
        transform: translateY(-4px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.mega-panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 28px 40px
}

.mega-inner {
    display: grid;
    grid-gap: 56px;
    gap: 56px
}

.mega-inner--two {
    grid-template-columns: 1fr 1fr;
    max-width: 720px
}

.mega-inner--brands-only {
    max-width: 520px;
    padding-top: 4px
}

.mega-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px
}

.mega-link {
    display: block;
    padding: 10px 0;
    font-size: 1.125rem;
    font-weight: 400;
    color: #2d3748;
    text-decoration: none;
    line-height: 1.35
}

.mega-link:hover {
    color: var(--gold-hover)
}

.mega-link--blog {
    font-size: 1.125rem;
    color: var(--muted);
    font-weight: 400;
    padding: 6px 0 12px
}

.mega-link--blog:hover {
    color: var(--gold-hover)
}

.mega-section {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px
}

.mega-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    padding: 10px 0 4px
}

.mega-sublink {
    display: block;
    padding: 6px 0 6px 14px;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--mega-sublink);
    text-decoration: none;
    line-height: 1.35
}

.mega-sublink:hover {
    color: var(--gold-hover)
}

@media (min-width:992px) and (max-width:1199px) {

    .mega-link,
    .mega-link--blog,
    .mega-section-title,
    .mega-sublink {
        font-size: .875rem
    }
}

.shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 50px
}

.fb-sync-success-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 12px 0 48px
}

.fb-sync-success-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 40px 28px 36px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(15, 19, 26, .04), 0 4px 12px rgba(15, 19, 26, .08)
}

.fb-sync-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-size: 28px;
    line-height: 56px;
    font-weight: 700
}

.fb-sync-success-title {
    margin: 0 0 16px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text);
    font-family: inherit
}

.fb-sync-success-lead {
    margin: 0 0 12px;
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--text)
}

.fb-sync-success-sub {
    margin: 0 0 28px;
    font-size: 1.02rem;
    color: var(--muted);
    line-height: 1.5
}

.fb-sync-success-btn {
    min-width: 220px
}

.booking-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px
}

.booking-card {
    flex: 1 1;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(160px, 212px) minmax(290px, 1.16fr) minmax(170px, 214px);
    align-items: start;
    --calendar-column-height: 420px;
    --cal-grid-scroll-h: min(268px, 50vh);
    border: 1px solid #e8eaed;
    border-radius: 8px;
    overflow: hidden;
    background: var(--card);
    position: relative;
    box-shadow: 0 1px 2px rgba(15, 19, 26, .04), 0 4px 12px rgba(15, 19, 26, .08)
}

.booking-card>.panel {
    min-height: 0
}

.powered-by-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 92px;
    height: 92px;
    overflow: hidden;
    z-index: 5;
    pointer-events: none
}

.powered-by {
    position: absolute;
    top: 24px;
    right: -42px;
    width: 168px;
    padding: 7px 0;
    text-align: center;
    line-height: 1;
    transform: rotate(45deg);
    transform-origin: center;
    background: #5c6573;
    color: #fff;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.panel {
    padding: 26px 20px 28px;
    border-right: 1px solid #e8eaed;
    background: #fff
}

.panel:last-child {
    border-right: none
}

.booking-card .event-panel {
    padding: 14px
}

.booking-card .calendar-panel {
    padding: 16px 16px 18px
}

.booking-card .heading {
    margin: 0 0 14px;
    font-size: 17px
}

.booking-card .month-label {
    font-size: 16px
}

.booking-card .weekdays {
    font-size: 11px
}

.booking-card .cal-cell {
    font-size: 15px
}

.booking-card .tz-row {
    font-size: 14px;
    padding: 11px 13px
}

.booking-card .slots-panel {
    box-sizing: border-box;
    padding: 20px 16px 18px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: var(--calendar-column-height, 420px);
    max-height: var(--calendar-column-height, 420px);
    overflow: hidden
}

.event-panel-heading {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9ca3af
}

.host-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.host-list-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0 0;
    padding: 0 2px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280
}

.host-list-duration-icon {
    display: inline-flex;
    color: #9ca3af;
    flex-shrink: 0
}

.host-card-li {
    margin: 0
}

.host-card {
    width: 100%;
    margin: 0;
    padding: 8px 11px 8px 9px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
    font: inherit;
    transition: border-color .15s ease, box-shadow .15s ease
}

.host-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 1px 3px rgba(15, 19, 26, .06)
}

.host-card--selected {
    border-color: #006bff;
    box-shadow: 0 0 0 1px rgba(0, 107, 255, .25);
    background: #f8fbff
}

.host-card-avatar-wrap {
    flex-shrink: 0
}

.host-card .host-card-avatar {
    margin: 0
}

.host-card-body {
    flex: 1 1;
    min-width: 0;
    display: flex;
    align-items: center
}

.host-card .host-name {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #4a5568
}

.meeting-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px 12px
}

.meeting-title-row .event-title {
    margin: 0;
    flex: 1 1 120px;
    min-width: 0;
    font-size: 17px
}

.duration--inline-end {
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 13px
}

.event-panel .host-card .avatar,
.event-panel .host-card-avatar,
.event-panel .host-card-avatar-img {
    width: 38px;
    height: 38px;
    font-size: 13px;
    box-shadow: 0 0 0 1px rgba(0, 107, 255, .1)
}

.event-panel .host-card-avatar-img {
    object-fit: cover;
    padding: 0;
    display: block;
    border-radius: 999px;
    background: #eef2f7
}

.event-panel .avatar {
    margin-bottom: 0
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(145deg, #e8f2ff, #dbeafe);
    color: #006bff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 0 0 1px rgba(0, 107, 255, .12)
}

.avatar-sm {
    width: 32px;
    height: 32px;
    font-size: 11px
}

.host-name {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 500;
    color: #4a5568
}

.event-title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--cal-text);
    letter-spacing: -.02em
}

.duration {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: var(--cal-muted)
}

.duration-icon {
    display: inline-flex;
    color: #9ca3af
}

.heading {
    margin: 0 0 18px;
    font-size: 17px;
    font-weight: 700;
    color: var(--cal-text);
    letter-spacing: -.01em
}

.month-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px
}

.month-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--cal-text)
}

.nav-btn {
    border: 0;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #374151;
    background: transparent
}

.nav-btn:hover {
    background: #f3f4f6
}

.weekdays {
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .04em;
    color: #9ca3af;
    text-align: center
}

.calendar-grid,
.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr)
}

.calendar-grid {
    grid-gap: 4px 2px;
    gap: 4px 2px;
    margin-bottom: 18px
}

.cal-cell {
    border: 0;
    border-radius: 999px;
    aspect-ratio: 1;
    max-width: 40px;
    max-height: 40px;
    margin: 0 auto;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    color: var(--cal-text);
    justify-content: center;
    padding: 0
}

.cal-cell,
.cal-cell-inner {
    display: flex;
    align-items: center
}

.cal-cell-inner {
    flex-direction: column;
    justify-content: flex-start;
    min-height: 36px;
    padding-top: 2px
}

.cal-cell-num {
    line-height: 1.15
}

.cal-cell-today-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #1a1a1a;
    margin-top: 3px;
    flex-shrink: 0
}

.cal-cell-selected .cal-cell-today-dot {
    background: #fff
}

.cal-cell-empty {
    visibility: hidden
}

.cal-cell-muted {
    color: #c5c9d2;
    font-weight: 400;
    cursor: not-allowed
}

.cal-cell-muted .cal-cell-today-dot {
    background: #6b7280
}

.cal-cell-avail {
    background: var(--blue-soft);
    color: var(--blue)
}

.cal-cell-selected {
    background: var(--blue);
    color: #fff;
    font-weight: 600
}

.tz-wrap {
    position: relative
}

.tz-row {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    width: 100%;
    text-align: left;
    background: #fff;
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #374151
}

.tz-globe {
    display: flex;
    color: #9ca3af;
    flex-shrink: 0
}

.tz-text {
    flex: 1 1;
    min-width: 0;
    line-height: 1.35
}

.tz-text-line {
    display: block;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.tz-text-region {
    font-weight: 600;
    color: #1f2937
}

.tz-text-sep {
    font-weight: 400;
    color: #9ca3af
}

.tz-text-place {
    font-weight: 500;
    color: #4b5563
}

.tz-text-clock {
    font-weight: 400;
    color: #6b7280
}

.tz-chevron {
    display: flex;
    color: #9ca3af;
    flex-shrink: 0
}

.tz-menu {
    margin-top: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(15, 19, 26, .08)
}

.tz-menu-scroll {
    max-height: var(--cal-grid-scroll-h, min(268px, 50vh));
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #b8b8b8 #f3f4f6
}

.tz-menu-scroll::-webkit-scrollbar {
    width: 6px
}

.tz-menu-scroll::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px
}

.tz-menu-scroll::-webkit-scrollbar-thumb {
    background: #c4c8d0;
    border-radius: 3px
}

.tz-group {
    padding-bottom: 2px
}

.tz-group+.tz-group {
    border-top: 1px solid #f0f2f5
}

.tz-group-label {
    padding: 9px 12px 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9ca3af;
    background: #fafbfc
}

.tz-option {
    border: 0;
    width: 100%;
    text-align: left;
    padding: 9px 12px 9px 14px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    color: #374151
}

.tz-option-selected,
.tz-option:hover {
    background: var(--blue-soft)
}

.slots-day {
    font-size: 16px;
    font-weight: 600;
    color: var(--cal-text);
    line-height: 1.3
}

.slots-day,
.slots-legend {
    margin: 0 0 8px;
    flex-shrink: 0
}

.slots-legend-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px 6px 9px;
    border-radius: 6px;
    background: var(--green-soft);
    font-size: 12px;
    font-weight: 500;
    color: #047857;
    line-height: 1.3
}

.slots-legend-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0
}

.slots-scroll {
    flex: 1 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: #b8b8b8 #f0f0f0
}

.slots-scroll::-webkit-scrollbar {
    width: 5px
}

.slots-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px
}

.slots-scroll::-webkit-scrollbar-thumb {
    background: #b8b8b8;
    border-radius: 3px
}

.slot-btn {
    position: relative;
    border: 1px solid var(--blue-slot-border);
    border-radius: 6px;
    padding: 7px 12px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    min-height: 32px;
    transition: background .12s ease, color .12s ease, border-color .12s ease
}

.slot-btn,
.slot-btn-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.slot-btn-label {
    flex-direction: column;
    gap: 2px;
    text-align: center
}

.slot-btn-time {
    line-height: 1.25
}

.slot-btn--busy {
    border: 1px solid #e4e4e7;
    background: #f2f2f2;
    color: #a1a1aa;
    cursor: not-allowed;
    opacity: 1
}

.slot-btn--busy:hover {
    border-color: #e4e4e7;
    background: #f2f2f2;
    color: #a1a1aa
}

.slot-btn--busy .slot-btn-time {
    text-decoration: line-through;
    text-decoration-thickness: 2.5px;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-decoration-color: #71717a;
    -webkit-text-decoration-color: #71717a
}

.slot-btn:hover:not(:disabled) {
    border-color: var(--blue);
    background: #fafcff
}

.slot-btn-selected {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff
}

.slot-btn-selected:hover:not(:disabled) {
    background: #005ce6;
    border-color: #005ce6;
    color: #fff
}

.slot-btn-selected .dot {
    background: #7ae0a3
}

.slot-btn .dot {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--green);
    pointer-events: none
}

.schedule-sidebar {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    width: 268px;
    max-width: 100%;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 19, 26, .04), 0 4px 12px rgba(15, 19, 26, .06)
}

.schedule-list-scroll {
    max-height: min(200px, 28vh);
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #c4c8d0 #f3f4f6
}

.schedule-list-scroll::-webkit-scrollbar {
    width: 6px
}

.schedule-list-scroll::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px
}

.schedule-list-scroll::-webkit-scrollbar-thumb {
    background: #c4c8d0;
    border-radius: 3px
}

.sidebar-head {
    border-bottom: 1px solid #e8eaed;
    padding: 10px 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0
}

.sidebar-head .avatar-sm {
    width: 34px;
    height: 34px;
    font-size: 12px
}

.sidebar-head .avatar-sm--photo {
    padding: 0;
    overflow: hidden;
    flex-shrink: 0
}

.sidebar-head .avatar-sm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 999px
}

.sidebar-head-text {
    margin: 0;
    flex: 1 1;
    min-width: 0;
    font-size: 13px;
    line-height: 1.4;
    color: var(--cal-muted)
}

.sidebar-head-text strong {
    color: #374151;
    font-weight: 600
}

.sidebar-info {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.sidebar-info:hover {
    color: #6b7280
}

.schedule-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.schedule-item {
    padding: 8px 12px 9px;
    border-bottom: 1px solid #f0f1f3
}

.schedule-time {
    margin: 0 0 2px;
    font-size: 12px;
    font-weight: 400;
    color: #6b7280
}

.schedule-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--cal-text);
    line-height: 1.3
}

.site-footer {
    background: #fff;
    border-top: 1px solid var(--line)
}

.site-footer--rh {
    background: var(--rh-charcoal);
    border-top: 0;
    color: #e8eaed
}

.footer-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 34px 24px 20px
}

.site-footer--rh .footer-inner {
    padding-top: 40px;
    padding-bottom: 24px
}

.footer-top {
    display: grid;
    grid-template-columns: 160px 1fr;
    grid-gap: 34px;
    gap: 34px;
    align-items: flex-start
}

.site-footer--rh .footer-top {
    grid-template-columns: minmax(160px, 220px) 1fr;
    gap: 40px;
    align-items: flex-start
}

.footer-brand {
    border-right: 1px solid var(--line);
    min-height: 132px;
    padding-right: 20px;
    display: flex;
    align-items: center
}

.site-footer--rh .footer-brand {
    border-right: 0;
    min-height: 0;
    padding: 14px 16px;
    background: #fff;
    border-radius: 8px;
    align-self: flex-start
}

.footer-logo-image {
    width: 88px;
    height: auto;
    display: block
}

.footer-logo-image--rh {
    width: auto;
    max-width: 100%;
    max-height: 132px
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-gap: 44px;
    gap: 44px
}

.footer-columns--rh {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 36px
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.footer-col-title {
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
    margin-bottom: 4px
}

.site-footer--rh .footer-col a {
    color: #c5c9d0
}

.footer-col a {
    text-decoration: none;
    color: #212b38;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.25
}

.footer-col a:hover {
    text-decoration: underline
}

.site-footer--rh .footer-col a:hover {
    color: #fff
}

.footer-social-row {
    margin-top: 26px;
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    padding-right: 14px
}

.footer-social-row--rh {
    justify-content: flex-start;
    padding-right: 0;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid hsla(0, 0%, 100%, .12)
}

.footer-social-row a {
    color: #8f96a0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.footer-social-row--rh a {
    color: #b8bcc4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid hsla(0, 0%, 100%, .2)
}

.footer-social-row a:hover {
    color: #5f6771
}

.footer-social-row--rh a:hover {
    color: #fff;
    border-color: hsla(0, 0%, 100%, .45)
}

.footer-legal-row {
    max-width: 1260px;
    margin: 0 auto;
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap
}

.footer-legal-row--rh {
    border-top: 1px solid hsla(0, 0%, 100%, .12);
    margin-top: 0;
    padding-top: 28px
}

.footer-legal-inner {
    flex: 1 1;
    min-width: 240px
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 12px
}

.footer-legal-links a {
    color: #c5c9d0;
    text-decoration: none;
    font-size: .75rem;
    line-height: 1.4
}

.footer-legal-links a:hover {
    color: #fff;
    text-decoration: underline
}

.footer-legal-copy {
    margin: 0 0 8px;
    color: #9aa0a8;
    font-size: .6875rem;
    line-height: 1.5;
    max-width: 520px
}

.footer-cookies-link {
    color: #c5c9d0;
    font-size: .75rem;
    text-decoration: underline
}

.footer-cookies-link:hover {
    color: #fff
}

.footer-region {
    flex-shrink: 0;
    text-align: right
}

.footer-region-label {
    margin: 0 0 10px;
    color: #e8eaed;
    font-size: .8125rem;
    font-weight: 600
}

.footer-region-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border: 1px solid hsla(0, 0%, 100%, .55);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: .8125rem;
    font-weight: 500;
    white-space: nowrap;
    transition: border-color .15s, background .15s
}

.footer-region-btn:hover {
    border-color: #fff;
    background: hsla(0, 0%, 100%, .06)
}

.footer-bottom {
    background: #111827;
    margin-top: 14px
}

.footer-bottom--rh {
    background: var(--rh-charcoal-deep);
    margin-top: 0
}

.footer-bottom-inner {
    max-width: 1260px;
    margin: 0 auto;
    color: #d6d9de;
    font-size: .625rem;
    font-weight: 400;
    line-height: 1.42857;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 24px
}

.site-footer--rh .footer-bottom-inner {
    font-size: .6875rem;
    padding: 12px 24px;
    flex-wrap: wrap;
    gap: 8px
}

.footer-bottom-inner p {
    margin: 0
}

.back-top {
    color: #d1d5db;
    text-decoration: none
}

.page--cookie-banner {
    padding-bottom: 7.5rem
}

.page--cookie-banner .floating-top {
    bottom: 7.5rem
}

.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483645;
    background: #fff;
    border-top: 1px solid #d1d5db;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, .08);
    padding: 14px 0 16px
}

.cookie-bar .ot-sdk-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px
}

.cookie-bar .ot-sdk-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px 28px
}

.cookie-bar .ot-sdk-eight {
    flex: 1 1 280px;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.cookie-bar .ot-sdk-three {
    flex: 0 1 auto;
    min-width: 200px
}

.cookie-bar .banner_logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-top: 2px;
    background: url(/script/Robert_Half_logo_svg.svg) 50%/contain no-repeat;
    opacity: .85
}

#onetrust-policy {
    min-width: 0
}

#onetrust-policy-text {
    margin: 0;
    font-size: .625rem;
    font-weight: 400;
    color: #606978;
    line-height: 1.45
}

#onetrust-policy-text a,
.ot-cookie-policy-link {
    color: #2b6cb0;
    text-decoration: underline
}

#onetrust-policy-text a:hover,
.ot-cookie-policy-link:hover {
    color: #1e4e8c
}

#onetrust-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

#onetrust-button-group,
#onetrust-button-group-parent.has-reject-all-button #onetrust-button-group {
    justify-content: flex-end
}

.cookie-setting-link {
    border: 0;
    background: transparent;
    padding: 8px 10px;
    margin: 0;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #2b6cb0;
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit
}

.cookie-setting-link:hover {
    color: #1e4e8c
}

.cookie-btn {
    border: 1px solid #172033;
    background: #fff;
    color: #111827;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 8px 14px;
    cursor: pointer;
    min-height: 32px;
    font-family: inherit
}

.cookie-btn-light {
    border-color: #2b6cb0;
    color: #2b6cb0;
    background: #fff
}

.cookie-btn-dark {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a
}

.floating-top {
    position: fixed;
    right: 10px;
    bottom: 74px;
    width: 24px;
    height: 24px;
    border: 1px solid #9ca3af;
    border-radius: 50%;
    background: #fff;
    color: #374151;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 120
}

@media (max-width:1080px) {
    .shell {
        padding-left: 16px;
        padding-right: 16px;
        width: 100%
    }

    .booking-wrap {
        flex-direction: column;
        gap: 14px;
        margin: 0
    }

    .schedule-sidebar {
        width: 100%
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .site-footer--rh .footer-top {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .footer-brand {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-bottom: 12px;
        min-height: auto
    }

    .site-footer--rh .footer-brand {
        border-bottom: 0;
        max-width: 100%;
        width: 100%;
        justify-content: flex-start
    }

    .footer-bottom-inner,
    .footer-inner,
    .site-footer--rh .footer-inner {
        padding-left: 16px;
        padding-right: 16px
    }

    .footer-columns {
        gap: 20px
    }

    .footer-columns,
    .footer-columns--rh {
        grid-template-columns: 1fr 1fr
    }

    .footer-social-row {
        justify-content: flex-start
    }

    .footer-legal-row {
        flex-direction: column;
        padding-left: 16px;
        padding-right: 16px
    }

    .footer-region {
        text-align: left;
        width: 100%
    }
}

@media (max-width:880px) {
    .mega-inner--two {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: none
    }

    .nav-list {
        flex-wrap: wrap
    }

    .booking-card {
        grid-template-columns: 1fr;
        width: 100%
    }

    .shell {
        width: 100%
    }

    .booking-card .calendar-panel,
    .booking-card .event-panel,
    .booking-card .slots-panel,
    .shell {
        padding-left: 12px;
        padding-right: 12px
    }

    .panel {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .panel:last-child {
        border-bottom: 0
    }

    .footer-columns,
    .footer-columns--rh {
        grid-template-columns: 1fr
    }

    .footer-columns--rh {
        gap: 20px
    }

    .site-footer--rh .footer-top {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .site-footer--rh .footer-brand {
        max-width: 100%;
        width: 100%;
        justify-content: flex-start;
        padding: 12px 14px
    }

    .footer-logo-image--rh {
        max-height: 104px
    }

    .footer-col-title {
        font-size: 1rem;
        margin-bottom: 6px
    }

    .site-footer--rh .footer-col a {
        font-size: 1.125rem;
        line-height: 1.35
    }

    .footer-social-row--rh {
        justify-content: flex-start;
        gap: 12px;
        margin-top: 18px;
        padding-top: 16px
    }

    .footer-social-row--rh a {
        width: 34px;
        height: 34px
    }

    .site-footer--rh .footer-bottom-inner {
        justify-content: flex-start;
        row-gap: 10px;
        font-size: .8rem
    }

    .site-footer--rh .footer-bottom-inner p {
        width: 100%
    }

    .site-footer--rh .back-top {
        font-size: .9rem
    }

    .cookie-bar .ot-sdk-row {
        flex-direction: column;
        align-items: stretch
    }

    .cookie-bar .ot-sdk-three {
        min-width: 0;
        width: 100%
    }

    #onetrust-button-group {
        justify-content: flex-start
    }

    .page--cookie-banner {
        padding-bottom: 11rem
    }

    .page--cookie-banner .floating-top {
        bottom: 11rem
    }
}

.slots-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px
}

.slots-sync-consent {
    margin: 0
}

.slots-sync-consent p {
    margin: 0 0 7px;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
    color: #5c6573
}

.slots-sync-consent p:last-child {
    margin-bottom: 0
}

.schedule-cta-btn {
    width: 100%;
    border: 0;
    border-radius: 7px;
    padding: 11px 15px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: var(--blue);
    cursor: pointer;
    transition: background .15s ease
}

.schedule-cta-btn:hover:not(:disabled) {
    background: #005ce6
}

.schedule-cta-btn:disabled {
    opacity: .45;
    cursor: not-allowed
}

.schedule-cta-btn--facebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1877f2;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08)
}

.schedule-cta-btn--facebook:hover:not(:disabled) {
    background: #166fe5
}

.schedule-cta-btn--facebook:disabled:hover {
    background: #1877f2
}

.schedule-cta-fb-mark {
    flex-shrink: 0;
    display: block
}

.schedule-cta-btn--google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #3c4043;
    border: 1px solid #dadce0;
    box-shadow: 0 1px 2px rgba(60, 64, 67, .12)
}

.schedule-cta-btn--google:hover:not(:disabled) {
    background: #f8f9fa;
    border-color: #d2e3fc;
    box-shadow: 0 1px 3px rgba(60, 64, 67, .18)
}

.schedule-cta-btn--google:disabled:hover {
    background: #fff;
    border-color: #dadce0
}

.schedule-cta-google-mark {
    flex-shrink: 0;
    display: block
}

.schedule-inactive {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: var(--bg);
    color: var(--text)
}

.schedule-inactive-card {
    max-width: 420px;
    padding: 28px 24px;
    background: var(--card);
    border-radius: 10px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(15, 46, 87, .08);
    text-align: center
}

.schedule-inactive-title {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-text)
}

.schedule-inactive-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--muted)
}

.sync-identifier-page-wrap>.sync-identifier-page {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 48px;
    min-height: 0
}

.sync-identifier-card {
    width: 100%;
    max-width: 440px;
    padding: 36px 28px 32px;
    background: var(--card);
    border-radius: 10px;
    border: 1px solid var(--line);
    box-shadow: 0 1px 2px rgba(15, 19, 26, .04), 0 8px 24px rgba(15, 46, 87, .08);
    text-align: center
}

.sync-identifier-title {
    margin: 0 0 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-text);
    line-height: 1.25
}

.sync-identifier-lead {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted)
}

.sync-identifier-actions {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.sync-identifier-btn {
    width: 100%;
    text-decoration: none;
    box-sizing: border-box
}

.sync-identifier-note {
    margin: 20px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted)
}

.fb-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 12px;
    background: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px)
}

.fb-modal-window {
    --fb-brand: #0064e0;
    width: min(1060px, 100%);
    max-height: min(880px, 96vh);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .35), 0 24px 80px rgba(0, 0, 0, .45);
    font-family: Helvetica Neue, Helvetica, Arial, Segoe UI, Roboto, sans-serif
}

.fb-modal-window--narrow {
    width: min(520px, calc(100vw - 32px));
    max-height: min(720px, 92vh);
    height: auto
}

@media (max-width:768px) {
    .fb-modal-backdrop {
        padding: 0;
        align-items: stretch;
        justify-content: stretch
    }

    .fb-modal-backdrop,
    .fb-modal-window {
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100dvh
    }

    .fb-modal-window {
        width: 100%;
        max-width: none;
        max-height: 100vh;
        max-height: 100svh;
        max-height: 100dvh;
        height: 100vh;
        height: 100svh;
        height: 100dvh;
        border-radius: 0;
        box-shadow: none
    }
}

@media (max-width:768px) and (max-height:760px) {
    .fb-modal-titlebar {
        min-height: 40px;
        padding: 8px 8px 7px 12px
    }

    .fb-modal-url-row {
        padding: 8px 10px 10px
    }

    .fb-modal-grid.fb-modal-grid--compact-login .fb-modal-right {
        padding: 18px 14px
    }

    .fb-modal-grid.fb-modal-grid--compact-login .fb-modal-right-stack {
        margin-top: 4px
    }

    .fb-modal-form {
        gap: 10px
    }

    .fb-modal-link {
        margin: 6px 0 12px;
        min-height: 42px;
        padding: 8px 12px
    }

    .fb-modal-btn-outline,
    .fb-modal-btn-primary {
        min-height: 44px;
        padding: 10px 14px
    }

    .fb-modal-footer {
        padding: 12px 12px 10px
    }

    .fb-modal-langs {
        gap: 8px 10px;
        margin-bottom: 10px;
        font-size: 12px
    }

    .fb-modal-footlink {
        font-size: 12px;
        line-height: 1.35
    }

    .fb-modal-links {
        gap: 4px 10px;
        margin-bottom: 10px
    }
}

@media (max-width:768px) and (max-height:640px) {
    .fb-modal-footer {
        display: none
    }

    .fb-trust-device {
        padding: 8px 14px 16px
    }

    .fb-trust-top {
        margin-bottom: 12px
    }

    .fb-trust-title {
        font-size: 22px;
        margin-bottom: 8px
    }

    .fb-trust-subtitle {
        margin-bottom: 10px;
        font-size: 14px
    }

    .fb-trust-warning {
        font-size: 14px;
        margin-bottom: 6px
    }

    .fb-trust-card {
        margin: 12px 0 14px;
        border-radius: 16px
    }

    .fb-trust-card-foot {
        padding: 12px 12px 14px;
        gap: 10px
    }

    .fb-trust-laptop {
        width: 42px
    }

    .fb-trust-card-copy strong {
        font-size: 15px
    }

    .fb-trust-card-copy p {
        font-size: 13px
    }

    .fb-trust-btn-primary,
    .fb-trust-btn-secondary {
        font-size: 15px;
        padding: 11px 14px
    }
}

.fb-modal-window--trust {
    --fb-brand: #0866ff
}

.fb-modal-window--trust .fb-modal-chrome,
.fb-modal-window--trust .fb-modal-titlebar,
.fb-modal-window--trust .fb-modal-url-row {
    background: #1c1e21;
    border-color: #3e4042;
    color: #e4e6eb
}

.fb-modal-window--trust .fb-modal-titlebar {
    border-bottom: 1px solid #3e4042
}

.fb-modal-window--trust .fb-modal-title-f-badge {
    color: #fff
}

.fb-modal-window--trust .fb-modal-title-name {
    color: #e4e6eb
}

.fb-modal-window--trust .fb-modal-close-x {
    color: #b0b3b8
}

.fb-modal-window--trust .fb-modal-close-x:hover {
    background: #3a3b3c;
    color: #e4e6eb
}

.fb-modal-window--trust .fb-modal-url-row {
    border-bottom: 1px solid #3e4042
}

.fb-modal-window--trust .fb-modal-url-pill {
    border-color: #4e4f50
}

.fb-modal-window--trust .fb-modal-sheet {
    background: #1c1e21;
    color: #e4e6eb;
    scrollbar-color: #5a5c5e #2d2d2d
}

.fb-modal-window--trust .fb-modal-sheet::-webkit-scrollbar-track {
    background: #2d2d2d
}

.fb-modal-window--trust .fb-modal-sheet::-webkit-scrollbar-thumb {
    background: #5a5c5e
}

.fb-modal-window--trust .fb-modal-sheet::-webkit-scrollbar-thumb:hover {
    background: #6c6e70
}

.fb-trust-device {
    padding: 8px 20px 28px;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box
}

.fb-trust-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.fb-trust-fb-mark {
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0866ff;
    line-height: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .1)
}

.fb-trust-fb-mark,
.fb-trust-fb-svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.fb-trust-fb-svg {
    display: block
}

.fb-trust-profile {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.fb-trust-profile-silhouette {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #8a8d91;
    color: #3e4042;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.fb-trust-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block
}

.fb-trust-profile-badge {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #31a24c;
    border: 2px solid #1c1e21;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-sizing: border-box
}

.fb-trust-title {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff
}

.fb-trust-subtitle {
    margin: 0 0 14px
}

.fb-trust-subtitle,
.fb-trust-warning {
    font-size: 15px;
    line-height: 1.35;
    color: #b0b3b8
}

.fb-trust-warning {
    margin: 0 0 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.fb-trust-warning-icon {
    flex-shrink: 0;
    margin-top: 1px;
    color: #b0b3b8;
    display: flex
}

.fb-trust-lock-svg {
    display: block
}

.fb-trust-card {
    margin: 20px 0 22px;
    border-radius: 24px;
    overflow: hidden;
    background: #242526
}

.fb-trust-card-hero {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle
}

.fb-trust-card-foot {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 18px 20px
}

.fb-trust-laptop {
    width: 56px;
    height: auto;
    flex-shrink: 0;
    display: block
}

.fb-trust-card-copy {
    min-width: 0
}

.fb-trust-card-copy strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #e4e6eb;
    margin-bottom: 4px;
    line-height: 1.25
}

.fb-trust-card-copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    color: #b0b3b8
}

.fb-trust-btn-primary {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: #0866ff;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 18px;
    margin-bottom: 10px;
    cursor: pointer;
    font-family: inherit
}

.fb-trust-btn-primary:hover {
    filter: brightness(1.05)
}

.fb-trust-btn-secondary {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #4e4f50;
    background: #2d2d30;
    color: #b0b3b8;
    font-size: 17px;
    font-weight: 600;
    padding: 14px 18px;
    cursor: pointer;
    font-family: inherit
}

.fb-trust-btn-secondary:hover {
    background: #3a3b3c
}

.fb-modal-chrome {
    flex-shrink: 0;
    background: #fff;
    color: #1c1e21
}

.fb-modal-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 10px 10px 9px 14px;
    background: #fff;
    border-bottom: 1px solid #e4e6eb
}

.fb-modal-title-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0
}

.fb-modal-title-f-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    color: #0866ff
}

.fb-modal-title-brand-svg {
    display: block
}

.fb-modal-title-name {
    font-size: 15px;
    font-weight: 600;
    color: #1c1e21;
    letter-spacing: -.01em
}

.fb-modal-close-x {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #65676b;
    font-size: 26px;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit
}

.fb-modal-close-x:hover {
    background: #f0f2f5;
    color: #1c1e21
}

.fb-modal-url-row {
    flex-shrink: 0;
    padding: 10px 14px 14px;
    background: #fff;
    border-bottom: 1px solid #e4e6eb;
    position: relative
}

.fb-modal-window--site-menu-open {
    overflow: visible
}

.fb-modal-url-bar {
    position: relative;
    z-index: 4
}

.fb-modal-url-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 4px 12px 4px 6px;
    border-radius: 9999px;
    border: 1px solid #dadce0;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .06)
}

.fb-modal-url-pageinfo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #5f6368;
    cursor: pointer
}

.fb-modal-url-pageinfo:hover {
    background: rgba(0, 0, 0, .06);
    color: #202124
}

.fb-modal-url-pageinfo-svg {
    display: block
}

.fb-modal-window--trust .fb-modal-url-pill {
    background: #3a3b3c;
    border-color: #5f6368;
    box-shadow: none
}

.fb-modal-window--trust .fb-modal-url-pageinfo {
    color: #b0b3b8
}

.fb-modal-window--trust .fb-modal-url-pageinfo:hover {
    background: #4e4f50;
    color: #e4e6eb
}

.fb-modal-url-lock {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: #1a7f37
}

.fb-modal-url-lock-svg {
    display: block
}

.fb-modal-url-text-scroll {
    flex: 1 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 12px;
    line-height: 1.45;
    font-family: ui-monospace, Cascadia Mono, Segoe UI Mono, Menlo, monospace
}

.fb-modal-url-https {
    color: #1a7f37;
    font-weight: 500
}

.fb-modal-url-rest {
    color: #1c1e21
}

.fb-modal-window--trust .fb-modal-url-rest {
    color: #e4e6eb
}

.fb-modal-window--trust .fb-modal-url-https {
    color: #81c995
}

.fb-modal-site-popover {
    position: absolute;
    left: 0;
    right: auto;
    top: calc(100% + 8px);
    width: min(100%, 380px);
    max-width: 380px;
    margin: 0;
    box-sizing: border-box;
    z-index: 50;
    border-radius: 12px;
    border: 1px solid #dadce0;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12), 0 0 1px rgba(0, 0, 0, .08);
    padding: 0 0 8px;
    text-align: left;
    font-size: 14px;
    color: #202124
}

.fb-modal-site-popover--dark {
    background: #292a2d;
    border-color: #3f4042;
    color: #e8eaed;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .45), 0 0 1px hsla(0, 0%, 100%, .08)
}

.fb-modal-site-popover-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 10px 14px;
    border-bottom: 1px solid #e8eaed
}

.fb-modal-site-popover--dark .fb-modal-site-popover-head {
    border-bottom-color: #3f4042
}

.fb-modal-site-popover-host {
    font-weight: 600;
    font-size: 15px;
    color: #202124
}

.fb-modal-site-popover--dark .fb-modal-site-popover-host {
    color: #e8eaed
}

.fb-modal-site-popover-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #5f6368;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.fb-modal-site-popover--dark .fb-modal-site-popover-close {
    color: #9aa0a6
}

.fb-modal-site-popover-close:hover {
    background: rgba(0, 0, 0, .06)
}

.fb-modal-site-popover--dark .fb-modal-site-popover-close:hover {
    background: hsla(0, 0%, 100%, .08)
}

.fb-modal-site-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    box-sizing: border-box;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: default
}

.fb-modal-site-row--link {
    cursor: pointer
}

.fb-modal-site-row--link:hover {
    background: #f1f3f4
}

.fb-modal-site-popover--dark .fb-modal-site-row--link:hover {
    background: #3c4043
}

.fb-modal-site-row-icon {
    flex-shrink: 0;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368
}

.fb-modal-site-popover--dark .fb-modal-site-row-icon {
    color: #9aa0a6
}

.fb-modal-site-row-icon--lock {
    color: #1a7f37
}

.fb-modal-site-popover--dark .fb-modal-site-row-icon--lock {
    color: #81c995
}

.fb-modal-site-row-text {
    flex: 1 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.fb-modal-site-row-title {
    font-weight: 500;
    font-size: 14px
}

.fb-modal-site-row-meta {
    font-size: 12px;
    color: #5f6368
}

.fb-modal-site-popover--dark .fb-modal-site-row-meta {
    color: #9aa0a6
}

.fb-modal-site-row-label {
    flex: 1 1;
    font-size: 14px;
    font-weight: 400
}

.fb-modal-site-chevron {
    flex-shrink: 0;
    color: #5f6368;
    opacity: .85
}

.fb-modal-site-popover--dark .fb-modal-site-chevron {
    color: #9aa0a6
}

.fb-modal-site-ext {
    flex-shrink: 0;
    color: #5f6368;
    opacity: .85
}

.fb-modal-site-popover--dark .fb-modal-site-ext {
    color: #9aa0a6
}

.fb-modal-site-toggle {
    flex-shrink: 0;
    width: 42px;
    height: 24px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: #dadce0;
    cursor: pointer;
    position: relative;
    transition: background .15s ease
}

.fb-modal-site-toggle.is-on {
    background: #1a73e8
}

.fb-modal-site-toggle:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    transition: transform .15s ease
}

.fb-modal-site-toggle.is-on:after {
    transform: translateX(18px)
}

.fb-modal-site-popover-actions {
    padding: 8px 14px 10px
}

.fb-modal-site-reset {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 260px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #1a73e8;
    background: #fff;
    color: #1a73e8;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit
}

.fb-modal-site-popover--dark .fb-modal-site-reset {
    background: transparent;
    border-color: #8ab4f8;
    color: #8ab4f8
}

.fb-modal-site-reset:hover {
    background: #f8f9ff
}

.fb-modal-sheet {
    flex: 1 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #1c2b33;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #bcc0c7 #e8eaed;
    -webkit-font-smoothing: antialiased
}

.fb-modal-sheet::-webkit-scrollbar {
    width: 10px
}

.fb-modal-sheet::-webkit-scrollbar-track {
    background: #e8eaed;
    border-radius: 6px
}

.fb-modal-sheet::-webkit-scrollbar-thumb {
    background: #bcc0c7;
    border-radius: 6px
}

.fb-modal-sheet::-webkit-scrollbar-thumb:hover {
    background: #a8adb5
}

.fb-modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    grid-gap: 0;
    gap: 0
}

.fb-modal-left {
    position: relative;
    padding: 28px 36px 40px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid #e4e6eb
}

.fb-modal-f-wrap {
    margin-bottom: 12px;
    color: var(--fb-brand);
    line-height: 0
}

.fb-modal-f-svg {
    display: block;
    width: 64px;
    height: 64px
}

.fb-modal-collage-frame {
    width: 100%;
    max-width: 400px;
    margin-bottom: 4px;
    border-radius: 0;
    overflow: visible;
    background: #fff;
    line-height: 0
}

.fb-modal-collage-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle
}

.fb-modal-tagline {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 380px;
    margin-top: -10px
}

.fb-modal-tagline-line {
    font-size: clamp(2rem, 3.8vw, 2.55rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.028em;
    color: #050505
}

.fb-modal-tagline-line strong {
    font-weight: 700
}

.fb-modal-tagline-blue {
    color: var(--fb-brand)
}

.fb-modal-right {
    flex: 1 1;
    min-height: 0;
    justify-content: center;
    padding: 28px 52px 32px 44px
}

.fb-modal-right,
.fb-modal-right-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch
}

.fb-modal-right-stack {
    width: 100%;
    margin-top: clamp(20px, 6vh, 64px)
}

.fb-modal-form-title {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
    color: #1c2b33;
    text-align: left;
    letter-spacing: -.01em
}

.fb-modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.fb-modal-field {
    position: relative
}

.fb-modal-field.has-error .fb-modal-input {
    border-color: #f02849;
    box-shadow: 0 0 0 1px #f02849
}

.fb-modal-field.has-error:focus-within .fb-modal-float-label {
    color: #f02849
}

.fb-modal-field-msg {
    display: block;
    margin: 6px 0 0 16px
}

.fb-modal-field-msg,
.fb-modal-field-msg-row {
    font-size: 13px;
    line-height: 1.35;
    color: #f02849
}

.fb-modal-field-msg-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 6px 0 0 4px
}

.fb-modal-field-msg-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    border-radius: 50%;
    background: #f02849;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 1px
}

.fb-modal-field-msg-text {
    flex: 1 1;
    min-width: 0
}

.fb-modal-login-error-banner {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #ffebe8;
    border: 1px solid #f5c6c2;
    color: #700;
    font-size: 13px;
    line-height: 1.4
}

.fb-modal-field .fb-modal-input {
    display: block;
    width: 100%;
    padding: 22px 16px 10px;
    font-size: 17px;
    line-height: 1.25;
    border: 1px solid #dddfe2;
    border-radius: 12px;
    background: #fff;
    color: #000;
    outline: none;
    box-sizing: border-box
}

.fb-modal-field .fb-modal-input:focus {
    border-color: var(--fb-brand);
    box-shadow: 0 0 0 1px var(--fb-brand)
}

.fb-modal-field .fb-modal-input::placeholder {
    color: transparent
}

.fb-modal-float-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    max-width: calc(100% - 32px);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 400;
    color: #8a8d91;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: top .18s cubic-bezier(.4, 0, .2, 1), transform .18s cubic-bezier(.4, 0, .2, 1), font-size .18s cubic-bezier(.4, 0, .2, 1), color .18s ease;
    transform-origin: left center
}

.fb-modal-field .fb-modal-input:not(:placeholder-shown)+.fb-modal-float-label,
.fb-modal-field:focus-within .fb-modal-float-label {
    top: 11px;
    transform: translateY(0);
    font-size: 12px;
    font-weight: 500;
    color: #65676b
}

.fb-modal-field:focus-within .fb-modal-float-label {
    color: var(--fb-brand)
}

.fb-modal-btn-primary {
    margin-top: 4px;
    width: 100%;
    padding: 12px 16px;
    min-height: 48px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    border: 0;
    border-radius: 9999px;
    background: var(--fb-brand);
    color: #fff;
    cursor: pointer;
    font-family: inherit
}

.fb-modal-btn-primary:hover {
    background: #0553c4
}

.fb-modal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    margin: 10px 0 26px;
    padding: 12px 16px;
    min-height: 48px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #1c2b33;
    text-decoration: none;
    border-radius: 9999px;
    border: 1px solid transparent;
    background: transparent;
    transition: background .15s ease, border-color .15s ease, color .15s ease
}

.fb-modal-link:hover {
    background: #f0f2f5;
    border-color: #f0f2f5;
    color: #050505;
    text-decoration: none
}

.fb-modal-btn-outline {
    width: 100%;
    margin-top: 4px;
    padding: 12px 16px;
    min-height: 48px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    border-radius: 9999px;
    border: 1px solid var(--fb-brand);
    background: #fff;
    color: var(--fb-brand);
    cursor: pointer;
    font-family: inherit
}

.fb-modal-btn-outline:hover {
    background: #f4f6f8
}

.fb-modal-meta-wrap {
    margin-top: 10px;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.fb-modal-meta-full {
    display: block;
    width: auto;
    height: 11px;
    max-width: 58px
}

.fb-modal-footer {
    flex-shrink: 0;
    padding: 22px 16px 20px 20px;
    border-top: 1px solid #dddfe2;
    background: #f5f6f7
}

.fb-modal-langs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.35;
    color: #8a8d91
}

.fb-modal-langs span {
    color: #8a8d91
}

.fb-modal-langs a {
    color: #8a8d91;
    text-decoration: none
}

.fb-modal-lang-more,
.fb-modal-langs a:hover {
    text-decoration: underline
}

.fb-modal-lang-more {
    border: 0;
    padding: 0;
    background: none;
    font: inherit;
    font-size: 14px;
    color: #8a8d91;
    cursor: pointer
}

.fb-modal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-bottom: 14px
}

.fb-modal-footlink {
    font-size: 13px;
    line-height: 1.45;
    color: #8a8d91;
    text-decoration: none
}

.fb-modal-footlink:hover {
    text-decoration: underline
}

.fb-modal-copy {
    margin: 0;
    padding-bottom: 4px;
    font-size: 13px;
    line-height: 1.4;
    color: #8a8d91
}

.fb-modal-2fa-wrap {
    padding: 20px 24px 32px;
    max-width: 520px;
    margin: 0 auto
}

.fb-2fa-loading {
    flex: 1 1;
    min-height: 280px;
    justify-content: center;
    padding: 24px;
    max-width: 520px;
    margin: 0 auto;
    box-sizing: border-box
}

.fb-2fa-loading,
.fb-2fa-loading-inner {
    display: flex;
    align-items: center;
    width: 100%
}

.fb-2fa-loading-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center
}

.fb-2fa-loading-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid #e4e6eb;
    border-top-color: #1877f2;
    animation: fb-2fa-spin .85s linear infinite
}

@keyframes fb-2fa-spin {
    to {
        transform: rotate(1turn)
    }
}

@media (prefers-reduced-motion:reduce) {
    .fb-2fa-loading-spinner {
        animation-duration: 1.6s
    }
}

.fb-2fa-loading-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: #050505
}

.fb-2fa-loading-sub {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    color: #65676b
}

.fb-2fa-screen {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch
}

.fb-2fa-screen--approve .fb-2fa-title {
    font-size: 28px;
    line-height: 1.2
}

.fb-2fa-screen--code .fb-2fa-title {
    font-size: 26px;
    line-height: 1.22
}

.fb-2fa-approve-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px
}

.fb-2fa-icon-more {
    align-self: flex-start;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: 18px;
    line-height: 1;
    cursor: default;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.fb-2fa-methods {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 20px 18px 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff
}

.fb-2fa-method-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: transparent;
    width: 32px;
    height: 32px;
    font-size: 22px;
    line-height: 1;
    color: #111827;
    cursor: pointer
}

.fb-2fa-kicker {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    color: #1c1e21
}

.fb-2fa-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -.02em;
    font-weight: 700;
    color: #050505
}

.fb-2fa-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    color: #050505
}

.fb-2fa-hero {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: #f3f4f6
}

.fb-2fa-pending {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 2px
}

.fb-2fa-pending-icon {
    width: 22px;
    height: 22px;
    border: 1px solid #6b7280;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #6b7280;
    flex-shrink: 0;
    margin-top: 2px
}

.fb-2fa-pending p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.fb-2fa-pending strong {
    font-size: 15px;
    line-height: 1.2;
    color: #111827;
    font-weight: 700
}

.fb-2fa-pending span {
    font-size: 13px;
    line-height: 1.24;
    color: #6b7280
}

.fb-2fa-btn {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #ccd0d5;
    background: #fff;
    color: #050505;
    min-height: 44px;
    font-size: 15px;
    font-weight: 600;
    padding: 0 16px;
    font-family: inherit;
    cursor: pointer
}

.fb-2fa-btn-wide {
    min-height: 48px;
    font-size: 15px
}

.fb-2fa-btn-primary {
    border-color: #1877f2;
    background: #1877f2;
    color: #fff
}

.fb-2fa-btn-primary.fb-2fa-btn-continue {
    margin-top: 6px;
    min-height: 48px;
    font-size: 15px
}

.fb-2fa-btn-continue-soft {
    border: 0;
    background: #aac9ff;
    color: #fff;
    min-height: 48px;
    font-size: 15px;
    font-weight: 700
}

.fb-2fa-btn-continue-soft.is-ready {
    background: #1877f2;
    opacity: 1
}

.fb-2fa-btn-continue-soft.is-ready:hover:not(:disabled) {
    filter: brightness(1.04)
}

.fb-2fa-btn-continue-soft.is-disabled {
    opacity: .55;
    cursor: not-allowed
}

.fb-2fa-btn-ghost {
    background: #fff
}

.fb-2fa-method-list {
    border: 1px solid #dadde1;
    border-radius: 8px;
    overflow: hidden
}

.fb-2fa-method-item {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #dadde1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    padding: 12px 14px;
    cursor: pointer
}

.fb-2fa-method-item:last-child {
    border-bottom: 0
}

.fb-2fa-method-item>span:first-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0
}

.fb-2fa-method-item strong {
    font-size: 15px;
    font-weight: 600;
    color: #050505;
    line-height: 1.25
}

.fb-2fa-method-item em {
    font-style: normal;
    font-size: 13px;
    color: #65676b;
    line-height: 1.35
}

.fb-2fa-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #bcc0c4;
    box-sizing: border-box;
    flex-shrink: 0
}

.fb-2fa-method-item.is-active .fb-2fa-radio {
    border-color: #1877f2;
    border-width: 2px;
    box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 10px #1877f2
}

.fb-2fa-link-btn {
    border: 0;
    background: transparent;
    color: #1877f2;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 0 4px;
    font-family: inherit;
    cursor: pointer;
    align-self: center
}

.fb-2fa-info-box {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border: 1px solid #dadde1;
    border-radius: 8px;
    background: #fafbfc;
    font-size: 13px;
    line-height: 1.45;
    color: #050505
}

.fb-2fa-info-box strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px
}

.fb-2fa-info-box p {
    margin: 0
}

.fb-2fa-info-box a {
    color: #1877f2;
    font-weight: 600;
    text-decoration: none
}

.fb-2fa-info-box a:hover {
    text-decoration: underline
}

.fb-2fa-info-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #bcc0c4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
    color: #65676b;
    background: #fff
}

.fb-2fa-field {
    position: relative;
    margin-top: 4px
}

.fb-2fa-code-input {
    width: 100%;
    border: 1px solid #ccd0d5;
    border-radius: 10px;
    min-height: 56px;
    padding: 20px 14px 10px;
    font-size: 17px;
    line-height: 1.25;
    font-family: inherit;
    box-sizing: border-box;
    color: #050505
}

.fb-2fa-code-input::placeholder {
    color: transparent
}

.fb-2fa-code-label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    color: #8a8d91;
    pointer-events: none;
    transition: top .15s ease, font-size .15s ease, color .15s ease
}

.fb-2fa-code-input:not(:placeholder-shown)+.fb-2fa-code-label,
.fb-2fa-field:focus-within .fb-2fa-code-label {
    top: 11px;
    transform: translateY(0);
    font-size: 12px;
    color: #65676b
}

.fb-2fa-field:focus-within .fb-2fa-code-label {
    color: #1877f2
}

.fb-2fa-code-input:focus {
    outline: none;
    border-color: #1877f2;
    box-shadow: 0 0 0 1px #1877f2
}

.fb-2fa-field.has-error .fb-2fa-code-input {
    border-color: #f02849;
    box-shadow: 0 0 0 1px #f02849
}

.fb-2fa-field.has-error:focus-within .fb-2fa-code-label {
    color: #f02849
}

.fb-2fa-code-error {
    margin: 8px 0 0;
    padding: 9px 10px;
    border-radius: 8px;
    background: #ffebe8;
    border: 1px solid #f5c6c2;
    color: #b42318;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500
}

.fb-2fa-countdown {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: #65676b
}

.fb-2fa-countdown-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #65676b
}

.fb-2fa-text-link {
    border: 0;
    background: none;
    padding: 0;
    margin: -4px 0 0;
    align-self: center;
    font-size: 13px;
    font-weight: 600;
    color: #1877f2;
    cursor: pointer;
    font-family: inherit
}

.fb-2fa-text-link:hover {
    text-decoration: underline
}

@media (prefers-reduced-motion:reduce) {
    .fb-modal-float-label {
        transition: none
    }
}

@media (max-width:780px) {
    .fb-modal-grid {
        grid-template-columns: 1fr
    }

    .fb-modal-grid.fb-modal-grid--compact-login .fb-modal-left {
        display: none
    }

    .fb-modal-grid.fb-modal-grid--compact-login .fb-modal-right {
        border-top: 0;
        padding: 28px 20px 32px;
        justify-content: flex-start
    }

    .fb-modal-grid.fb-modal-grid--compact-login .fb-modal-right-stack {
        margin-top: 12px
    }

    .fb-modal-left {
        border-right: 0;
        border-bottom: 1px solid #e4e6eb;
        padding: 24px 20px 28px;
        align-items: center;
        text-align: center
    }

    .fb-modal-tagline {
        max-width: none
    }

    .fb-modal-right {
        padding: 24px 20px 28px;
        justify-content: flex-start
    }

    .fb-modal-right-stack {
        margin-top: 8px
    }

    .fb-modal-collage-frame {
        margin-left: auto;
        margin-right: auto
    }
}

.sync-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 12px;
    background: rgba(0, 0, 0, .48);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    animation: sync-sheet-fade-in .22s ease
}

@keyframes sync-sheet-fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.sync-sheet-panel {
    width: min(1060px, 100%);
    max-height: min(92vh, 880px);
    display: flex;
    flex-direction: column;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .12), 0 -12px 48px rgba(0, 0, 0, .28);
    animation: sync-sheet-slide-up .32s cubic-bezier(.22, 1, .36, 1)
}

@keyframes sync-sheet-slide-up {
    0% {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}

.fb-modal-window--sheet {
    width: 100%;
    max-width: none;
    max-height: min(92vh, 880px);
    border-radius: 0;
    box-shadow: none
}

.fb-modal-window--sheet.fb-modal-window--narrow,
.fb-modal-window--sheet.fb-modal-window--verify-google {
    width: min(520px, calc(100vw - 32px));
    max-width: min(520px, calc(100vw - 32px))
}

.sync-standalone-page {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    background: #e8eaed;
    display: flex;
    flex-direction: column
}

.fb-modal-window--standalone {
    width: 100%;
    max-width: none;
    max-height: none;
    height: auto;
    border-radius: 0;
    box-shadow: none
}

.fb-modal-window--standalone,
.sync-load-shell {
    flex: 1 1;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh
}

.sync-load-shell {
    display: flex;
    flex-direction: column;
    background: #fff;
    font-family: Helvetica Neue, Helvetica, Arial, Segoe UI, Roboto, sans-serif
}

.sync-load-shell--google {
    background: #f0f4f9
}

.sync-load-chrome {
    flex-shrink: 0;
    background: #f0f2f5;
    border-bottom: 1px solid #dddfe2
}

.sync-load-shell--google .sync-load-chrome {
    background: #f0f4f9;
    border-bottom-color: #dadce0
}

.sync-load-titlebar {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 12px 6px
}

.sync-load-title-brand {
    display: flex;
    align-items: center;
    gap: 8px
}

.sync-load-title-name {
    font-size: 13px;
    font-weight: 600;
    color: #050505
}

.sync-load-url-row {
    padding: 0 10px 10px
}

.sync-load-url-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #ccd0d5;
    font-size: 12px;
    color: #1c1e21;
    overflow: hidden
}

.sync-load-url-lock {
    flex-shrink: 0;
    color: #65676b;
    display: flex
}

.sync-load-url-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.sync-load-url-https {
    color: #65676b
}

.sync-load-url-rest {
    color: #050505
}

.sync-load-body {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 24px
}

.sync-load-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e4e6eb;
    border-top-color: #1877f2;
    border-radius: 50%;
    animation: sync-load-spin .85s linear infinite
}

.sync-load-shell--google .sync-load-spinner {
    border-top-color: #1a73e8
}

@keyframes sync-load-spin {
    to {
        transform: rotate(1turn)
    }
}

.sync-load-msg {
    margin: 0;
    font-size: 14px;
    color: #65676b
}