@font-face {
  font-family: "condensed";
  src: url('/fonts/Inter-Medium.ttf');
  font-weight: 400;
}
@font-face {
  font-family: "condensedBold";
  src: url('/fonts/Inter-Medium.ttf');
  /* src: url('/fonts/BarlowSemiCondensed-Bold.ttf'); */
}
@font-face {
  font-family: "barlow";
  src: url('/fonts/Inter-Medium.ttf');
  /* src: url('/fonts/BarlowSemiCondensed-Regular.ttf'); */
}
* {
  box-sizing: border-box;
  padding:0;
  margin:0;
  font-size:2rem;

}
html {
  height:100%;
  width:100%;
}
svg {
  pointer-events: none;
}
body {
  flex:1 1 0;
  --bS: 5rem;
  --ghost: hsla(0, 0%, 100%, 0.1);
  --focus: hsla(0, 0%, 100%, 0.1);
  --ghostStronger: hsla(0, 0%, 100%, 0.2);
  --ghostStrongest: hsla(0, 0%, 100%, 0.35);
  --grabber: hsla(0, 0%, 100%, 0.737);
  --debug: 'true';
  --border: .2rem solid rgba(255, 255, 255, 0.189);
  --webby-gradient: linear-gradient(to right, 
  rgb(255, 61, 61), #f3e353, #6bf67b, #5ccef0, #67a0ef, #b567f4);
  --tool: var(--dark);
  --scrollGrabberWidth: 0rem;
  --minPanelWidth: 8rem;
  --button-blur: 5rem;
  --buttonSize: 7rem;
  --buttonPadding:1rem;
  --color: #00ffaa;
  --warning: #ff8f8f;
  /* --accent: rgb(69, 245, 157); */
  --accent: rgba(146, 255, 189, 0.9);
  --accent2: hsl(330, 90%, 62%);
  --cancel: hsl(330, 99%, 68%);
  --cancelHover: hsl(330, 99%, 63%);
  --accent3: #4f54e2;
  --accent3Hover: #5e63ff;
  --avatarImage: url('');
  --accentActive:#a8f4c5;
  --accentHover:#64d690;
  --proceduralTextureSize: 256px;
  --buttonHeight: 7rem;
  --buttonMargin: .5rem;
  --outlineSoft: .1rem solid rgba(255, 255, 255, 0.199);
  --hover: #ffffff1e;
  --dark: #0000003e;
  --darker: #0000005d;
  --darkLess: #00000035;
  --valueGradient: linear-gradient(to right, rgb(0, 0, 0), rgb(255, 254, 253));
  --hueGradient: linear-gradient(to right, rgb(0, 0, 0), rgb(255, 254, 253));
  --shadowSize: 2.5rem;
  /* --uiCol : #58585a; */
  /* --uiCol : rgb(39, 39, 39); */
  /* --uiCol : hsl(240, 5%, 16%); */
  --uiCol : hsl(240, 5%, 20%);
  --uiColLight : hsl(240, 5%, 40%);
  --uiWidth: 60rem;
  --toolButtonFontSize: 5rem;
  --uiColTint: rgb(47, 55, 71,.5);
  --toggled: #eb3d7a;
  --font-inverted: black;
  --font: rgba(255, 255, 255, 0.8);
  --button-transition: 0.2s ease;
  --button-radius: 0.3rem;
  --button-tool-width: 5rem;
  --buttonHighlighted: rgb(100, 255, 188);
  --buttonHighlighted2: rgb(57, 255, 169);
  --button-font-size: 2rem;
  --button-font-size-big: 2rem;
  --font-size-medium: 2rem;
  --font-size-large: 3.5rem;
  --font-size-small: 1.7rem;
  --flexDirection: column;
  --flexDirection2: row;
  --dropdown-color: #525562;
  --submit: #5ff1a3b7;
  --menu-radius: 1.5rem;
  --cssCol: #f2f2f2;
  --canvasCol: #9c9c9c;
  --prevCol: #ffffff6e;
  --saturation: 100%;
  --inventoryGridDirection: ltr;
  --linearGradient: linear-gradient(to top, #6be7c8, #d98ae7, #5addef, #d1c4e9);
  --lightness: 50%;
  --hue: 0;
  --red: 10%;
  --green: 20%;
  --blue: 30%;
  --alpha: 100%;
  --dropShadow: 2rem 2rem 3rem 0rem rgba(0, 0, 0, 0.185);
  --dropShadowDark: 2rem 2rem 3rem 0rem rgba(0, 0, 0, 0.401);
  --dropShadowBig: 2rem 0rem 10rem 5rem rgba(0, 0, 0, 0.688);
  --radiusSmall: .5rem;
  --radiusMedium: 1rem;
  --radiusLarge: 1.5rem;
  --uiSize: 5.5px;
  height: 100%;
  width: 100%;
  position: relative;
  font-size:var(--uiSize);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
  color:rgb(236, 243, 249);
  margin: 0;
  overflow: hidden;
  overscroll-behavior-x: contain;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -webkit-app-region: no-drag;
  touch-action: none;
  user-select: none;

}
button[type=submit] {
  margin-top:1rem;
}
button:hover, .button:hover {
  /* background-color: rgba(255, 255, 255, 0.1); */
  background-color: var(--ghost);
  /* box-shadow: 0 0 0 2px var(--focus-color); */
  border-color: var(--focus-color);
}


.buttonStyle {
  background:var(--dark);
  border-radius:1rem;
  padding:1rem;
  font-size:2rem;
  /* font-weight:500; */
  color:var(--font);
}


.button, button {
  pointer-events: all;
  cursor: pointer;
  /* transition: background-color var(--button-transition), color var(--button-transition), box-shadow var(--button-transition); */
  display: flex;
  flex-direction: column-reverse;
  align-items:left;
  justify-content: center;
  text-align: left;
  min-height: 2rem;
  max-height: 10rem;
  padding:3rem;

  height:8rem;
  background-color: var(--dark);
  border: none;
  margin:.1rem;
  border-radius: .5rem;
  color: var(--font);
  font-size: var(--button-font-size);
  position:relative;
  width:100%;
  padding: 2rem;
  
}
select {
  background:var(--dark);
  color:currentColor;
  border:none;
  border-radius:.5rem;
  font-size:1.85rem;
  pointer-events:all;
  padding-left:.5rem;
  touch-action: auto;
  pointer-events: all;
}

.focusRed:focus {
  outline: 1px solid red !important;
}


select:hover { background:var(--ghost); }
.hoverBorder:hover { box-shadow: inset 0 0 2px #ffffffed; }
.cursorNone { cursor: none; }
.cursorPointer { cursor: pointer !important; }
.cursorDefault { cursor: default !important; }
.hoverGhost:hover { background-color: rgba(255, 255, 255, 0.128) !important; }
.hoverGhost:active { background-color: rgba(255, 255, 255, 0.2) !important; }
.hoverGlow:hover { outline: 1px solid #faf7f755; }
.hoverSolid:hover { background-color: var(--uiColLight); }
.hoverShadow:hover { 
  /* animation: hovering .65s ease-in-out infinite alternate; */

  box-shadow: 0 0 20px #00000055; 
}
.shadowButton {
  box-shadow: 0 0 20px #00000055; 
}
.shadowButton:hover {
  animation: hovering .65s ease-in-out infinite alternate;

  box-shadow: 0 0 20px #00000055; 
}
.button:active { background-color: rgba(255, 255, 255, 0.3) !important; }
button:active { background-color: rgba(255, 255, 255, 0.3) !important; }
.hover:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
}
.selector.hover:hover {
  background-color: rgba(0, 0, 0, 0.3) !important;
}
.hoverSubtle:hover {
  background-color: rgba(0,0,0, 0.1) !important;
}

.hoverGhostStronger:hover {
  background: #ffffff68 !important;
}
.hoverLighter:hover {
  background: hsl(216, 5%, 32%) !important;
}
.hoverAccentGhost:hover {
  background: rgba(0, 255, 13, 0.313);

}
.buttonColor {
  pointer-events: all;
  background-color:var(--dark);
}
.buttonColor:hover {
  background-color:var(--hover);
}
.buttonColorLighter {
  pointer-events: all;
  background-color:var(--ghost);
}
.buttonColorLighter:hover {
  background-color:var(--hover);
}
.buttonColorDarker {
  pointer-events: all;
  background-color:var(--darkLess);
}
.buttonColorDarker:hover {
  background-color:var(--hover);
}
.toolButtonSelected {
  background:red;
}

.selecterOption {
  font-size:2rem;
}
.selecterOption:hover {
  background:var(--hover);
}
.br1 {
  border-radius:.5rem;
}
.br2 {
  border-radius:1rem;
}
.title {
  font-weight: bold;
  align-items: center;
  text-transform: uppercase;
  font-size:3.5rem;
  align-self:center;
  position:relative;
}
.subtitle {
  font-size:2.5rem;
  align-self:center;
  /* position:relative; */
}

*, *::after, *::before {
  /* text-transform: uppercase; */
  /* font-size: var(--button-font-size); */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* box-sizing:border-box; */

}
*:focus {
  outline: none;
}

.sideGrabber {
  position: absolute;
  width: 1rem;
  height: 100%;
  /* background: red; */
  /* z-index: 100; */
  pointer-events: all;
  top:0;
  right:-1rem;
  cursor: ew-resize;
}

.fullBG {
  /* background:red; */
  overflow-y:auto;
  padding-top:4rem;

  pointer-events:all;
  visibility:hidden;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  width:100%;
  height: 100%;
  position:absolute;
}

.message { 
  background:var(--uiCol);
  width:90%;
  position:relative;
  flex-direction: column;
  align-self:center;
  padding:5rem;
  border-radius: 1rem;
  outline:.1rem solid rgba(255, 255, 255, 0.32);
  /* outline:.7rem solid rgba(69, 245, 157,0.8); */
  box-shadow: var(--dropShadow);
}

.layerThumb {
  position:relative;
  border-radius: var(--radiusSmall);
  min-width:7rem;
  min-height:7rem;
  overflow:hidden;
  justify-content: center;

}
.layerHidden {
  opacity:.5;
}
.layerThumbImage {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.dropdown {pointer-events: all !important;}
.panelClass {
  height:max-content;
  padding:.5rem;
  border-radius: 1rem;
  background-color: var(--uiCol);
}
.panel { 
  box-sizing:border-box;
  position:absolute;
  flex-direction: column;
  height:max-content;
  /* width:50rem; */
  padding:1rem;
  gap:.5rem;
  border-radius: 1.5rem;
  background-color: var(--uiCol);
  outline: .25rem solid #ffffff28;
  outline-offset:-.25rem;
  box-shadow: 0 0 4rem 4rem rgba(0, 0, 0, 0.158);
}
.border {
  border: 1rem solid var(--ghostStronger);
  box-sizing:border-box;
}
.borderGradient {
  position: relative;
  background: var(--linearGradient);
}
.originalPrice {
  text-decoration: line-through;
  text-decoration-color: #ffffff84;
  font-size:large;
  text-align: center;
  padding-right:1rem;
  align-self:center;
  margin-top:.51rem;
  color: rgba(253, 253, 253, 0.701);
}
input[type="Toggle"] {
  background:red;
  width:5rem;
  border:none;
  outline:none;
}


input[type="range"] {
  -webkit-appearance: none;
  appearance: none; 
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 15px;
  min-height: 5rem;
  background:transparent;
  /* background: #f06666; */
  /* max-height:1rem; */
}

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none; 
  height: 0;
  width: 0;
  border-radius: 50%;
  border: none;
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
  height: 0;
  width: 0;
  border-radius: 50%;
  border: none;
}
.fill {
  width:100%;
  height:100%;
}
.settingLabel {
  font-size:2.25rem;
  min-width:18rem;
  max-width:18rem;
  padding-left:2rem;
  padding-right:2rem;
  text-align: left;
  text-transform: none;
  opacity:.8;
  line-height:1.3;
}
.grow {
  flex-grow:1;
  height:1rem;
  width:1rem;
}
span {
  font-size:4.5rem;
}
span.sub {
  font-size:2rem;
  align-self: flex-end;
  margin-bottom:.45rem;
  margin-left:.45rem;
}
.borderGradient::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  margin: 1rem;
  border-radius: .5rem;
  background:var(--uiCol);
}


.dragOver {
  background:red;
  outline: 2px dashed var(--accent) !important;
  outline-offset: -2px;

}

.dragoverHighlight {
  opacity:.5;
  outline: 2px dashed var(--accent);
}
.dropTargetBorder {
  outline: 2px dashed #ccc;
  border-radius:.5rem;
  background:rgba(255, 255, 255, 0.042);
}

.swappable::after {
  position:absolute;
  right:1rem;
  background:rgba(0, 0, 0, 0.515);
  outline: 2px dashed var(--accent);

}

.disabled {
  opacity: 0.5;
}
.optionButton {
  color:white;
  pointer-events: all;
  z-index: 500;
}

.flatRight {
  border-top-right-radius:0rem;
  border-bottom-right-radius:0rem;
}
.flatLeft {
  border-top-left-radius:0rem;
  border-bottom-left-radius:0rem;
}
/* @keyframes loading-spin {
  to {
    transform: translate(-50%, -50%) rotate(1turn);
  }
} */

.shadow {
  border-radius: 2rem;
  box-shadow: -1rem 0 8.5rem .5rem #00000030;
}

.debug * {
  outline: 1px solid red;
  box-sizing: border-box;
}

.debug *:hover {
  outline-color: blue;
}

.iconButton {
  font-size:small;
  width: 5rem;
}
.icon {
  width:100%;
  height:100%;
  min-width:5rem;
  min-height:5rem;
  background-size:90%;
  background-position:center;
  background-repeat: no-repeat;
  
}

::-webkit-scrollbar {
  width: var(--scrollGrabberWidth);
}

::-webkit-scrollbar-track {
  background: #ffffff08; 
  pointer-events: none;
  /* background:red; */
}

::-webkit-scrollbar-thumb {
  background: #ffffff36; 
  pointer-events: none;

  border-radius: 6px;
  max-width:1px;
  min-width:1px;
  /* padding:.5rem; */
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.467); /* Color of the thumb on hover */
}



video {
  pointer-events: none;
  background:red;
  /* padding-top:7rem; */
  width:50vw;
  height:min-content;
  position:absolute;
  left:50%;
  top:5rem;
  transform: translate(-50%);
  /* background: rgb(0, 0, 0); */
  border-radius: 1rem;
  box-shadow: 0 5rem 8.5rem .5rem #000000a5;

}

p {
  position:relative;
  list-style: none;
  text-transform: none;
  font-size:var(--font-size-medium);
  font-family: condensed;
  text-align: center;
}
.textContainer {
  position:relative;
  list-style: none;
  font-size:small;
}
ul {
  align-self:center;
  list-style:none;
  margin-bottom:5rem;
  gap:1rem;
  font-size:1.7rem;
  width:max-content;
}
li {
  position:relative;
  left:-4rem;
  line-height:1.5;
  padding-left:4rem;
}
li::before {
  content:""; 
  position:absolute;
  left:0;
  top:-.05rem;
  background-image:url(../common/toolIcons/check.svg);
  background-size: contain;
  width:2.5rem;
  height:2.5rem;
}

br {
  font-size:1.9rem;
}

.link {
  font-size: 2rem;
  text-transform: none;
  text-align: center;
  text-decoration: none;
  font-weight:600;
  line-height:5rem;
  pointer-events: all;
  font-family: condensed;
  cursor: pointer;
  color:rgba(255, 255, 255, 0.659);
  /* color: rgba(255, 255, 255, 0.883); */
}
.link:hover {
  color:white;
  /* text-decoration: underline; */
}
.link2 {
  pointer-events: all;
  color:var(--accent) !important;
  /* padding-left:1.5rem; */
  /* padding-right:1rem; */
  cursor: pointer !important;
}
.link2:hover {
  color:white !important;
  text-decoration: underline;
}
a {
  cursor:pointer;
  font-size: 2rem;
  text-transform: none;
  text-align: center;
  text-decoration: none;
  font-weight:600;
  font-family: condensed;
  line-height:5rem;
  pointer-events: all;
  color: rgba(79, 255, 173, 0.883);
}
a:hover {
  text-decoration: underline;
}
.separater {
  width: 100%;
  height: 0.1rem;
  background-color: #ffffff50;
  margin: 1.3rem 0;
}
.hbox {
  /* width:100%; */
  /* background:red; */
  display: flex;
  flex-direction: row;
  gap: .5rem;
  justify-content: center;
}

.vbox {
  display: flex;
  width: 100%;
  /* height:-content; */
  flex-direction: column;
  /* background-color: green; */
}
.vboxSmall {
  display: flex;
  /* width: 100%; */
  flex-direction: column;
  /* background-color: green; */
  width:min-content;
  gap:.2rem;
}
.vboxSmall > * {
  margin:0;
  width:20rem;
}
.flexbox {
  /* background:red; */
  /* justify-content: center;
  align-items: center; */
  display:flex;
  max-width: 100%;
  flex-wrap: wrap;
  /* gap:.2rem; */

}
.flexbox * {
  /* margin:0rem; */
  /* max-width: calc(100%/5.04); */
  box-sizing: border-box;
  flex: 1 0 19%; /* grow, shrink, basis */
  margin: .1rem;
  /* min-width: calc(100%/5.03); */
}
.gap0 { gap: 0rem; }
.gap { gap: 1rem; }
.gapMd { gap: 2rem; }
.gapSm { gap: .5rem; }
.gapLg { gap: 2.5rem; }
.gap3 { gap: 3rem; }
.gap4 { gap: 4rem; }
.gap5 { gap: 5rem; }
.gap6 { gap: 6rem; }
.gap7 { gap: 7rem; }
.gap8 { gap: 8rem; }
.gap9 { gap: 9rem; }
.gap10 { gap: 10rem; }
.wrap { flex-wrap: wrap; }
.grid {
  display: grid;
  /* background-color: red; */
  width:100%;
  grid-template-columns: repeat(auto-fill, 31rem);
  grid-gap: 1rem;
}
.gridMd {
  display: grid;
  grid-template-columns:repeat(auto-fit,minmax(15rem, 1fr));
  grid-gap: .5rem;
}

.invisible {opacity:0 !important;}


.smoky {
  background: #000000be;

}



.two {
  flex-grow: 1;
  grid-template-columns: repeat(2,1fr);
  /* grid-template-rows: max-content;  */
  grid-auto-flow: row;
}
.fadeIn {
  opacity: 1;
  transition: opacity 0s ease-in, opacity 0.0s ease-out;
}

.fadeOut {
  opacity: 0;
  transition: opacity 0s ease-in, opacity 0.0s ease-out;

}
.colorJitterButton {

width: 250px;
height: 250px;
filter: contrast(100%) saturate(1000%) brightness(110%);
background: 
linear-gradient(0deg, rgba(255, 85, 0, 0), rgba(245, 0, 0, 0)),
url(../common/toolIcons/fractalNoise.svg);
  
}
.marginSm { margin:.5rem; }
.margin { margin:2rem; }
.marginMd { margin:2.5rem; }
.marginLg { margin:3rem; }
.marginsX {
  margin-left:auto;
  margin-right: auto;
}
.marginsY {
  margin-top:auto;
  margin-bottom:auto;
}
.topbarToggle {
  overflow: hidden;
  max-width: 6rem;
  height: 100%;
  aspect-ratio: 1/1;
}


.multiButton:hover {
  background:var(--accent3Hover);
}
.multiButton {
  max-width: 9.9rem;
  min-width:9.9rem !important;
  background:var(--accent3);

  /* margin-right: auto;  */
  padding:.0rem;
}

.grid2 {
  display: grid;
  /* background-color: red; */
  /* width:10rem; */
  grid-template-columns: '1fr 1fr';
  grid-gap: .3rem;
}
.grid2 > * {
  width:100%;
  min-width:0;
  /* margin:0; */
}


.hovering {
  background: var(--ghostStronger);
}
.glowing {
  animation: glowing .75s ease-in-out infinite alternate;
}


.glowingOutline {
  animation: glowingOutlinea .75s ease-in-out infinite alternate;
}




.modal {
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  pointer-events: all; /* Capture all clicks */
}


.selected { outline: .2rem solid #ffffffd1;}
.selectedAccent { outline: .3rem solid var(--accent);}

.selectedSolid {
  background:var(--accent);
  color:var(--font-inverted);
}
.selectedSolid:hover {
  background:var(--accent);
}
.selectedSolid:active {
  background:var(--accentActive);
}
.dropShadow {
  box-shadow: var(--dropShadow);
}
.shadowSm {box-shadow: .5rem .5rem 2rem 0rem #0000003d;}
.shadowLg {box-shadow: 0rem 0rem 20rem 30rem #00000081;}
.buttonWidth {
  width:6rem;
}
.textCentered { text-align: center;}
.textCenteredV {align-items: center;}

.dropShadowShallow {
  box-shadow: .5rem .5rem 2rem 0rem #0000003d;
}
#editUsernameButton {
  max-width:min-content;
}

.modalContent {
  border-radius: 1rem;
  position:absolute;
  gap:2rem;
  left:50%;
  top:50%;
  flex-direction: column;
  transform:translate(-50%,-50%);
  backdrop-filter: blur(10.5rem);
  -webkit-backdrop-filter: blur(6.5rem);
  box-shadow: 0 5rem 100rem 15rem #0000009e;
  border: .2rem solid rgb(95, 95, 95);
  min-width: 30rem;
  width:min-content;
  height:min-content;
  max-width:80%;
  padding:8rem;
}
.sizeMode {
  border:.2rem solid rgba(0, 0, 0, 0.978) !important;
  outline:.2rem solid rgba(255, 255, 255, 0.781) !important;
}

.errorText {
  color: rgb(255, 100, 100);
  font-size: 2.2rem;
  text-transform: none;
  min-height:0;
}
.opaque {
  opacity: 1;
}
.transparent {
  opacity: 0;
}

.restoreButton {
  background: rgba(1, 1, 1, 0.453);
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  overflow:hidden;
}
.restoreButton:hover {
  background:rgba(0, 216, 0, 0.735);
  color:black;
}

@keyframes flyIn {
  0% {
    transform:  rotateZ(-30deg) scale(.1);
  }
}
@keyframes glowing {
  0% {
    opacity: 1;
    /* outline-color:hsl(0, 0%, 100%) */
  }
  100% {
    opacity:.2;
    /* outline-color:hsl(0, 0%, 60%) */
  }
} 
@keyframes glowingOutline {
  0% {
    outline-color:hsl(0, 0%, 100%)
  }
  100% {
    outline-color:hsl(0, 0%, 60%)
  }
} 
@keyframes hovering {
  0% {
    box-shadow: 0 .5rem 2.1rem .1rem #00000067;
    transform: translateY(0);
  }
  100% {
    box-shadow: 0 0rem 0rem .1rem #00000067;
    transform: translateY(.5rem);
  }
} 

#asdfgh {
  display:flex;
  position:relative;
  align-items:center;
  justify-content:center;
  /* z-index: -1; */
  /* flex:1.5; */
  pointer-events:none;
  /* width:100%; */
  height:100%;
  /* margin-left:5rem; */
  /* background:rgba(255, 166, 0, 0.236); */
}


.centeredAbsolute {
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  position:absolute;
}
.centeredAbsoluteH {
  left:50%;
  transform: translate(-50%, 0%);
  position:absolute;
}
.rightAbsolute {
  top:0%;
  transform: translate(-100%, 0%);
  position:absolute;
}
#pageBG {
  position:absolute;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow-y:auto;
  background-color: #00000050;
}
.page {
  position:absolute;
  flex-direction: column;
}

#emailVerification {
  font-size:3.5rem;
  font-weight:600;
  padding:7rem;
  gap:4rem;
  background-color: #0000001b;
  border-radius:1rem;
  text-align: center;
}
#emailVerification::after {
  font-size:3.5rem;
  font-weight:600;
  padding:5rem;
  border-radius:7rem;
  text-align: center;

}
#loginUI {
  cursor:default;
  display:flex;
  width:100%;
  height:100%;
  align-items:center;
  justify-content:center;
  position:absolute;
  /* background:red; */
  pointer-events:all;
  
}
#loginForm {
  display:flex;
  border-radius:1rem;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  position:absolute;
  flex:1;
  top: calc(min(5%, 20rem));
  padding:5rem;
}
.addButton {
  opacity:.8;
  border:.2rem solid rgba(255, 255, 255, 0.237);
  outline-offset:-.2rem;
}
.events {
  pointer-events:all;
}
.horizontal-layout {
  background-color: #5ff197;
  flex-direction: row;
}
.vertical-layout {
  flex-direction: column;
}

