:root {
  --fontSizeSmall: 13px;
  --fontSizeDefault: 15px;
  --fontSizeLarge: 16px;
  --fontSizeXLarge: 20px;
  --text1: rgba(39, 33, 28, 1);
  --text2: rgba(39, 33, 28, 0.8);
  --text3: rgba(39, 33, 28, 0.6);
  --primary: #1E1E1E;
  --primaryAlt: #464646;
  --bg0: #fff;
  --bg1: #fff;
  --bg2: #fafafa;
  --overlay0: rgba(39, 33, 28, 0.03);
  --overlay1: rgba(39, 33, 28, 0.08);
  --overlay2: rgba(39, 33, 28, 0.12);
  --red1: #e44848;
  --yellow1: #EAC16B;
  --blue1: #4597f7;
  --green1: #86bc47;
  --border1Color: rgba(0,0,0,0.15);
  --border1: 0.5px solid rgba(0,0,0,0.15);
  --border2Color: rgba(0,0,0,0.2);
  --border2: 0.5px solid rgba(0,0,0,0.2);
  --buttonHeight: 32px;
  --radiusDefault: 6px;
  --shadow1: 0 1px 3px 0 rgba(0,0,0,0.02);
  --shadow2: 0 2px 5px 0 rgba(0,0,0,0.02);
  --transition1: 0.1s cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition2: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  --gapXS: 4px;
  --gapS: 8px;
  --gapM: 16px;
  --gapL: 24px;
  --gapXL: 32px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text1: rgba(255, 255, 255, 0.95);
    --text2: rgba(255, 255, 255, 0.7);
    --text3: rgba(255, 255, 255, 0.5);
    --primary: #ffffff;
    --primaryAlt: #dedede;
    --bg0: #282828;
    --bg1: #1E1E1E;
    --bg2: #141414;
    --overlay0: rgba(255, 255, 255, 0.03);
    --overlay1: rgba(255, 255, 255, 0.08);
    --overlay2: rgba(255, 255, 255, 0.12);
    --border1Color: rgba(255,255,255,0.15);
    --border1: 0.5px solid rgba(255,255,255,0.15);
    --border2Color: rgba(255,255,255,0.2);
    --border2: 0.5px solid rgba(255,255,255,0.2);
    --shadow1: 0 1px 3px 0 rgba(0,0,0,0.3);
    --shadow2: 0 2px 5px 0 rgba(0,0,0,0.3);
  }
}
* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}

svg, img {
  display: block;
}

body {
  font-family: "Inter Display", system-ui, helvetica, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text1);
  background: var(--bg2);
  font-size: var(--fontSizeDefault);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
body.white {
  background: var(--bg1);
}

a {
  color: inherit;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}

a:active {
  opacity: 0.6;
}

hr {
  border: 0;
  border-top: var(--border1);
}

.obfuscate {
  filter: blur(4px);
}
.obfuscate:hover {
  filter: blur(0px);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spin, body.syncing .syncBtn svg {
  animation-name: spin;
  animation-timing-function: linear;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

.syncTakeover {
  position: fixed;
  width: 300px;
  left: 50%;
  margin-left: -150px;
  bottom: 40px;
  border-radius: var(--radiusDefault);
  border: var(--border1);
  box-shadow: inset 0px 0px 0px 0.5px rgba(0, 0, 0, 0.1), inset 0px -1px 1px 0px rgba(0, 0, 0, 0.07), 0px 2px 3px 0px rgba(0, 0, 0, 0.01), 0px 4px 4px rgba(0, 0, 0, 0.01);
  background: rgba(var(--bg1), 0.85);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: var(--gapS);
  padding-left: var(--gapM);
  gap: var(--gapM);
  display: none;
}

body.syncing .syncTakeover {
  display: flex;
}

.syncTakeover svg {
  width: 16px;
  height: 16px;
  overflow: visible;
}

@keyframes loaderPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}
.loader-left {
  animation: loaderPulse 1.5s ease-in-out infinite;
  transform-origin: center;
}

.loader-middle {
  animation: loaderPulse 1.5s ease-in-out infinite 0.25s;
  transform-origin: center;
}

.loader-right {
  animation: loaderPulse 1.5s ease-in-out infinite 0.5s;
  transform-origin: center;
}

.cardPadd {
  padding: var(--gapM);
}

.card {
  background: var(--bg1);
  border-radius: var(--radiusDefault);
  box-shadow: inset 0px 0px 0px 0.5px rgba(0, 0, 0, 0.1), inset 0px -1px 1px 0px rgba(0, 0, 0, 0.07), 0px 2px 3px 0px rgba(0, 0, 0, 0.01), 0px 4px 4px rgba(0, 0, 0, 0.01);
}

.card2 {
  background: var(--bg0);
  border-radius: var(--radiusDefault);
  box-shadow: inset 0px 0px 0px 0.5px rgba(0, 0, 0, 0.1), inset 0px -1px 1px 0px rgba(0, 0, 0, 0.07), 0px 2px 3px 0px rgba(0, 0, 0, 0.01), 0px 4px 4px rgba(0, 0, 0, 0.01);
}

.gapXL {
  height: var(--gapXL);
}

.gapL {
  height: var(--gapL);
}

.gapM {
  height: var(--gapM);
}

.gapS {
  height: var(--gapS);
}

.gapXS {
  height: var(--gapXS);
}

.container {
  position: relative;
  padding: 0 18px;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
}
.container.small {
  max-width: 380px;
}
.container.tall {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gapM);
}

