body{
  font-family: verdana;
  font-size: 14px;
  margin: 0px;
  padding: 0px;
  background: #e0692b url(https://nassport.cz/img/background/bg.png);
}

.antuka {
    color: #e0692b;
}

.logo{
	display: flex;
	padding: 10px 0px 0px 0px;
}

.logo img{
	width: 150px;
	margin: 0px auto;
	filter: drop-shadow(1px 1px 2px rgba(64, 64, 64, 0.5));
}

/* Animace */
.animace{
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999999;
  display: none;
}

.main-loader{
  height: 100%;
}

.main-fader {
	 width: 100%;
	 height: 100%;
	 position: absolute;
}
 .main-fader .loader {
	 position: fixed;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
}
 .main-fader .loader svg {
	 /*height: 750px;*/
   width: 100vw;
   height: 50vh;
	 display: block;
	 margin: 0 auto;
}
 .main-fader .loader svg path {
	 animation-duration: 1s;
	 animation-name: pulse;
	 animation-iteration-count: infinite;
	 color: #26a380;
}
 .main-fader .loader svg path.path-7 {
	 animation-delay: -1s;
}
 .main-fader .loader svg path.path-6 {
	 animation-delay: -0.875s;
}
 .main-fader .loader svg path.path-5 {
	 animation-delay: -0.75s;
}
 .main-fader .loader svg path.path-4 {
	 animation-delay: -0.625s;
}
 .main-fader .loader svg path.path-3 {
	 animation-delay: -0.5s;
}
 .main-fader .loader svg path.path-2 {
	 animation-delay: -0.375s;
}
 .main-fader .loader svg path.path-1 {
	 animation-delay: -0.25s;
}
 .main-fader .loader svg path.path-0 {
	 animation-delay: -0.125s;
}

.animShow{
  animation-duration: .3s;
	animation-name: AnimationShow;
	animation-iteration-count: 1;
}

.animHide{
  animation-duration: .3s;
	animation-name: AnimationHide;
	animation-iteration-count: 1;
}


@keyframes pulse {
  0%     { opacity: .05; }
  30%    { opacity: .95; }
  100%   { opacity: .05; }
}


@keyframes AnimationShow {
  0%     { opacity: 0; }
  100%   { opacity: 1; }
}

@keyframes AnimationHide {
  0%     { opacity: 1; }
  100%   { opacity: 0; }
}
/* Animace end */



.poslZap{
  color: inherit;
  text-shadow: 1px 1px 1px transparent;
  animation: blinker 1s ease-in-out infinite alternate;
}

@keyframes blinker{
  to
  {
    color: #ff8b00;
    text-shadow: 1px 1px 1px rgba(40,40,40,0.25);
  }
}


.zvyrazni{
  color: red;
  font-weight: bold;
}

.container{
  width: calc(100vw - 20px);
  min-height: calc(100vh - 20px);
  margin: 10px 0px 10px 10px;
  background-color: rgba(68, 68, 68, 0.8);
  border-radius: 7px;
  border: 1px solid rgba(60, 60, 60, 0.1);
  box-shadow: inset 0px 0px 20px 2px rgba(20, 20, 20, 0.6), 0px 0px 20px 2px rgba(20, 20, 20, 0.6);
}

.content{
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  width: calc(100% - 40px);
  min-height: calc(100vh - 60px);
  margin: 10px 0px 10px 10px;
  padding: 10px;
}

h1{
  text-align: center;/*
  font-size: 45px;
  margin: 15px 0px 15px 0px;
  padding: 0px;
  height: 80px;    */
}

.column{
  /*width: 100%;
  margin-bottom: 10px;*/
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  /* border-bottom: 1px solid #d47d15; */
}

