@font-face {
    font-family: 'Aptos-Light';
    src: url('Aptos-Light.ttf')  format('truetype'); /* Safari, Android, iOS */
}

:root {
  --fontcolor: #54545A; /* var(--fontcolor) */
}


html {
  border: none;
  -webkit-print-color-adjust:exact;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
       -o-text-size-adjust: none;
          text-size-adjust: none;
}
img, a,
.noselect {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
          user-drag: none; 
}
.textselect {
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Aptos-Light, sans-serif;
}

body {
    background-color: #F0F0FF;
    color: var(--fontcolor);
    cursor: default;
    overflow-y: scroll;
}

select, input, textarea, button,
input:focus, textarea:focus, button:focus {
  outline: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
          border-radius: 0;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
       -o-box-shadow: none;
          box-shadow: none;
}

textarea {
  resize: none;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
  -ms-overflow-y: auto;
      overflow-y: auto;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 60px white inset !important;
    background-color: red !important;
    background-clip: content-box !important;
    -webkit-text-fill-color: var(--fontcolor);
    color: var(--fontcolor) !important;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
            appearance: none;
    height: 18px;
    width: 18px;
    position: relative; right: -10px;
    background-color: white;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
    background-repeat: no-repeat;
    cursor: pointer;
}

select {
    -webkit-appearance: none;
            appearance: none;
    background-position: right 2px center;
    background-size: 10px 14px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KICA8cGF0aCBmaWxsPSJncmF5IiBkPSJNMTAsMjMyLjdsNDkwLDUzNC41bDQ5MC01MzQuNUgxMHoiIC8+DQo8L3N2Zz4=);
    background-repeat: no-repeat;
}

[data-tooltip] { position: relative; }
[data-tooltip]:after {
  display: block;
  position: absolute;
  content: attr(data-tooltip);
  background: #000;
  color: white;
  font-size: 12px;
  font-weight: normal;
  left: auto; right: 1vw;
  max-height: 0; max-width: 0; padding: 0;
  overflow: hidden;
}

[data-tooltip]:hover:after {
  height: auto; width: auto; max-height: 999px; max-width: 999px; padding: 6px;
}
[data-tooltip]:hover:after {
  -webkit-transition: max-height .4s ease-in .4s, max-width .4s ease-in .4s, padding .2s .4s;
     -moz-transition: max-height .4s ease-in .4s, max-width .4s ease-in .4s, padding .2s .4s;
       -o-transition: max-height .4s ease-in .4s, max-width .4s ease-in .4s, padding .2s .4s;
          transition: max-height .4s ease-in .4s, max-width .4s ease-in .4s, padding .2s .4s;
}


