:root {
    --accent-logo-1: rgb(178 142 44);
    --accent-logo-2: rgb(43 168 35 / 15%);
    --accent-1: rgb(0 0 0 / 15%);
    --accent-2: rgb(0 0 0 / 5%);
    --system-ui-radius: 12px;
    --max-width-main: calc(402px * 1);
    --max-width-main: calc(534px * 1);
    --side-gap: calc((100vw - min(100vw, var(--max-width-main))) / 2);
    --font-size: 17px;
    --white: 0 0 0;
    --black: 255 255 255;
    --muted: rgb(var(--black) / 60%);
    --muted-bg: rgb(var(--black) / 4%);
    --hr-bg: rgb(var(--black) / 6%);
    --text-primary: rgb(var(--black) / 100%);
    --text-primary-invers: rgb(var(--white) / 75%);
    --text-primary-invers-100: rgb(var(--white) / 100%);
    --placeholder: rgb(var(--black) / 25%);
}

:root {
    --accent-red: #ff383c;
    --red: 255 56 60;
    --accent-red: rgb(var(--red) / 100%);
    --accent-red-muted-bg: rgb(var(--red) / 10%);
    --accent-orange: #ff8d28;
    --accent-yellow: #ffcc00;
    --accent-green: #34c759;
    --green: 52 199 89;
    --accent-green: rgb(var(--green) / 100%);
    --accent-green-muted-bg: rgb(var(--green) / 25%);
    --accent-mint: #00c8b3;
    --accent-teal: #00c3d0;
    --accent-cyan: #00c0e8;
    --blue: 0 136 255;
    --accent-blue: rgb(var(--blue) / 100%);
    --accent-blue-muted-bg: rgb(var(--blue) / 4%);
    --accent-indigo: #6155f5;
    --accent-purple: #cb30e0;
    --accent-pink: #ff2d55;
    --accent-brown: #ac7f5e;

    --white: 0 0 0;
    --black: 250 250 250;
    --accent-1: rgb(255 255 255 / 30%);
    --accent-2: rgb(255 255 255 / 30%);
    --muted-bg: rgb(var(--black) / 8%);
    --blue: 0 145 255;
    --accent-blue: rgb(var(--blue) / 100%);
    --accent-blue-muted-bg: rgb(var(--blue) / 10%);
    --red: 255 66 69;
    --accent-red: rgb(var(--red) / 100%);
    --accent-red-muted-bg: rgb(var(--red) / 14%);
}