/**/
a{
  color: #d47d15;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

.content .rozpis{
  width: 100%;
}

.content .copyright{ 
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #d47d15;
  margin-top: 10px;
  text-shadow: 1px 1px 1px rgba(40,40,40,0.25);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* Table */
table.krizova{
  width: 100%;
  /*height: calc(100% - 10px);*/
  border-collapse: collapse;
}

table.krizova th,
table.krizova td{
  position: relative;
  border: 1px solid #ccc;
  min-width: 16px;
  height: 30px;
  text-align: center;
}

table th.nazev-tymu,
table th.bg{
  position: relative;
  background: #e0e0e0;
  background: -moz-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(240,240,240,1)), color-stop(100%, rgba(224,224,224,1)));
  background: -webkit-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: -o-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: -ms-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: linear-gradient(to bottom, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#e0e0e0', GradientType=0 );
  text-shadow: 1px 1px 2px #ddd;
}

table th.nazev-tymu span,
table td.nazev-tymu span{
  width: calc(100% - 5px);
  height: 100%;
  display: block;
  position: absolute;
  line-height: 34px;
  padding-left: 5px;
  top: 0;
  left: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

table.krizova th img{
	height: 26px;
	margin-top: 3px;
}

table.krizova.view1 .cislo {
  width: 70px;
  background: #e0e0e0;
  background: -moz-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(240,240,240,1)), color-stop(100%, rgba(224,224,224,1)));
  background: -webkit-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: -o-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: -ms-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: linear-gradient(to bottom, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#e0e0e0', GradientType=0 );
  text-shadow: 1px 1px 2px #ddd;
}

table.krizova.view2 .cislo {
  width: 34px; 
  background: #e0e0e0;
  background: -moz-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(240,240,240,1)), color-stop(100%, rgba(224,224,224,1)));
  background: -webkit-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: -o-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: -ms-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  background: linear-gradient(to bottom, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#e0e0e0', GradientType=0 );
  text-shadow: 1px 1px 2px #ddd;
}

