.blink-button {
    /*background-color: #288cff;*/
    border: 0;
    /*padding:10px 35px;
    font-size:20px;
    font-family: 'Open Sans';*/
    border-radius: 3px;
    cursor: pointer;
    color: #222f3e;
    position:relative;
    &:after {
      background-color: #1847f3;
      content: '';
      display:block;
      width:100%;
      height:100%;
      position:absolute;
      top:0;
      left:0;
      border-radius:3px;
      animation-name: blink;
      animation-duration: 0.7s;
      animation-iteration-count: infinite;
      animation-direction: alternate-reverse;
      animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    }
  }
  
  @keyframes blink {
    0% {
      transform:scale3d(1,1,1);
      opacity: 0.8;
    }
    100% {
      transform:scale3d(1.1,1.3,1.1);
      opacity:0;
    }
  }

.customHeader {

  background-color: #362D5B;
  color: white;
}
.tituloHeader {
  color: white;
}

.customFooter {

  background-color: #362D5B;
  color: white;
  margin-top: auto;
}

.mainContainer{
  background-color: #ECECEC;
}

a.menuLink {
  color: white;
  text-decoration: none;
  font-family: Roboto;
}

li.menuLink {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

a.menuLink:active {
  color: blue;
}

a.menuLink:hover {
  color: rgb(255, 0, 234) !important; 
}

.containerFormulario {
  background-color: #f6f6f6;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.25);
  font-family: Roboto;
}

.containerFormulario input, .containerFormulario select,.containerFormulario textarea{
  background-color: #ffffff;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.25);
  font-family: Roboto;
}


.containerBloque{
  background-color: #ffffff00;
}

.botonPeq{
  --bs-btn-padding-y: .25rem; 
  --bs-btn-padding-x: .5rem; 
  --bs-btn-font-size: .7rem;
  color: #ffffff !important;
  font-family: Roboto;
  font-weight: bold;
}

.botonPeqAncho{
  --bs-btn-padding-y: .8rem; 
  --bs-btn-padding-x: 2rem; 
  --bs-btn-font-size: .9rem;
  color: #ffffff !important;
  font-family: Roboto;
  font-weight: bold;
}

input.checkboxManager {
  height: 22px;
  width: 22px;
}

/*
@media only screen and (min-width: 992px) {
.navbar .navbar-nav .nav-item .menuLink {
  padding: 0 0.5em;
}
.navbar .navbar-nav .nav-item:not(:last-child) .menuLink {
  border-right: 2px solid #ffffff;
}
}
*/

table.tableLista,.tableLista tr,.tableLista td {
  border-collapse: collapse;
  vertical-align: middle;
  text-align: center;
  color: #000000;
  font-family: Roboto;
}

table.tableLista,.tableLista tr {
  border: 3px solid black;
}

table.tableLista {
  border-radius: 15px;
}

table.tableSingle,.tableSingle tr,.tableSingle td {
  border: 0px solid black;
  border-collapse: collapse;
  vertical-align: middle;
  text-align: left;
  color: #ffffff;
  font-family: Roboto;
  font-weight: bold;
}

.tableSingle {
  background-color: #362D5B;
  border: 2px solid black;
  border-radius: 15px;
}

.tituloSelection {
  vertical-align: middle;
  text-align: left;
  color: #000000;
  font-family: Roboto;
  font-weight: bold;
  font-size: 2em;
}

.tituloCampeonato {
  vertical-align: middle;
  text-align: center;
  color: #000000;
  font-family: Roboto;
  font-weight: bold;
  font-size: 1.2em;
}

.tituloPequeño{
  vertical-align: middle;
  text-align: left;
  color: #000000;
  font-family: Roboto;
  font-weight: bold;
  font-size: 1.0em;
}

.inputOK input {
  border: 2px solid green;
  box-shadow: 0px 6px 6px 0px #17f60740;
}

.inputNotOK input{
  border: 2px solid red;
  box-shadow: 0px 6px 6px 0px #f6070740;
}

.separadorHorizontal {
  border: 0;

  height: 4px;
  background: #333;
  background-image: linear-gradient(to right, #ccc, #333, #ccc);
  opacity:1;
}

.contenedorLiveScoring{
  background-color: #ffffff;
  text-align: center;
  color: #000000;
  font-family: Roboto;
}


div.warning {
background-color: #ffea4d;
opacity: 0.8;
height: 150px;
position: absolute;
top: 30%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    vertical-align: bottom;
width: 250px;
z-index: 2;
font-size: 150%;
color: black;
font-weight: bold;
}

tr.clasificationInterrupted , tr.clasificationInterrupted td {
  background-color: #ffea4d;
  text-align: center;
}

tr.clasificationDisquali , tr.clasificationDisquali td{
  background-color: #db2c2c;
  text-align: center;
}