/* ACCENT COLORS */
:root {
  --a: #6e5dec; /* purple (#3576ED blue)*/ /* accent color */
	--ab: rgb(from var(--a) r g b / 0.15);
  --b: #bf59b5; /* magenta */
	--bb: rgb(from var(--b) r g b / 0.15);
	--c: #559fd7; /* turquoise */
	--cb: rgb(from var(--c) r g b / 0.15);
	--bg: #f4f7fb;
  --r: #c85b2a; /* rust/red */
	--rb: rgb(from var(--r) r g b / 0.15);
	--z: 0.15; /* alpha */
}
@media (prefers-color-scheme: dark) {
  :root {
    --a: #6e5dec; /* purple (#3576ED blue)*/ /* accent color */
		--w: #202020; /* Inverted White */
		--y: rgba(36, 36, 36, 0.95);
		--ab: rgb(from var(--a) r g b / 0.25);
	  --b: #bf59b5; /* magenta */
		--bb: rgb(from var(--b) r g b / 0.15);
		--c: #559fd7; /* turquoise */
		--cb: rgb(from var(--c) r g b / 0.15);
		--bg: black;
	  --r: #c85b2a; /* rust/red */
		--rb: rgb(from var(--r) r g b / 0.15);
		--z: 0.15; /* alpha */
  }
}
html,body,div,li,img,a {
	padding: 0;
	margin: 0;
	border: 0;
	list-style: none;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html, body {
	height: 100%;
	width: 100%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}
body {
	background-color: var(--bg);
	color: black;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	font-family: system-ui, sans-serif;
	font-size: 16px;
	font-weight: 500;
}
b,h1,h2,h3,h4{
  font-family:system-ui, sans-serif;
  font-weight: 900;
  font-style: normal;
	letter-spacing: -.02em;
	margin-top: 0;
	margin-bottom: 0;
}
/* LOADER */
#loader svg, .loader svg {
  width: 4em;
  transform-origin: center;
  animation: rotate 2s linear infinite;
}
#loader circle, .loader circle {
  fill: none;
  stroke: var(--a);
  stroke-width: 4;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -125px;
  }
}
#loader, .loader {
	position: fixed;
	top: 40%;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	text-align: center;
  display: block;
	transition: opacity .3s;
}
h2,h3 {
  margin-bottom: .3em;
  margin-top: 1em;
}

label {
  font-size: .8em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .3em;
  color: gray;
  margin-top: 1em;
  clear: left;
}
.tww {
	position: relative;
	text-align: center;
	margin-bottom: 16px;
}
.tog {
  display: inline-block;
  border-radius: 7em;
  background-color: rgba(0, 0, 0, 0.07);
  font-size: .8em;
  padding: .4em;
}
.tog div {
  display: inline-block;
  border-radius: 9em;
  cursor: pointer;
  padding: .7em 1em;
  color: gray;
  transition: all .3s;
}
.nt .tog div:hover {
  color: black;
  transform: scale(1.02);
}
.tog div.a, .nt .tog div.a:hover {
  background-color: var(--bg);
	color: black;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.tog div.a, .nt .tog div.a:hover {
  background-color: var(--a);
	color: white;
  box-shadow: 0 1px 3px var(--ab);
}
#ups a {
	position: relative;
	padding: 16px 16px 16px 44px;
	border-radius: 16px;
	background-color: white;
	margin-bottom: 16px;
  box-shadow: 0 0 .5em #f2f2f2;
	display: block;
	text-decoration: none;
	color: inherit;
	transition: all .3s;
}
.nt #ups a:hover {
	transform: scale(1.01);
  box-shadow: 0 .2em .7em #e9e9e9;
}
#ups a div {
	position: absolute;
	display: inline-block;
}
#ups a .fn {
	position: relative;
}
#ups a div.d {
	display: block;
	position: relative;
	font-size: .7em;
	opacity: .5;
}
#ups .im {
	top: 24px;
	left: 16px;
	color: var(--b);
}
#ups .im.i {color: var(--c);}
#ups .im.f {color: var(--a);}
#ups a .e, #ups a .x {
	top: 12px;
	cursor: pointer;
	transition: all .3s;
	border-radius: 9em;
	opacity: .5;
	right: 12px;
	padding: 11px 12px 9px;
}
.nt #ups .e, .nt #ups .x {
	opacity: 0;
}
.nt #ups a:hover .e, .nt #ups a:hover .x {
	opacity: .5;
}
#ups a .e {
	right: 50px;
}
.nt #ups a .e:hover {
	background-color: var(--ab);
	color: var(--a);
	opacity: 1;
}
.nt #ups a .x:hover {
	background-color: var(--rb);
	color: var(--r);
	opacity: 1;
}
.but.af {
	margin-bottom: 16px;
	position: relative;
}
.but.aa {
	background-color: var(--a);
	color: white;
}
.but.af svg {
	position: relative;
	top: 1px;
	margin-right: 8px;
}
#af {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	cursor: pointer;
}
#fdrop {
	position: relative;
	min-height: 80px;
}
#fdrop .fhint {
	display: none;
	position: absolute;
	inset: 0;
	background: var(--ab);
	border: 2px dashed var(--a);
	border-radius: 16px;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	font-size: 1.1em;
	gap: 8px;
	color: var(--a);
	z-index: 1;
}
#fdrop.on .fhint {
	display: flex;
}


select {
  background-color: white;
  outline: none;
  border: .2em solid white;
  border-radius: .7em;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  margin: 0 0 1em;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  box-shadow: 0 0 .5em #f2f2f2;
}

input[type=text], input[type=number], input[type=email], input[type=tel], input[type=date], input[type=url], input[type=time], input[type=color], textarea, .m input {
  background-color: white;
  outline: none;
  border: .2em solid white;
  border-radius: .7em;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  margin: 0 0 1em;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 0 .5em #f2f2f2;
	transition: all .3s;
}
input:focus, textarea:focus, select:focus
 {
  border-color: var(--a);
	box-shadow: 0 0px 7px rgb(from var(--a) r g b / 0.25);
}

/* HEADER */
#h {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	transition: right .3s;
	background-color: var(--bg);
	box-shadow: 0 10px 10px var(--bg);
	z-index: 10;
}
/* Header Search */
.srch {
	position: relative;
	margin-top: 16px;
	margin-left: 16px;
	transition: max-width .3s;
	max-width: calc(100vw - 170px);
	width: 34em;
}
.srch > div {
	position: absolute;
}
.srch .mag {
	top: 19px;
	left: 18px;
	color: gray;
}
.srch #clr {
	right: 11px;
	top: 11px;
	padding: 8px 8px 5px;
	color: var(--a);
	border-radius: 9em;
	overflow: hidden;
	cursor: default;
	transition: all .3s;
	opacity: 0;
	background-color: var(--ab);
}
.srch #clr.a {
	opacity: 1;
	cursor: pointer;
}
.nt .srch #clr:hover {
	background-color: var(--a);
	color: white;
	transform: scale(1.05);
}
#search {
	border-radius: 9em;
	width: 100%;
	border: 1px solid #d4d4d4;
	padding: 12px 12px 12px 38px;
	box-shadow: 0 0px 2px rgb(from var(--a) r g b / 0);
	transition: all .3s;
	margin-bottom: 0;
	margin-top: 2px;
}
#search:focus {
	border-width: 3px;
	padding: 12px 12px 12px 38px;
	margin-top: 0;
}
#search:focus, #pro.a > * {
	border-color: var(--a);
	box-shadow: 0 0px 7px rgb(from var(--a) r g b / 0.25);
}