button.highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(111, 92, 92);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  display: flex;
  flex: 1;
  background-color: #5ff197;
}
h1 {
  font-weight: 600;
  font-family: condensedBold;
  font-size: 6rem;
  text-align: center;
}

h2 {
  text-align: center;
  font-size: 3rem;
  /* align-self:center; */
  /* width:100%;   */
  font-weight: 500;
  /* background:red; */
  margin:2rem;
  padding:0;
}
img {
  opacity:85%;
  pointer-events: none;
  justify-content: center;
  align-items: center;
}

div {
  display: flex;
  pointer-events:none;
  -webkit-touch-callout: none;

}

label {
  font-size: 2rem;
  display:flex;
  align-self: flex-start;
}



nav {
  position: relative;
  outline: none;
  flex-wrap: wrap;
  display: flex;
  justify-items: center;
  flex-direction: column;
}


.menuLabel{
  pointer-events:none;
  font-size: var(--button-font-size);
  min-height: 2em;
  margin-bottom:1rem;
  align-items: center;
  z-index:1;
}
.hideIcon {
  background: red;
}

.inventory {
  position: absolute;
  bottom: 100%;
  width: 100%;
  display:flex;
  background: var(--uiCol);
  padding: 0;
  margin: 0;
}

.pinButton {
  /* background:rgba(255, 255, 255, 0.182); */
  position: absolute;
  border-radius: 50%;
  top: 6.3rem;
  right: 1.3rem;
  /* outline:2rem solid rgba(255, 255, 255, 0.1); */
  width:3.5rem;
  height:3.5rem;
  background-image: url(../common/toolIcons/pin.svg);
  background-size: contain;
  font-size: 2rem;
  line-height: 3.5rem;
  justify-content: center;
}