@media (prefers-color-scheme: dark) {
    :root {
        --white: 0 0 0;
        --black: 250 250 250;
        --accent-1: rgb(255 255 255 / 30%);
        --accent-2: rgb(255 255 255 / 30%);
        --muted-bg: rgb(var(--black) / 8%);
        --blue: 0 145 255;
        --accent-blue: rgb(var(--blue) / 100%);
        --accent-blue-muted-bg: rgb(var(--blue) / 10%);
        --red: 255 66 69;
        --accent-red: rgb(var(--red) / 100%);
        --accent-red-muted-bg: rgb(var(--red) / 14%);
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-synthesis: none;
    -moz-font-feature-settings: "kern";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: normal;
    -webkit-tap-highlight-color: transparent;
    font-family:
        "SF Pro Display",
        "SF Pro Text",
        ui-sans-serif,
        -apple-system,
        system-ui,
        Segoe UI,
        Helvetica,
        Arial,
        sans-serif;
    line-height: 1.4;
    tab-size: 4;
    font-size: var(--font-size);
    background: rgb(var(--white) / 100%);
    color: var(--text-primary);
}

html.page-about {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    width: 100vw;
    /* max-width: 100vw; */
    overflow-x: hidden;
}

input::placeholder,
textarea::placeholder {
    color: var(--placeholder);
    opacity: 1;
}

b {
    font-weight: 500;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100vw;
    width: 100%;
}

.screen {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.screen > * {
    width: 100%;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: var(--max-width-main);
    margin: 0 auto;
    padding: 0 24px;
}

header {
    display: flex;
    justify-items: center;
    text-align: center;
    margin: 0 auto;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 16px;
    z-index: 999;
    position: sticky;
    top: 0;
}

.page-index header #logo svg:last-child path {
    stroke-dasharray: 1400;
    /* stroke-dashoffset: -1400; */
    stroke-dashoffset: 1400;
    animation: logo-draw 3.8s cubic-bezier(0.35, 0, 0.99, 0.42) forwards;
    stroke-width: 13.5px;
}

@keyframes logo-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes header-dismiss {
    to {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
        filter: blur(1px);
        pointer-events: none;
        visibility: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-index header #logo svg path,
    .page-index header h1,
    .page-index header p {
        animation: none;
        opacity: 1;
        transform: none;
        stroke-dashoffset: 0;
    }
    html.page-index header {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}

#logo {
    width: 190px;
    height: 190px;
    margin-top: 88px;
    position: relative;
}

#logo svg {
    width: 100%;
    height: 100%;
    max-width: 190px;
    max-height: 190px;
    position: absolute;
    left: 0;
    top: 0;
}

h1 {
    margin: 0;
    font-size: calc(var(--font-size) * 1.29412);
    font-weight: 500;
}

h2 {
    margin: 0;
    margin-top: 32px;
    font-weight: 400;
    font-size: calc(var(--font-size) * 1.29412);
}

h3 {
    margin: 0;
    margin-top: 24px;
    font-weight: 500;
}

h4 {
    margin: 0;
    margin-top: 16px;
    font-weight: 500;
}

p {
    margin: 0;
    margin-top: 8px;
}

strong {
    font-weight: 500;
}

a,
.more-toggle,
.day-task-time-header .option,
.option span {
    color: unset;

    text-decoration: underline;
    text-decoration-color: currentColor;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    cursor: pointer;
}

a:hover,
.more-toggle:hover,
.day-task-time-header .option:hover {
    text-decoration-color: var(--accent-blue);
}

ul {
    margin: 0;
    margin-top: 8px;
    padding-inline-start: 24px;
}

.scroll-hide {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-hide::-webkit-scrollbar {
    display: none;
}

.muted {
    color: var(--muted);
}

.muted span {
    /* color: var(--text-primary); */
}

span#batteryVoltage {
    display: none;
}

.data-time {
    display: flex;
    justify-content: space-between;
}

.data-time > div {
}

.data-time > div > div:nth-child(1) {
}

.data-time > div > div + div {
}

.avatars {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 14px;
    overflow-x: auto;
}

.avatars li {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-width: 96px;
    position: relative;
}

.avatars li.has-contact {
    cursor: pointer;
}

.avatars li .contact-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: linear-gradient(0deg, var(--accent-green), #00ff40);
    color: white;
    position: absolute;
    right: 4px;
    top: 74px;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 8%);
}

.avatars li .contact-badge svg {
    width: 14px;
    height: 14px;
}

.avatars li > span {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--background-secondary-elevated);
    display: grid;
    place-items: center;
}

.avatars li > img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: var(--background-secondary-elevated);
}

.group-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    background: var(--muted-bg);
    position: relative;
    margin-top: 8px;
}