/* Header Buttons */
.ur {
	position: absolute;
	right: 0;
	top: 0;
	padding-top: 16px;
	padding-right: 16px;
}
.ur > div {
	display: inline-block;
	float: left;
	cursor: pointer;
	transition: all .3s;
}
.nt .ur > div:hover {
	transform: scale(1.1);
}
#pro > * {
	display: inline-block;
	border-radius: 9em;
	overflow: hidden;
	height: 50px;
	border: 3px solid rgba(243, 243, 243, 0);
	position: relative;
	transition: all .3s;
	top: -1px;
	width: 50px;
}
#pro > div {
	text-align: center;
	font-weight: 900;
	color: var(--a);
	background-color: var(--ab);
	font-size: 20px;
	border-color: var(--bg);
}
#pro > div > div {
	padding-top: 13px;
}
#msg {
	padding: 15px 16px 13px;
	border: 1px solid #d4d4d4;
	border-radius: 9em;
	position: relative;
	top: 3px;
	background-color: var(--bg);
	margin-right: 16px;
}
#msg svg {
	width: 16px;
	height: 16px;
}
#msg.a {
	border: 1px solid var(--a);
	background-color: var(--a);
	box-shadow: 0 0px 14px rgb(from var(--a) r g b / 0.35);
	color: white;
}
#msg.a #mct {
	border-color: var(--a);
	background-color: white;
}
#mct {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 9em;
	background-color: var(--r);
	top: 12px;
	right: 13px;
	border: 2px solid var(--bg);
}
#nm {
	padding: 16px 17px 15px;
	border-radius: 9em;
	position: fixed;
	background-color: var(--bg);
	margin-left: 16px;
	cursor: pointer;
	transition: all .2s;
	display: inline-block;
	color: var(--a);
	background-color: var(--bg);
	right: 19px;
	top: 86px;
	overflow: hidden;
	z-index: 1;
}
#efeed {
	padding: 16px 17px 15px;
	border-radius: 9em;
	overflow: hidden;
	cursor: pointer;
	transition: all .2s;
	display: inline-block;
	color: var(--a);
	background-color: var(--bg);
	position: relative;
	top: 16px;
}
.nt #efeed:hover {
	transform: scale(1.05);
}
#efeed svg {
	width: 16px;
	height: 16px;
}
#nm:before {
	content: '';
	background-color: var(--ab);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#nm svg {
	height: 16px;
	width: 16px;
	margin-top: 0;
	padding-top: 0;
	top: 0;
}
.nt #nm:hover {
	color: white;
	background-color: var(--a);
	box-shadow: 0 0px 14px rgb(from var(--a) r g b / 0.35);
	transform: scale(1.1);
}
/* CONTEXT MENU */
#ctx {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding-top: 74px;
	padding-left: 19px;
	padding-right: 19px;
	display: none;
}
#ct {
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(6px);  
	-webkit-backdrop-filter: blur(6px);
	padding: 16px;
	display: inline-block;
	border-radius: 16px;
	box-shadow: 0 4px 7px rgba(0, 0, 0, 0.18);
	box-shadow: 0 4px 14px rgb(from var(--a) r g b / 0.25);
	z-index: 4;
	transition: all .3s;
	transform: translateY(-14px) scale(.9);
	position: absolute;
	opacity: 0;
	max-height: calc(100% - 124px);
	overflow: auto;
}
#ct.a {
	opacity: 1;
	transform: translateY(0) scale(1);
}
#ct.p {
	right: 19px;
}
/* Profile Button Context */
.pro {
	text-align: center;
	max-width: 60vw;
	width: 12em;
}
.pro .n {
	font-weight: 900;
	margin-bottom: .5em;
	letter-spacing: -.01em;
	font-size: 1.4em;
}
.pro .r {
	color: var(--c);
	background-color: rgb(from var(--c) r g b / var(--z));
	border-radius: 9em;
	padding: 3px 10px 3px 27px;
	font-size: 12px;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	font-weight: bold;
	margin-bottom: 16px;
}
.pro .r svg {
	position: absolute;
	left: 10px;
	width: 14px;
	height: 14px;
	top: 4px;
}
.pro .but {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}
.pro .but.b:after {
	content: '';
	display: block;
	height: 100%;
	width: 10px;
	position: absolute;
	top: 0;
	right: 0;
	transition: all .3s;
	background-color: #e6f0f8;
	box-shadow: -10px 0 8px #e6f0f8;
}
.nt .pro .but.b:hover:after {
	background-color: var(--c);
	box-shadow: -10px 0 8px var(--c);
}
.pro select {
	max-width: 100%;
}
.pro .btt {
	display: grid;
  gap: 8px;
	grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
	align-items: start;
}
.btt > div {
	border-radius: 16px;
	padding-top: 24px;
	padding-bottom: 24px;
	transition: all .3s;
	cursor: pointer;
}
.nt .btt > div:hover {
	transform: scale(1.05);
}
.btt > div > div {
	font-size: .7em;
	overflow: hidden;
	white-space: nowrap;
}
.myp, .myi {
	background-color: white;
	border-radius: 16px;
	padding: 16px 16px 0;
	margin-top: 4px;
	text-align: center;
}
.myi {
	padding: 16px;
	margin-bottom: 16px;
}
#myups {
	margin-bottom: 16px;
}
/* Progress Ring */
.ring { 
	width: 184px; 
	height: 184px; 
	position: relative;
	display:inline-block;
	margin-bottom: 16px;
	transition: all .3s;
	cursor: pointer;
}
.nt .ring:hover {
	transform: scale(1.1);
}
.ring .track, .ring .bar {
	transition: all .3s;
}
.nt .ring:hover .track, .nt .ring:hover .bar {
	stroke-width: 6px;
}
.nt .ring.sm:hover {
	transform: scale(1);
}
.ring.sm {
	width: 48px;
	height: 48px;
	position: absolute;
	left: 0;
	top: -5px;
	cursor: default;
}
.ring svg { 
	width:100%; 
	height:100%; 
	transform: rotate(-90deg); 
}
.ring .track { 
	fill:none; 
	stroke: rgba(0,0,0,.1); 
	stroke-width:2; 
}
.ring .bar { 
	fill:none; 
	stroke: currentColor; 
	stroke-width:2; 
	stroke-linecap:round; 
}
.ring.sm .track, .ring.sm .bar, .nt .ring.sm:hover .track, .nt .ring.sm:hover .bar {
	stroke-width: 12;
}
.ring .im {
	background-color: var(--ab);
	width: 130px;
	height: 130px;
	position: absolute;
	left: 50%;
	border-radius: 90em;
	overflow: hidden;
	transform: translateX(-50%);
	top: 27px;
}
.ring .im div {
	font-weight: 900;
	font-size: 64px;
	position: relative;
	top: 20px;
}
.ring .pc {
	position: absolute;
	display: inline-block;
	background-color: var(--a);
	color: white;
	font-size: 14px;
	padding: 4px 10px;
	left: 70%;
	border-radius: 9em;
	z-index: 1;
	top: 16px;
	transition: all .3s;
}
.nt .ring:hover .pc {
	transform: scale(2) rotate(9deg);
}
.ring.sm .pn {
	position: relative;
	font-weight: 900;
	top: 32px;
	font-size: 12px;
}
.trd .ring.sm .pn {
	background-color: transparent;
	top: 33px;
}
.ring.p {
	color: var(--a);
	width: 50px;
	position: absolute;
	height: 50px;
	left: 34px;
	top: 8px;
}
.ring.p .im {
	top: 6px;
	transform: translateX(0);
	width: 38px;
	height: 38px;
	left: 6px;
}
.ring.p .track, .ring.p .bar {
	stroke-width: 8px;
}
.mym .ring {
	height: 54px;
	width: 54px;
	position: absolute;
	top: 7px;
	left: 0;
}
.mym .ring .im {
	width: 40px;
	height: 40px;
	top: 7px;
}
.mym .ring .track, .mym .ring .bar, .nt .mym .ring:hover .track, .nt .mym .ring:hover .bar {
	stroke-width: 6;
}
.mym .butt {
	background-color: var(--ab);
	color: var(--a);
	display: inline-block;
	border-radius: 9em;
	padding: 14px 16px;
	position: absolute;
	top: 10px;
	cursor: pointer;
	right: 0;
	transition: all .3s;
}
.nt .mym .butt:hover {
	background-color: var(--a);
	color: white;
}
.mym.myi li:after {
	display: none;
}
.mym li .pc {
	top: 1px;
	transform: rotate(-5deg);
	font-size: .7em;
	left: 72%;
}
.nt .mym .ring:hover .pc {
	transform: scale(1) rotate(0);
}
.m .pr {
	text-align: center;
}
.m .pr .n b {
	font-size: 1.4em;
}
.m .n {
	margin-bottom: 16px;
}
.m .pr .ring {
	margin-bottom: 0;
}
.m #xm {
	transition: all .3s;
	cursor: pointer;
	display: inline-block;
	padding: 16px 16px 13px;
	position: absolute;
	left: 16px;
	top: 16px;
	background-color: var(--ab);
	color: var(--a);
	border-radius: 9em;
}
.nt .m #xm:hover {
	background-color: var(--a);
	color: white;
	transform: scale(1.05);
}
#modal .m .tco li {
	padding: 7px 6px 7px 36px;
	border-radius: 12px;
}
.m .tco li .na {
	overflow: hidden;
	white-space: nowrap;
}
#modal .m .tco li .t {
	font-size: 10px;
}
.tr {
	
}
.tr .w, .tr .p {
	height: 3px;
	background-color: rgba(0,0,0,.1);
	border-radius: 9em;
	overflow: hidden;
}
.tr .p {
	background-color: var(--a);
}
.tr .n {
	font-weight: 900;
	font-size: 1.2em;
	margin-top: 16px;
	margin-bottom: 16px;
}
.tr .trd {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	max-height: 67px;
	transition: max-height .5s linear;
}
.tr .trd.a {
	max-height: 400vh;
}
.tr .trd .tco {
	transition: opacity .5s linear;
	opacity: 0;
	padding-bottom: 16px;
	text-align: left;
}
.tr .trd.a .tco {
	opacity: 1;
}
.tr .trd .tco li {
	border-radius: 8px;
	padding: 8px 8px 8px 36px;
	cursor: pointer;
	position: relative;
}
.tr .trd .tco li:nth-child(odd) {
	background-color: var(--bg);
}
.tr .trd .tco li .ck {
	position: absolute;
	left: 8px;
	background-color: var(--ab);
	color: var(--a);
	padding: 3px 3px 0;
	border-radius: 9em;
	top: 50%;
	transform: translateY(-50%);
}
.tr .trd .tco li.a .ck {
	color: white;
	background-color: var(--a);
}
.tr .trd .tco li .na {
	transition: all .3s;
}
.tr .trd .tco li.a .na {
	opacity: .5;
	text-decoration: line-through;
}
.tr .trd .tco li.ro {
	cursor: default;
}
.tr .trd .tco li.ro .na {
	text-decoration: none;
	opacity: 1;
}
.tr .trd .tco li.ro.a .na {
	opacity: .5;
	text-decoration: line-through;
}
.tr .trd .tco li .t, .tr .trd .tco li span {
	background-color: var(--ab);
	color: var(--a);
	font-size: .7em;
	display: inline-block;
	padding: 2px 6px;
	border-radius: 9em;
}
.tr .trd .tco li span {
	border-radius: 6px;
	position: absolute;
	right: 8px;
	top: 8px;
}
.nt .tr .trd .tco li:hover .na {
	color: var(--a);
	opacity: 1;
	transform: translateX(6px);
}
.tr .trd .lt {
	padding: 24px 16px 24px 64px;
	text-align: left;
	font-weight: 900;
}
.tr .toga {
	position: absolute;
	background-color: var(--ab);
	color: var(--a);
	padding: 16px 16px 12px;
	border-radius: 9em;
	top: 10px;
	right: 0;
	cursor: pointer;
	transition: all .3s;
}
.tr .toga svg {
	transform: rotate(270deg);
}
.nt .tr .toga:hover, .tr .trd.a .toga {
	background-color: var(--a);
	color: white;
}
.tr .trd.a .toga {
	transform: rotate(180deg);
}
/* Progress edit controls */
.tr .trd .tco li.yed { cursor: default; display: flex; align-items: center; gap: 6px; padding: 6px 8px 6px 36px; }
.tr .trd .tco .yv { width: 3.5em; padding: 2px 4px; border: 1px solid var(--br); border-radius: 6px; background: var(--bg); color: var(--t); font-size: .9em; }
.tr .trd .tco .yrem { margin-left: auto; padding: 2px 4px; cursor: pointer; opacity: .5; }
.tr .trd .tco .yrem:hover { opacity: 1; color: var(--rd, #c00); }
.tr .trd .tco li.yadd { cursor: default; display: flex; align-items: center; gap: 6px; padding: 6px 8px; }
.tr .trd .tco .yla { flex: 1; min-width: 0; padding: 4px 6px; border: 1px solid var(--br); border-radius: 6px; background: var(--bg); color: var(--t); font-size: .9em; }
.tr .trd .tco .yva { width: 3.5em; padding: 4px 6px; border: 1px solid var(--br); border-radius: 6px; background: var(--bg); color: var(--t); font-size: .9em; }
.tr .trd .tco .yaddb { padding: 4px 10px; background: var(--a); color: #fff; border-radius: 6px; cursor: pointer; font-size: .85em; white-space: nowrap; }

/* Dashboard stat cards */
.adst { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
@media (max-width: 480px) { .adst { grid-template-columns: repeat(2, 1fr); } }
.adsc { 
	background-color: white;
	box-shadow: 0 0 .5em #f2f2f2;
	border-radius: 16px; 
	padding: 12px 10px; 
	text-align: center; 
	transition: all .3s; 
}
.adsc[data-link] { cursor: pointer; }
.nt .adsc[data-link]:hover { color: black; transform: scale(1.03); }
.adsc-n { font-size: 2em; font-weight: 900; color: var(--a); line-height: 1.1; }
.adsc-l { font-size: .75em; opacity: .6; margin-top: 2px; text-transform: uppercase; letter-spacing: .04em; }

/* Profile Page */
.pw {
	width: 20em;
	max-width: calc(100vw - 38px);
	margin-right: auto;
	margin-left: auto;
}
.pw input, .pw select {
	width: 100%;
	padding-right: 0;
}
.pw label {
	font-weight: bold;
}
.no {
	text-align: center;
	opacity: .5;
	padding-top: 32px;
}
#mm {
	margin-top: 16px;
}
#mm li {
	overflow: hidden;
	padding-top: 16px;
	padding-bottom: 16px;
	position: relative;
	cursor: pointer;
	border-radius: 12px;
	padding-left: 12px;
	left: -12px;
	width: calc(100% + 12px);
	transition: all .3s;
}
#mm li.a, .nt #mm li.a:hover {
	background-color: var(--a);
	color: white;
	/*border-top: 1px solid rgba(212, 212, 212, 0);*/
}
.nt #mm li:hover {
	color: var(--a);
}
#mm li:before {
	content: '';
	height: 1px;
	background-color: #d4d4d4;
	display: block;
	width: 100%;
	position: absolute;
	transition: all .3s;
	top: 0;
}
.nt #mm li.a:before {
	background-color: var(--a);
}
#mm li.unread {
	padding-left: 21px;
}
#mm li.unread:before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	background-color: var(--a);
	border-radius: 9em;
	left: 0;
	top: 25px;
}
#mm li .d {
	font-size: .8em;
	opacity: .6;
	overflow: hidden;
	white-space: nowrap;
	padding-top: 1px;
}
#mm li .t {
	position: absolute;
	top: 14px;
	right: 13px;
	font-size: .8em;
	opacity: .4;
}
.av {
	width: 200px;
	height: 200px;
	max-width: calc(100vw - 48px);
	max-height: calc(100vw - 48px);
	margin-right: auto;
	margin-left: auto;
	position: relative;
	cursor: pointer;
	transition: all .3s;
	margin-top: 12px;
}
.av #file {
	background-color: red;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 52px;
	cursor: pointer;
	opacity: 0;
}
.nt .av:hover {
	transform: scale(1.02);
}
.av img {
	border-radius: 90em;
	overflow: hidden;
	width: 100%;
	height: 100%;box-shadow: 0 0px 7px rgb(from var(--a) r g b / 0);
	border: 8px solid var(--bg);
	transition: all .3s;
	position: relative;
	left: -8px;
	top: -8px;
}
.nt .av:hover img {
	border-color: var(--a);
	height: 100%;
	box-shadow: 0 0px 14px rgb(from var(--a) r g b / 0.35);
}
.av #xa {
	color: white;
	background-color: var(--r);
	padding: 8px 8px 5px;
	border-radius: 9em;
	position: absolute;
	transition: all .2s;
	right: 9px;
	top: 9px;
	opacity: 0;
	transform: scale(.8);
	border: 4px solid var(--bg);
}
.nt .av:hover #xa {
	opacity: 1;
	transform: scale(1);
}
.nt .av #xa:hover {
	transform: scale(1.1);
}
.av #xa svg {
	width: 16px;
	height: 16px;
}

