@import url(https://fonts.googleapis.com/css?family=Roboto:300);

/*

color A #24334E
color B #657083
color C #E7E7E7
*/

h3 {
  font-size: xx-large;
    margin: 0;
    padding-bottom: 10px;
    text-align: left;
}
.logoImg {
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}
.login-page {
  width: 420px;
  padding: 8% 0 0;
  margin: auto;
}

.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 15px 45px 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  height: 750px;
}
.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #23324f;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
  background: #576c95;
}
.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.form .message a {
  color: #4CAF50;
  text-decoration: none;
}
.form .register-form {
  display: none;
}
.form .project img {
  width: 330px;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
}
.container .info span {
  color: #4d4d4d;
  font-size: 12px;
}
.container .info span a {
  color: #000000;
  text-decoration: none;
}
.container .info span .fa {
  color: #EF3B3A;
}
body {
  width: 100%;
  background: #76b852; /* fallback for old browsers */
  background: -webkit-linear-gradient(left, #555b69, #23324f);
  background: -moz-linear-gradient(left, #555b69, #23324f);
  background: -o-linear-gradient(left, #555b69, #23324f);
  background: linear-gradient(to left, #555b69, #23324f);
  background-image: url('/img/background.jpg');
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

#poweredBy {
  position: absolute;
  bottom: 3px;
  right: 6px;
  margin: 0;
  padding: 0;

  color: rgb(136, 136, 136);
  font-family: Arial,Helvetica,sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  text-align: right;
  vertical-align: baseline;
}
#poweredBy a {
  color: #aaa;
  font-size: 11px;
  text-decoration: none;
  transition: color 0.5s linear 0s;
}
.messageWrap {
    width: 100%;
    position: absolute;
    top: 40px;
}
.message {
    width: 30%;
    margin: auto;
    border: 3px solid #ffffff;
    background: #009f35;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.message.E {
    background: #ff6c6c;
}
.message.I {
    background: #f1aa49;
}
.message.A {
    background: #009f35;
}
#menu {
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  width: 100%;
  color: #FFF;
}
.third-level-menu
{
    position: absolute;
    top: 0;
    right: -150px;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.third-level-menu > li
{
    height: 30px;
    background: #999999;
}
.third-level-menu > li:hover { background: #CCCCCC; }

.second-level-menu
{
    position: absolute;
    top: 30px;
    left: 0;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.second-level-menu > li
{
    position: relative;
    height: 30px;
    background: #000;
}
.second-level-menu > li:hover { background: #fff; }

.top-level-menu
{
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-level-menu > li
{
    position: relative;
    float: left;
    height: 30px;
    width: 150px;
    background: black;
}
.top-level-menu > li:hover {
  background: green;
  color: #fff;
}

.top-level-menu li:hover > ul
{
    /* On hover, display the next level's menu */
    display: inline;
    color: #000;
}


/* Menu Link Styles */

.top-level-menu a,.top-level-menu .nonLink /* Apply to all links inside the multi-level menu */
{
    font: bold 14px Arial, Helvetica, sans-serif;
    color: #fff;
    text-decoration: none;
    padding: 0 0 0 10px;

    /* Make the link cover the entire list item-container */
    display: block;
    line-height: 30px;
}
.top-level-menu a:hover {
  color: #000000;

}

#content {
  margin: 50px 0 0 25px;
  width: 97%;
}

#content h1 {

}
#content .leftSide,#content .rightSide {
  width: 49%;
  float: left;
}
#content .leftSide table {
  width: 100%;
}
#content .leftSide td {
  min-width: 20px;
}
#content .leftSide input {
  width: 100%;
}
#content .leftSide textarea {
  min-width: 550px;
  min-height: 300px;
}
#content .leftSide button.save, #content .contentBox button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #4CAF50;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
#content input[name="topped"] {
  width: 20px;
}
#content .rightSide td.date {
  text-align: right;
  color: #8f8f8f;
}

#content .contentBox{
  width: 65%;
  border: 1px dashed green;
  float: left;
  padding: 10px;
  box-sizing: border-box;
}
#content .contentBoxBig {
  width: 90%;
  padding: 10px;
}
#content .contentBox table,#content .contentBoxBig table {
  width: 100%;
}
#content .contentBox table tr,#content .contentBoxBig table tr {
  background: #cafec0;
}

#content .contentBox table tr:nth-child(even),#content .contentBoxBig table tr:nth-child(even) {
  background: #9cfc85;
}

