@charset "UTF-8";
/* CSS Document */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}




/* Základní formátování */
html, body {
	height: 100%;
	box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
	position: relative;
	margin: 0;
	min-height: 100%;
	width: 100%;
	font-family: 'Open Sans', sans-serif;
	/*font-family: 'Khand', sans-serif;*/
	color: #2b2b2b;
	font-size: 100%;
	background: #f3f4f4;
	display: flex;
	flex-direction: column;
}

.BodyMain {
  flex: 1 0 auto;
  padding-top: 0;
}









.Content {
	position: relative;
	margin: auto;
	padding: 10px 20px;
	box-sizing: border-box;
}


.Footer {
	position: relative;
	padding: 20px 20px 20px 20px;
	margin-top: 30px;
	box-sizing: border-box;
	flex-shrink: 0;
	background: #000;
	background-size: contain;
	color:#FFF;
	font-family: 'Khand', sans-serif;
}



.Content .Half {
	display: inline-block;
	float: left;
	width: 50%;
	max-width:550px;
	padding: 0 10px;
	box-sizing: border-box;
	vertical-align: top;
}

.Content .Third {
	display: inline-block;
	float: left;
	width: 33%;
	max-width:350px;
	padding: 0 10px;
	box-sizing: border-box;
}



/* úpravy */
.Clear {
	clear: both;
}

.NoDisplay {
	display: none;
}

.Display {
	display: block;
}

.Center {
	text-align: center;
}

.TxtLeft {
	text-align: Left;
}



hr {
	border: 0 none;
	height: 1px;
	background: #CCC;
	margin: 20px auto;
}


.PageTitle {
	position: absolute;
	top:10px;
	left:20px;
	font-family: 'Khand', sans-serif;
	font-weight: 700;
	font-size: 1.3em;
	color: #787878;
	margin: auto;
}

.PageTitle .Ico {
	position: relative;
	display: inline-block;
	float: left;
	height: 19px;
	margin-right: 4px;
	top: 4px;
}

.BtnBack {
	display: inline-block;
	float: left;
	width: 20px;
	height: 30px;
	background: url(../img/BtnBack.svg) no-repeat center center;
	margin: 6px 12px 0 0;
	vertical-align: bottom;
}

.BtnBack:hover {
	opacity: 0.6;
}

.SimpleLink a {
	text-decoration: none;
	color: #2b2b2b;
}

.SimpleLink a:hover {
	text-decoration: underline;
	color: #2b2b2b;
}


.MB0 {
	margin-bottom: 0;
}






/* písma */
h1 {
	font-family: 'Khand', sans-serif;
	font-size: 1.9em;
	font-weight: 600;
	color: #2b2b2b;
}


h2 {
	font-family: 'Khand', sans-serif;
	font-size: 1.6em;
	font-weight: 600;
}



h3 {
	font-family: 'Khand', sans-serif;
	font-size: 1.25em;
	font-weight: 500;
	margin: 0 auto 0.1em auto;
	color: #2b2b2b;
}



p {
	font-size: .95em;
	font-weight: 300;
	line-height: 1.5em;
}

p.Small {
	font-size: 0.8em;
	font-weight: 400;
}


a {
	text-decoration: underline;
}

a:hover {
	color:#ff6600;
	text-decoration: underline;
}

ul {
    list-style: none;
    
}

ul li {
    position: relative;
    font-size: .95em;
	font-weight: 300;
	line-height: 1.5em;
    margin-bottom: 2px;
    margin-left: 20px;
}

ul li:before {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px;
    border-color: #444;
    border-radius: 50%;
    content: "";
    left: -20px;
    top:8px;
}


ul li li {
    position: relative;
    font-size: 0.9em;
    margin: 2px 0 2px 20px;
}

ul li li:before {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    background: #444;
    content: "";
    left: -20px;
    top:7px;
    border: 0 none;
}


ol {
    
}

ol li {
    position: relative;
    font-size: .95em;
	font-weight: 300;
	line-height: 1.5em;
    margin-bottom: 2px;
    margin-left: 20px;
}

