/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* Body */
body {
	--contrast: #b30017;	/* Red */
	--dark: #000000;		/* Black */
	--light: #ffffff;		/* White */
	--green: #01ab6a;		/* Green */
	--highlight: #fbd465;	/* Yellow */
}

/* Highlight */
mark { background: var(--highlight); }

/* Custom CSS - Active Theme */

/* Custom CSS - This Plugin */
.divider{
	margin: 20px 0;
	border-top: 1px solid #bfd0d7;
}
.kino-table-wrapper {
	margin: 20px auto;
	max-width: 440px;
}

.kino-tables-wrapper .kino-table-wrapper {
	margin: 10px;
	width: 400px;
	max-width: 50%;
	display: inline-block;
}

.kino-table {
	background-color: darkblue;
	border-collapse: collapse;
	border-spacing: 10px!important;
}
.kino-table .theading{
	text-align: center;
	background-color: darkblue;
	padding: 10px 0;
	border-bottom: 1px solid white;
	color: white;
}

.kino-table td {
	width: 1vw;
	height: 1vw;
	text-align: center;
	font-size: 12px;
	border: 0px solid #ccc;
	background-color: darkblue;
	color: #bbbbbb;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}
.kino_empty_line{
	height: 8px;
}
.kino_empty_cell{
	width: 1px!important;
	padding: 2px;
}
.kino_empty_cell:hover{
	background-color: darkblue!important;
}
.kino-table td.highlighted {
	background: -o-radial-gradient(circle, #fef4b3 0%, #f9d77e 40%, #f3aa4e 70%, #f06b37 100%);
	background: radial-gradient(circle, #fef4b3 0%, #f9d77e 40%, #f3aa4e 70%, #f06b37 100%);
	color: black;
	border-radius: 50%;
	font-weight: bold;
}
.kino-table td.red-highlight {
	background-color: red; /* Red color */
	color: #fff;
	font-weight: bold;
	border-radius: 50%;
}
table.kino-table td {
	padding: 5px;
	text-align: center;
}
.kino-table td.red-highlight:hover, .kino-table td.highlighted:hover {
	background-color: #28a745; /* Green hover effect */
	cursor: pointer;
}
.kino-table .kino-logo img {
	height: 50px ;
}
.kino-logo{
	display: inline-block;
	width: 39%;
}
.kino-table .kino-draw, .kino-table .kino-date{
	display: inline-block;
	width: 29%;
	font-size: 18px;
	font-weight: 800;
	position: relative;
	top: 0;
}
.kino-table-footer{
	margin: 0!important;
	background: -webkit-gradient(linear, left top, right top, from(rgba(2,0,36,1)), color-stop(52%, rgba(9,9,121,1)), to(rgba(0,30,117,1)));
	background: -o-linear-gradient(left, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 52%, rgba(0,30,117,1) 100%);
	background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 52%, rgba(0,30,117,1) 100%);
	color: white;
	width: 100%;
	margin-bottom: 10px!important;
}
.kino-table{
	border-bottom: 1px solid white;
}
table.kino-table {
	-webkit-margin-after: 0px!important;
	margin-block-end: 0px!important;
}
.kino-odds, .kino-evens, .kino-column {
	background-color: #188f30;
	padding: 3px;
	border-radius: 5px;
}
table.statistics-table {
	width: 100%;
}
table.statistics-table td {
	padding: 5px;
	text-align: center;
}
.delays .cell, .repeats .cell, .bonus-delays .cell {
	display: inline-block;
	padding: 5px;
}
.delays .numb, .repeats .numb, .repeats .red-numb  , .bonus-delays .numb{
	color: white;
	border-radius: 50%;
	background: black;
	display: inline;
	padding: 5px 8px;
}
.bonus-delays .numb {
	background: red;
}
.repeats .numb {
	background: #D09922;
}
.repeats .red-numb {
	background: red;
}
.delays .ball, .repeats .ball, .bonus-delays .ball {
	text-align: center;
	color: white;
}
.kino-heading{
	font-size: 30px;
	margin-bottom: 0;
	font-weight: 700;
	color: #fedc00;
}
/* Responsive Styles */
@media only screen and (max-width: 800px) {

}

/* Mobile Styles */
@media only screen and (max-width: 500px) {

}
@media only screen and (max-width: 440px) {
	.kino-tables-wrapper .kino-table-wrapper,.kino-table-wrapper {
		margin: 0;
		width: 350px;
		max-width: 100%;
		display: inline-block;
	}
	.kino-table .theading{
		width: 350px;
		max-width: 100%;
	}
	.kino-table-wrapper .kino-table{
		max-width: 100%;
		width: auto;
		margin: 0 auto;
		display: block;
	}
	.kino-table {
		table-layout: fixed;
	}
	.kino_empty_cell{
		width: 1px!important;
		padding: 4px!important;
	}
}