.closeButton {
  opacity:.8;
  background-color:var(--ghost);
  background-image: url(../common/toolIcons/close.svg);
  pointer-events: all;
  border-radius:10rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  min-height:7rem;
  min-width:7rem;
  max-height:7rem;
  max-width:7rem;
  /* margin:1rem; */
  /* z-index: 1; */
  /* background-color:blue; */
}
.closeButton.absoluteRight {
  margin-top:-.5rem;
}

.closeButton:hover {
  opacity:.6;
  /* background-color: var(--ghost); */
}

.closeButtonSmall {
  min-width: 2rem;
  min-height:2rem;
  top: 0.2rem;
  right: 0.2rem;
}

.closeButtonCircle {
  cursor:default;
  pointer-events:all;
  justify-content:center;
  align-items:center;
  border-radius:2rem;
  min-height:4rem;
  min-width:4rem;
  /* background:red; */
  position:relative;
}



.wide {
  width: 100%;
}
.tall {
  height: 100%;
}
.clicked {
  background-color: #5ff197;
}
.uiMenuMenuContents {
  background-color: red;
  width:100%;
  height:100%;
}
.checkmark {
  box-sizing: border-box;
  background-image: url(../common/toolIcons/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width:5rem;
  height:3.8rem;
  margin:.3rem;
  /* background-color:red; */
}
table { 
  border: 1px solid #ddd;
  border-collapse: separate;
  border-radius: 4px;
  border-spacing: 0px;
  /* padding:2rem; */
}
thead {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit;
  border-collapse: separate;
}
tr {
  display: table-row;
  vertical-align: inherit;
  /* border-color: inherit; */
  border: 1px solid #ddd; 
}
th, td {
  padding: 5px 4px 6px 4px; 
  text-align: left;
  vertical-align: top;
  /* border-left: 1px solid #ddd;    */
  border: 1px solid #ddd; 
}
td {
  border: 1px solid #ddd;    
}
thead:first-child tr:first-child th:first-child, tbody:first-child tr:first-child td:first-child {
  border-radius: 4px 0 0 0;
}
thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}
.PeriodSelecter {
  /* position:relative; */
  pointer-events:all;
  gap:2rem;
  /* background:var(--uiCol); */
  border-radius: 1rem;
  padding:1rem;
  min-width:max-content;

  
}