ol li li {
    position: relative;
    font-size: 0.9em;
    margin: 2px 0 2px 20px;
}
 
 
/* Login Page */

.LoginContainer {
	position: absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background: no-repeat center top #000;
	background-size:auto;
	text-align: center;
	margin: 0 auto;
}

.LoginContainer .LoginWrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: table; 
	text-align: left;
	padding: 0 30px;
	box-sizing: border-box;
	margin: auto;
}

.LoginContainer .LoginWrapper .Center {
	display: table-cell; 
	vertical-align: middle; 
	width: 100%; 
	position: static;
}

.LoginContainer .Logo {
	width: 350px;
	max-width: 100%;
	display: block;
	margin: 0 auto 10px auto;
}

.LoginContainer h1 {
	color:#FFF;
	font-size: 4em;
	font-weight: 300;
	margin-bottom: 10px;
}

.LoginContainer .Notice {
	display: block;
	background: none;
	color:#ff6600;
	font-size: 1.2em;
	font-weight: 400;
	margin-bottom: 10px;
}


.LoginContainer input[type="text"], .LoginContainer input[type="password"] {
	width: 250px;
	max-width: 100%;
	height: 50px;
	background: rgba(255, 255, 255, 0.95);
	border: 0 none;
	padding: 0 10px;
	box-sizing: border-box;
	margin: 5px;
	font-size: 1em;
	font-weight: 300;
	font-family: 'Khand', sans-serif;
}

.LoginContainer button {
	width: 60px;
	height: 60px;
	background: url(../img/BtnArrowR.svg) no-repeat center center;
	box-sizing: border-box;
	margin: 8px;
	opacity: 1;
}

.LoginContainer button:hover {
	opacity: 0.6;
	background: url(../img/BtnArrowR.svg) no-repeat center center;
}

.LoginContainer ::-webkit-input-placeholder { 
  color: #999;
  font-size: 1.0em;
  font-weight: 300;
}
.LoginContainer ::-moz-placeholder { 
  color: #999;
  font-size: 1.0em;
  font-weight: 300;
}
.LoginContainer :-ms-input-placeholder { 
  color: #999;
  font-size: 1.0em;
  font-weight: 300;
}
.LoginContainer :-moz-placeholder { 
  color: #999;
  font-size: 1.0em;
  font-weight: 300;
}

.LoginContainer a {
	color:#FFF;
	text-decoration: none;
	cursor: pointer;
}

.LoginContainer a:hover {
	color:#ff6600;
	text-decoration: underline;
}

.LoginContainer .FrgotPassword {
	position: absolute;
	bottom: 30px;
	width: 100%;
	font-size: 0.8em;
	color: #FFF;
	}
 


/* Header */
 
.Header {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	padding: 5px 15px 5px 15px;
	box-sizing: border-box;
	text-align: left;
	background: #000;
 }
 
 
.Header .Logo {
	height: 30px;
	max-width: 100%;
	float: left;
	margin: 0 15px 0 0;
 }
 
 
 
/* Content */
.Controls {
	display: inline-block;
	float: right;
	width: auto;
	height: auto;
}

.Controls button {
	height: auto;
	padding: 3px 10px;
	background: #ff6600;
	font-size: 1em;
	font-weight: 400;
	margin: 0 0 0 10px;
	color: #FFF;
}

.Controls button:hover {
	background: rgba(255, 103, 0, 0.7);
	color: #FFF;
}
 

/* ********* */

/* Footer */


.Footer img.Logo {
	height: 60px;
	margin-right: 30px;	
	vertical-align: top;
	}
	
.Footer .FootBox {
	display: inline-block;
	height: auto;
	vertical-align: top;
	border-left:1px solid #777;
	padding: 0 0 0 10px;
	box-sizing: border-box;
	font-size: .9em;
	line-height: 1.2em;
	}
	
.Footer .FootBox a {
	color:#FFF;
	text-decoration: underline;
	}
	