.but, .nt .but.o:hover {
  display: block;
	padding: 1em 1.5em;
	cursor: pointer;
  border-radius: 7em;
  color: var(--a);
  background-color: var(--ab);
  text-align: center;
  margin-top: 1em;
  margin-right: auto;
  max-width: 20em;
  margin-left: auto;
  border-color: var(--a);
  transition: all .3s;
  text-decoration: none;
}
.setl .but {
	margin-left: 0;
}
.nt .but:hover {
  transform: scale(1.02);
	background-color: var(--a);
	box-shadow: 0 0px 7px rgb(from var(--a) r g b / 0.25);
	color: white;
}
.but.rc, .btt>div.rc {
	color: var(--r);
  background-color: rgb(from var(--r) r g b / var(--z));
}
.nt .but.rc:hover, .nt .btt>div.rc:hover {
	background-color: var(--r);
	color: white;
	box-shadow: 0 0px 7px rgb(from var(--r) r g b / 0.25);
}
.but.b,.btt>div.b {
	color: var(--c);
  background-color: rgb(from var(--c) r g b / var(--z));
}
.nt .but.b:hover,.nt .btt>div.b:hover {
	background-color: var(--c);
	color: white;
	box-shadow: 0 0px 7px rgb(from var(--c) r g b / 0.25);
}
.but.c,.btt>div.c {
	color: var(--b);
  background-color: rgb(from var(--b) r g b / var(--z));
}
.nt .but.c:hover,.nt .btt>div.c:hover {
	background-color: var(--b);
	color: white;
	box-shadow: 0 0px 7px rgb(from var(--b) r g b / 0.25);
}
.btt>div {
	color: var(--a);
  background-color: var(--ab);
}
.nt .btt>div:hover {
	background-color: var(--a);
	color: white;
}
.but.a {
	display: none;
}
.dd {
	color: var(--a);
	background-color: var(--ab);
	padding: 20px;
	border-radius: 16px;
	margin-top: 16px;
	text-align: center;
}
.ds, #llist {
  display: grid;
  gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: start;
	margin-top: 16px;
}
.ds > .p, .ds > a{
  max-width: 500px;
}
.ds > div, .ds > a, .litem {
	background-color: white;
	padding: 20px 20px 20px 80px;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	transition: all .3s;
  box-shadow: 0 0 .5em #f2f2f2;
	text-decoration: none;
	color: inherit;
	display: block;
}
.litem .lic {
	position: absolute;
	display: inline-block;
	padding: 15px 16px 14px;
	left: 18px;
	top: 13px;
	background-color: var(--ab);
	color: var(--a);
	border-radius: 9em;
}
.litem .lsb {
	font-size: .8em;
	opacity: .5;
	white-space: nowrap;
	overflow: hidden;
}
.litem .lia {
	background-color: var(--bg);
	color: var(--a);
	display: inline-block;
	border-radius: 9em;
	position: absolute;
	right: 16px;
	top: 21px;
	overflow: hidden;
}
.litem .lia span {
	display: inline-block;
	padding: 6px;
	cursor: pointer;
	transition: all .2s;
}
.nt .litem .lia span:hover {
	color: black;
	transform: scale(1.1);
}
#flist .litem, #dlist .litem {
	margin-bottom: 16px;
}
#dlist .litem {
	padding: 4px;
	margin-bottom: 4px;
}
#tlist .litem {
	padding: 8px 8px 8px 16px;
	margin-bottom: 4px;
}
#tlist .litem .lia {
	top: 2px;
	right: 2px;
}
#rlist .litem, #fldlist .litem, #blist .litem, #iplist .litem, #folist .litem, #fofldlist .litem, #clist .litem, #keys_list .litem {
	padding: 8px 8px 8px 16px;
	margin-bottom: 4px;
}
#rlist .litem .lia, #fldlist .litem .lia {
	top: 11px;
}
#blist .litem .lia, #iplist .litem .lia, #folist .litem .lia, #fofldlist .litem .lia, #clist .litem .lia, #tlist.stu .litem .lia, #keys_list .litem .lia {
	top: 10px;
}
#tlist.stu .litem .lia {
	right: 16px;
}
#dlist .container {
	margin-bottom: 12px;
}
#dlist .litem .lia {
	top: 9px;
	padding-right: 3px;
	padding-left: 3px;
}
.ds > a:after {
	content: '';
	display: block;
	background-color: white;
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
	width: 16px;
	box-shadow: -6px 0 12px #ffffff, -6px 0 12px #ffffff, -6px 0 12px #ffffff;
}
.nt .ds > *:hover {
	border-color: var(--a);
	box-shadow: 0 3px 14px rgb(from var(--a) r g b / 0.25);
	transform: scale(1.02);
}
.ds .ex {
	position: absolute;
	width: 48px;
	height: 48px;
	top: 16px;
	left: 16px;
	border-radius: 9em;
	text-align: center;
	color: var(--c);
	transition: all .3s;
	background-color: rgb(from var(--c) r g b / var(--z));
}
.nt .ds > a:hover .ex {
	background-color: var(--c);
	color: white;
	transform: scale(1.1);
}
.ds .ex svg {
	position: relative;
	top: 15px;
}
.ds img, .ds .img {
	position: absolute;
	border-radius: 9em;
	top: 16px;
	left: 16px;
	color: var(--a);
	overflow: hidden;
	background-color: var(--ab);
	width: 48px;
	height: 48px;
}
.ds .img div {
	text-align: center;
	font-size: 20px;
	padding-top: 12px;
}
.ds.f {
	margin-bottom: 16px;
	margin-top: 0;
}
.ds.f a {
	padding-left: 64px;
	overflow: hidden;
	max-width: calc(100% - 84px);
	white-space: nowrap;
}
.ds .im {
	position: absolute;
	height: 44px;
	width: 44px;
	top: 7px;
	left: 7px;
	border-radius: 10px;
	text-align: center;
	overflow: hidden;
	object-fit: cover;
}
.ds .im.a1 {
	color: var(--c);
	background-color: rgb(from var(--c) r g b / var(--z));
}
.ds .im.a2 {
	color: var(--r);
	background-color: rgb(from var(--r) r g b / var(--z));
}
.ds .im svg {
	position: relative;
	margin-top: 13px;
}
.ds b {
	font-size: 1.2em;
	overflow: hidden;
	white-space: nowrap;
}
.ds > div > div:nth-of-type(1), .ds a > div:nth-of-type(2) {
	font-size: .8em;
	opacity: .5;
	overflow: hidden;
	white-space: nowrap;
}
.ds .msg {
	position: absolute;
	height: 48px;
	width: 48px;
	border-radius: 9em;
	right: 12px;
	top: 12px;
	text-align: center;
	overflow: hidden;
	color: var(--a);
	background-color: white;
	cursor: pointer;
	transition: all .2s;
	border: 4px solid white;
}
.nt .ds .msg:hover {
	transform: scale(1.1);
	color: white;
	background-color: var(--a);
}
.ds .msg svg {
	position: relative;
	top: 15px;
}
.ds .msg:before {
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	transition: all .2s;
	background-color: var(--ab);
	top: 0;
	right: 0;
}
#cf textarea {
	width: 100%;
	min-height: 200px;
	min-width: 100%;
	max-width: 100%;
}
/* Checkmark */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 32px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container.s {
	margin-top: 0;
	top: -12px;
	transition: all .2s;
	display: inline-block;
	padding: 6px 12px 6px 24px;
	border-radius: 9em;
}
.container.s:has(input:checked) {
	background-color: var(--ab);
	color: var(--a);
}
/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -5px;
  left: 5px;
  height: 25px;
  width: 25px;
	border-radius: 8px;
  background-color: #ececec;
	transition: all .2s;
}
.container.s .checkmark {
	height: 16px;
	width: 16px;
	top: 5px;
}

