/* STYLE */
body {
	margin:0;
	padding:0;
	font-family: 'Open Sans', sans-serif;
	font-size:18px;
	box-sizing:border-box;
	background-color:#000;
	color:#fff;
}

h1,h2,h3,h4,h5,h6 {
	font-weight:bold;
}

h1 {
	font-size:24px;
}

h2 {
	font-size:22px;
	background-color:rgb(187,0,0);
	padding:10px;
	color:rgb(255,255,255);
}

.day_tabs {
	background-color:rgb(119,119,119);
	color:rgb(255,255,255);
	text-align:center;
	padding:3px;
	

}

.day_tabs:hover {
	cursor:pointer;
	background-color:rgb(100,100,100);
}

.day_tabs_active {
	background-color:rgb(0,126,255);
}

.day_box {
	display:none;
}

#day_box1 {
	display:block;
}

.cislo_jedla {
	font-size:20px;
	font-weight:bold;
}

.cislo_jedla_box {
	background-color:rgb(0,126,255);
	color:rgb(255,255,255);
	text-align:center;
	margin-bottom:10px;
}

.nazov_jedla_box {
	margin-bottom:10px;
	color:#000;
}

.day_box .row {
	background-color:rgb(245,245,245);
	margin-bottom:5px;
	border-right:3px solid rgb(0,126,255);
}

.day_box .row:hover {
	background-color:rgb(240,240,240);
}

#form_objednavka input[type=text], #form_zrusenie input[type=text] {
	width:100%;
	display:block;
}

#form_objednavka input[type=date], #form_zrusenie input[type=date] {
	width:100%;
	display:block;
	color:#000;
}

#form_objednavka input[type=submit], #form_zrusenie input[type=submit] {
	background-color:rgb(187,0,0);
	padding:10px;
	color:rgb(255,255,255);
	font-weight:bold;	
	border:0;
	color:#000;
}

select {
	
	margin:0px 0px 15px 0px;
	padding:5px;
	border:2px solid rgb(0,126,255);
	border-radius:3px;
	min-width:200px;
	max-width:800px;
	height:40px;
	font-size:16px;
	border-radius: 12px;
	color: #000;
}

#infobox {
	position:absolute;
	display:table;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.8);

}

#infobox .error_msg {
	display:table-cell;
	background-color:rgba(255,0,0,0.5);
	color:rgb(255,255,255);
	font-weight:bold;
	font-size:2em;
	text-align:center;
	vertical-align:middle;
}

#infobox .info_msg {
	display:table-cell;
	background-color:rgba(0,255,0,0.5);
	color:rgb(255,255,255);
	font-weight:bold;
	font-size:2em;
	text-align:center;
	vertical-align:middle;
}

#datum, #cas, #info {
	display:inline-block;
	position:absolute;
	color:rgb(255,255,255);
	font-weight:bold;
}

#datum {
	top:15px;
	left:15px;
}

#cas {
	top:45px;
	left:15px;
	font-size: 36px;
}

#info {
	top:15px;
	right:15px;
	text-align:right;
}

input[type=submit], button {
	background-color:rgb(0,126,255);
	color:rgb(255,255,255);
	padding:0px;
	font-weight:bold;
	border:0;
	margin:0px 0px 0px 0px;
	font-size:15px;
	min-width:120px;
	height:50px;
	border-radius: 12px;
	
	
	
}






[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    line-height: 35px;
    display: inline-block;
    color:#fff;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border: 2px solid rgb(0,126,255);
    border-radius: 100%;
    background: #fff;
	
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 15px;
    height: 15px;
    background: rgb(0,126,255);
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form-heading {
	color:rgb(0,126,255);
	font-size:30px;
	display:block;
}