.splitView {
  height: 100dvh;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 4fr;
}
.splitView .svSide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.splitView .svSideFooter {
  border-top: var(--border1);
  margin-top: auto;
}
.splitView .svMain {
  border: none;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-left: var(--border1);
}
.splitView .svMain > iframe {
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
}

.toolbar {
  flex-shrink: 0;
  padding: 0 var(--gapM);
  height: 48px;
  background: rgba(var(--bg1), 0.98);
  border-bottom: var(--border1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.svSide .toolbar {
  background: var(--bg2);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  display: block;
  line-height: inherit;
}

h1 {
  font-size: var(--fontSizeLarge);
}

h2 {
  font-size: var(--fontSizeDefault);
}

strong {
  font-weight: 500;
}

.subtitle {
  font-size: var(--fontSizeLarge);
}

.tcBlue {
  color: var(--blue1);
}

.tcLight, .subtitle {
  color: var(--text2);
}

.tcUltraLight {
  color: var(--text3);
}

.tcGreen {
  color: var(--green1);
}

.tcBlue {
  color: var(--blue1);
}

.tcRed {
  color: var(--red1);
}

.tcUltralight {
  color: var(--text3);
}

.tsSmall {
  font-size: var(--fontSizeSmall);
}

.tsJumbo {
  font-size: var(--fontSizeXLarge);
}

label {
  font-weight: 500;
}

.field {
  width: 100%;
  padding: 0 10px;
  height: var(--buttonHeight);
  display: block;
  border: 0;
  font-size: var(--fontSizeDefault);
  background: var(--overlay1);
  border-radius: var(--radiusDefault);
  font: inherit;
  -webkit-appearance: none;
  outline: none;
}

select.field {
  background-image: url("/assets/img/icons/chev-down.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

input[type=checkbox] {
  -webkit-appearance: none;
  height: 20px;
  width: 32px;
  border-radius: 20px;
  background: var(--overlay2);
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease;
}
input[type=checkbox]:checked {
  background: var(--green1);
}
input[type=checkbox]:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background: var(--bg1);
  transition: transform 0.2s ease;
}
input[type=checkbox]:checked:before {
  transform: translateX(12px);
}

.btnGrp {
  display: flex;
  gap: var(--gapXS);
  align-items: center;
}
.btnGrp .btnGap {
  width: 4px;
}
.btnGrp .btnDivider {
  width: 1px;
  height: 18px;
  border-right: var(--border1);
  margin: 0 4px;
}
.btnGrp.connections svg {
  width: 14px;
  height: 14px;
}

.linkBtn {
  -webkit-appearance: none;
  border: 0;
  outline: none;
  font: inherit;
  font-weight: 500;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.linkBtn:hover {
  opacity: 0.8;
}
.linkBtn.red {
  color: var(--red1);
}

.btn {
  padding: 0 10px;
  height: var(--buttonHeight);
  border: none;
  border-radius: var(--radiusDefault);
  -webkit-appearance: none;
  background: var(--primary);
  color: var(--bg1);
  font: inherit;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: var(--transition1);
  cursor: pointer;
}
.btn:hover {
  background: var(--primaryAlt);
}
.btn.wide {
  width: 100%;
}
.btn svg {
  width: 14px;
  height: 14px;
}
.btn.secondary {
  background: var(--bg1);
  color: var(--text1);
  box-shadow: inset 0px 0px 0px 0.5px var(--border1Color);
}
.btn.secondary:hover {
  background: var(--overlay0);
}

.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.btn.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--bg1);
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}
.btn.loading.secondary:after {
  border-color: var(--primary);
  border-top-color: transparent;
}
.btn.loading svg {
  opacity: 0;
}

.iconBtn {
  width: var(--buttonHeight);
  height: var(--buttonHeight);
  margin: 0 -5px;
  color: var(--text3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radiusDefault);
  transition: background var(--transition1);
}
.iconBtn:hover {
  background: var(--overlay1);
}
.iconBtn > svg {
  width: 20px;
  height: 20px;
}

.toastOuter {
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 50;
  display: flex;
  justify-content: center;
}

.toast {
  display: flex;
  gap: 10px;
  align-items: center;
  width: auto;
  background: var(--primary);
  border-radius: var(--radiusDefault);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.08);
  padding: 8px 12px;
  color: var(--bg1);
}

.tippy-box {
  border-radius: var(--radiusDefault);
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  animation-fill-mode: both;
  animation-timing-function: ease-in;
  transform: translateX(0px) translateY(0px);
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
}

.tippy-content {
  padding: 6px 7px;
}

.tippy-box[data-animation=shift-away-subtle][data-state=hidden] {
  opacity: 0;
}

.tippy-box[data-animation=shift-away-subtle]:not([data-state=hidden]) {
  opacity: 1;
}

.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=top] {
  transform: translateY(6px);
}

