/* 
-- DEFAULT COLORS:
-- Text: #14171a
-- Gray: #31333d
-- Light Gray: #9b9b9c
-- White: #e1e8ed
-- Ourple: #857afa
-- Ourple Dark: #636ca6
*/

a {
    text-decoration:none;
  }
  a:hover {
    text-decoration:none;
  }
  img {
    pointer-events: none;
  }
  
  #ocbox {
    width: 100%;
    margin: auto;
    display: flex;
    padding: 1em;
    text-align: center;
    justify-content: space-around;
    overflow: auto;
  }
  
  p, .titlebox {
      text-align:center;
  }
  
  .titlebox {
    font-weight: bold;
    font-size:2em;
  }
  
  .entry {
      margin: 10px;
      width: auto;
      height: auto;
      background: white;
      color: #14171a;
      text-align: center;
      text-transform: uppercase;
  }
  
  /* i need this to be a toggleable switch on the page, either hover names or titlecard names TH-style */
  .name {
    border-radius:3px;
    padding: 3px;
    background-color: #857afa;
    color: #e1e8ed;
  }
  .name:hover {
    background-color: #636ca6;
  }
  
  .tags, #tags {
    display:none;
  }
  
  /* OC AVATARS */
  .ocimg, .ocgon {
    width: fit-content;
    height: fit-content;
    display: inline-block;
    position: relative;
    top: 0;
  }
  .ocimg img {
    height:175px;
    width:175px;
    border-radius:4px;
  }

  /* POLYGON AVATARS */
  .ocgon img {
  height: 175px;
  width: 175px;
  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
  }
  
  .ocimg span, .ocgon span {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #e1e8ed;
    font-family: Courier, Consolas;
    font-size: 1.5rem;
    font-weight: bold;
    padding:0.2em 0.4em 0.1em 0.4em;
    text-transform: uppercase;
    line-break: normal;
    line-height: 100%;
    
    filter: drop-shadow(1px 1px 0 #14171a) 
      drop-shadow(-1px 1px 0 #14171a)
      drop-shadow(1px -1px 0 #14171a)
      drop-shadow(-1px -1px 0 #14171a);
  }
  /* HOVER TURN */
  .ocimg:hover span, .ocimg:focus span, .ocgon:hover span, .ocgon:focus span {
    opacity: 1;
    background-color: RGBA(20, 23, 26, 0.03);
  } 
  
 /* TAG FILTER ZONE */
 .tagzone {
  margin:auto;
  width:100%;
  align-content:center;
 }
  .tagzone p, .dropdown p {
    font-size: 1.5em;
    margin:0em;
    font-weight: bold;
    text-transform: uppercase;
  }
  .tagbutton {
    background-color: #857afa;
    color: white;
    padding:0.5em 1em 0.5em 1em;
    width:15em;
    font-size: 16px;
    border: none;
    text-transform:uppercase;
    text-align:center;
    border-radius:3px;
  }
  .tagbutton:hover, .tagbutton:focus {
    background-color: #636ca6;
    color: white;
  }
  .dropdown-menu {
    background-color: #f1f1f1;
    width: 14em;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 500;
    color: #14171a; 
  }
  
  .dropdown-item, .dropdown-item a {
    padding:5px 15px 5px 15px;
    font-size:14px;
    text-decoration: none;
  }
  .dropdown-item:hover {
      background-color: #ddd;
      color: #14171a;
    }
  .dropdown-item:active, .dropdown-item:hover:active, .dropdown-item.is-checked {
    background-color: #636ca6;
    color:#fff;
  }
  
  /* OC SEARCH */
  .ocsearch {
    padding:0.5em 1em 0.5em 1em;
    height:40px;
  }

    /* SETTING COG */
  .filtercog {
    padding: 1em;
    margin: 1em;
    position: sticky;
    width:50px;
    height:50px;
    color: #857afa;
    font-size:3em;
    z-index: 500;
    &:hover {
      color: #636ca6;
    }
    &:active {
      transform: rotate(15deg);
      color: #14171a;
    }
  }
  
