/* 
    Created on : Aug 1, 2021, 1:30:57 AM
    Author     : bhenry
*/

/* Tooltip over social media bubbles */
.tooltip {
  position: relative;
  display: inline-block;

}
.tooltip code {
  cursor: pointer;
}
.tooltip .tooltiptext {
  visibility: hidden;
  
  width: 260px;
  background-color: #fff;
  color: #000;
  font-family: 'Overpass', sans-serif;
  text-align: center;
  border: 1px solid #ffffffe0;
  border-radius: 6px;
  padding: 5px 15px 5px 15px;
  position: absolute;
  bottom: 150%;
  left: 25%;
  margin-left: -185px;
  opacity: 0;
  transition: opacity 2s;
  transition-timing-function: ease;
    box-shadow: 0 1px 10px #444;
}
.tooltiptextabove {
    bottom: 150% !important;
}
.tooltiptextbelow {
    bottom: -250% !important;
}
.tooltip .tooltiptextabove::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 33%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: #444 transparent transparent transparent;
}
.tooltip .tooltiptextbelow::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 33%;
    margin-left: -5px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #444 transparent;
}
.tooltip:hover .tooltiptext {
  /*visibility: visible;*/
  /*opacity: 1 !important;*/
  z-index: 99999999 !important;
 
}
kbd {
    background-image: linear-gradient(45deg, lightgrey, darkgrey);
    border-radius: 3px;
    border: 1px solid #b4b4b4;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .2), 0 2px 0 0 rgba(255, 255, 255, .7) inset;
    color: #333;
    display: inline-block;
    font-family: monospace, sans-serif;
    font-size: .85em;
    font-weight: 700;
    line-height: 1;
    padding: 2px 4px 3px 4px;
    margin: 0 4px 2px 4px;
    vertical-align: middle;
    white-space: nowrap;
   }
   
   .nowrap {
       white-space: nowrap;
   }