.group-avatar[data-count="1"] {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.group-avatar[data-count="2"] {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    padding: 8px;
}

.group-avatar[data-count="3"],
.group-avatar[data-count="4"] {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.group-avatar img,
.group-avatar span {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: grid;
    place-items: center;
    font-size: var(--caption1-font-size);
    line-height: var(--caption1-line-height);
    color: rgb(var(--muted));
    background: var(--gray-blue-bg);
    margin: auto;
}

.group-avatar .group-more {
    font-weight: 600;
    color: rgb(var(--text));
}

.avatars small {
    display: block;
    text-align: center;
    font-size: 11px;
    line-height: 1.2;
    color: rgb(var(--muted));
}

button,
.button {
    width: 100%;
    border-radius: 999px;
    /* border: 1px solid; */
    /* border-color: transparent; */
    font: inherit;
    color: var(--accent-blue);
    color: var(--text-primary);
    cursor: pointer;
    letter-spacing: 0.45px;
    font-weight: 500;
    padding: 13px 14px;
    background: transparent;
    text-align: center;
    /* backdrop-filter: blur(8px); */
    text-decoration: none;
    border: 1px solid rgb(223 223 223 / 12%);
    /* border-color: transparent; */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    background: linear-gradient(
        136deg,
        rgb(255 255 255 / 12%),
        rgb(255 255 255 / 4%)
    );
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0px 6px 18px 0px rgb(0 0 0 / 8%); */
}

@media (hover: hover) and (pointer: fine) {
    button:hover,
    .button:hover {
        background: var(--accent-blue-muted-bg);
        text-decoration: none;
    }
}

.title2,
.calendar-day .row-actions-down,
.day-head,
.day-task-title {
    /*font-size: calc(var(--font-size) * 1.29412);*/
}

.section.title2 {
}

.avatars li > img + div,
.avatars li > .group-avatar + div,
.avatars li > img + div span,
.avatars li > .group-avatar + div span {
    max-width: 96px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.avatars li > .group-avatar + div .name {
}

.avatars li > span + div > span,
.avatars li > img + div > span,
.avatars li > .group-avatar + div > span {
    max-width: 96px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.button-group.apply {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0 auto;
    width: 100%;
    max-width: var(--max-width-main);
    /* padding: 0 12px; */
    /* padding-top: 16px; */
    align-items: center;
}

.button-group.apply > span {
    font-size: 15px;
}

.button-group.apply button:nth-child(2) {
    color: var(--label-vibrant-secondary);
}

.section.width100 {
    max-width: none;
    margin: auto;
    padding: 0;
}

.farm-team {
    gap: 0px;
}

.section.width100 p {
    margin-left: var(--side-gap);
    padding: 0 24px;
}

.avatars li:first-child {
    margin-left: calc(var(--side-gap) + 24px);
}

.avatars li:last-child {
    margin-right: calc(var(--side-gap) + 24px);
}

.group-avatar[data-count="2"] img,
.group-avatar[data-count="3"] img,
.group-avatar[data-count="4"] img {
    border-radius: 999px;
    position: absolute;
}

.group-avatar[data-count="2"] img:nth-child(1) {
    width: 44px;
    height: 44px;
    margin: 10px 0px 0px 12px;
}

.group-avatar[data-count="2"] img:nth-child(2) {
    width: 26px;
    height: 26px;
    margin: 48px 0px 0px 48px;
}

.group-avatar[data-count="3"] img:nth-child(1) {
    width: 44px;
    height: 44px;
    margin: 10px 0px 0px 12px;
}

.group-avatar[data-count="3"] img:nth-child(2) {
    width: 26px;
    height: 26px;
    margin: 48px 0px 0px 48px;
}

.group-avatar[data-count="3"] img:nth-child(3) {
    width: 20px;
    height: 20px;
    margin: 58px 0px 0px 24px;
}

.group-avatar[data-count="4"] img:nth-child(1) {
    width: 44px;
    height: 44px;
    margin: 10px 0px 0px 12px;
}

.group-avatar[data-count="4"] img:nth-child(2) {
    width: 26px;
    height: 26px;
    margin: 48px 0px 0px 48px;
}

.group-avatar[data-count="4"] img:nth-child(3) {
    width: 20px;
    height: 20px;
    margin: 58px 0px 0px 24px;
}

.group-avatar[data-count="4"] img:nth-child(4) {
    width: 16px;
    height: 16px;
    margin: 28px 0px 0px 60px;
}

.group-avatar[data-count="4"] span:nth-child(4) {
    width: 16px;
    height: 16px;
    margin: 28px 0px 0px 60px;
}

.modal {
    position: fixed;
    inset: 0;
    align-items: flex-end;
    justify-content: center;
    padding: 4px;
    background: rgb(0 0 0 / 30%);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 220ms ease,
        visibility 0s linear 220ms;
    display: flex;
    --white: 250 250 250;
    --black: 0 0 0;
    --muted: rgb(var(--black) / 50%);
    --muted-bg: rgb(var(--black) / 4%);
    --hr-bg: rgb(var(--black) / 6%);
    --text-primary: rgb(var(--black) / 75%);
    --placeholder: rgb(var(--black) / 25%);
    color: var(--text-primary);
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 220ms ease;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
}

.modal-panel {
    position: relative;
    width: 100%;
    max-width: var(--max-width-main);
    max-height: calc(100vh - 48px);
    background: #fff;
    border-radius: var(--system-ui-radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(100%);
    opacity: 0;
    transition:
        transform 240ms ease,
        opacity 180ms ease;
    padding: 16px;
}

.modal.is-open .modal-panel {
    transform: translateY(0);
    opacity: 1;
}

.modal-body {
    overflow: auto;
    padding: 0;
}

.modal-loading {
    padding: 28px;
    color: var(--gray-blue-text);
    font-size: var(--body-font-size);
}

.contact-card {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-header h3 {
    margin: 0;
    font-size: var(--title3-font-size);
    line-height: var(--title3-line-height);
    letter-spacing: var(--title3-letter-spacing);
    font-weight: 500;
}

.contact-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--gray-blue-bg);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-top: 0;
}

.contact-avatar span {
    font-size: var(--callout-font-size);
    color: rgb(var(--muted));
}

.row-blocks {
    display: grid;
    gap: 0;
    font-size: var(--body-font-size);
}

.row-blocks > div {
    display: grid;
    gap: 4px;
}

.row-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 14px;
    border-radius: var(--system-ui-radius);
    text-decoration: none;
    color: inherit;
    background: transparent;
    position: relative;
    width: 100%;
}

.row-actions > div:first-child {
    display: grid;
    gap: 0px;
    width: 100%;
}

.row-actions > div.row-actions-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.row-actions .row-actions-image {
    width: 64px;
    height: 64px;
    max-width: 64px;
}

.row-actions .row-actions-image img {
    margin: 0;
}

.row-icon {
    display: grid;
    place-items: center;
    color: var(--muted);
    justify-content: end;
}

.row-icon svg {
    width: 10px;
    height: 10px;
}

.row-actions:hover {
    /* background: var(--muted-bg); */
}

.row-blocks a.row-actions {
    color: inherit;
    text-decoration: none;
}

body.modal-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .modal,
    .modal-panel {
        transition: none;
    }
}

.row-actions:not(:first-child):before {
    content: "";
    position: absolute;
    height: 1px;
    width: 90%;
    background: var(--hr-bg);
    top: 0;
    left: 5%;
}

.row-actions:first-child:hover + .row-actions:before,
.row-actions:hover:before {
    display: none;
}

img,
video {
    width: 100%;
    height: auto;
    max-width: max-content;
    max-height: 60dvh;
    object-fit: contain;
    border-radius: var(--system-ui-radius);
    overflow: hidden;
    margin: 0 auto;
    display: block;
    margin-top: 8px;
}

figure {
    padding: 0;
    margin: 0;
}

ul li {
    margin-top: 8px;
}

hr {
    border: none;
    background: var(--hr-bg);
    height: 1px;
    width: 90%;
    margin: 0 auto;
    margin-top: 24px;
    margin-bottom: 24px;
}

html.page-about section {
    max-width: calc(1.44 * var(--max-width-main));
}

img + em,
video + figcaption {
    text-align: center;
    display: block;
    font-size: calc(var(--font-size) * 0.70588);

    color: var(--muted);
    margin-top: 8px;
}

html.page-about hr + p + h2,
html.page-about hr + p + h1 {
    margin-top: 0;
    padding-top: 32px;
}

html.page-about hr {
    margin: 96px auto 72px auto;
}

html.page-about main {
    margin-bottom: 96px;

    transition:
        margin-left 0.3s,
        width 0.3s;
}

span.quick-navigation {
    position: fixed;
    left: 0;
    top: 0;
    background: var(--muted-bg);
    padding: 24px;
    z-index: 99;
    overflow: auto;
    height: 100dvh;
    width: 260px;
    border-right: 1px solid var(--hr-bg);
    backdrop-filter: saturate(0.75) blur(40px);
    transform: translateX(-100%);
    transition: transform 0.3s;
    padding-top: 96px;
}

span.quick-navigation hr {
    display: none;
}

span.quick-navigation ul li {
    margin-top: 0;
    position: relative;
}

span.quick-navigation ul {
    list-style-type: none;
    padding-inline-start: 0px;
}

span.quick-navigation ul li a {
    padding: 8px 12px;
    width: 100%;
    display: block;
    border-radius: var(--system-ui-radius);
    color: var(--text-primary);
    text-decoration: none;
}

span.quick-navigation ul li a:hover {
    background: var(--hr-bg);
    text-decoration: none;
}

header nav {
    transition: gap 0.3s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}

body.open-sidebar span.quick-navigation {
    transform: translateX(0%);
}

body.open-sidebar header nav {
    gap: 136px;
}

html.page-index .screen header {
    padding: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    background: rgb(var(--white) / 100%);
    bottom: 0;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    animation: header-dismiss 0.6s ease forwards;
    animation-delay: 4.8s;
}

html.page-index header h1 {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    gap: 0px;
}

html.page-index header h1 span {
    font-size: calc(var(--font-size) * 1);
    font-weight: 600;
}

html.page-index header p {
    margin-top: 0;
}

html.page-index .data-time {
    display: inline-block;
}

@media (min-width: 1024px) {
    html.page-about body.open-sidebar main {
        margin-left: 261px;
        width: calc(100% - 261px);
    }
}

html.page-about p {
    margin-top: 8px;
}

.button-group.apply a.button {
    color: var(--muted);
    font-weight: 400;
    text-decoration: underline;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: calc(var(--font-size) * 0.88235);
}

.button-group.apply a.button:hover {
    text-decoration-color: var(--accent-blue);
    background: transparent;
}

span.quick-navigation ul li:last-child {
    margin-top: 24px;
    padding-top: 14px;
    font-weight: 500;
}

span.quick-navigation ul li:last-child:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background: var(--hr-bg);
}

html.page-farm-team header {
    width: 100%;
    max-width: calc(var(--max-width-main) + 72px);
    margin: 0 auto;
}

.calendar-day .muted strong {
    font-weight: 400;
    color: var(--text-primary);
}

.option input[type="checkbox"] {
    display: none;
}

.home-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100dvh;
}

