
.ClubLogo {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease;
  
}

.ClubLogo.hidden {
        opacity: 0; 
}



.TrikotNrStyle.hidden {
      opacity: 0; 
    }


   


.TrikotNrStyle {
  position: absolute; 
  top: 49px; 
  left: 67px;
  z-index: 35; 
  text-align: center; 
  border-radius: 5px;
  color: #69686e; 
  font-size: 16px; 
  font-weight: bold;
  background-color: #e2ebca;
  width: 24px; 
  height: 20px;  
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cebbbb;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease;

}


.Captain {
  position: absolute; 
  top: 29px; 
  left: 67px;
  z-index: 34; 
  text-align: center; 
  border-radius: 5px;
  color: #efeef3; 
  font-size: 16px; 
  font-weight: bold;
  background-color: #ec1a1a;
  width: 24px; 
  height: 20px;  
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cebbbb;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease;
}
.Captain.hidden {
      opacity: 0; 
    }


.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgb(129, 123, 123);
  color: white;
  text-align: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: small;
}

.mydiv {
  position: absolute;
  z-index: 9;
  background-color: #f1f1f1;
  text-align: center;
  border: 1px solid #d3d3d3;
}

.mydivheader {
  padding: 10px;
  cursor: move;
  z-index: 10;
  background-color: #2196F3;
  color: #fff;
  border-radius: 50%;
  width: 35px; 
  height: 35px;
  vertical-align: middle;
  line-height: 32px;
}


.pitch_light {
  background-color: #70b67f; 
  left:0px; 
  width: 604px; 
  height: 80px; 
  position: absolute; 
  z-index: 2"
}

.pitch_dark {
  background-color: #50a964; 
  left:0px; 
  width: 604px; 
  height: 80px; 
  position: absolute; 
  z-index: 2"
}


.ball {
  cursor: move;
  touch-action: none;  /** Need for touch events */
  position: absolute;
  z-index: 8;
  /* border: 2px solid #2d2020; */
  text-align: center;
  /* background-color: #2a2525; */
  /* border-radius: 50%; */
  width: 30px; 
  height: 30px;
  vertical-align: middle;
  box-shadow: #2196F3 2px;
  
}

/* Show a Circle Picture of a player */
.playerCircle {
  padding: 0px;
  width: 80px;
  height: 80px;
  cursor: move;
  touch-action: none;  /** Need for touch events */
  position: absolute;
  z-index: 30;
  border-radius:50%;
  overflow: hidden;
  display: inline-block;
  object-fit: cover;    /* Ensures the image fills the circle */
  /* scale: 0.45; */
}


.playerCircle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.0); /* Optional zoom */
      object-position: center -10px;
}


.playerExtended {
  padding: 0px;
  width: 90px;
  height: 90px;
  cursor: move;
  touch-action: none;  /** Need for touch events */
  position: absolute;
  z-index: 30;
  /* scale: 0.45; */
}

.player {
  padding: 3px;
  cursor: move;
  touch-action: none;  /** Need for touch events */
  position: absolute;
  
  border: 2px solid #d3d3d3;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  width: 36px; 
  height: 36px;
  vertical-align: middle;
  line-height: 36px;

}

.PlayerName {
    padding: 2px;
    background-color: #aaa;
    text-align: center;
    position: absolute;
    margin: 1px;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
}

.Blue {
    background-color: #2196F3;
    z-index: 9;
}

.Red {
    background-color: #ec0c0c;
    z-index: 19;
}


span {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  font-size: 21px;
  font-weight: bold;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Create two unequal columns that floats next to each other */
.column {
  float: left;
  padding: 1px;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

.left {
  width: 830px;
}

.right {
  width: 15%;
}

.mobile {
  width: 100%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Set Variables for CSS Select statement */
:root {
  --select-border: #777;
  --select-focus: blue;
  --select-arrow: var(--select-border);
}

.custom-select {
  width: 100%;
  min-width: 15ch;
  max-width: 30ch;
  border: 1px solid var(--select-border);
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}

.custom-select::after {
  content: "";
  width: 0.8em;
  height: 0.5em;
  background-color: var(--select-arrow);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

.buttonStyle {
  height: 30px;
}



.Statistic {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease;
  position: absolute; 
  top: 88px; 
  z-index: 40; 
  display: flex;
}

.Statistic.hidden {
        opacity: 0; 
}

.trainingvalue {
    font-size: 8px; 
    text-align: center;
    color:#cebbbb; 
    font-weight: bold; 
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif ;
        z-index: 40;
    width: 21px;
    height: 8px;
    border-radius: 2px;
    background-color: #323332;
    margin-left: 2px;
    border: 1px solid #c6aef6;
}

.trainingsvisits {
    z-index: 42;
    width: 6px;
    height: 8px;
    
    background-color: #e6e7e6;
    margin: 0px;
    padding: 0px;
    border: 0px;
    /*box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    */
    
}

.trainingsvisits.seggreen { 
    transition: height 0.3s;
    background-color: #189927; } /* Green */
.trainingsvisits.segyellow { 
    transition: height 0.3s;
    background-color: #c8be32; } /* Blue */
.trainingsvisits.segred { 
    transition: height 0.3s;
    background-color: #881d13; } /* Red */
.trainingsvisits.segblue { 
    transition: height 0.3s;
    background-color: #281444; } /* DarkBlue */



svg {
  filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
}