/* On mouse-over, add a grey background color */
.nt .container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark, .nt .container:hover input:checked ~ .checkmark {
  background-color: var(--a);
	box-shadow: 0 0px 7px rgb(from var(--a) r g b / 0.25);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked:not(:indeterminate) ~ .checkmark:after {
  display: block;
}
/* Indeterminate (partial) state background */
.container input:indeterminate ~ .checkmark {
  background-color: var(--a);
  box-shadow: 0 0px 7px rgb(from var(--a) r g b / 0.25);
}

/* Replace the ✓ with a horizontal bar when indeterminate */
.container input:indeterminate ~ .checkmark:after {
  display: block;
  left: 6px;
  top: 11px;
  width: 13px;
  height: 0;
  border: none;
  border-top: 3px solid white;
  transform: none;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.container.s .checkmark:after {
	left: 6px;
  top: 3px;
  width: 3px;
  height: 7px;
  border: solid white;
  border-width: 0 2px 2px 0;
}

/* MODAL */
#modal {
  position: fixed;
  z-index: 26;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);

  transition: all .3s;
  opacity: 0;
  display: none;
  overflow: auto;
}
#modal.a {
  opacity: 1;
}
#modal .mw {
  width: 20em;
  position: relative;
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding: 1em 0;
}
.mw .cmp {
  border: 1px solid #f3f3f3;
  border-radius: .8em;
  padding: 1em;
  margin-top: 1em;
  box-shadow: 0 .1em 1em #f3f3f3;
}
.mw .cmp b {
  display: block;
  text-align: center;
  color: var(--a);
  font-size: 1.5em;
}
.mw a#du {
  color: var(--a);
}
#mx {
	background-color: var(--ab);
	color: var(--a);
	display: inline-block;
	padding: 16px 16px 13px;
	border-radius: 9em;
	transition: all .3s;
	cursor: pointer;
}
.nt #mx:hover {
	color: white;
	background-color: var(--a);
	transform: scale(1.05);
}
.m .def {
	background-color: var(--ab);
	color: var(--a);
	padding: 16px;
	margin-top: 16px;
	border-radius: 16px;
}
.m .but.z {
	color: white;
	background-color: var(--a);
}
#modal .m {
  background-color: white;
  border-radius: .8em;
  box-shadow: 0 0.2em .8em rgba(0, 0, 0, 0.3);
	padding: 1.5em 1.5em 1.5em;
	overflow: hidden;
  transition: all .3s;
  transform: translateY(2em);
}
#modal.a .m {
  transform:translateY(0);
}
#modal .m .t {
	text-align: center;
	font-weight: 900;
	font-size: 1.4em;
	letter-spacing: -.01em;
}
.selectable {
	-webkit-user-select: text !important;
	user-select: text !important;
}
#modal .m li {
	/*border-top: 1px solid #e6e6e6;*/
	padding-top: 16px;
	padding-bottom: 16px;
	padding-left: 69px;
	position: relative;
	border-radius: 160px;
	background-color: #f5f5f5;
	margin-top: .3em;
}
#modal .m li .img {
	width: 50px;
	height: 50px;
	position: absolute;
	border-radius: 9em;
	overflow: hidden;
	background-color: var(--ab);
	top: 8px;
	left: 8px;
	text-align: center;
}
#modal .m li .img div {
	font-weight: 900;
	color: var(--a);
	font-size: 24px;
	position: relative;
	top: 9px;
}
#modal .m li .d {
	font-size: .8em;
	opacity: .5;
}
#modal .m li .n {
	position: absolute;
	padding: 15px 16px 14px;
	display: inline-block;
	background-color: var(--ab);
	color: var(--a);
	border-radius: 9em;
	top: 9px;
	right: 9px;
	transition: all .3s;
	cursor: pointer;
}
.nt #modal .m li .n:hover {
	color: white;
	background-color: var(--a);
}


/* DETAILS PANE */
#dp {
	z-index: 20;
	transition: transform .3s;
	transform: translate3d(100%,0,0);
	position: fixed;
	background-color: white;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: auto;
}
#x, #d {
	padding: 19px;
}
#x {
  z-index: 9;
  position: fixed;
}
#d {
  position: absolute;
  overflow: auto;
  right: 0;
  left: 0;
  bottom: 0;
  padding-top: 5px;
  top: 0;
	padding-bottom: 80px;
}
#x > div, #send, #up {
	padding: 16px 17px 14px;
	border-radius: 9em;
	position: relative;
	background-color: white;
	margin-right: 16px;
	color: var(--a);
  background-color: white;
	transition: all .2s;
	overflow: hidden;
	cursor: pointer;
}
#delm, #bmsg {
	padding: 16px 17px 14px;
	position: fixed;
	right: 18px;
	background-color: white;
	border-radius: 9em;
	overflow: hidden;
	color: var(--r);
	z-index: 9;
	top: 18px;
	cursor: default;
	transition: all .3s;
	transform: scale(0);
	
	opacity: 0;
}
body.d #delm, body.d #bmsg {
	opacity: 1;
	transform: scale(1);
	cursor: pointer;
}
.nt #delm:hover, .nt #bmsg:hover, #bmsg.a {
	background-color: var(--r);
	color: white;
	transform: scale(1.02);
}
#delm:after, #bmsg:after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: var(--rb);
	position: absolute;
	top: 0;
	left: 0;
}
#x > div:after, #send:after, #up:after {
	content: '';
	display: block;
  background-color: var(--ab);
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
	width: 100%;
}
.nt #x > div:hover, .nt #send:hover {
	background-color: var(--a);
	color: white;
	box-shadow: 0 3px 14px rgb(from var(--a) r g b / 0.25);
	transform: scale(1.02);
}
#up {
	bottom: 15px;
	left: 16px;
	transform: rotate(45deg);
}
.nt #up:hover {
	background-color: var(--a);
	color: white;
	box-shadow: 0 3px 14px rgb(from var(--a) r g b / 0.25);
	transform: rotate(45deg) scale(1.02);
}
#addFiles {
	background-color: red;
	width: 100%;
	height: 100%;
	position: absolute;
	cursor: pointer;
	opacity: 0;
	top: 0;
	left: 0;
	z-index: 1;
}
.who {
	text-align: center;
	margin-bottom: 16px;
}
.who h2 {
	padding-left: 48px;
	padding-right: 48px;
	overflow: hidden;
	white-space: nowrap;
}
.who span {
	background-color: rgb(from var(--a) r g b / 0);
	display: inline-block;
	padding: 3px;
	border-radius: 8px;
	cursor: pointer;
	transition: all .2s;
}
.nt .who span:hover {
	background-color: var(--ab);
	color: var(--a);
	transform: scale(1.03);
}
.who .img {
	width: 72px;
	height: 72px;
	border-radius: 9em;
	overflow: hidden;
	margin-top: 4px;
}
.who .wn {
	font-weight: 900;
	margin-bottom: 32px;
	font-size: 1.2em;
	letter-spacing: -.02em;
}
/* Message Input */
.minput {
	position: fixed;
	z-index: 21;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: white;
	height: 50px;
	box-shadow: 0 -26px 10px #ffffff;
}
.minput .mw {
	flex: 1;
  border-radius: 32px;
  box-sizing: border-box;
  padding: 0;                    /* important: don't double pad */
  background: #fff;
  display: flex;
}
#minput {
	resize: none;
	box-shadow: none;
	border: 1px solid #d4d4d4;
	border-radius: 32px;
	min-height: 48px;
	height: auto;
	font-size: 16px;
	line-height: 22px;
	margin-left: 16px;
	box-sizing: border-box;
	position: absolute;
	width: calc(100% - 96px - 64px);
	bottom: 0;
	left: 64px;
	transition: border 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease, opacity .2s ease;
	padding: 12px 16px;
	max-height: 200px;
	opacity: 0;
	overflow-y: hidden;
}
#minput:focus {
	border-width: 3px;
	border-color: var(--a);
	padding: 10px 14px;
	box-shadow: 0 3px 14px rgb(from var(--a) r g b / 0.25);
}
#minput.is-singleline {
	height: 48px !important;
}
#minput.is-multiline {
	border-radius: 16px;
}
#send {
	position: absolute;
	right: 0;
	bottom: 16px;
}
#ms li {
	margin-top: .2em;
	display: flex;
	flex-direction: column;
	position: relative;
	margin-bottom: 1em;
}
#ms li .row {
	display:flex;
  align-items:flex-start;
  gap:8px;
}
#ms li.me .row{
	flex-direction: row-reverse;
}
#ms li .b {
	background-color: rgba(140, 140, 140, 0.19);
	padding: 7px 14px;
	border-radius: 16px;
	max-width: 60%;
	position: relative;
	-webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  touch-action: pan-y;
}
#ms li.pending .b {
	opacity: .72;
}
#ms li.typing .b {
	min-width: 44px;
	padding: 9px 14px;
	opacity: .78;
}

.typing-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	height: 14px;
}