#content .contentBox table tr.header,#content .contentBoxBig table tr.header {
  background: #008000;
  color: #FFF;

}
#content .contentBox table tr:hover ,#content .contentBoxBig table tr:hover {
  background: #008000;
  color: #fff;
  cursor: pointer;
}
#content .contentBox table tr.header th{
  padding: 3px;
}
#content .contentBox table tr td {
  height: 40px;
  min-width: 47px;
  padding: 0 10px;
}
#content .contentBox table tr td.neplatna {
  background: red;
}
#content .contentBox table tr td.image {
  text-align: center;
}
#content .contentBox table tr td.nazev {
  font-size: 16px;
  font-weight: bold;
  min-width: 250px;
}
#content .contentBox table tr td.editor {
  width: 50px;
  font-size: 16px;
  text-align: center;
}

#content .contentBox table tr td img {
  max-height: 25px;
  max-width: 50px;
  margin: auto;
  padding-left: 16px;
}
#content .contentBox table tr.addFields td input,#content .contentBox table tr.addFields td select {
  width: 100%;
  border: 2px solid #4CAF50;
  padding: 16px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin: 4px 2px;

}
#content .contentBox table tr.addFields td input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 16px 35px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
}
#content .contentBox table tr.addFields td input[type="submit"]:hover {
  background-color: white;
  color: black;
}
#content .contentBox.helpderBox {

  width: 30%;
  margin-left: 15px;
}

.hidden {
  display: none;
  color: #fff;
}


.contentBox .tableSeznamSoutezi input.fullInput {
  font-size: 14px;
  font-weight: bold;
  height: 45px;
  width: 100%;
}
.contentBox .tableSeznamSoutezi textarea.fullTextarea {
  height: 110px;
  width: 270px;
}
#xloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c82d00;
  z-index: 10000;

}
#xloaderDiv {
  width: 395px;
  height: 43px;
  margin: 300px auto 0 auto;
  background-image: url('/img/progressBar0.png');
  background-repeat: no-repeat;
  background-position: top left;
}
#xloaderDiv>div {
  background-image: url('/img/progressBar100.png');
  background-repeat: no-repeat;
  background-position: top left;
  width: 0%;
  height: 100%;
}
#xloader span {
  color: green;
  display: inline-block;
  left: 1092px;
  position: absolute;
  top: 310px;
  font-weight: bold;
}
#xloader p {
  color: #fff;
  text-align: center;
  width: 100%;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  font-weight: bold;
}
#consoleBoxes {
  height: 450px;
  width: 100%;
}

#consoleBoxes .waitingBox,#consoleBoxes .resultBox {
  display: inline-block;
  width: 45%;
  height: 400px;
  padding: 6px;
  margin: 1px;
  border: 1px solid silver;
  overflow: auto;
  resize: both;
  white-space:pre;
}
#consoleBoxes h4 {
  margin: 0;
  padding: 0;
}
#consoleBoxes .countdown {
  position: relative;
  right: -80%;
  top: -104px;
  width: 18px;
}

@media screen and (max-width: 1300px) {
  #content .contentBox {
    width:100%;
  }
  #content .contentBox.helpderBox {
    margin:0;
    width:100%;
  }
}

noscript {
	width: 800px;
	position: absolute;
	top: 40%;
	left: 50%;
	margin-left: -400px;
	background: rgb(253, 130, 130);
	background-position: -45px -90px;
	padding: 20px;
	font-family: Georgia;
	font-size: 18px;
	font-weight: bold;
	color: red;
	border: 1px solid none;
	border-radius: 45px;
}

noscript div {
	height: 45px;
	background: url('../img/flashes.png') no-repeat top left;
	background-position: -45px 0px;
}
noscript span {
	margin-left: 50px;
	margin-top: 10px;
	line-height: 2.5;
}
#flashMsg {
	display: none;
	width: 600px;
	height: 30px;
	position: absolute;
	top:65px;
	left: 50%;
	margin-left: -300px;
	border: 1px solid none;
	border-radius: 5px;
}
/*
infoZarovka background: rgb(162, 217, 221); color: white; background-position: 0,-90px;
*/


#flashMsg div {
	height: 45px;
	width: 45px;
	position: relative;
	float: left;
	top: -8px;
	margin: 0 3px 0 10px;
	padding: 0;
	background: url('../img/flashes.png');	text-align: center;
	background-position: -45px -90px; /*OK 0,0; error -45,0; vykricnik 0,-45; modryOtaznik -45,-45; infoZarovka 0,-90 */
}
#flashMsg span {
	text-transform: uppercase;
	font-size: 20px;
	margin: 2px 10px;
	display: inline-block;

}