.Footer .FootBox a:hover {
	color:#ff6600;
	text-decoration: underline;
	}

.SocialBox {
	display: inline-block;
	float: right;
}

.SocialBox img {
	margin-left: 15px;
}

.SocialBox img:hover {
	opacity: .7;
}




/* Notice */

.Notice {
	text-align: center;
	display: inline-block;
	background: #2b2b2b;
	padding: 15px 30px 20px 30px;
	position: relative;
	text-align: center;
	color:#FFF;
	font-size: 1.2em;
	font-weight: 500;
}

.Notice img {
	margin-bottom: 10px;
}









/* Formulare  */

.Form p {
	font-size: 0.8em;
	font-weight: 400;
}

label {
	display: block;
	font-size: 0.9em;
	margin-top: 10px;
	width: 500px;
	max-width: 100%;
}

label a {
	float: right;
	color: #ff6600;
	text-decoration: none;
}

label a:hover {
	text-decoration: underline;
}


label.CustomCheckRadio {
	margin-top: 25px;
}

::-webkit-input-placeholder { 
  color: #CCC;
  font-size: 0.95em;
  font-weight: 400;
}
::-moz-placeholder { 
  color: #CCC;
  font-size: 0.95em;
  font-weight: 400;
}
:-ms-input-placeholder { 
  color: #CCC;
  font-size: 0.95em;
  font-weight: 400;
}
:-moz-placeholder { 
  color: #CCC;
  font-size: 0.95em;
  font-weight: 400;
}



input[type="text"] {
	width: 500px;
	max-width: 100%;
	height: 40px;
	background: #FFF;
	border: 1px solid #CCC;
	padding: 0px 10px;
	box-sizing: border-box;
	margin: 4px auto;
	font-size: 1.1em;
	font-weight: 400;
	font-family: 'Khand', sans-serif;
}

input[type="password"] {
	width: 500px;
	max-width: 100%;
	height: 40px;
	background: #FFF;
	border: 1px solid #CCC;
	padding: 0px 10px;
	box-sizing: border-box;
	margin: 4px auto;
	font-size: 1.1em;
	font-weight: 400;
	font-family: 'Khand', sans-serif;
}


input[type="text"].Two {
	width: 248px;
	max-width: 49%;
	vertical-align: top;
}

input[type="text"].TwoPlus {
	width: 210px;
	max-width: 37%;
	vertical-align: top;
}


input[type="text"].Three {
	width: 164px;
	max-width: 32.3%;
}

input[type="text"].Seventy {
	width: 348px;
	max-width: 69%;
}

input[type="text"].Thirty {
	width: 148px;
	max-width: 29%;
}

input[type="text"].DateTime {
	width: 266px;
	max-width: 49%;
	vertical-align: top;
}


textarea {
	width: 500px;
	max-width: 100%;
	height: 160px;
	background: #FFF;
	border: 1px solid #CCC;
	padding: 10px;
	box-sizing: border-box;
	margin: 4px auto;
	font-size: 1em;
	font-weight: 400;
	font-family: 'Khand', sans-serif;
}


.BoxSelect {
	position:relative;
	margin: 4px 0 16px 0;
	width: 500px;
	max-width: 100%;
	box-sizing: border-box;
}

.InputSelect select {
	width:500px;
	max-width: 100%;
	height:40px;
	line-height:40px;
	vertical-align:middle;
	background-color:transparent;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-radius:0px;
	font-size:1.0em;
	color:#222221;
	padding:0;
	-webkit-appearance: none;
	border: 0px none #d8dadd;
	box-sizing: border-box;
	margin: -6px 0 0 0;
	font-weight: 400;
	font-family: 'Khand', sans-serif;
	}
	
.InputSelect {
	width:500px;
	max-width: 100%;
	height:40px;
	line-height:40px;
	vertical-align:middle;
	color:#71777a;
	background: url(../img/ArrowSelect.svg) no-repeat right center #FFF;
	overflow: hidden;
	border: 1px solid #d8dadd;
	box-sizing: border-box;
	padding-left: 10px;
	}
	
	