summary {
    color: var(--accent-blue);
    margin-top: 24px;
    cursor: pointer;
}

html.page-index section.section h2 {
    font-size: calc(var(--font-size) * 2);
    font-size: calc(var(--font-size) * 1.588234);
    font-weight: 400;
    text-align: center;
    margin: 0;
}

html.page-index section.section h2 + p {
    font-size: calc(var(--font-size) * 1);
    text-align: center;
    margin-top: -12px;
    /* line-height: normal; */
}

.notification-card {
    display: flex;
    flex-direction: column;
    gap: 0px;
    flex-wrap: wrap;
    position: relative;
    padding-top: 24px;
    padding-bottom: 24px;
    padding: 16px 16px;
    border: 1px solid rgb(223 223 223 / 12%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    background: linear-gradient(
        136deg,
        rgb(255 255 255 / 12%),
        rgb(255 255 255 / 4%)
    );
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 4%);
}

.status-card {
    /* gap: 12px; */
}

.status-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    /* font-size: calc(var(--font-size) * 1.06); */
    /* letter-spacing: 0.1px; */
}

.status-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-weight: 500;
}

.status-dot {
    /* opacity: 0.7; */
}

.status-time {
    font-weight: 500;
    /* letter-spacing: 0.4px; */
    /* white-space: nowrap; */
    /* display: inline-block; */
    /* align-items: flex-end; */
    font-size: 15px;
}

