@charset "utf-8";
/* CSS Document */

body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    background-color: #F6F6F6;
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}
.font_jaky{
	font-family: Open Sans;	
}	
.main_table {
	width: 100%;
	max-width: 1920px;
	min-width: 1000px;
}
.containerdiv {
  border: 0;
  float: center;
  position: relative;
} 
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
*:focus {
    outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
transition: background-color 5000s ease-in-out 0s;
}
input#image-button-login{
    background: #007C52 url('../../images/ikony/klic.png') no-repeat left;
    padding-left: 20px;
    height: 35px;
	width: 115px;
	color: #ffffff;
	border: #4C4D5A solid 1px;
	border-radius: 3px;
	cursor: pointer;
	font-size: 15px;
	/*font-weight: bold;*/
}
input#image-button-login:active {
  opacity: 0.7;
}	
.tlacitko:hover {
  opacity: 0.3;
}

/*HLASKY ZACATEK*/
#note {
        position: fixed;
        z-index: 1001;
        top: 0;
        left: 0;
        right: 0;
		height: 85px;
        background: #10241D;
        text-align: center;
        line-height: 2.5;
        overflow: hidden;
		color: #ffffff;
		font-size: 30px;
		/*opacity: 0.85;*/
        -webkit-box-shadow: 0 0 5px black;
        -moz-box-shadow:    0 0 5px black;
        box-shadow:         0 0 5px black;
    }
    .cssanimations.csstransforms #note {
        -webkit-transform: translateY(-90px);
        -webkit-animation: slideDown 2.5s 0.5s 1 ease forwards;
        -moz-transform:    translateY(-90px);
        -moz-animation:    slideDown 2.5s 0.5s 1 ease forwards;
    }
    
    @-webkit-keyframes slideDown {
        0%, 100% { -webkit-transform: translateY(-90px); }
        10%, 90% { -webkit-transform: translateY(0px); }
    }
    @-moz-keyframes slideDown {
        0%, 100% { -moz-transform: translateY(-90px); }
        10%, 90% { -moz-transform: translateY(0px); }
    }
/*HLASKY KONEC*/

/*TOP MENU ZACATEK*/
	.dropdown-content {
		display: none;
		position: absolute;
		right: 2px;
		top: 48px;
		background-color: #ffffff;
		width: 190px;
		height: auto;
		overflow: auto;
		z-index: 1002;
		border-left: #ECEBF3 solid 1px;
		border-right: #ECEBF3 solid 1px;
		border-top: #ECEBF3 solid 1px;
		border-bottom: #ECEBF3 solid 1px;
	}
	.dropdown-content a {
		color: #223E3F;
		padding: 2px 0px 3px 15px;
		text-decoration: none;
		display: block;
		font-size: 13px;
	}
	.show {
		display: block;
	}
	/*TOP MENU KONEC*/

/*CONFIRM ZACATEK*/
/* Set a style for all buttons */
.button_save {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

button:hover {
  opacity:1;
}

/* Float cancel and delete buttons and add an equal width */
.cancelbtn, .deletebtn {
  float: left;
  width: 50%;
}

/* Add a color to the cancel button */
.cancelbtn {
  background-color: #ccc;
  color: black;
}

/* Add a color to the delete button */
.deletebtn {
  background-color: #79A537;
}

/* Add padding and center-align text to the container */
.container_confirm {
  padding: 16px;
  text-align: center;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1001; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.9);
  padding-top: 100px;
  font-family: Titillium Web;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 500px; /* Could be more or less, depending on screen size */
}


 
/* The Modal Close Button (x) */
.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}

.close:hover,
.close:focus {
  color: #f44336;
  cursor: pointer;
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and delete button on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn, .deletebtn {
     width: 100%;
  }
}
/*CONFIRM KONEC*/

/*TLACITKO LOAD ZACATEK*/
.button_load {
  position: relative;
}

.button_load:active {
  background: #79A537;
}

.button_load__text {
  color: #ffffff;
  transition: all 0.2s;
}

.button_load--loading .button_load__text {
  visibility: hidden;
  opacity: 0;
}

.button_load--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}
/*TLACITKO LOAD KONEC*/

label input {
  display: none; /* Hide the default checkbox */
}

/* Style the artificial checkbox */
label span {
  height: 10px;
  width: 10px;
  border: 1px solid grey;
  display: inline-block;
  position: relative;
}

/* Style its checked state...with a ticked icon */
[type=checkbox]:checked + span:before {
  content: '\2714';
  position: absolute;
  top: -5px;
  left: 0;
}
.zvyrazneni-radku tr:hover  {
    background: #F5F5F5;
	font-weight: bold;
    }