.typing-indicator span {
	width: 8px;
	height: 8px;
	background-color: gray;
	border-radius: 50%;
	display: inline-block;
	animation: typing-wave 1.3s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
	animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes typing-wave {
	0%, 60%, 100% {
		transform: translateY(0);
		opacity: 0.5;
	}
	30% {
		transform: translateY(-2px);
		opacity: 1;
	}
}
#ms li.me {
	align-items: flex-end;
}
#ms li.me .b {
	background-color: var(--a);
	color: white;
}
#ms li .b.i {
	padding: 0;
	background-color: #f5f5f5;
	max-width: 40%;
}
#ms li .b.i img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}
#ms li .b.i video {
	width: 100%;
	height: auto;
	border-radius: 16px;
	background-color: black;
}
#ms li .b.i img.fullscreen {
	object-fit: contain;
	background-color: black;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 30;
	border-radius: 0;
	width: 100%;
	height: 100%;
}
#ms li.me a {
	color: white;
	opacity: .6;
}
#ms li.me .b.i a {
	opacity: 1;
}
#ms li .ts {
	font-size: .8em;
	opacity: .5;
	margin-top: .1em;
	padding-right: 48px;
	padding-left: 48px;
}
#ms li .img {
	width: 32px;
	height: 32px;
	border-radius: 9em;
	overflow: hidden;
	background-color: var(--ab);
	color: var(--a);
	text-align: center;
	position: relative;
}
#ms li div.img div {
	font-weight: 900;
	position: relative;
	top: 6px;
}
#ms li .re {
	position: absolute;
	top: -27px;
	border-radius: 9em;
	background-color: rgb(from var(--a) r g b / 0.25);
	backdrop-filter: blur(6px);  
	-webkit-backdrop-filter: blur(6px);
	overflow: hidden;
	transition: all .15s;
	transform: scale(0) translateY(15px);
	opacity: 0;
}
#ms li .b.a .re {
	opacity: 1;
	transform: scale(1) translateY(0);
	min-width: 180px;
}
#ms li .re {
	left: 0;
}
#ms li.me .re {
	right: 0;
	left: auto;
}
#ms li .re div {
	display: inline-block;
	padding: 8px 6px;
	border-radius: 9em;
	width: 24px;
	z-index: 1;
	cursor: pointer;
}
#ms li .re div.a {
	background-color: var(--a);
}
#ms li .r {
	position: absolute;
	top: -19px;
	right: 0;
}
#ms li.me .r {
	right: auto;
	left: 0;
}
#ms li .r div {
	border-radius: 9em;
	background-color: #e9e9e9;
	border: 1px solid white;
	display: inline-block;
	padding: 5px 4px;
	margin-right: -4px;
	font-size: 12px;
}
#ms li.me .r div {
	background-color: var(--a);
}
#ms li .dl {
	color: red;
	position: absolute;
	right: -44px;
	display: inline-block;
	background-color: var(--ab);
	color: var(--a);
	border-radius: 9em;
	padding: 8px 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: all .2s;
}
.nt #ms li .dl:hover {
	background-color: var(--a);
	color: white;
}
#ms li.me .dl {
	right: auto;
	left: -44px;
	color: var(--a);
}
#ms li .afile {
	display: inline-block;
	padding: .5em .7em;
	border-radius: .8em;
	background-color: var(--ab);
	color: var(--a);
	font-weight: 700;
	text-decoration: none;
}
#ms li .fd {
	display: inline-block;
	padding: .45em .7em;
	border-radius: .8em;
	background-color: rgba(180,40,40,.12);
	color: #aa1d1d;
	font-size: .9em;
	font-weight: 700;
}
.bm {
	background-color: var(--a);
	color: white;
	padding: 16px;
	margin-bottom: 16px;
	border-radius: 16px;
}
.bmm {
	display: grid;
  gap: 4px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: start;
}
.bm li {
	border-radius: 9em;
	padding: 8px 8px 8px 49px;
	background-color: rgba(255, 255, 255, 0.22);
	position: relative;
	overflow: hidden;
	max-width: calc(100% - 58px);
	white-space: nowrap;
	transition: all .3s;
	cursor: pointer;
}
.nt .bm li:hover {
	transform: scale(1.01);
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
}
.bm .a {
	padding: 10px 8px;
	background-color: var(--a);
	display: inline-block;
	position: absolute;
	left: 4px;
	top: 4px;
	border-radius: 9em;
}
.bm .a svg {
	height: 16px;
	min-height: 16px;
}
.bm li .d {
	opacity: .5;
	font-size: .7em;
}
.myi {
	padding-top: 0;
	padding-bottom: 0;
}
.myi li {
	position: relative;
	padding: 24px 16px 24px 84px;
	overflow: hidden;
	white-space: nowrap;
	text-align: left;
	transition: all .3s;
	cursor: pointer;
}
.myi > *:not(:first-child) {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.myi li:after {
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: white;
	width: 20px;
	right: -20px;
	box-shadow: -10px 0 20px #ffffff,-10px 0 20px #ffffff,-10px 0 20px #ffffff;
}
.myi li span {
	opacity: .5;
	transition: all .3s;
}
.myi li .da {
	position: absolute;
	font-size: .8em;
	font-weight: bold;
	color: var(--a);
	background-color: var(--ab);
	padding: 3px 8px;
	border-radius: 9em;
	left: 0;
	top: 22px;
	transition: all .3s;
}
.myi li .da:before {
	content: '🙂';
	position: absolute;
	transform: scale(.5);
	transition: all .3s;
	opacity: 0;
	top: -8px;
	left: 8px;
}

.nt .myi li:hover span, .myi li.a span {
	opacity: 1;
	transform: scale(1.02);
}
.nt .myi li:hover .da, .myi li.a .da {
	background-color: var(--a);
	color: white;
	transform: scale(1.1) rotate(-5deg) translateX(4px);
}
.nt .myi li:hover .da:before, .myi li.a .da:before {
	opacity: 1;
	transform: scale(1.5);
	top: -13px;
	left: 8px;
}
.ment .img, .ment .send {
	background-color: var(--ab);
	color: var(--a);
	height: 50px;
	width: 50px;
	overflow: hidden;
	border-radius: 9em;
	position: absolute;
	top: 8px;
	left: 0;
}
.ment li {
	padding-left: 60px;
	overflow: visible;
}
.ment li:after {
	display: none;
}
.ment .send {
	right: 0;
	left: auto;
	text-align: center;
	cursor: pointer;
	transition: all .3s;
}
.ment .send svg {
	position: relative;
	top: 16px;
}
.nt .ment .send:hover {
	color: white;
	background-color: var(--a);
}
.ment li.me .img {
	border-width: 4px;
	border-style: solid;
	top: 4px;
	left: -4px;
}
#msgb, #myups {
	position: relative;
}
#msgb span, #myups span {
	padding-left: 20px;
}
#msgb svg, #myups svg {
	position: absolute;
	top: 17px;
	transition: transform .3s;
}
.nt #msgb:hover svg, .nt #myups:hover svg {
	transform: scale(1.2) rotate(-5deg);
}
/* INTERVIEWS */
.ii {
	background-color: white;
	border-radius: 16px;
	margin-top: 16px;
	overflow: hidden;
}
.ii li {
	padding: 16px 16px 16px 91px;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	transition: all .3s;
	cursor: pointer;
}
.nt .ii li:hover, .ii li.a {
	background-color: var(--ab);
	color: var(--a);
}
.ii li:not(:first-child):before {
	content: '';
	position: absolute;
	display: block;
	height: 1px;
	width: calc(100% - 32px);
	background-color: rgba(0, 0, 0, 0.1);
	top: 0;
	left: 16px;
	transition: all .3s;
}
.nt .ii li:hover:before, .ii li.a:before {
	background-color: var(--ab);
}
.ii li:after {
	content: '';
	display: block;
	background-color: white;
	height: 100%;
	width: 16px;
	position: absolute;
	right: 0;
	top: 0;
	transition: all .3s;
	box-shadow: -10px 0 20px #ffffff, -10px 0 20px #ffffff, -10px 0 20px #ffffff;
}
.nt .ii li:hover:after, .ii li.a:after {
	background-color: rgba(255, 255, 255, 0);
	box-shadow: -10px 0 20px rgba(255, 255, 255, 0);
}
.ii li .d {
	font-size: .7em;
	font-weight: bold;
	background-color: var(--ab);
	color: var(--a);
	display: inline-block;
	position: absolute;
	padding: 3px 8px;
	border-radius: 9em;
	top: 16px;
	left: 16px;
	transition: all .3s;
}
.nt .ii li:hover .d, .ii li.a .d {
	background-color: var(--a);
	color: white;
}
.cot {
	margin-bottom: 16px;
	position: relative;
}
.cot span {
	cursor: pointer;
	color: var(--a);
	font-size: .8em;
	position: relative;
	display: inline-block;
	background-color: var(--ab);
	padding: 6px 12px 6px 24px;
	border-radius: 9em;
	transition: all .3s;
}
.cot svg {
	position: absolute;
	left: 8px;
	top: 6px;
}
.nt .cot span:hover {
	transform: scale(1.05);
}
.cot .pr {
	position: absolute;
	right: 0;
	padding-left: 32px;
	color: var(--c);
	background-color: var(--cb);
}
.cot .pr svg {
	left: 12px;
}
.la {
	margin-top: 16px;
	font-style: italic;
	font-size: .9em;
}
.txt {
	background-color: var(--ab);
	padding: 16px;
	border-radius: 16px;
	margin-top: 8px;
	max-width: 600px;
}
.cb {
	background-color: white;
	padding: 16px 16px 8px;
	border-radius: 16px;
	display: inline-block;
	text-align: center;
}
.cb li {
	display: inline-block;
	text-align: center;
	margin-bottom: 8px;
}
.cb .im {
	width: 48px;
	height: 48px;
	border-radius: 9em;
	overflow: hidden;
	margin-right: 16px;
	margin-left: 16px;
}
.cb b, .cb span {
	display: block;
	font-size: .8em;
}
.cb span {
	font-size: .7em;
}
.pcb {
	text-transform: uppercase;
	opacity: .5;
	margin-top: 16px;
	font-weight: bold;
	font-size: .8em;
	margin-bottom: 3px;
}
a.fa, .pn {
	color: var(--a);
	background-color: var(--ab);
	border-radius: 9em;
	padding: 3px 10px;
	font-size: 14px;
	text-decoration: none;
	display: inline-block;
	margin-top: 3px;
	margin-right: 3px;
	transition: all .3s;
	cursor: pointer;
	position: relative;
}
.nt a.fa:hover {
	background-color: var(--a);
	color: white;
	transform: scale(1.02);
}
.iat a.fa {
	padding-right: 25px;
}
a.fa .x {
	position: absolute;
	right: 3px;
	top: 3px;
	padding: 0 2px 0 3px;
	background-color: var(--ab);
	border-radius: 9em;
	transition: all .3s;
}
.nt .iat a.fa .x:hover {
	background-color: white;
	color: var(--a);
}
a.fa .x svg {
	width: 12px;
	height: 12px;
}
#aldi {
	display: inline-block;
	background-color: var(--ab);
	color: var(--a);
	padding: 0 12px 7px;
	border-radius: 9em;
	position: relative;
	cursor: pointer;
	line-height: 1;
	margin-left: 8px;
	top: -2px;
	transition: all .3s;
}
#aldi svg {
	width: 16px;
	height: 16px;
}
.nt #aldi:hover {
	background-color: var(--a);
	color: white;
	transform: scale(1.05);
}
.ivp {
	position: relative;
	padding: 6px 6px 6px 56px;
}
.ivp .im {
	height: 48px;
	width: 48px;
	overflow: hidden;
	position: absolute;
	border-radius: 9em;
	display: inline-block;
	top: 0;
	left: 0;
}
.ivp h1 {
	
}
.iw {
	margin-right: auto;
	margin-left: auto;
	max-width: 40em;
}
.iw input[type=text], .iw textarea {
	width: 100%;
}
.iw textarea {
	min-height: 10em;
}
/* PEOPLE HEADER */
.ph {
	position: absolute;
	top: 80px;
	height: 50px;
	left: 16px;
	right: 16px;
	border-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(0, 0, 0, 0.1);
}
.phr {
	transition: opacity .3s;
	position: absolute;
	top: 3px;
	right: 0;
}
.phr > div {
	display: inline-block;
	float: left;
	margin-left: 8px;
}
.ph .container {
	position: relative;
	left: -6px;
	top: 0;
}
#sp {
	position: absolute;
	top: 11px;
	left: 34px;
}
.ph #ap {
	border-radius: 9em;
	transition: all .3s;
	cursor: pointer;
	color: var(--a);
	background-color: var(--ab);
}
.ph #ap div {
	position: relative;
	font-size: 14px;
	padding: 8px 12px 8px 27px;
}
.ph #ap svg {
	position: absolute;
	left: 10px;
	top: 8px;
}
.ph #filter {
	right: 128px;
	display: inline-block;
	padding: 9px 8.5px 5px;
	border-radius: 9em;
	background-color: rgba(0, 0, 0, 0.06);
	color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: all .3s;
}
.nt .ph #ap:hover {
	color: white;
	background-color: var(--a);
	box-shadow: 0 0px 7px rgb(from var(--a) r g b / 0.25);
}
.ph .bb {
	border-radius: 9em;
	background-color: rgba(0, 0, 0, 0.06);
	color: rgba(0, 0, 0, 0.5);
	transition: all .3s;
}
.ph .bb div {
	display: inline-block;
	padding: 9px 9px 5px;
	cursor: pointer;
	transition: all .3s;
}
.nt .ph .bb div:hover, .nt .ph #filter:hover {
	transform: scale(1.1);
	color: black;
}
/* PEOPLE LIST */
.clusterize-scroll{max-height:calc(100% - 1.9em);overflow:auto;}
.clusterize-extra-row{margin-top:0!important;margin-bottom:0!important}.clusterize-extra-row.clusterize-keep-parity{display:none}.clusterize-content{outline:0;counter-reset:clusterize-counter}.clusterize-no-data td{text-align:center}
.pl {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 130px;
}
.pl li {
	position: relative;
	padding: 16px 16px 16px 94px;
	border-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: all .3s;
}
.pl li b {
	white-space: nowrap;
	overflow: hidden;
}
.pl li .d {
	opacity: .5;
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
}
.pl li .im {
	width: 48px;
	height: 48px;
	overflow: hidden;
	border-radius: 9em;
	position: absolute;
	top: 9px;
	left: 35px;
	background-color: var(--ab);
	color: var(--a);
	transition: transform .3s;
}
.pl li .im div, #adcl .ring .im div {
	text-align: center;
	font-weight: 900;
	font-size: 20px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.nt .pl li:hover {
	color: var(--a);
	padding-left: 98px;
}
.nt .pl li:hover .ring, .nt .pl li:hover .im {
	transform: scale(1.05);
}
.nt .pl li:hover .ring .im {
	transform: scale(1);
}
.pl li .pc {
	transform: scale(0) rotate(0);
	top: -6px;
	left: 50%;
}
.nt .pl .ring.p:hover .pc, .nt .pl li:hover .pc {
	transform: scale(0.8) rotate(-10deg);
}
.nt .ring:hover .pc {
	transform: scale(2) rotate(9deg);
}
.ring.p .track {
	stroke: var(--ab); 
}
#plc {
	padding: 0 16px;
}
.pl li .container {
	position: absolute;
	top: 12px;
	left: -5px;
}
.pl li .ring.p .container {
	top: 5px;
	left: -39px;
}
#modal .fi li {
	display: inline-block;
	padding: 3px 9px;
	background-color: var(--ab);
	color: var(--a);
	margin-right: 3px;
	margin-top: 0;
	margin-bottom: 3px;
	cursor: pointer;
	transition: all .2s;
}
.nt #modal .fi li:hover {
	transform: scale(1.02);
}
.nt #modal .fi li.a {
	background-color: var(--a);
	color: white;
}
.m input, .m select, .m textarea {
	width: 100%;
	padding: 0.5em 1em;
}
.m input:not(:focus), .m select:not(:focus), .m textarea:not(:focus), .tb input:not(:focus), .tb select:not(:focus), .tb textarea:not(:focus), #mto:not(:focus) {
	background-color: rgba(0, 0, 0, 0.06);
	border-color: rgba(0, 0, 0, 0);
	box-shadow: none;
}
.tb #ups a {
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.m .container {
	margin-bottom: 2em;
}
.st li {
	position: relative;
	padding-top: 16px;
	padding-bottom: 16px;
	padding-left: 32px;
	cursor: pointer;
	transition: all .3s;
}
.st li:not(:first-child) {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.st li .s {
	position: absolute;
	left: 0;
	top: 23px;
	color: var(--a);
	transition: all .3s;
}
.nt .st li:hover {
	color: var(--a);
	padding-left: 36px;
}
.nt .st li:hover .s {
	transform: scale(1.3) rotate(-5deg);
}
.st li .d {
	opacity: .5;
	font-size: .7em;
}
.set {
	
}
.set input {
	max-width: 100%;
	padding: 8px 16px;
}
.set input[type=color] {
	padding: 0;
	width: 32px;
	height: 32px;
	cursor: pointer;
}
.set #xc {
	background-color: rgba(0, 0, 0, 0.07);
	color: rgba(0, 0, 0, 0.5);
	padding: 7px 8px 5px;
	border-radius: 9em;
	margin-left: 4px;
	cursor: pointer;
	opacity: 0;
	transform: scale(0);
}
.set #xc, .set #dcolor {
	display: inline-block;
	float: left;
	transition: all .3s;
}
.set #dcolor {
	padding: 0;
	border-radius: 9em;
  border: none;
  outline: none;
  -webkit-appearance: none;
}
.set #dcolor::-webkit-color-swatch-wrapper {
    padding: 0; 
}
.set #dcolor::-webkit-color-swatch {
    border: none;
    border-radius: 50%;
}
.set #xc.a {
	transform: scale(1);
	opacity: 1;
}
.nt .set #xc:hover {
	transform: scale(1.05);
	color: rgba(0, 0, 0, 1);
}
.set .cl {
	clear: left;
}
.todo {
	background-color: var(--ab);
	color: var(--a);
	padding: 16px;
	border-radius: 16px;
	position: relative;
}
.todo:before {
	content: '🤞TODO';
	position: absolute;
	background-color: var(--a);
	color: white;
	font-weight: bold;
	display: inline-block;
	padding: 4px 8px 4px 5px;
	border-radius: 9em;
	top: -13px;
}
.todo span {
	text-decoration: underline;
}
/* SEARCH RESULTS */
#results {
	position: fixed;
	z-index: 2;
	bottom: 0;
	left: 0;
	right: 0;
	top: 69px;
	display: none;
}
#r {
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(6px);  
	-webkit-backdrop-filter: blur(6px);
	padding: 16px;
	display: inline-block;
	border-radius: 16px;
	box-shadow: 0 4px 7px rgba(0, 0, 0, 0.18);
	box-shadow: 0 4px 14px rgb(from var(--a) r g b / 0.25);
	z-index: 4;
	transition: all .2s;
	transform: translateY(-3px) scale(.9);
	position: absolute;
	opacity: 0;
	max-height: calc(100% - 124px);
	overflow: auto;
	top: 4px;
	left: 12px;
}
#results.a #r {
	opacity: 1;
	transform: translateY(0) scale(1);
}
#r { min-width: 260px; max-width: min(440px, calc(100vw - 24px)); }
.rsec { margin-bottom: 6px; }
.rsec:last-child { margin-bottom: 0; }
.rsec ul { list-style: none; margin: 0; padding: 0; }
.rsh { font-size: .7em; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; opacity: .45; padding: 2px 4px 5px; }
.rr { display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: 9px; cursor: pointer; transition: background .12s; white-space: nowrap; }
.rr:hover { background: rgb(from var(--a) r g b / 0.08); }
.rr .rimg { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; overflow: hidden; background: var(--a); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .8em; font-weight: 700; }
.rr .rimg img { width: 100%; height: 100%; object-fit: cover; }
.rr .rda { flex-shrink: 0; font-size: .75em; opacity: .5; min-width: 70px; }
.rr .rico { flex-shrink: 0; width: 28px; text-align: center; font-size: 1em; opacity: .45; }
.rr span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; font-size: .93em; }
.rr span b { font-weight: 700; color: var(--a); }
.rno { padding: 10px 4px; opacity: .5; font-size: .9em; font-style: italic; }
.rr .rtxt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.rr .rtxt > *:first-child { font-size: .93em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rsub { font-size: .76em; opacity: .55; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rsub b { font-weight: 700; color: var(--a); opacity: 1; }
.rr b { display: inline; }
.m img.ref {
	width: 100%;
	display: block;
	overflow: hidden;
	border-radius: 12px 12px 0 0;
	margin-top: 8px;
}
.m .info {
	background-color: var(--ab);
	color: var(--a);
	border-radius: 0 0 12px 12px;
	padding: 16px;
	text-align: center;
}
.m .aav {
	margin-top: 8px;
	overflow-x: auto;
	white-space: nowrap;
	text-align: center;
	position: relative;
}
.m .aav .im {
	display: inline-block;
	height: 48px;
	width: 48px;
	color: var(--a);
	background-color: var(--ab);
	overflow: hidden;
	border-radius: 9em;
	margin-right: 4px;
}
.m .aav .im div {
	text-align: center;
	font-weight: 900;
	font-size: 1.2em;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.m .be div {
	display: inline-block;
	background-color: var(--ab);
	color: var(--a);
	font-size: 12px;
	padding: 3px 6px;
	margin-right: 2px;
	margin-bottom: 2px;
	border-radius: 9em;
	cursor: pointer;
	transition: all .2s;
}
.nt .m .be div:hover {
	transform: scale(1.05);
}
.m .be div.a {
	color: white;
	background-color: var(--a);
}
.phd {
	text-align: center;
	margin-bottom: 16px;
}
.phd .im {
	border-radius: 9em;
	overflow: hidden;
	width: 150px;
	height: 150px;
	background-color: var(--ab);
	color: var(--a);
	margin-right: auto;
	margin-left: auto;
}
.phd .im div {
	position: relative;
	font-size: 5em;
	font-weight: 900;
	top: 24px;
}
.phd .f {
	font-weight: 900;
	font-size: 1.5em;
}
.phd .l {
	opacity: .5;
}
.phd a {
	color: var(--a);
	text-decoration: none;
}
.togw {
	text-align: center;
	overflow-x: auto;
}
.togw > div > div {
	position: relative;
	padding-left: 32px;
}
.togw svg {
	position: absolute;
	left: 13px;
	opacity: .6;
	top: 8px;
}
.edit {
	padding: 16px 16px 13px;
	border-radius: 9em;
	background-color: var(--ab);
	display: inline-block;
	color: var(--a);
	cursor: pointer;
	transition: all .3s;
	position: absolute;
	right: 16px;
	top: 16px;
}
.nt .edit:hover {
	color: white;
	background-color: var(--a);
	transform: scale(1.05);
	box-shadow: 0 4px 14px rgb(from var(--a) r g b / 0.25);
}
.tb {
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	background-color: white;
	border-radius: 16px;
	padding: 16px;
	margin-top: 16px;
}
.tb .lh {
	font-weight: 900;
	margin-top: 16px;
}
.tb .bub {
	background-color: var(--ab);
	display: inline-block;
	color: var(--a);
	padding: 6px 12px;
	border-radius: 16px;
}
.tb .bubb {
	opacity: .5;
	font-size: .8em;
	padding-bottom: 12px;
}
.tb .edit {
	z-index: 1;
}
.tog > div.h {
	display: none;
}
#edith {
	top: 84px;
	right: calc(50% - 60px);
	transform: translateX(50%);
	overflow: hidden;
	background-color: var(--a);
	color: white;
}
/* Person detail — Tags + Roles section */
.ptr {
	margin: 12px 0 4px;
}
#ptr {
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;
}
.ptrr {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 6px;
}
.ptrr label {
	font-size: .8em;
	opacity: .5;
	font-weight: 700;
	display: block;
	width: 100%;
}
.ptrc {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.chip {
	display: inline-block;
	background-color: var(--ab);
	color: var(--a);
	padding: 4px 10px;
	border-radius: 12px;
	font-size: .85em;
	cursor: pointer;
	font-weight: 600;
	opacity: 1;
}
.chip.a {
	background-color: var(--a);
	color: white;
}
.chip.ed {
	cursor: pointer;
	transition: background-color .2s, color .2s, transform .15s;
}
.nt .chip.ed:hover {
	transform: scale(1.05);
}
/* Delete person button */
.but.rd {
	background-color: var(--rb);
	color: var(--r);
	max-width: 200px;
	margin: 16px auto 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.nt .but.rd:hover {
	background-color: var(--r);
	color: white;
}
/* Archive/Unarchive person button */
.but.or {
	background-color: rgba(180,130,0,0.12);
	color: #a07800;
	max-width: 200px;
	margin: 16px auto 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.nt .but.or:hover {
	background-color: #a07800;
	color: white;
}

/* Communication tab */
.comm { max-width: 560px; margin: 0 auto; padding: 4px 0 16px; }
.commh { font-size: .75em; font-weight: 700; opacity: .4; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.comms { display: flex; flex-direction: column; gap: 8px; }
.comml { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.commst { font-size: .9em; font-weight: 600; }
.commst.none { opacity: .5; }
.commst.sent { color: var(--a); }
.commresend { font-size: .8em; opacity: .55; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.nt .commresend:hover { opacity: 1; }








/* CONTENT */
#c {
	padding: 84px 19px 19px;
	position: absolute;
  scroll-behavior: smooth;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: auto;
	transition: right .3s, transform .3s, opacity .3s;
}
/*body.cg #c {
	display: grid;
  gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	align-items: start;
}
body.cg #c > div {
	max-width: 700px;
	break-inside: avoid;
}*/




















@media screen and (min-width:769px) {
	body.d #dp {
		width: 30em;
		transform: translate3d(0,0,0);
	}
	body.d #x .a {
		display: none;
	}
	body.d #c, body.d #h {
		right: 30em;
	}
	body.d .srch {
		max-width: calc(100vw - 170px - 30em);
	}
	body.d.n .srch {
		max-width: calc(100vw - 170px - 64px - 30em);
	}
	body.d.n #nm, body.d #ct.p {
		right: calc(30em + 20px);
	}
	#n {
		position: fixed;
		z-index: 12;
		bottom: 0;
		left: 0;
		background-color: white;
		transition: all .3s;
		opacity: 0;
		top: 0;
		padding: 8px;
		transform: translateX(-100%);
	}
	body.n #n {
		transform: translateX(0);
	}
	#n > div {
		position: relative;
		transform: translateY(-50%);
		top: 50%;
	}
	body.n #n {
		opacity: 1;
	}
	#r {
		left: 83px;
	}
	#n a {
		display: block;
		color: inherit;
		padding: 12px 14px 10px;
		opacity: .3;
		position: relative;
		transition: .3s;
		cursor: pointer;
		border-radius: .9em;
		overflow: hidden;
		white-space: nowrap;
	}
	#n a i {
		display: none;
	}
	#n a.a {
		opacity: 1;
		color: var(--a);
		background-color: var(--ab);
	}
	#n a.a i {
		opacity: 1;
		background-color: var(--a);
	}
	#n a svg {
		width: 20px;
		height: 20px;
	}
	#n span {
		display: none;
	}
	.nt #n a:hover {
		opacity: 1;
	}
	body.n #c, body.n #h {
		left: 64px;
	}
	body.d .phr {
		opacity: 0;
	}
}
@media screen and (max-width:768px) {
	body.d #dp {
		width: 100%;
		transform: translate3d(0,0,0);
	}
	body.d #x .x {
		display: none;
	}
	#c {
		overflow-x: hidden;
	}
	body.d #c {
		transform: translate3d(-20%,0,0);
		opacity: .3;
		overflow: hidden;
	}
	body.n #c {
		padding-bottom: 5em;
	}
	.ph #ap div {
		padding: 8px 8px 6px;
	}
	.ph #ap span {
		display: none;
	}
	.ph #ap svg {
		position: relative;
		top: 0;
		left: 0;
	}
	.ph #filter {
		right: 45px;
	}
	.ph .bb {
		right: 87px;
	}
	#plc {
		padding: 0 16px 86px;
	}
	#n {
		position: fixed;
		z-index: 2;
		bottom: 16px;
		left: 50%;
		transform: translate(-50%,140%);
		background-color: rgba(255, 255, 255, 0.7);
		border-radius: 9em;
		border: 1px solid #d4d4d4;
		backdrop-filter: blur(6px);  
		-webkit-backdrop-filter: blur(6px);
		box-shadow: inset 0 1px 2px #ffffff, 0 2px 10px rgba(0, 0, 0, 0.1);
		transition: all .3s;
		opacity: 0;
	}
	body.n #n {
		transform: translate(-50%,0);
		opacity: 1;
	}
	.n6 #n { width: 312px; }
	.n5 #n { width: 260px; }
	.n4 #n { width: 208px; }
	.n3 #n { width: 156px; }
	.n2 #n { width: 104px; }
	.n1 #n { width: 52px; }
	#n a {
		display: inline-block;
		color: inherit;
		padding: 14px 16px;
		float: left;
		opacity: .3;
		position: relative;
		transition: .3s;
		cursor: pointer;
	}
	#n a i {
		position: absolute;
		width: 6px;
		height: 6px;
		background-color: black;
		border-radius: 9em;
		left: 50%;
		transform: translateX(-50%);
		bottom: 9px;
		transition: .3s;
		opacity: 0;
	}
	#n a.a {
		opacity: 1;
		border-radius: 9em;
		color: var(--a);
	}
	#n a.a i {
		opacity: 1;
		background-color: var(--a);
	}
	#n a svg {
		width: 20px;
		height: 20px;
	}
	#n span {
		display: none;
	}
	.nt #n a:hover {
		opacity: 1;
	}
	.cb {
		display: block;
	}
}
@media screen and (min-width:1000px) {
	body.d #dp {
		width: 50em;
		transform: translate3d(0,0,0);
	}
	body.d.n #dp {
		width: 36em;
	}
	body.d #x .a {
		display: none;
	}
	body.d #c, body.d #h {
		right: 50em;
	}
	body.d.n #c, body.d.n #h {
		right: 36em;
	}
	body.d #ct.p {
		right: calc(36em + 19px);
	}
	body.d .srch {
		max-width: calc(100vw - 170px - 50em);
	}
	body.d.n .srch {
		max-width: calc(100vw - 108px - 50em);
	}
	#n {
		width: 144px;
	}
	#r {
		left: 179px;
	}
	.phd, .togw {
		text-align: left;
	}
	.phd .im {
		margin-left: 0;
		text-align: center;
	}
	.phd .l, .phd .f {
		display: inline;
	}
	.phd .l {
		font-size: 1.5em;
		margin-left: 8px;
		opacity: 1;
		font-weight: 900;
	}
	.phd a {
		display: block;
	}
	.iwr {
		position: absolute;
		top: 128px;
		left: 188px;
	}
	.tb, #ptr {
		margin-left: 0;
		max-width: 100%;
	}
	#edith {
		right: auto;
		left: 96px;
	}
	#n a {
		padding-top: 8px;
		padding-bottom: 6px;
		border-radius: 10px;
		margin-top: 4px;
		margin-bottom: 4px;
		position: relative;
	}
	#n span {
		display: inline-block;
		position: relative;
		font-size: .8em;
		padding-left: 8px;
		top: -5px;
		text-transform: capitalize;
	}
	#n a:after {
		content: '';
		display: block;
		width: 6px;
		height: 6px;
		position: absolute;
		right: 6px;
		border-radius: 9em;
		top: 16px;
		transition: all .3s;
	}
	#n a.a:after {
		background-color: var(--a);
		height: 24px;
		top: 6px;
	}
	body.n #c, body.n #h {
		left: 160px;
	}
}
@media screen and (max-width:500px) {
	.togw span {
		display: none;
	}
	.togw svg {
		position: relative;
		left: auto;
		opacity: 1;
		top: auto;
	}
	.togw > div > div {
		position: relative;
		padding-left: 14px;
	}
}
@media screen and (max-width:430px) {
	#sp {
		display: none;
	}
}
@media screen and (max-width:340px) {
	.n6 #n {
		max-width: calc(100vw - 32px);
	}
	.n6 #n a {
		padding-right: 10px;
		padding-left: 10px;
	}
	.n6 #n { width: 240px; }
}

