/* STYLE */
body {
	margin:0;
	padding:0;
	font-family: 'Open Sans', sans-serif;
	font-size:20px;
	box-sizing:border-box;
	background-color:#000;
	color:#000;
}

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);
	border-radius: 12px;
}

.day_tabs {
	background-color:rgb(119,119,119);
	color:rgb(255,255,255);
	text-align:center;
	padding:3px;
	border-radius: 12px;
	

}


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;
	width:200px;
	height:50px;
	border-radius: 12px;
	
	
}

.day_tabs:hover {
	cursor:pointer;
	background-color:rgb(0,126,255);
}

.day_tabs_active {
	background-color:rgb(0,126,255);
}

.day_box {
	display:none;
}

#day_box1 {
	display:block;
}

.cislo_jedla {
	font-size:24px;
	font-weight:bold;
}

.cislo_jedla_box {
	background-color:rgb(0,126,255);
	color:rgb(255,255,255);
	text-align:center;
	margin-bottom:10px;
	border-radius: 12px;
}

.nazov_jedla_box {
	margin-bottom:10px;
	
}

.day_box .row {
	background-color:rgb(245,245,245);
	margin-bottom:5px;
	border-radius: 12px;
}

.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:50%;
	display:block;
	
}

#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;
	border-radius: 12px;
}
select {
	
	margin:0px 0px 15px 0px;
	padding:5px;
	border:2px solid rgb(0,126,255);
	border-radius:3px;
	min-width:300px;
	max-width:350px;
	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;
}

[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: #666;
}
[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;
}

#objednavka_tabulka {
	
}

#objednavka_tabulka td {
	padding:5px;
}

#objednavka_tabulka td.pocet_menu {
	min-width:1px;
	width:200px !important;
	
}

#objednavka_tabulka td.cislo_menu {
	width:50px;
	text-align:left;
	font-weight:bold;
	font-size: 20px;
	
}

#objednavka_tabulka input[type="number"] {
	min-width:1px;
	width:70px !important;
	
}
.modalDialog {
        position: fixed;
        font-family: Arial, Helvetica, sans-serif;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.8);
        z-index: 99999;
        opacity:0;
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
        pointer-events: none;
    }
    .modalDialog:target {
        opacity:1;
        pointer-events: auto;
    }
    .modalDialog > div {
        width: 800px;
        position: relative;
        margin: 10% auto;
        padding: 5px 20px 13px 20px;
        border-radius: 10px;
        background: #fff;
        background: -moz-linear-gradient(#fff, #fff);
        background: -webkit-linear-gradient(#fff, #fff);
        background: -o-linear-gradient(#fff, #fff);
    }
    .close {
        background: #606061;
        color: #FFFFFF;
        line-height: 25px;
        position: absolute;
        right: -12px;
        text-align: center;
        top: -10px;
        width: 24px;
        text-decoration: none;
        font-weight: bold;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
        -moz-box-shadow: 1px 1px 3px #000;
        -webkit-box-shadow: 1px 1px 3px #000;
        box-shadow: 1px 1px 3px #000;
    }
    .close:hover { background: #00d9ff; }
	

	
	
	