.PeriodSelecter > * {
  font-size:2.1rem;
  pointer-events: all;
  touch-action: all;
  border-radius: .75rem;
  flex-direction:row;
  width:max-content;
}
.PeriodSelecter .selected {
  background:rgba(0, 0, 0, 0.366);
}
.table {
  outline: 1px solid #ddd;
  border-radius: 1rem;
  flex-direction: column;
  width:120rem;
  color: rgba(255, 255, 255, 0.843);
  height:max-content;

}
.table-column {
  /* box-sizing: border-box; */

  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  align-items: center;
  /* justify-content: center; */
  width: 100%;
  height: 100%;
  padding: 1rem;
  border-radius: 1rem;
  height:calc(max-content - 4rem);
}

.table-cell {
  min-height:3.5rem;
  max-height:3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size:2rem;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  border:.5px solid rgba(255, 255, 255, 0.375);

}

.input { pointer-events:all;cursor:default; }
.noInput { pointer-events:none; }
.inputBlocker {
  position:fixed;
  cursor: default;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0, 0, 0, 0.518);
  z-index: 1;
}
.uiMenu {
  transition: opacity 3s ease-in-out;
  display:flex; 
  /* position:relative; */
  position:absolute;
  border-radius: 1rem;
  flex-direction:column;
  /* background:rgba(0, 0, 0, 0.215); */
  height: min-content;
  max-height:min-content;
  width: 100%;
  max-width: min(60rem, calc(100% - 12rem));
  padding: 2rem;
  
  align-items: center;
  align-self:center;

}


.transformHandle {
  border-radius:100rem;
  background:rgb(160, 160, 160);
}
.transformHandle:hover {
  background:rgb(255, 255, 255);

}
.rainbowGradient {
  background: linear-gradient(to right, 
  hsl(0, 100%, 50%),  /* Red */
  hsl(60, 100%, 50%), /* Yellow */
  hsl(120, 100%, 50%), /* Green */
  hsl(180, 100%, 50%), /* Cyan */
  hsl(240, 100%, 50%), /* Blue */
  hsl(300, 100%, 50%), /* Magenta */
  hsl(360, 100%, 50%) /* Red */
);
}
.valueGradient {
  background: linear-gradient(to top, rgb(0, 0, 0), rgb(255, 254, 253));
}

@media (min-width: 50rem) {
  #galleryGrid {
    /* grid-template-columns: repeat(auto-fit, max(25rem)); */
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 90rem) {
  #galleryGrid {
    /* grid-template-columns: repeat(auto-fit, max(25rem)); */
    grid-template-columns: repeat(7, 1fr);
  }
}

.popup {
  background:var(--uiCol);
  border-radius: 1rem;
  flex-direction: column;
  font-size: medium;
  position:absolute;
  left:50%;
  top:50%;
  gap:2rem;
  transform:translate(-50%, -50%);
  width:max-content;
  height:max-content;
  padding:5rem;
}

.primary {
  background:var(--accent);
  color:var(--font-inverted);
  /* font-size:2.2rem;
  padding:4.5rem; */
}
.primary:hover {
  background:var(--accentHover);
}
.pageUI {
  position:relative;
  width:100%;
  height:100%;
  display:flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  padding:7rem;
  box-sizing: border-box;
  overflow-y:auto;
  gap: 2rem;
  font-size:2.5rem;
  /* background-color: var(--uiCol); */
  /* box-shadow: var(--dropShadowBig); */
  /* backdrop-filter: blur(5rem); */

}


.layerThumb.lockAlpha::after {
  content: '';
  background: url('../common/toolIcons/lock.svg') center/contain no-repeat;
  width: 30%;
  height: 30%;
  display: block;
  position: absolute;
  padding:.5rem;
  right: 0;
  bottom: 0;
}

.hidden {
  /* transition: background-color 2s, min-height 2s ease-in-out, height 2s ease-in-out !important; */
  height:0rem;
  min-height:0rem;
  visibility: hidden !important;
  display:none !important;
}

.noDisplay {
  display:none;
}