/* ── FILES TABLE ─────────────────────────────────────────── */
#fl-wrap {
	position: absolute;
	top: 130px;
	right: 0;
	left: 0;
	bottom: 0;
	overflow-y: auto;
	padding: 0 16px 16px;
}
.fl-table {
	width: 100%;
	border-collapse: collapse;
}
.fl-table thead th {
	position: sticky;
	top: 0;
	background: var(--bg);
	z-index: 1;
	text-align: left;
	padding: 10px 12px;
	font-size: .75em;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: gray;
	cursor: pointer;
	user-select: none;
	white-space: nowrap;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	transition: color .2s;
}
.nt .fl-table thead th:hover { color: black; }
.fl-table thead th.fl-ac { color: var(--a); }
.fl-table tbody tr {
	border-bottom: 1px solid rgba(0,0,0,0.06);
	transition: background .2s;
}
.nt .fl-table tbody tr:hover { background: white; }
.fl-td {
	padding: 10px 12px;
	vertical-align: middle;
}
.fl-fn-td { min-width: 160px; }
.fl-ico {
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
	color: var(--b);
}
.fl-ico.i { color: var(--c); }
.fl-ico.f { color: var(--a); }
.fl-fn {
	text-decoration: none;
	color: inherit;
	vertical-align: middle;
}
.nt .fl-fn:hover {
	text-decoration: underline;
	color: var(--a);
}
.fl-pname {
	cursor: pointer;
	color: var(--a);
	border-radius: 9em;
	padding: 3px 10px;
	transition: background .2s;
	display: inline-block;
}
.nt .fl-pname:hover { background: var(--ab); }
.fl-acth, .fl-acts {
	width: 84px;
	text-align: right;
	white-space: nowrap;
}
.fl-e, .fl-x {
	cursor: pointer;
	border-radius: 9em;
	padding: 8px 10px 6px;
	transition: all .3s;
	opacity: .5;
	display: inline-block;
}
.nt .fl-e, .nt .fl-x { opacity: 0; }
.nt tr:hover .fl-e, .nt tr:hover .fl-x { opacity: .5; }
.nt .fl-e:hover {
	background: var(--ab);
	color: var(--a);
	opacity: 1;
}
.nt .fl-x:hover {
	background: var(--rb);
	color: var(--r);
	opacity: 1;
}
.fl-arr {
	font-size: .85em;
	margin-left: 3px;
	opacity: .6;
}
.fl-arr.fl-na { opacity: .25; }
/* Checkbox in .ph master header */
#fl-mwrap {
	position: absolute;
	display: inline-block;
	left: 6px;
	top: 13px;
	margin-bottom: 0;
	padding-left: 28px;
	width: 28px;
	height: 28px;
	z-index: 1;
}
#fl-mwrap .checkmark {
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	border-radius: 7px;
}
/* Checkbox column in table */
.fl-cb-th, .fl-cb-td {
	width: 44px;
	padding: 4px 0 4px 12px !important;
}
/* Row-level checkbox label */
.fl-cbr {
	display: inline-block;
	padding-left: 26px;
	margin-bottom: 0;
	width: 26px;
	height: 28px;
	cursor: pointer;
}
.fl-cbr .checkmark {
	top: 2px;
	left: 0;
	height: 20px;
	width: 20px;
	border-radius: 6px;
}
.fl-cbr .checkmark:after {
	left: 7px;
	top: 3px;
	width: 4px;
	height: 9px;
}
/* Selected row tint */
tr.fl-sel td { background: var(--ab); }
/* Bulk action bar (right side of .ph) */
#fl-bulk {
	right: 0;
}
#fl-bulk .bb div {
	display: inline-block;
	padding: 9px 10px 5px;
	cursor: pointer;
	transition: all .3s;
	border-radius: 9em;
}
.nt #fl-bulk .bb div:hover {
	color: black;
	transform: scale(1.1);
}