.BoxSelect.Two {
	display: inline-block;
	width: 248px;
	max-width: 49%;
}

.BoxSelect.Hours {
	display: inline-block;
	width: 100px;
	max-width: 17%;
}


input[type="file"] {
	width: auto;
	max-width: auto;
	height: auto;
	background: transparent;
	border: none;
	padding: 0;
	box-sizing: border-box;
	margin: 4px auto;
	font-size: auto;
	font-weight: auto;
	font-family: 'Khand', sans-serif;
}


	
/******* Custom Checkbox *******/
/* Customize the label (the container) */
.CustomCheck {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: .9em;
  line-height: 24px;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.CustomCheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.CheckMark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 1px solid #CCC;
}

/* On mouse-over, add a grey background color */
.CustomCheck:hover input ~ .CheckMark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.CustomCheck input:checked ~ .CheckMark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.CheckMark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.CustomCheck input:checked ~ .CheckMark:after {
  display: block;
}

/* Style the checkmark/indicator */
.CustomCheck .CheckMark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #999;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}



/******* Custom Radio *******/

/* Customize the label (the container) */
.CustomRadio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: .9em;
  line-height: 24px;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.CustomRadio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.RadioMark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #CCC;
}

/* On mouse-over, add a grey background color */
.CustomRadio:hover input ~ .RadioMark {
  background-color: #FFF;
}

/* When the radio button is checked, add a blue background */
.CustomRadio input:checked ~ .RadioMark {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.RadioMark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.CustomRadio input:checked ~ .RadioMark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.CustomRadio .RadioMark:after {
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #999;
}
	
	
/* Buttony */

button {
	height: auto;
	padding: 3px 10px;
	background: #ff6600;
	font-size: 1em;
	font-weight: 400;
	margin: 0 10px 0 0;
	color: #FFF;
	font-family: 'Khand', sans-serif;
	cursor: pointer;
	box-sizing: border-box;
	border: 0 none;
}

button:hover {
	background: rgba(255, 103, 0, 0.7);
	color: #FFF;
}
 





button.Gray {
	background-color: #444;
}

button.Gray:hover {
	background-color: rgba(69, 69, 69, 0.7);
}


.RightButtons {
	float: right;
	text-align: right;
}

.RightButtons button {
	margin: 0 0 0 20px;
	width: auto;
	height: 40px;
	padding: 0 0 0 36px;
	background: no-repeat left center #ff6600;
	font-family: 'Khand', sans-serif;
}

.RightButtons button:hover {
	color:rgba(255, 102, 0, 0.7);
}



	
/* detail */

.Value {
	font-family: 'Khand', sans-serif;
	font-size: .85em;
	font-weight: 400;
	display: inline-block;
	margin-right: 20px;
}

.Value b {
	font-weight: 600;
}

.CommunicationBox {
	max-width: 100%;
	height: 400px;
	background: #FFF;
	border: 1px solid #CCC;
	padding: 10px;
	box-sizing: border-box;
	margin: 5px 10px;
	font-size: .95em;
	font-weight: 400;
	color: #676767;
	overflow-y:scroll;
}

.CommunicationBox hr {
	border: none;
	border-top: dashed 1px #ccc;
	height: 0;
	background: transparent;
	margin: 10px auto;
}


.TicketDetail {
	width: 500px;
	max-width: 100%;
	height: 250px;
	background: #e5e5e5;
	border: 1px solid #CCC;
	padding: 10px;
	box-sizing: border-box;
	margin: 4px 0 11px 0;
	font-size: 1em;
	font-weight: 400;
	font-family: 'Khand', sans-serif;
}

.TicketDetail td, .TicketDetail th {
	padding: 2px 5px;
}

/* Editor */

.Editor {
	display: block;
	width: 100%;
	height: auto;
	padding: 15px;
	box-sizing: border-box;
	background: #FFF;
	border: 1px solid #CCC;
}