table.krizova td.nazev-tymu {
  text-align: left;
  padding-left: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

table.krizova .table-kriz {
  /*background-color: #d47d15;
  font-weight: bold;*/
  background: #d47d15;
	background: -moz-linear-gradient(top, #d47d15 0%, #a9451f 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #d47d15), color-stop(100%, #a9451f));
  background: -webkit-linear-gradient(top, #d47d15 0%, #a9451f 100%);
  background: -o-linear-gradient(top, #d47d15 0%, #a9451f 100%);
  background: -ms-linear-gradient(top, #d47d15 0%, #a9451f 100%);
  background: linear-gradient(to bottom, #d47d15 0%, #a9451f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d47d15', endColorstr='#a9451f', GradientType=0 );
	text-shadow: 1px 1px 2px rgba(200, 200, 200, 0.5);
	box-shadow: inset 0px 0px 4px 0px rgb(68, 68, 68, 0.3);
  font-weight: bold;
}

table.krizova td span{
  position: absolute;
}


.rozpis tr.play,
table.krizova tr.play td{
	color: inherit;
	text-shadow: 1px 1px 1px transparent;
	animation: blinker 1s ease-in-out infinite alternate;
}

table.krizova tr.play td:first-child::before{
	content: '\0025B6';
	position: absolute;
	left: 5px;
}

@keyframes blinker{
  to
  {
    color: #ff8b00;
    text-shadow: 1px 1px 1px rgba(40,40,40,0.25);
  }
}

.PlayOff{
  margin-bottom: 40px;
}

.PlayOff th span{
  display: block;
  text-align: center;
  height: 100%;
  line-height: 40px;
}

/* view 1 */
  table.krizova.view1 td.vysledek span.vysledek-1{
    top: 10px;
    left: 4px;
    font-size: 8px;
    border-bottom: 1px solid #d47d15;
  }
  
  table.krizova.view1 td.vysledek span.vysledek-2{
    bottom: 10px;
    left: 4px;
    font-size: 8px;
  }       
  
  table.krizova.view1 td.vysledek span.vysledek-celkem{
    width: 50%;
    font-weight: bold;
    /*border-left: 1px solid #d47d15;*/
    top: 50%;
    transform: translateY(-50%);
  }
/* view 1 end */  
/* view 2 */
  table.krizova.view2 td.vysledek span.vysledek-1{
    width: calc(50% - 0.5px);
    top: 5px;
    left: 0px;
    font-size: 8px;
    border-right: 1px solid #d47d15;
  }
  
  table.krizova.view2 td.vysledek span.vysledek-2{
    width: calc(50% - 0.5px);
    top: 5px;
    right: 0px;
    font-size: 8px;
  }       
  
  table.krizova.view2 td.vysledek span.vysledek-celkem{
    width: calc(100% - 10px);
    font-weight: bold;
    /*border-top: 0.5px solid #d47d15;*/
    bottom: 5px;
    left: 0px;
    transform: translateX(5px);
  }
/* view 2 end */
/* Rozpis zápasů */
  .rozpis table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 14px;
  }
  
  .rozpis table th{
    position: sticky;
    top: 0;
    /*background-color: #c0c0c0;*/
    background: #e0e0e0;
    background: -moz-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(240,240,240,1)), color-stop(100%, rgba(224,224,224,1)));
    background: -webkit-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
    background: -o-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
    background: -ms-linear-gradient(top, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
    background: linear-gradient(to bottom, rgba(240,240,240,1) 0%, rgba(224,224,224,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#e0e0e0', GradientType=0 );
    text-shadow: 1px 1px 2px #ddd;
  }  
  
  .rozpis table th:first-child,
  .rozpis table th:last-child{
    width: 40px;
    border-width: 1px;
  }
  
  .rozpis table th,
  .rozpis table td{
    height: 20px;
    text-align: center;
    border: 0px solid #ccc;
  }
  
  .rozpis table tbody tr{
    cursor: pointer;
  }
  
  .rozpis table tbody tr td{
    position: relative;
  }
  /*
  .rozpis table tbody tr:hover{
    background-color: #007dc1;
    color: #eee;
    text-shadow: 0px 1px 0px #154682;
  }
  
  .rozpis table tbody tr.active{
    background-color: #eca61d;
    color: #5e3b07;
    text-shadow: 0px 1px 0px #e6d585; 
  }
  */
  .rozpis table tbody tr.odehrane td:before{
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: 1px solid #111;
    width: 100%;
  }
  
  .rozpis table tbody tr.odehrane td:first-child:before{
    width: calc(100% - 4px);
    margin-left: 5px;
  }
  
  .rozpis table tbody tr.odehrane td:last-child:before{
    width: calc(100% - 5px);
  }
  
  .rozpis table tbody tr.odehrane.poslZap td:before{
    animation: blinkerRozpis 1s ease-in-out infinite alternate;
  }
  
  @keyframes blinkerRozpis{
    to
    {
      border-bottom-color: #ff8b00;
    }
  }
  
  .rozpis table td{
    position: relative;
    border-width: 1px;
  }
  
  .rozpis table td:nth-child(4){
    border-width: 1px 1px 1px 0px;
  }
  
  .rozpis table th:nth-child(4){
    border-width: 1px 0px 1px 0px;
  }
                                       
  .rozpis table th:nth-child(3){
    width: 22px;
    color: #fd9619;
    text-shadow: 1px 1px 1px #444;
  }
  
  .rozpis table th:nth-child(2),
  .rozpis table th:nth-child(3),
  .rozpis table td:nth-child(2),
  .rozpis table td:nth-child(3){
    border-width: 1px 0px 1px 0px;
  }
  
  .rozpis table td:nth-child(2) span,
  .rozpis table td:nth-child(4) span{
    width: calc(100% - 5px);
    height: 100%;
    display: block;
    position: absolute;
    line-height: 21px;
    padding-left: 5px;
    top: 0;
    left: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /*
  .rozpis table th:nth-child(5),
  .rozpis table td:nth-child(5){
    border-width: 0px 0px 1px 1px;
  }*/
  
  .no-border-left{
    border-width: 1px 1px 1px 0px !important;
  }
  
  .no-border-right{
    border-width: 1px 0px 1px 1px !important;
  }
  
  .no-border-left-right{
    border-width: 1px 0px 1px 0px !important;
  }
  
  .split-table-horizontal{    
    position: absolute;
    top: 100px;
    left: 745px;
    width: 6px;
    height: calc(100% - 110px);
    cursor: e-resize;
  }
  
  .split-table-vertical{
  
  }
  
  .split-rozpis{
  
  }
  /* Rozpis zápasů */
/* Table end */