.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=bottom] {
  transform: translateY(-6px);
}

.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=left] {
  transform: translateX(6px);
}

.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=right] {
  transform: translateX(-6px);
}

.commentsEmpty {
  padding: var(--gapL) var(--gapM);
  text-align: center;
  font-size: var(--fontSizeDefault);
  font-weight: 500;
  flex-grow: 1;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navLink {
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
  transition: var(--transition1);
  display: block;
  padding: var(--gapM);
  box-shadow: none;
  background: transparent;
  border-bottom: var(--border1);
}
.navLink:hover {
  background: var(--overlay0);
}
.navLink:active {
  opacity: 1;
}
.navLink.active {
  background: var(--bg1);
}

.commentViewOuter {
  display: flex;
  height: 100dvh;
}

.commentViewPreview {
  border-left: var(--border1);
  width: 0%;
  height: 100%;
  flex-shrink: 0;
  margin-right: -1px;
  transition: var(--transition2);
}

.columnIconFill {
  opacity: 0;
  transition: opacity var(--transition2);
}

.commentViewOuter.showPreview .columnIconFill {
  opacity: 1;
}
.commentViewOuter.showPreview .commentViewPreview {
  width: 50%;
}

.commentViewPreview iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  overflow: hidden;
}

.commentView {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  flex-grow: 1;
  position: relative;
}

.comment {
  background: #fff;
  border-radius: var(--radiusDefault);
  padding: var(--gapM);
  margin-bottom: var(--gapS);
  background: var(--bg0);
  border-radius: var(--radiusDefault);
  box-shadow: inset 0px 0px 0px 0.5px rgba(0, 0, 0, 0.1), inset 0px -1px 1px 0px rgba(0, 0, 0, 0.07), 0px 2px 3px 0px rgba(0, 0, 0, 0.01), 0px 4px 4px rgba(0, 0, 0, 0.01);
}

.commentHeader {
  display: flex;
  align-items: center;
}
.commentHeader .avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-right: var(--gapS);
}
.commentHeader .commentInfo {
  display: flex;
  gap: 8px;
}
.commentHeader .commentInfo .userName {
  font-weight: 500;
  color: var(--text1);
}
.commentHeader .commentInfo .commentDate {
  color: var(--text3);
}

.commentMessage {
  line-height: 1.5;
}

.resolved > * {
  opacity: 0.4;
}
.resolved .commentMessage {
  text-decoration: line-through;
}

.filesMenuWrap {
  position: relative;
}

.filesMenuToggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  padding-right: 6px;
  height: var(--buttonHeight);
  margin: -8px;
  cursor: pointer;
  border-radius: var(--radiusDefault);
}
.filesMenuToggle:hover {
  background: var(--overlay0);
}

.filesMenu {
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: var(--gapXS);
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: -8px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  width: 260px;
  height: auto;
  max-height: 365px;
  padding: var(--gapXS);
  transform: translateY(6px);
  z-index: 10;
  transition: var(--transition2);
  background: var(--bg1);
  border-radius: var(--radiusDefault);
  box-shadow: inset 0px 0px 0px 0.5px rgba(0, 0, 0, 0.1), inset 0px -1px 1px 0px rgba(0, 0, 0, 0.07), 0px 2px 3px 0px rgba(0, 0, 0, 0.01), 0px 4px 4px rgba(0, 0, 0, 0.01);
}
.filesMenu.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}
.filesMenu .filesMenuItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radiusDefault);
  padding: var(--gapXS) var(--gapS);
}
.filesMenu .filesMenuItem:is(a):hover {
  background: var(--bg1);
  border-radius: var(--radiusDefault);
  box-shadow: inset 0px 0px 0px 0.5px rgba(0, 0, 0, 0.1), inset 0px -1px 1px 0px rgba(0, 0, 0, 0.07), 0px 2px 3px 0px rgba(0, 0, 0, 0.01), 0px 4px 4px rgba(0, 0, 0, 0.01);
}
.filesMenu .filesMenuItem svg {
  margin: 0 -3px;
}/*# sourceMappingURL=styles.css.map */