.playButton {
  position: absolute;
  /* right: -2rem;
  bottom: -2rem; */
  border-radius:50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding:0;
  margin:0;
  width: 6.5rem;
  min-height: 6.5rem;
  background: url('../common/toolIcons/play.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: .15rem center; 
  opacity:.6;
  background-color: rgba(0, 0, 0, 0.735);
  
}

.playButton:focus,
.playButton:hover {
  background-color: rgba(0, 0, 0, 0.235);
  /* background-color: transparent; */
  opacity: 1;
  filter: contrast(0) sepia(100%) hue-rotate(116deg) brightness(1.4) saturate(0.88);
}

.deleteButton { 
  background-color:rgba(255, 0, 93, 0.812);
  /* color:#ffffffe2; */
  position:absolute;
  right:.5rem;
  top:.5rem;
  width:6.5rem;
  height:6.5rem;
  border-radius: .75rem;
  margin:1rem;
  
  background-size: 80%;
  background-position: center;
  background-image: url(../common/toolIcons/trash.svg);
  /* filter: brightness(0%) invert(100%); */
}
.deleteButton:hover {
  background-color:rgb(255, 98, 156);
}


input {
  min-height:9rem;
  transition: background-color var(--button-transition), color var(--button-transition), box-shadow var(--button-transition);
  -webkit-user-select: text;
  user-select:text;
  display: flex;
  background:red;
  text-transform: none;
  justify-content: center;
  text-align: start;
  line-height:1.5rem;
  vertical-align: middle;
  padding:2rem;
  pointer-events: all;
  cursor: text;
  /* min-height: 5.5rem; */
  /* max-height: 5.5rem; */
  flex:1;
  flex-grow: 1;
  padding-left: 2rem;
  background-color: var(--dark);
  
  border: none;
  margin:.1rem;
  border-radius:1rem;
  color: rgba(255, 255, 255, 0.728);
  outline: rgba(255, 255, 255, 0.441) solid .3rem;
  outline-offset: -.3rem;
  font-size: 2.5rem;
  font-weight: 300;
  /* z-index: 10; */
  border-color: var(--focus-color);
}

.radioCircle {
  min-width:2rem;
  min-height:2rem;
  margin-right:1rem;
  border-radius:100%;
  background:var(--accentHover);
}

input::placeholder {
  color:rgb(255, 255, 255, .6);
  opacity:.7;
  pointer-events: none;
}
input[type=tel] {
  text-align: center;
  padding-left:0rem;

}
input:focus {
  outline: 2px solid var(--accent);
}
input::selection {
  background-color: rgba(250, 250, 250, 0.138);
  color: rgba(255, 255, 255, 0.962);
}
input[type=number] {
  text-align: center;
  padding-left:.5rem;

}

.noBg {
  background:none;
}
button:active, .button:active {
  /* background-color: var(--ghostStronger); */
  /* color: var(--font-inverted); */
  box-shadow: 0 0 0 2px var(--focus-color);
  border-color: var(--focus-color);
}

.toolTexture {
  background-color:rgba(0, 0, 0, 0.205);
  border-color:red;
  max-height:6rem;
  flex-direction:column-reverse;
  transition: borderColor, 0.1s ease-in-out;
}
#toolTexturesInventory {
  display: grid;
  width:100%;
  grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr));
  grid-template-rows: repeat(auto-fit, minmax(6rem, 1fr));
  background-color:rgba(0, 0, 0, 0.205);
}
.inventoryGrid {
  gap:0px;
  display:grid;
}

.inventorySlot {
  overflow: hidden;
  box-sizing:border-box;
  margin:.8px;
  background:rgba(0, 0, 0, 0.181);
  border-radius:.4rem;
}
/* .toolButtonb {
  max-height:5rem;
  min-width:1rem;

  display: 'flex';
  align-items: 'flex-start';
  justify-content: 'center';
  font-family: condensed;
  order: 1;
} */
.rotateBG {
  pointer-events:all;
  background:var(--dark);
  /* width:6rem;
  height:6rem; */
  /* box-sizing: border-box; */
  margin:.1rem;
  border-radius: .6rem;
  align-items: center;
  justify-content: center;
}
.rotateControl {
  box-sizing: border-box;
  pointer-events: all;
  /* background:blue; */
  border: .5rem solid var(--grabber);
  border-radius: 50%;
  width: 5.5rem;
  height: 5.5rem;
}
.rotateControl .div {
  pointer-events: none;

  background:blue;
  border-radius: 50%;
  width: 5.5rem;
  height: 5.5rem;

}
.inventoryGridb {
  position: relative;
  /* background:red; */
  pointer-events:all;
  width:100%;
  display: grid;
  grid-auto-flow: dense;
  direction: 'rtl';
  direction: var(--inventoryGridDirection);
}
.proceduralTexture {
  /* width:256px; */
  /* height:256px; */
  max-height: var(--proceduralTextureSize);
  min-height: var(--proceduralTextureSize);
  min-width: var(--proceduralTextureSize);
  max-width: var(--proceduralTextureSize);
  background:red;
}

.expand {
  width:100%;
  height:100%;
}

#toolBarContainer {
  width:100%;
  /* height: 100%; */
  position:relative;
  box-sizing:border-box;
  pointer-events: all;
  background:rgb(164, 150, 173);
}
/* .crossThrough {
  width:100%;
  height:.1rem;
  background:red;
  position:relative;
} */
.toolsGrid {

  pointer-events: all;
  width:100%;
  display:grid;
  padding:0;
  box-sizing: border-box;
  grid-template-columns:repeat(auto-fit,minmax(8rem, 1fr));
}

#toolsInventory {
  position:absolute;
  display: 'flex';

  /* min-height:5rem; */
  min-height: 50rem;
  min-width:50rem;
  width:100%;
  height:100%;
  /* background:rgba(247, 247, 247, 0.059); */
  margin-top:2rem;
  border-radius:1rem;
  outline:2px solid rgba(254, 254, 254, 0.144);
  /* transition: height 2s !important; */
  /* background-color:rgba(255, 166, 0, 0.856); */
}




.buttonLabel{
  /* background:red; */
  pointer-events:none;
  font-size:1.7rem;
  min-height: 4rem;
  align-items: center;
}
.col { flex-direction:column; }
.colReverse { flex-direction:column-reverse; }
.overflowHidden { overflow: hidden; }
.row { flex-direction:row; }
.rowReverse { flex-direction:row-reverse; }
.noWrap {flex-wrap:nowrap;white-space: nowrap;}

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

#slidersz {
  flex-grow:1.75;
}
#paintUI {
  position:relative;
  pointer-events:none;
  gap:.3rem;
  box-sizing: border-box;
  width:var(--uiWidth);
  display: flex;
  touch-action: none;
  flex-direction: column;
}
.colorSliders {
  display:flex;
  flex-direction:column;
  gap:.2rem;
  width:100%;
  min-height:18rem;
}
.grabberCircle {
  width:3rem;
  height:3rem;
  border-radius:100%;
  background:var(--grabber);
  pointer-events:none;

}
.grabberHighVis {
  width:.7rem;
  height:100%;
  /* min-height:2rem;
  min-width:2rem; */
  background:rgb(255, 255, 255);
  outline: 1px solid rgba(0, 0, 0, 0.8);
  outline-offset: -1px;
  border-radius:1rem;
}
#toolsAndColors {
  /* background:purple; */
  flex-direction:column;
  gap:.5rem;
  width:auto;
  height:100%;
  flex-grow:1.5;
  min-height:max-content;
  overflow: none;
  transition: transform .2s ease-in-out;
  /* transform-origin: top right;
  transform: scale(1); */
}
#toolsAndColors.minimize {
  /* visibility: hidden; */
  transform: scale(0);
}

#colorControls {
  position:relative;
  flex-direction: column;
  gap:1rem;
  width:auto;
  /* height:100%; */
  /* min-height:max-content; */
  /* height:100rem; */
  /* width:4rem; */
  /* width:70rem; */
  background:rgba(178, 91, 91, 0.636);
}

.fontMid {
  font-size:2rem;
}

.toolButton:last-child {
  order: 0;
}

.component {
  /* background:red; */
  width: 100%;
  height: 100%;
}
.angleControl {
  pointer-events:all;
  position:relative;
  min-width:15rem;
  min-height:15rem;
  justify-self: center;
  align-self:center;
  background:red !important;
  z-index: 1;
}
.angleControl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 1px solid var(--grabber);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.prevColor {
  background: var(--prevCol) !important;
}



.card-tall {
  grid-row: span 2 / auto;
}

.card-wide {
  grid-column: span 2 / auto;
}