.status-meridiem {
    /* margin-left: 4px; */
    /* font-size: 0.85em; */
    /* opacity: 0.7; */
    /* font-size: 1.2ch; */
    /* font-weight: 600; */
    /* margin-left: 0.25ch; */
}

.status-row {
    display: flex;
    align-items: center;
    gap: 24px;
    /* font-size: calc(var(--font-size) * 1.05); */
    margin: 0;
    /* justify-content: center; */
}

.status-row > span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-row #tempLabel {
    text-transform: capitalize;
}

.status-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    /* opacity: 0.9; */
}

.notification-card-section {
    position: relative;
    /* overflow: hidden; */
    height: var(--stack-height, auto);
    transition: height 0.35s ease;
    will-change: height;
    /* margin-bottom: 16px; */
    margin-top: 32px;
}

.notification-card-section .notification-card {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    transform-origin: top center;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.notification-card-section.is-expanded {
    overflow: visible;
}

.notification-card-section.is-expanded .notification-card {
    position: relative;
    transform: none;
    margin-top: 12px;
}

.notification-card-section.is-expanded .notification-card:first-child {
    margin-top: 0;
}

.home-screen {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    min-height: 100dvh;
}

.home-screen > div + div > section h1 {
    /* margin-top: 168px; */
    /*padding-top: 148px;*/
}

a.notification-card.row-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
}

a.notification-card.row-actions > div.row-actions-content {
    width: auto;
}

.row-actions p {
    margin: 0;
}

ul.cameras {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 14px;
    overflow-x: auto;
}

ul.cameras li:first-child {
    margin-left: calc(var(--side-gap) + 24px);
}

ul.cameras li:last-child {
    margin-right: calc(var(--side-gap) + 24px);
}

ul.cameras li {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-width: min(calc(100% - 48px), calc(var(--max-width-main) - 48px));
    width: 100%;
    max-width: 100%;
    position: relative;
}

ul.cameras img,
ul.cameras video,
ul.cameras iframe {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

footer {
    text-align: center;
    padding: 24px 0px;
}

footer a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

footer a svg {
    width: 1ch;
    height: 1ch;
    margin-left: 0.5ch;
}

footer p {
    margin: 0;
    font-size: calc(var(--font-size) * 0.88235);
}

.home-screen > div {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 32px;
}

.home-screen div section {
    width: 100%;
}
