@charset "UTF-8";

body{
  margin:  50px;
  font-family: system-ui, sans-serif;
  background: #f8f8fa;
}

p {
  margin: 6pt 0 24pt 0;
}

h1 {
  font-family: 'Podcast Font';
  font-weight: normal;
  color:  #000;
  padding: 0 0 12pt 0;
  border-bottom: 1px solid #eee;
}

h2 {
  font-size: 12pt;
  color:  #26a;
  margin: 24pt 0 0 0;
}

a {
  color: #889;
}

a:hover {
  color: #f50;
}

label:hover {
  color: #f50;
}

.right{
  float: right;
}

.left {
  float:  left;
}

.nowrap {
  white-space: nowrap;
}

.boxes {
  display: flex;
  flex-flow: row wrap;
}
.box {
  position: relative;
  width: 15rem;
  height: 11rem;
  padding: 20px;
  margin: 10px;
  border: none;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 0.2), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  border-radius: 0.75rem;
}

.help {
  background: #f8f8f8;
  border: solid 1px #ddd;
  padding: 5px 15px 5px 15px;
  position: absolute;
  top: 50px;
  right: 50px;
  border-radius: 0.5rem;
  color: #46a;
}

.help a {
  color: #46a;
  text-decoration: none;
}

.help a:hover {
  color: #235;
  text-decoration: underline;
}

.code {
  display: block;
  font-family: Courier, monospace;
  background: #eee;
  border-left: solid 10px #aab;
  padding: 12px 12px 9px 12px;
  margin:  12pt;
  border-radius: 0.4rem;
}

.glyph {
  position: absolute;
  left: 80px;
  top: 80px;
  font-size: 80pt;
  color:  #333;
}

.glyph:hover {
  color:  #f50;
}


.icon-badge {
  font-size: 18pt;
  color: #4a6;
}

.icon-category {
  font-size: 18pt;
  color: #246;
}

.icon:hover {
  color:  #f50;
}

.glyph-code {
  font-family: Courier, monospace;
  font-size: 9pt;
  color: #668;
}

.glyph-code:hover {
  color: #f50;
}

.glyph-name {
  margin: 18pt 0 0 0;
}

.glyph-unicode {
  float: left;
  color: #668;
}

.glyph-unicode:hover {
  color: #f50;
}

.glyph-download {
  position: absolute;
  bottom: 20px;
  right:  20px;
}

.glyph-link {
  position: absolute;
  bottom: 20px;
  left:  20px;
}

.glyph-link:hover {
  color:  #f50;
}

.footer {
  font-family: system-ui, sans-serif;
  font-size: 9pt;
  color: #666;
  border-top: 1px solid #eee;
  margin:  12pt 0 0 0;
  padding:  5px;
}

.footer a {
    color: #446;
}

.footer a:hover {
    color: #f50;
}

.tooltip {
  position: relative;
}

.tooltip .tooltiptext {
  font-family: system-ui, sans-serif;
  font-size: 10pt;
  visibility: hidden;
  width: 250px;
  background-color: #556;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 25%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #556 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}