.buttonIcon {
  align-items:center;
  justify-content: center;
  height:4rem;
  pointer-events: none;
  filter: invert(100%);
}
.transformControl {
  /* background:red; */
  width:12rem;
  min-height:10rem;
  padding-bottom:3rem;
}
.transformControl img {
  pointer-events:none;
  padding:1rem;
  min-height:7rem;
  /* min-height:7rem; */
}
.expandIcon {
  /* background:red; */
  width:4rem;
  height:4rem;
  background-image: url('../common/toolIcons/down.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin:.7rem;
}



.dot {
  width: 10rem;
  position:absolute;
  border-radius:100%;
  height:10rem;
  /* background-color: rgb(255, 255, 255); */
  pointer-events: none;
}
.toggleButton,
.toggleButton:focus {
  background-color: var(--tool);
}
.toggleButton.toggled,
.toggleButton.toggled:focus {
  background-color: var(--toggled);
}



.hotkey {
  position: relative;
  padding: .5rem;
  border-radius: .5rem;
  margin: .5rem;
  width: 10rem;
  pointer-events: none;
  
}

.hotkeyAction {
  width:50%;
  background-color: transparent;
  padding: .5rem;
  border-radius: .5rem;
  margin: .5rem;
  pointer-events: none;
  /* background:red; */
  font-family: condensed;
  color: font;

}



.sliderGrabber {
  pointer-events: all;
  position: absolute;
  bottom: 50%;
  box-sizing:border-box;
  right: 0%;
  transform: translate(50%, 50%);
  background: rgb(189, 189, 189);
  /* background:red; */
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  transition: width .1s, height .1s;  

}

.sliderGrabber::before {
  content: "";
  pointer-events: all;
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  pointer-events: none;
  /* background-color: red; */
}

pre {

  flex-direction: row;
}
.touchScroll {
  /* -webkit-overflow-scrolling: touch; */
  /* overflow-y: auto; */
}
li.customBullets {
  list-style: none;
  padding-left: 0;
}

li.customBullets::before {
  content: "✓";
  color: rgb(0, 194, 0);
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

.gridFade {
  background-image:url('../common/toolIcons/fadedGrid.svg');
  background-size:cover;
  background-position:center;
}
.lineV {
  width:1px;
  height:100%;
  background:rgba(255, 255, 255, 0.409);
}
.lineH {
  width:100%;
  height:1px;
  background:rgba(255, 255, 255, 0.409);
}

.spacerFill { flex-grow:1; }


.line {
  width:26rem;
  max-height:.1rem;
  background:rgba(255, 255, 255, 0.256);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.crossThrough {
  width:100%;
  height:100%;
  position: absolute;
  /* display: inline-block; */
}
.crossThrough::before {
  content: '';
  position: absolute;
  top: 40%;
  left: -10%;
  /* right: 0;
  bottom: 0; */
  /* opacity:0; */
  background: rgba(255, 255, 255, 0.618); /* Line color */
  height: 1px; /* Line thickness */
  width: 120%;
  transform: rotate(20deg);
  transform-origin: center;
}
.enlarge {
  transition: transform .08s ease-in-out;
  transform:translate(-50%,-50%) scale(1.5) !important;
  transform-origin: center !important;
}

.sliderBg {
  min-height: 6rem;
  width: 100%;
  position:relative;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  pointer-events: all;
  /* background:red; */
}

.sliderTrack {
  align-self: center;
  border-radius: 3rem;
  background-color: #00000068;
  height: 1rem;
  width: 100%;
  display:flex;
  pointer-events: none;
}
.sliderTrackProgress {
  position:relative;
  border-radius: 3rem;
  height: 100%;
  display:flex;
  background:var(--ghostStronger);
}
.settingsContainer {
  pointer-events: none;
  flex-direction: column;
  background:none;
}
#label {
  position:absolute;
  font-size: 1.7rem;
}

.polygonPoint {
  box-sizing: border-box;
  position:absolute;
  background:red;
  outline: 2px solid hsl(0, 0%, 100%);
  border-radius: 2rem;
  min-width: 1.5rem;
  min-height:1.5rem;
  transform: translate(-50%, -50%);
}
.highlightOutline {
  /* padding:5rem; */
  border: .15rem solid rgba(255, 255, 255, 0.122);
}
.pref {
  justify-self:flex-end;
  padding:0rem;
  min-height:1rem;
  max-width:10rem;
}
.priceDisplayYearly {
  /* background:red; */
  font-size:2.5rem;
  /* place-items: center; */
  text-align: center;
  align-content: center;
  justify-content: center;
  padding:1rem;
  /* align-items: ; */
}
.popover {
  z-index: 100;
  background: var(--uiCol);
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  gap:.5rem;
  border-radius: 1rem;
  width: calc(max-content + 2rem);
  height: max-content;
  padding:1rem;
  box-sizing: border-box;
  box-shadow: var(--dropShadowDark);
}
#popoverBG {
  pointer-events: all;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* background: rgba(0, 0, 0, 0.768); */
  z-index: 1; /* Below popover but above other content */
}
.dragging {
  opacity:.5;
  /* transition: transform 0.1s ease-in-out; */
}
.dragClone {
  /* transform:scale(1.1); */
  z-index: 100;
  /* padding:5rem; */
  /* min-width:min-content; */

  /* outline: .5rem solid var(--accent); */
  box-shadow: var(--dropShadowDark) !important;

}

.confirm {
  background-color: var(--accent);
  color: var(--font-inverted);
  font-size: var(--font-size-medium);
  padding:3.5rem;
  font-size:1.8rem;
  align-self:center;
  font-weight:400;
}
.confirm:hover {
  background-color: var(--accentHover);
  /* box-shadow: var(--dropShadow); */
}
.confirm:active {
  
  background-color: var(--accentActive);
  /* box-shadow: var(--dropShadow); */
}
.messageText {
  /* color: var(--font-inverted); */
  font-size: 2rem;
  text-align:left;
  padding-top:3rem;
  padding-bottom:3rem;
  text-transform: uppercase;
  /* background:red; */
  font-weight:300;
}
.cancelColor {
  background: rgba(248, 80, 184, 0.877);
}
.cancel {
  background: var(--cancel);
  color: var(--font-inverted);
  font-size: var(--font-size-medium);
  padding:3.5rem;
  font-size:1.8rem;
  /* max-width:50rem; */
  align-self:center;
  font-weight:400;
/* font-size:x-large; */
}
.cancel:hover {
  background: var(--cancelHover);
}
.readableText {
  font-family:sans-serif; 

}

.centeredH {
  transform: translateX(50%);
  font-size:10rem;
  outline:red solid 1rem;
  /* align-items: center; */
}
.centered {
  align-items: center;
}
.centeredX {
  left: 50%;
  transform: translateX(-50%);
}

.cText {
  text-align: center !important;
}
.fXs { font-size:1rem; }
.fSm { font-size:1.5rem; }
.fMd { font-size:2rem; }
.fLg { font-size:2.25rem; }
.fXl { font-size:4rem; }
.fXXl { font-size:5rem; }
.bold { font-weight:600; }
.f0 { font-size:1rem; }
.f1 { font-size:1.5rem; }
.f2 { font-size:2rem; }
.f3 { font-size:2.25rem; }
.f4 { font-size:3rem; }
.f5 { font-size:4rem; }
.cA {justify-content: center;}
.cJ {align-items: center;}
.cAll {justify-content: center; align-items: center;}
.cJs {align-self: center;}
.cA {text-align:center;}
.cAs {justify-self:center;}
.cSelf {align-self:center; justify-self:center; justify-items: center;}

.c {align-items:center; justify-content:center;}



.pricingSelecter { 
  background:var(--uiCol);
  width:90%;
  min-width:50rem;
  position:relative;
  flex-direction: row;
  align-self:center;
  gap:1rem;
  padding:1rem;
  border-radius: 1rem;
  outline:.1rem solid rgba(245, 55, 55, 0.32);
  /* outline:.7rem solid rgba(69, 245, 157,0.8); */
  box-shadow: var(--dropShadow);
}
.pricingSelecter button {
  flex:1;
}

.blurry {
  backdrop-filter: blur(10rem);
  -webkit-backdrop-filter: blur(10rem);
}
.blurryLow {
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
}
.blurryMd {
  backdrop-filter: blur(6rem);
  -webkit-backdrop-filter: blur(6rem);
}
.buttonSize {
  min-height:6rem;
  min-width:6rem;
  border: none;
  margin:.1rem;
}
.circleSize {
  min-height:7rem;
  min-width:7rem;
  max-height:7rem;
  max-width:7rem;
}
.autosaveItem {
  box-sizing: border-box;
  padding:0rem;
  margin:0rem;
  height: 8rem;
}
.conflictItem {
  background:var(--dark);
  flex-direction: column;
  margin:1rem;
  border-radius: 1rem;
  min-height:45rem;
  max-height:90rem;
  max-width:25rem;

}
.conflictThumbnail {
  background:var(--canvasCol);
  border-radius:.5rem;
  overflow:hidden;
}


.loadingStatic::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 10rem;
  height: 10rem;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  border: .4rem solid rgba(255, 255, 255, 0.664);
  border-top-color: rgba(255, 255, 255, 1);
  /* animation: loading-spin 1s linear infinite; */
}
.loadingLg::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20rem;
  height: 20rem;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  border: .6rem solid rgba(255, 255, 255, 0.664);
  border-top-color: rgba(255, 255, 255, 1);
  animation: loading-spin 1s linear infinite;
}

.loadingSm::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 5rem;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  border: .4rem solid rgba(255, 255, 255, 0.664);
  border-top-color: rgba(255, 255, 255, 1);
  animation: loading-spin 1s linear infinite;
}
.loadingXs::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  border: .4rem solid rgba(255, 255, 255, 0.664);
  border-top-color: rgba(255, 255, 255, 1);
  animation: loading-spin 1s linear infinite;
}
.bg {
  background: var(--uiCol);
}

.left {
  justify-content: flex-start;
}

.resetButton {
  width:3rem;
  height:3rem;
  background:var(--dark);
}

