/* Allgemein */
body
{
  font-family: verdana;
  font-size: 20px;
  background-color: transparent;
}

ct-pgn-viewer.ct-pgn-viewer move-list .ct-move-list-container
{
  height:300px;
  font-weight: bold;
  color: #000000;
  background-color: transparent;
}
a
{
  color: #000098;
  text-decoration: none;
  font-weight: bold;
}
a:hover
{
  color: #ff8000;
  text-decoration: none;
  font-weight: bold;
}

/* Textblock Slider */
#akkordeon:not(:target) .inhalt,
#akkordeon:not(:target) .hide,
#akkordeon:target .show {display: none;}
#akkordeon:target .inhalt {display: block;}

.inhalt {
box-shadow: inset 0px 0px 0px rgba(0,0,0,0.3);
padding: 10px 10px 1px;
margin: 0px 0px 10px;
width: 400px;
border-left: 1px solid #000000;
border-top: 1px solid #000000;
}

.show,
.hide {
padding:5px;
background: rgb(254, 164, 0);
box-shadow:none!important;
color:#fff;
font-weight:bold;
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
text-decoration: none;
font-family: verdana;
}

.show:hover,
.hide:hover {
background: rgb(255, 214, 118);
color:#fff!important;
transition:0.2s all ease-in-out!important;
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
}
/* Text flammend */
.glow {
  font-size: 15px;
  color: #ff8000;
  text-align: center;
  font-weight: bold;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #000, 0 0 20px #00 0, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }

  to {
    text-shadow: 0 0 20px #000, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}
/* Link Tooltip */
a.tooltip {
  position: relative;
  text-decoration: none;
  color: #000098;
}
a.tooltip:hover {
  position: relative;
  text-decoration: none;
  color: #40EA34;
}
a.tooltip:after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 20%;
  background: #ffcb66;
  padding: 5px 15px;
  color: black;
  -webkit-border-radius: 10px;
  -moz-border-radius : 10px;
  border-radius : 10px;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition : all 0.4s ease;
  transition : all 0.4s ease;
}
a.tooltip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid #ffcb66;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  -webkit-transition: all 0.4s ease;
  -moz-transition : all 0.4s ease;
  transition : all 0.4s ease;
  opacity: 0;
  left: 30%;
  bottom: 90%;
}
a.tooltip:hover:after {
  bottom: 100%;
}
a.tooltip:hover:before {
  bottom: 70%;
}
a.tooltip:hover:after, a:hover:before {
  opacity: 1;
}