/* ── INTERVIEW PUBLISHED / UNPUBLISHED BADGES ─────────────── */
.ivpub, .ivunp {
	font-size: .7em;
	font-weight: bold;
	padding: 2px 8px;
	border-radius: 9em;
	margin-left: 8px;
	vertical-align: middle;
	display: inline-block;
	transition: all .3s;
}
.ivpub {
	background: var(--ab);
	color: var(--a);
}
.ivunp {
	background: rgba(255,255,255,.15);
	color: rgba(255,255,255,.7);
}
/* Override .myi li span opacity so badges stay visible */
.myi li .ivpub, .myi li .ivunp { opacity: 1; }
.nt .myi li:hover .ivpub {
	background: rgba(255,255,255,.25);
	color: white;
}
.nt .myi li:hover .ivunp {
	background: rgba(255,255,255,.15);
	color: rgba(255,255,255,.7);
}
/* Candidate list (.ii li) badge */
.ii li .ivpub {
	background: var(--ab);
	color: var(--a);
}
.nt .ii li:hover .ivpub, .ii li.a .ivpub {
	background: var(--a);
	color: white;
}


/* ── INTERVIEW DETAIL VIEW ────────────────────────────────── */
/* Board attendance pills */
.iv-mb-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 18px;
	min-height: 6px;
}
.iv-mb-wrap .iv-mb {
	display: inline-block;
	background-color: var(--ab);
	color: var(--a);
	font-size: 12px;
	padding: 3px 8px;
	border-radius: 9em;
	cursor: pointer;
	transition: all .2s;
}
.nt .iv-mb-wrap .iv-mb:hover {
	transform: scale(1.05);
}
.iv-mb-wrap .iv-mb.a {
	color: white;
	background-color: var(--a);
}
.iv-field-upload {
	position: relative;
	overflow: hidden;
}
.iv-field-upload .iv-field-file {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
#iv-pub {
	position: relative;
	pointer-events: auto !important;
}
#iv-del, #iv-rec {
	position: relative;
	pointer-events: auto !important;
}
.iv-file-but {
	position: relative;
	overflow: hidden;
}
.iv-file-but input[type="file"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
.iv-au-btns #iv-rec {
	position: relative;
	pointer-events: auto !important;
}
.iv-au-btns #iv-aup {
	position: relative;
	display: none;
}
/* Published status banner */
.iv-pub-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0 16px;
	border-bottom: 1px solid var(--br);
	margin-bottom: 18px;
}
.iv-pub-bar #iv-unp-btn {
	margin-left: auto;
	font-size: .8em;
	padding: 5px 14px;
	border-radius: 9em;
	background: rgba(0,0,0,.06);
	color: rgba(0,0,0,.5);
	cursor: pointer;
	border: none;
	transition: background .2s, color .2s;
}
.iv-pub-bar #iv-unp-btn:hover {
	background: rgba(0,0,0,.12);
	color: rgba(0,0,0,.8);
}
/* Private field lock badge */
.iv-priv {
	font-size: .65em;
	font-weight: bold;
	padding: 2px 7px;
	border-radius: 9em;
	background: rgba(0,0,0,.06);
	color: rgba(0,0,0,.4);
	vertical-align: middle;
	margin-left: 6px;
	letter-spacing: .02em;
}
/* Audio section */
.iv-audio {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--br);
}
.iv-audio-hd {
	font-size: .85em;
	font-weight: 600;
	opacity: .5;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.iv-audio-hd svg { opacity: .5; }
.iv-au-status {
	margin-bottom: 16px;
}
.iv-au-meter {
	margin-left: 16px;
	margin-right: 16px;
	overflow: hidden;
	border-radius: 9em;
}
/* Record / Upload button row */
.iv-au-btns {
	display: block;
	margin-bottom: 14px;
	text-align: left;
}
.iv-aul .iv-aur {
	display: block;
	width: 100%;
	background-color: white;
	border-radius: 16px;
	box-shadow: 0 0 .5em #f2f2f2;
	margin-bottom: 10px;
	overflow: hidden;
}
.iv-aul .iv-aur-h {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr) auto 32px;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	box-sizing: border-box;
}
.iv-aur-dur {
	font-size: .78em;
	opacity: .45;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}
