.jornada-titulo {
  text-align:center;
  font-size: 100%;
  font-weight: bold;
  font-variant: small-caps;
  background-color: royalblue;
  color: white;
  margin-top: 1em;
}
.jornada {
  break-inside: avoid;
}
.tablapartidos {
  width: 100%;
  font-size: inherit;
  border: 1px solid black;
}
.tablapartidos>tbody>tr:nth-child(odd)>td {
  background-color: #eeeeee;
}
.tablapartidos>tbody>tr:nth-child(even)>td {
  background-color: peachpuff;
}
.tablapartidos>tbody>tr>td:nth-child(1) {
  text-align: right;
  width: 48%;
}
.tablapartidos>tbody>tr>td:nth-child(2) {
  text-align: center;
}
.tablapartidos>tbody>tr>td:nth-child(3) {
  text-align: left;
  width: 48%;
}
body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.own {
  background-color: green;
  color: white;
}
.owntitle {
  text-align: center;
  font-size: 200%;
  font-variant: small-caps;
}
.volta-titulo {
  text-align: center;
  font-size: 300%;
  font-weight: bold;
  font-variant: small-caps;
  background-color: gray;
  color: white;
  margin-top: 10px;
}
.voltas-2 {
  display: grid;
  grid-template-columns: 49% 49%;
  column-gap: 2%;
}

.clasificacion-container {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  page-break-inside: avoid;
}

.clasificacion-container>.title {
  content: "Clasificación";
  font-size: 140%;
  text-align:center;
  font-weight: bold;
  font-variant: small-caps;
  background-color: royalblue;
  color: white;
  width: 100%;
  border: 1px solid black;
}

.clasificacion-grid {
  display: grid;
  grid-template-columns: 1.5em auto 2em 2em 2em 2em 2em 2em 2em;
  border: 1px solid black;
  width: 100%;
  overflow-x: auto;
}

.clasificacion-grid>.head {
  background-color: dimgray;
  color: white;
}
.clasificacion-grid .zebra1 {
  background-color: peachpuff;
}

.clasificacion-grid .zebra2 {
  background-color: #dddddd;
}

.cc1 {
  text-align: left;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.cc0 {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc2,.cc3,.cc4,.cc5,.cc6,.cc7,.cc8 {
  text-align: right;
}

.cc0,.cc1,.cc2,.cc3,.cc4,.cc5,.cc6,.cc7,.cc8 {
  background-color: blanchedalmond;
  box-sizing: border-box;
  border: 1px solid blanchedalmond;
  padding: 2px;
}

.cc3 {
  font-weight: bold;
}
.difup {
  font-size: 70%;
  color: crimson;
}
.upsign::after {
  content: " \23EB";
}

.equiporetirado {
  text-decoration: line-through;
}

.head-icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
}

.gol-favor {
  background-image: url(../../ver/imgs/normal.png);
}
.gol-contra {
  background-image: url(../../ver/imgs/pp.png);
}
.victoria-icon::after {
  content: "\2713";
  color: greenyellow;
  font-weight: bold;
}

.empate-icon::after {
  content: "\271C";
  color: orange;
  font-weight: bold;
}

.derrota-icon::after {
  content: "\274C";
  color: crimson;
  font-weight: bold;
  text-shadow: 0px 0px 2px white;
}

.flashthis {
  animation: flashanim 1.5s ease;
  animation-iteration-count: 2;
  animation-direction: alternate;
  animation-delay: 0.5s;
}

.marcador-tanteo {
  white-space: nowrap;
}

.canvas-container {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.equipocolores {
  min-width: 3em;
  max-width: 3em;
  min-height: 1em;
  max-height: 1em;
  border: 1px solid black;
  margin-left: 0.2em;
  margin-right: 0.2em;
  display: inline-block;
  background-color: white;
  vertical-align: text-top;
}

.equipocolores-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 1px;
  overflow: hidden;
}
.camiseta,.pantalon,.medias {
  min-width: 1em;
  position: relative;
  background: linear-gradient(45deg, black, white);
}

.color-box {
  min-height: 1em;
  max-height: 1em;
  display: inline-block;
  overflow: hidden;
}
.color-box .onecolor {
  width:100%;
  text-align: center;
  font-weight: bolder;
}
.color-box .twocolor {
  width: 50%;
}

.color-Amarillo {
  background-color: yellow;
}
.color-Azul {
  background-color: blue;
}
.color-Blanco {
  background-color: white;
}
.color-Granate {
  background-color: maroon;
}
.color-Naranja {
  background-color: orange;
}
.color-Negro {
  background-color: black;
}
.color-Rojo {
  background-color: red;
}
.color-Rosa {
  background-color: pink;
}
.color-Verde {
  background-color: green;
}
.color-Morado {
  background-color: purple;
}

.color-Desconocido::before {
  content: "X";
  background-color: white;
}

#participantes {
  margin-top: 0.5em;
}

.participante {
  display: inline-block;
  height: 1.3em;
  min-width: 15em;
  max-width: 15em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.print-buttons-choice {
  display: block;
}

.print-buttons-choice button {
  margin: 0.5em;
}

.viewmatch {
  max-height: 1em;
  min-height: 1em;
  min-width: 1em;
  max-width: 1em;
  vertical-align: text-bottom;
  margin-left: 3px;
}

@keyframes flashanim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 900px) {
  .voltas-2 {
    display: grid;
    grid-template-columns: 100%;
    column-gap: 0%;
  }
  .cc1,.cc2,.cc3,.cc4,.cc5,.cc6,.cc7,.cc8 {
    font-size: 80%;
  }
}

@media print {
  .noPrinter {
    display: none;
  }
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