.resetButton:hover {
  background:rgba(254, 254, 254, 0.167);
}
.resetButton:active {
  background:var(--accent);
}

.show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.1s ease-in-out; /* Fade in transition */
}
.hide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1.5s, opacity 0.5s ease-in-out; /* Fade out transition */
}

.fadeOut {
  opacity: 0 !important;
  /* outline: 2px solid green; */
  transition: opacity 0.5s ease-in-out; 
}

.menuTopBar {
  height:5rem;
  align-items: center;
  gap:1rem;
  justify-items: center;
  justify-content: center;
  position:relative;
  /* background:red; */
}

.menuTopBar .optionsButton {
  right:0%;
  position:relative; 
  height:min-content;
  width:min-content;
}
.svgIcon {
  stroke: red; /* Change the stroke color */
}
.topGrabber {
  position:absolute;
  left:50%;
  top:44%;
  transform:translate(-50%,-50%);
  height:1.5rem;
  width:10rem;
  background:var(--ghost);
  border-radius:1rem;
}
.optionsButtonMinimal {
  position:relative;
  margin-left:auto;
  right:0;
  min-width:6rem;
  height:100%;
  width:4rem;
  opacity:0.7;
  background:'transparent';
  background-color:'transparent';
  border-radius: 1rem;
  pointer-events: all;
  background-image: url('../common/toolIcons/hamburger.svg');
  background-position:center;
  background-repeat: no-repeat;
  background-size: contain;


}

.optionsButtonMinimal:hover {
  background-color:var(--hover);
}
.miniControls > * {
  pointer-events:all;
  cursor:pointer;
}

.optionsButton {
  position:absolute;
  right:0;
  top:0;
  min-width:3rem;
  min-height:3rem;
  background:'transparent';
  background-color:'transparent';
  border-radius: .5rem;
  padding:1rem;
  margin:1rem;
  pointer-events: all;
  background-image: url('../common/toolIcons/hamburger.svg');
  /* opacity:.7; */
  background-size: contain;
}
.optionsButton:hover { background-color:var(--hover); }

.topRight {
  position:absolute;
  right:0;
  top:0;
}

.noPadding { padding:0; }

.container {
  box-sizing:border-box;
  position:relative;
  width:100%;
  flex-direction:column;
  justify-items: start;
  background:var(--dark);
  padding:.5rem;
  border-radius: .5rem;
  /* font-size:2.5rem; */
}

.noInputWhileDrawing {
  pointer-events: none !important;
  touch-action: none !important;
}

.collapseButton{
  position:absolute;
  right:0rem;
  top:0rem;
  width:5rem;
  height:5rem;
  background:var(--dark);
  border-radius: 100%;
  padding:1rem;
  margin:1rem;
  pointer-events: all;
  background-image: url('../common/toolIcons/down.svg');
  background-size: contain;
}
.collapseButton:hover { background-color:var(--hover); }
.collapsed {
  height:0rem;
  min-height:1rem;
  min-width: 1rem;
  width:0rem;
  padding:0rem;
  margin:0rem;
  transition: height 0.5s, min-height 0.5s, padding 0.5s, margin 0.5s, visibility 0.5s, opacity 0.5s;
}
.colorSwatch {
  width:100%;
  height:100%;
  min-width:5rem;
  min-height:5rem;
  border-radius:.5rem;
  /* max-height:20rem; */
}

.moveGrabber {
  pointer-events:all;
  top:0rem;
  left:0;
  position:absolute;
  max-width:4rem;
  height:7rem;
  min-width:3rem;
  cursor: grab;
  /* background:red; */
}
.moveGrabber::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 50%;
  top:50%;
  width:1rem;
  height:5.8rem;
  transform: translate(-50%, -50%);
  background: var(--dark);
  border-radius: 1rem;
  pointer-events: none;
}
.centerGrabber {
  height: 3rem;
  left:0%;
  border-radius: .5rem !important;
  pointer-events: all;
  cursor: grab;
  position:absolute;
  width:100%;
  /* z-index:1; */
  /* background:red; */
}
.centerGrabber.rel {
  position:relative;
  top:0;
  height: 3.5rem;
}
.centeredTop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

}
.centerGrabber::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 50%;
  top:50%;
  height:1rem;
  width:5.8rem;
  transform: translate(-50%, -50%);
  background: var(--dark);
  border-radius: 1rem;
  pointer-events: none;
}
.verticalSlider {
  width: 7rem;
  height: 10rem;
  background:red;
}
.rel { position:relative; }
.abs { position:absolute; }
.minContent {width:min-content;height:min-content;}
.fixed { position:fixed; }
.center {bottom: 50%; left: 50%; transform: translate(-50%, -50%);}
.bottom {bottom:0;}

.left {left:0;}
.right {right:0;}
.top {top:0;}
.flexEnd {justify-content:flex-end;}
.flexEndSelf {align-self:flex-end;}
.flexEndSelfOther {align-items:flex-end;}
.abs.centered {
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.absoluteRight {
  position:absolute;
  bottom:0rem;
  width:max-content;
  right:0rem;
  text-align:center;
  justify-content: center;
  /* background:red; */
  /* right:10rem; */
}

.ripout {
  max-width:1rem !important;
  position:relative;
  border-radius: 1rem;
  padding:0rem;
  min-width:4rem;
  margin:0rem;
  /* background:var(--dark); */
}
.ripout::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
  width:1rem;
  background:var(--darkLess);
  pointer-events: none;
}
.highlighted {
  background: var(--buttonHighlighted) !important;
  color:black !important;
}
.highlightedIcon .icon {
  /* filter: invert(100%); */
    /* filter: brightness(0) saturate(100%) invert(66%) sepia(93%) saturate(146%) hue-rotate(72deg) brightness(106%) contrast(107%); */
}
.highlighted:hover { 
  background-color: var(--buttonHighlighted2) !important;
  color:black;
}
.red { background:red !important; }
.white { background:white !important; }
.ghost { background:rgba(255, 255, 255, 0.2) !important; }
.ghostStronger { background-color:hsla(0, 0%, 100%, 0.4) !important; }
.transparentRed { background:rgba(255, 0, 0, 0.3) !important; }
.black { background:black !important; }
.green { background:rgb(30, 233, 30) !important; }
.orange { background:rgb(233, 172, 30) !important; }
.blue { background:rgb(30, 98, 233) !important; }
.warning { background:rgb(254, 60, 118) !important; }
.colLight {background:rgb(198, 198, 198);}
.translateCenter {transform: translate(-50%,-50%);}
.roundButton {
  width:6rem;
  height:6rem;
  max-height:6rem;
  max-width:6rem;
  min-height:6rem;
  min-width:6rem;
  background-color:var(--darkLess);
  border-radius: 5rem;
  backdrop-filter: blur(6rem);
  -webkit-backdrop-filter: blur(6rem);
}

.headerButtons {
  margin-left:auto;
  gap:2rem;
}
.headerButtons > *{
  border-radius:1rem;
  font-weight:600;
  background:none;
}
.headerButton {
  width:6rem;
  height:6rem;
  max-height:6rem;
  max-width:6rem;
  min-height:6rem;
  min-width:6rem;
  background-color:transparent;
  border-radius:4rem;
  opacity:.87;
  pointer-events: all;
}

.headerButton.selected {
  outline:none;
  background:rgba(255, 255, 255, 0.263);
  opacity:1;
  /* background:rgb(225, 39, 209); */
}