.iv-aul .iv-aur .im {
	width: 28px;
	height: 28px;
	border-radius: 9em;
	background: var(--ab);
	color: var(--a);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.iv-aul .iv-aur .im svg { width: 15px; height: 15px; }
.iv-aul .iv-aur .fn {
	font-size: .92em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.iv-aul .iv-aur-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	cursor: pointer;
	opacity: .45;
	transition: .2s;
}
.iv-aul .iv-aur-toggle svg { width: 16px; height: 16px; }
.iv-aul .iv-aur-toggle:hover { opacity: .9; }
.iv-aul .iv-aur.open .iv-aur-toggle svg { transform: rotate(180deg); }
.iv-aul .iv-aur-pane {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease-out;
	padding: 0 12px;
	box-sizing: border-box;
}
.iv-aul .iv-aur.open .iv-aur-pane {
	max-height: 600px;
	padding: 10px 12px;
}
.iv-aul .iv-aur-pane .iv-ract {
	margin-right: 8px;
	margin-bottom: 8px;
}
.iv-aul .iv-aur-pane .la {
	margin-top: 12px;
	margin-bottom: 4px;
	font-size: .75em;
	opacity: .5;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.iv-aul .iv-aur-pane .txt {
	font-size: .85em;
	line-height: 1.5;
	white-space: pre-wrap;
	word-break: break-word;
	max-height: 200px;
	overflow-y: auto;
}
.iv-aul .iv-aur-trans {
	background: #f9f9f9;
	padding: 8px;
	border-radius: 8px;
}
.iv-aul .iv-aur-sum {
	background: #f9f9f9;
	padding: 8px;
	border-radius: 8px;
	white-space: pre-wrap;
}
.iv-aul .iv-aur-tog {
	font-size: .8em;
}
.iv-ract {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 9em;
	cursor: pointer;
	opacity: .45;
	transition: .2s;
}
.iv-ract svg { width: 14px; height: 14px; }
.iv-ract-dl { color: inherit; text-decoration: none; }
.nt .iv-ract:hover { opacity: .9; transform: scale(1.08); }
.nt .iv-aur-toggle:hover { opacity: .9; }
.iv-rec-audio { display: none; }
.iv-rec-tr {
	padding: 10px 0 6px;
	font-size: .9em;
	line-height: 1.5;
}
/* Error message */
.iv-err {
	padding: 24px;
	text-align: center;
	color: rgba(0,0,0,.4);
	font-size: .95em;
}
.tb .pr {
	text-align: center;
}
.priv {
	display: inline-block;
	border-radius: 9em;
	margin-left: 8px;
	padding: 4px 10px;
	font-size: .7em;
	color: var(--a);
	background-color: var(--ab);
}

/* PELL */
.pell {
  padding: 0;
}

.pell-content {
  height: calc(100vh - 20em);
  outline: none;
  border: .2em solid transparent;
  border-radius: .7em;
  display: block;
  padding: .7em 1em;
	overflow: auto;
  margin: 0 0 1em;
  transition: border-color .3s;
  -webkit-touch-callout: auto;
	-webkit-user-select: auto;
	user-select: auto;
}
.pell-content:focus {
  border-color: var(--a);
}
.pell.a .pell-content {
  margin-top: 5.3em;
}
.pell-actionbar {
  transition: background-color .3s;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  padding: 7px 8px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.025);
}
.pell.a .pell-actionbar {
  position: fixed;
  background-color: #f7f7f7;
  border-radius: 0;
  top: 0;
  width: 100%;
  padding-top: 4.6em;
}

.pell-button {
  background-color: transparent;
  color: inherit;
  border: none;
  cursor: pointer;
  outline: 0;
  margin: 0;
  border-radius: 6px;
  transition: background .2s, color .2s;
  height: 28px;
  width: 28px;
  padding: 0;
  font-size: .88em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pell-button > input[type=color] {
	position: absolute;
	left: 0;
	cursor: pointer;
	opacity: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.pell-button svg {
  height: .9em;
  width: .9em;
}
.pell-content li {
  list-style: disc;
}
.pell-content img, .pell-content iframe {
  max-width: 100%;
  height: auto;
  border-radius: .5em;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}
.nt .pell-button:hover {
  background-color: var(--ab);
  color: var(--a);
}
.pell-button-selected {
  background-color: var(--ab);
  color: var(--a);
}



/* DARK MODE */
@media (prefers-color-scheme: dark) {
	body, #h, input:focus {
		background-color: black;
		color: white;
	}
	.iv-aul .iv-aur-trans, .iv-aul .iv-aur-sum {
		background: rgb(0, 0, 0, .2);
	}
	select, input[type]:not(:focus), textarea, #minput, #modal .m select:not(:focus), .tb .checkmark, .tb input:not(:focus), .tb select:not(:focus), .tb textarea:not(:focus) {
		background-color: #3c3c3c;
		border-color: #3c3c3c;
		color: white;
		box-shadow: none;
	}
	select {
		background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, gray, gray);
	}
	#ct, #r, #modal .m {
		background-color: var(--y);
	}
	.set #xc {
		background-color: rgba(255, 255, 255, 0.07);
		color: rgba(255, 255, 255, 0.5);
	}
	.nt .set #xc:hover {
		color: rgba(255, 255, 255, 1);
	}
	.ds > div, .ds > a, #ups a, .nt #ups a:hover, .litem, .adsc, .iv-aul .iv-aur, #tcop.tco.pcourses li, .tco li, .ii {
		background-color: var(--w);
		box-shadow: none;
	}
	.ds .msg {
		border-color: var(--w);
		background-color: var(--w);
	}
	.myi, .myp, .tog, #d, .minput, .minput .mw, #ms li .row .att, #up, #send, #delm, #x div, .cb, .checkmark, #mm li:before, .tb, .ph .bb, .ph #filter {
		background-color: var(--w);
	}
	.nt .container:hover input ~ .checkmark, .m .checkmark, .litem .checkmark {
		background-color: #3a3a3a;
	}
	.ph .bb div, .ph #filter {
		color: #797979;
	}
	.nt .ph .bb div:hover, .nt .ph #filter:hover, .nt .adsc[data-link]:hover {
		color: white;
	}
	#ms .row .r div {
		background-color: #333333;
		border-color: var(--w);
	}
	.minput {
		box-shadow: 0 -26px 10px var(--w);
	}
	.nt .tog > div:hover {
		color: white;
	}
	#modal .m input:focus {
		background-color: black;
		color: white;
	}
	.myi > *:not(:first-child), .st li:not(:first-child) {
	  border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
	.myi li:after {
		box-shadow: -10px 0 20px var(--w),-10px 0 20px var(--w),-10px 0 20px var(--w);
	}
	#msg {
		border-color: #454545;
		color: gray;
	}
	#plc li {
		border-color: var(--w);
	}
	#msg.a, #n a.a span {
		color: white;
	}
	#search {
		background-color: #000000;
		border-color: #454545;
		color: white;
	}
	#pro > div {
		background-color: var(--ab);
	}
	.ds > a:after {
		background-color: var(--w);
		box-shadow: -6px 0 12px var(--w), -6px 0 12px var(--w), -6px 0 12px var(--w);
	}
	.ii li:after {
		background-color: var(--w);
		box-shadow: -10px 0 20px var(--w), -10px 0 20px var(--w), -10px 0 20px var(--w);
}
	.nt .fl-table thead th:hover { color: white; }
	.nt .fl-table tbody tr:hover { background: var(--w); }
}




@media (prefers-color-scheme: dark) and (max-width: 768px) {
  #n {
		background-color: rgba(0, 0, 0, 0.7);
		border: 1px solid #3a3a3a;
		backdrop-filter: blur(6px);  
		-webkit-backdrop-filter: blur(6px);
		box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.26), 0 2px 10px rgba(0, 0, 0, 0.1);
	}
}
@media (prefers-color-scheme: dark) and (min-width: 768px) {
  #n {
		background-color: var(--w);
	}
	#n a.a {
		background-color: var(--a);
		color: white;
	}
}
@media (prefers-color-scheme: dark) and (min-width: 1000px) {
	#n a.a:after {
		background-color: rgba(0, 0, 0, 0.4);
	}
}


/* ── In-app message toast ─────────────────────────────────────── */
#msg-toast {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 9999;
  min-width: 260px;
  max-width: min(420px, calc(100vw - 32px));
  background: white;
  color: black;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), opacity 0.22s ease;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(0,0,0,0.07);
  user-select: none;
  -webkit-user-select: none;
}
#msg-toast.in {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#msg-toast .mt-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--ab);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--a);
  overflow: hidden;
}
#msg-toast .mt-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
#msg-toast .mt-body { flex: 1; min-width: 0; }
#msg-toast .mt-name { font-weight: 600; font-size: .92em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#msg-toast .mt-text { font-size: .85em; opacity: .65; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
#msg-toast .mt-x {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: .75em; opacity: .5; color: black;
}
#msg-toast .mt-x:hover { opacity: 1; }
@media (prefers-color-scheme: dark) {
  #msg-toast {
    background: #2a2a2a;
    color: white;
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
  }
  #msg-toast .mt-x { background: rgba(255,255,255,0.1); color: white; }
}
