@charset "UTF-8";
@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/SF-Pro-Display/SF-Pro-Display-Semibold.woff") format("woff");
}
@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/SF-Pro-Display/SF-Pro-Display-Bold.woff") format("woff");
}
@font-face {
  font-family: "SF Pro Text";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/SF-Pro-Display/sf-pro-text-regular.woff") format("woff");
}
@font-face {
  font-family: "SF Pro Text";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/SF-Pro-Display/sf-pro-text-medium.woff") format("woff");
}
@font-face {
  font-family: "SF Pro Text";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/SF-Pro-Display/sf-pro-text-semibold.woff") format("woff");
}
.lotx-animation-spin {
  animation: lotx-animation-keyframes-spin 2s linear infinite;
}

@keyframes lotx-animation-keyframes-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.lotx-animation-dot-loading {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: lotx-animation-keyframes-dot-loading 1s infinite linear alternate;
}

@keyframes lotx-animation-keyframes-dot-loading {
  0% {
    box-shadow: 20px 0 #fff, -20px 0 rgba(255, 255, 255, 0.1333333333);
    background: #fff;
  }
  33% {
    box-shadow: 20px 0 #fff, -20px 0 rgba(255, 255, 255, 0.1333333333);
    background: rgba(255, 255, 255, 0.1333333333);
  }
  66% {
    box-shadow: 20px 0 rgba(255, 255, 255, 0.1333333333), -20px 0 #fff;
    background: rgba(255, 255, 255, 0.1333333333);
  }
  100% {
    box-shadow: 20px 0 rgba(255, 255, 255, 0.1333333333), -20px 0 #fff;
    background: #fff;
  }
}
.lox-animation-fade-out-1s {
  opacity: 1;
  animation: lotx-animation-keyframes-fade-out 1s 0s ease-out;
}

@keyframes lotx-animation-keyframes-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Progress bar sweep animation - used for loading/deleting states */
.lotx-animation-progress-sweep {
  position: relative;
  overflow: hidden;
}

.lotx-animation-progress-sweep::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: lotx-animation-keyframes-progress-sweep 1s linear infinite;
}