.headerButton.icon { background-size:65%; }
.hoverOutlineThick:hover { outline: .4rem solid #ffffff23  }
.hoverOutline:hover { outline: .4rem solid #eaeaea94 !important; outline-offset: -.2rem; }
.hoverOutline:active { outline: .4rem solid #eaeaeadc !important; outline-offset: -.2rem; }
.minimizeButton {
  pointer-events: all;
  width:7.5rem;
  height:4rem;
  justify-content: center;
  align-items: center;
  border-radius:3rem;
  /* padding-right:1.25rem; */
}

/* .hoverOutlineInner:hover { outline: .4rem solid hsla(0, 0%, 100%, 0.05) !important; outline-offset: -.4rem; } */
/* .hoverOutlineInner:active { outline: .4rem solid hsla(0, 0%, 100%, 0.4) !important; outline-offset: -.4rem; } */

.hoverInside:hover { border: .4rem solid #eaeaeac8 !important;}
.fillX {width:100%;}
.fillY {height:100%;}
.minX {
  width:max-content !important;
  /* min-width:min-content !important; */
}
.toggled { background-color:red !important; }
.selectedOutline { outline: .4rem solid hsla(0, 0%, 100%, 0.418) !important; }
.selectedOutline:hover { outline: .4rem solid rgba(255, 255, 255, 0.729) !important; }
.selectedOutlineGhost { outline: .4rem solid rgba(255, 255, 255, 0.661) !important; }
.selectedOutlineGhost:hover { outline: .4rem solid white !important; }

.awaitingInput {
  outline: .5rem solid #ffffff4a;
  color:var(--accent);
  /* animation: glowing 1s ease-in-out infinite alternate; */
  background: rgba(0, 0, 0, 0.5) !important;
}
.awaitingInput:hover { background: rgba(0,0,0,.5) !important; }
.topBar {
  max-height:9rem;
}
.hamburger {
  min-width:var(--buttonSize);
  min-height:var(--buttonSize);
  border-radius:1rem;
  pointer-events: all;
  background-image: url('../common/toolIcons/hamburger.svg');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  cursor:pointer;
}
.hamburger:hover { background-color:var(--hover); }
.outlineGhost {
  outline: 2px solid var(--ghost);
  outline-offset: -1px;
}
.outlineFocus {
  outline: 1px solid var(--focus);
  outline-offset: -1px;
}
.outline {
  outline: 1px solid rgb(0, 0, 0);
  outline-offset: -1px;
}
.outlineLight {
  outline:2px solid rgba(255, 255, 255, 0.5);
  outline-offset: -2px;

}

.box{
  display: flex;
  background:var(--dark);
  border-radius: .75rem;
  height: var(--buttonSize);
}

text {
  font-size: 12px;
font-weight: bold;
  animation: spin 5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.toolbarButton {
  align-items:center;
  justify-content:center;
  min-width:7rem;
  margin:0rem;
  min-height:7rem;
  border-radius:1rem;
  max-height:7rem;
}
.bigButton {
  min-height:7rem;
  min-width:7rem; 
  padding:2rem;
  border-radius:1rem;
  justify-content: center;
  align-items: center;
}
.bigButtons > * {
  /* padding:1rem; */
  margin:.25rem !important;
  min-height: 10rem;
  /* width: 13rem; */
}
.squareButton {
  min-height:7rem;
  min-width:7rem;
  max-height:7rem;
  max-width:7rem;
  border-radius:1rem;
}


.buttonSize { height: var(--buttonSize); }
.boxSm { height: 4rem;width:4rem; }
.boxXs { height: .5rem;width:.5rem;background:red; }
.padSm { padding: 2rem; }
.dark { background-color: var(--darkLess); }
.darker { background-color: rgba(0, 0, 0, 0.373); }
.filterInverted { filter:invert(100%); }
.paddingXXs {padding:.25rem;}
.paddingXs {padding:.5rem;}
.paddingSm {padding:1rem;}
.padding {padding:1rem;}
.paddingMd { padding:2rem;}
.paddingLg { padding:3rem;}
.paddingXl { padding:5rem;}
.paddingPage { padding:15rem; }
.fontInverted { color:rgba(0, 0, 0, 0.714);}
.smallRadius { border-radius: .5rem; }
.hideOverflow { overflow: hidden; }
.transparent { opacity: 0; }
.semiTransparent { opacity: .6; }
.buttonSelected { background: rgba(255, 255, 255, 0.33);}
.cursor { cursor:default !important;}

.ms { margin: .5rem; }
.m1 { margin: 1rem; }
.m2 { margin: 2rem; }
.m3 { margin: 3rem; }
.m4 { margin: 4rem; }
.m5 { margin: 5rem; }
.alignEnd { align-items:flex-end; }
.justifyEnd { justify-content:flex-end; }
.justifyStart { justify-content:flex-start; }
.alignStart { align-items:flex-start; }
.miniDragger {margin:.7rem;}
.uiCol { 
  background:var(--uiCol);
  /* background:rgba(51, 54, 58, 0.7); */
  pointer-events:all;
  cursor:default;
  /* backdrop-filter:blur(15rem); */
}
.uiColLight { background:rgb(51, 54, 58);}
.uiColDark { background:rgb(35, 37, 40);}
.uiColDarker { background:hsl(220, 7%, 12%); }
.uiColBackground { background:rgb(53, 54, 58);}
.spaceBetween { justify-content:space-between; }
.flexStart { justify-content:flex-start; }
.z99 { z-index: 99; }
.showOnTop {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
}
.z1 { z-index: 1; }
.top {top:0;}
.scrollV {overflow-y:auto !important;}
.difference {mix-blend-mode: difference;}
.highContrast { color: white; }
.boxSizing { box-sizing: border-box; }
.radiusSm { border-radius: var(--radiusSmall) !important;  }
.radiusMd { border-radius: 1rem;  }
.radius { border-radius: 1rem; }
.radiusLg { border-radius: 2.5rem; }
.radiusXl { border-radius: 3.3rem; }
.sliderRadius {border-radius: .75rem;}
.op0 { opacity:0; }
.op10 { opacity:.1; }
.op20 { opacity:.2; }
.op30 { opacity:.3; }
.op40 { opacity:.4; }
.op50 { opacity:.5; }
.op60 { opacity:.6; }
.op70 { opacity:.7; }
.op80 { opacity:.8; }
.op90 { opacity:.9; }
.op0 {opacity:0;}
.flexGrow { flex-grow: 1; }
.transitionOp { transition: opacity .3s ease-in-out; }
.toolButton:focus { background:white !important; }
.toolButton:active {
  background:rgba(255, 255, 255, 0.354) !important;
  color:white;
}
.bgGrid {
  /* background:rgb(126, 128, 132); */
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.05) .1rem, transparent .1rem),
    linear-gradient(to bottom, rgba(255,255,255,0.05) .1rem, transparent .1rem);
  background-size: 3.5rem 3.5rem;
}

.smallButton {
  /* margin:0rem; */
  border-radius:.5rem;
  max-width:4rem !important;
  max-height:4rem !important;
  min-height:4rem !important;
  min-width:4rem !important; 
  padding:1rem;
  background-color:transparent;
  pointer-events: all;
}
.help {
  background-image: url('../common/toolIcons/help.svg');
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
}
.sq1 { width:1rem; height:1rem; }
.sq2 { width:2rem; height:2rem; }
.sq3 { width:3rem; height:3rem; }
.sq4 { width:4rem; height:4rem; }
.sq5 { width:5rem; height:5rem; }
.sq6 { min-width:6rem; min-height:6rem; max-width:6rem; max-height:6rem; }
.sq7 { width:7rem; height:7rem; }
.sq8 { width:8rem; height:8rem; }
.sq9 { width:9rem; height:9rem; }
.sq10 { width:10rem; height:10rem; }
.w1 { width:1rem; }
.w2 { width:2rem; }
.w3 { width:3rem; }
.w4 { width:4rem; }
.w5 { width:5rem; }
.w6 { width:6rem; }
.w7 { width:7rem; }
.w8 { width:8rem; }
.w9 { width:9rem; }
.w10 { width:10rem; }
.h1 { height:1rem; }
.h2 { height:2rem; }
.h3 { height:3rem; }
.h4 { height:4rem; }
.h5 { height:5rem; }
.h6 { height:6rem; }
.h7 { height:7rem; }
.h8 { height:8rem; }
.h9 { height:9rem; }
.accent2 { background-color: var(--accent2)}
.accent3 { background-color: var(--accent3)}
.accent3:hover { background-color: rgb(97, 97, 255)}
.noActive:active { background:none !important; }
.circle {
  border-radius:15rem;
}
.smallCircle { width:2rem;height:2rem;border-radius:100%;background:red; }

.w100 { width:100%; }
.w80 { width:80%; }
.w70 { width:70%; }
.w60 { width:60%; }
.w50 { width:50%; }
.w40 { width:40%; }
.w30 { width:30%; }
.w20 { width:20%; }
.width1 { width:1rem; }
.width2 { width:2rem; }
.width3 { width:3rem; }
.width4 { width:4rem; }
.width5 { width:5rem; }
.width6 { width:6rem; }
.width7 { width:7rem; }
.width8 { width:8rem; }
.width9 { width:9rem; }
.width10 { width:10rem; }
.width12 { width:12rem; }
.width14 { width:14rem; }
.width16 { width:16rem; }
.wMin {width:min-content !important;}
.wMax { width:max-content !important;}
.h100 { height:100% !important;}
.hMin {height:min-content !important;}
.hMax { height:max-content !important;}
.accentOutline {
  outline:.7rem solid var(--accent);
}
.accent { background: var(--accent); color:black;}
.accent:hover { background: var(--accentHover); }
.outlineLight { outline: .25rem solid rgba(255, 255, 255, 0.158); }
.inter { font-family: 'Inter', sans-serif; }