@keyframes lotx-animation-keyframes-progress-sweep {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
/* Fade out slide animation - used for removing items from lists */
.lotx-animation-fade-out-slide {
  animation: lotx-animation-keyframes-fade-out-slide 0.3s ease-out forwards;
  pointer-events: none;
}

@keyframes lotx-animation-keyframes-fade-out-slide {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
:root {
  --init-background-color: rgb(28, 28, 30);
  --sk-body-link-color: #2997ff;
  --sk-button-background: #0071e3;
  --sk-button-background-hover: #0076df;
  --sk-button-disabled-opacity: 0.36;
  --sk-button-border-color: #2997ff;
  --sk-button-color: #2997ff;
  --sk-button-color-hover: #fff;
  --theme-color-appTint-h: 204;
  --theme-color-appTint-s: 100%;
  --theme-color-appTint-l: 50%;
  --theme-color-appTint: hsl(var(--theme-color-appTint-h), var(--theme-color-appTint-s), var(--theme-color-appTint-l));
  --theme-color-backdrop: rgba(10, 10, 10, 0.8);
  --theme-color-backgroundLayer1: #323236;
  --theme-color-backgroundPrimary-h: 240;
  --theme-color-backgroundPrimary-s: 3.4%;
  --theme-color-backgroundPrimary-l: 11.4%;
  --theme-color-backgroundPrimary: hsl(var(--theme-color-backgroundPrimary-h), var(--theme-color-backgroundPrimary-s), var(--theme-color-backgroundPrimary-l));
  --theme-color-boxShadow: rgba(0, 0, 0, 0.65);
  --theme-color-darkgreen: #006400;
  --theme-color-lightgreen: #4CAF50;
  --theme-color-lightgreen2: #143C14;
  --theme-color-lightgreen3: rgb(35, 134, 54);
  --theme-color-yellowgreen: #9ACD32;
  --theme-color-madridgold: #FEBE10;
  --theme-color-khaki: #F0E68C;
  --theme-color-fillPrimary: hsla(0, 0%, 71.4%, 0.3);
  --theme-color-fillQuaternary: rgba(116, 116, 128, 0.25);
  --theme-color-fillSecondary: rgba(120, 120, 128, 0.36);
  --theme-color-fillTertiary: rgba(118, 118, 128, 0.3);
  --theme-color-gray2: #636366;
  --theme-color-gray3-h: 240;
  --theme-color-gray3-s: 1.4%;
  --theme-color-gray3-l: 29.0%;
  --theme-color-gray3: hsl(var(--theme-color-gray3-h), var(--theme-color-gray3-s), var(--theme-color-gray3-l));
  --theme-color-gray4-h: 240;
  --theme-color-gray4-s: 1.6%;
  --theme-color-gray4-l: 23.9%;
  --theme-color-gray4: hsl(var(--theme-color-gray4-h), var(--theme-color-gray4-s), var(--theme-color-gray4-l));
  --theme-color-gray5-h: 240;
  --theme-color-gray5-s: 1.9%;
  --theme-color-gray5-l: 20.8%;
  --theme-color-gray5: hsl(var(--theme-color-gray5-h), var(--theme-color-gray5-s), var(--theme-color-gray5-l));
  --theme-color-gray6: #2c2c2e;
  --theme-color-labelPrimary: hsla(0, 0%, 100%, 0.98);
  --theme-color-labelSecondary: hsla(0, 0%, 100%, 0.66);
  --theme-color-systemBlack: #fff;
  --theme-color-systemBlue: #009aff;
  --theme-color-systemRed-h: 358;
  --theme-color-systemRed-s: 100.0%;
  --theme-color-systemRed-l: 59.4%;
  --theme-color-systemRed: hsl(var(--theme-color-systemRed-h), var(--theme-color-systemRed-s), var(--theme-color-systemRed-l));
  --theme-color-backgroundPrimary-h: 240;
  --theme-color-backgroundPrimary-s: 3.4%;
  --theme-color-backgroundPrimary-l: 11.4%;
  --theme-color-backgroundPrimary: hsl(var(--theme-color-backgroundPrimary-h), var(--theme-color-backgroundPrimary-s), var(--theme-color-backgroundPrimary-l));
  --theme-color-errorBorderPrimary: #ff3037;
  --theme-color-errorBackgroundPrimary: #300;
  --theme-color-greenCheckBorderPrimary: var(--theme-color-lightgreen);
  --theme-confirm-dialog-background: rgb(49,49,49);
  --theme-confirm-dialog-buttons-separator-background: rgba(141, 141, 145, 0.65);
  --theme-confirm-dialog-buttons-color: #0A84FF;
  --theme-dialog-popup-background: #1d1d1f;
  --theme-dark-button-background: #333336;
  --theme-color-deleting-background: #c45c5c;
}

footer {
  display: flex;
  margin-top: 160px;
  justify-content: center;
}

.footer-content {
  font-family: SF Pro Text, Helvetica Neue, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--theme-color-labelSecondary);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.footer-content > div {
  display: flex;
  flex: 1;
}
.footer-content .breadcrumbs {
  padding-bottom: 20px;
  font-family: SF Pro Text, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--theme-color-labelSecondary);
}
.footer-content .breadcrumbs ul {
  list-style: none;
}
.footer-content .breadcrumbs ul li {
  display: inline;
}
.footer-content .breadcrumbs ul li svg.chevron {
  margin-left: 11px;
  margin-right: 11px;
  fill: var(--theme-color-gray2);
  margin-inline: 11px;
}
.footer-content .legal-footer {
  background-color: var(--theme-color-gray6);
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}
.footer-content .legal-footer .application-content {
  display: flex;
  justify-content: space-between;
}
.footer-content .inner-row {
  display: flex;
  line-height: 2;
  gap: 10px;
}
.footer-content .inner-row .column-with-separator {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.footer-content .inner-row .column-with-separator .separator {
  height: 15px;
  width: 1px;
  background-color: var(--theme-color-fillSecondary);
}

/** Nest Hub Max */
@media (max-height: 800px) {
  footer {
    display: none;
  }
}
ui-button,
.ui-button {
  background-color: var(--theme-color-systemBlack);
  color: var(--theme-color-backgroundPrimary);
  min-width: 146px;
  height: 44px;
  border-radius: 22px;
  padding-inline: 30px;
  min-inline-size: 146px;
  block-size: 44px;
  font-family: SF Pro Text, Helvetica Neue, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 20px;
  user-select: none;
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

ui-button:hover,
.ui-button:hover {
  cursor: pointer;
  background-color: var(--theme-color-labelSecondary);
}

.dialog {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-color: var(--theme-color-backdrop);
  animation: icloud-keyframes-fadeIn 0.2s cubic-bezier(0.32, 0.08, 0.24, 1) forwards;
  opacity: 1;
}

.dialog .dialog-popup {
  background-color: var(--theme-dialog-popup-background);
  border-radius: 17px;
  line-height: 24px;
}

.dialog-content {
  padding: 25px 40px 0;
}

.dialog-button-bar {
  display: flex;
  padding: 30px 40px;
  justify-content: space-between;
}

.dialog-waiting-wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  cursor: wait;
  background-color: transparent;
  z-index: 99;
}

.lotx-page {
  flex: 1;
  width: 1380px;
}

.lotx-page-header {
  padding-top: 50px;
  padding-bottom: 50px;
}

.lotx-page-header-title {
  font-family: SF Pro Display, Helvetica Neue, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.24px;
  line-height: 52px;
}

.lotx-page-header-description {
  margin-top: 18px;
  font-family: SF Pro Text, Helvetica Neue, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  color: var(--theme-color-labelSecondary);
}

.lotx-page-waiting-banner {
  display: flex;
  margin-top: 48px;
  justify-content: center;
}

/* Nest Hub Max */
@media (max-width: 1280px) {
  .lotx-page {
    width: 1036px !important;
  }
}
/* Ipad Pro */
@media (max-width: 1024px) {
  .lotx-page {
    width: 806px !important;
  }
}
/* Surface Pro 7 */
@media (max-width: 912px) {
  .lotx-page {
    width: 690px !important;
  }
}
@media (max-width: 600px) {
  .lotx-page {
    width: 520px !important;
  }
}
/* Surface Duo */
@media (max-width: 540px) {
  .lotx-page {
    width: 446px !important;
  }
}
/* Iphone 16 Pro Max */
@media (max-width: 440px) {
  .lotx-page {
    width: 346px !important;
  }
}
/** Galaxy A51 */
@media (max-width: 412px) {
  .lotx-page {
    width: 336px !important;
  }
}
/** iPhone SE */
@media (max-width: 375px) {
  .lotx-page {
    width: 326px !important;
  }
}
/** Samsung Galaxy S8+ */
@media (max-width: 360px) {
  .lotx-page {
    width: 316px !important;
  }
}
/** Samsung Galaxy Z Fold 5 */
@media (max-width: 344px) {
  .lotx-page {
    width: 312px !important;
  }
}
.webmail-page-column-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.webmail-page-column-panel > .toolbar {
  height: 48px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 16px;
  gap: 8px;
}
.webmail-page-column-panel > .header {
  display: flex;
  margin-bottom: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}
.webmail-page-column-panel > .header > .title {
  font-size: 20px;
  font-weight: 600;
}
.webmail-page-column-panel > .content {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.webmail-page-column-panel .action-buttons {
  display: flex;
  align-items: center;
}
.webmail-page-column-panel .action-buttons > span, .webmail-page-column-panel .action-buttons .button {
  color: var(--theme-color-labelSecondary);
  cursor: pointer;
}
.webmail-page-column-panel .action-buttons > span:hover, .webmail-page-column-panel .action-buttons .button:hover {
  color: var(--theme-color-labelPrimary);
}
.webmail-page-column-panel .action-buttons > span.disabled, .webmail-page-column-panel .action-buttons .button.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

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

ul, ol {
  list-style: none;
}

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

a.extern-link {
  font-size: 14px;
  font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #2997ff;
  line-height: 1.42859;
  font-weight: 400;
}
a.extern-link span:after {
  content: "↗";
  padding-left: 0.3em;
  display: inline-block;
}

a.link-button {
  color: #2997ff;
}

div.link-button {
  font-size: 14px;
  font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #2997ff;
  line-height: 18px;
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
}
div.link-button.extern-link span:after {
  content: "↗";
  padding-left: 0.3em;
  display: inline-block;
}

input {
  all: unset;
  appearance: none;
  box-sizing: border-box;
}

html, body {
  background-color: var(--init-background-color);
  min-height: 100%;
  display: flex;
  flex: 1;
  color-scheme: light dark;
}

body {
  font-family: SF Pro Text, Helvetica Neue, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  flex: 1;
  color: var(--theme-color-labelPrimary);
}

#app {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.page {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
}

.hidden {
  display: none !important;
}

.application-content {
  margin-left: auto;
  margin-right: auto;
}

#dotnet-compile-error {
  display: none;
}

.full-width {
  width: 100% !important;
  max-width: 100% !important;
}

/*# sourceMappingURL=app.css.map */
