@charset "utf-8";


.sipka_nav_kat {
	padding-top: 10px;
	padding-right: 4px;
	padding-bottom: 10px;
	padding-left: 4px;
	margin-right: 10px;
	margin-left: -18px;
}

/* ----- Výpis produktů ----- */


.availability {
	color: #008c00;
	text-align: center;
	margin-bottom: 12px;
}

.detail .availability {
	color: #008c00;
	font-size: 1.286em;
	font-weight: bold;
	margin-bottom: inherit;
	text-align: left;
}


input.number {
	width: 38px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	display: block;
	float: left;
	margin-right: 5px;
	border: 1px solid #d1d1d1;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background-color: #fff;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSI1MCUiIHkxPSIxMDAlIiB4Mj0iNTAlIiB5Mj0iLTEuNDIxMDg1NDcxNTIwMmUtMTQlIj4KPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ViZWJlYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgIDwvbGluZWFyR3JhZGllbnQ+Cgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0idXJsKCNoYXQwKSIgLz4KPC9zdmc+);
	background-image: -moz-linear-gradient(bottom, #fff 0%, #ebebeb 100%);
	background-image: -o-linear-gradient(bottom, #fff 0%, #ebebeb 100%);
	background-image: -webkit-linear-gradient(bottom, #fff 0%, #ebebeb 100%);
	background-image: linear-gradient(bottom, #fff 0%, #ebebeb 100%);
}

input.big_number {
	font-size: 1.571em;
	line-height: 40px;
	width: 50px;
	height: 44px;
	display: block;
}


.button_c {
	display: block;
	text-indent: -9999px;
	cursor: pointer;
	width: 30px;
	height: 31px;
	margin-left: 67px;
	text-align: center;
}

.button_c_small {
	width: 19px;
	height: 20px;
	margin-left: 37px;
}


span.basket_buy_btn {
	padding: 15px;
}

span.basket_buy_btn_small {
	padding: 18px 16px 17px 16px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-sizing: border-box;
	-moz-background-clip: padding-box;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
}


/* ----- Kusovky ----- */

table.kusovky {
	padding: 5px;
	margin-top: 10px
}

table.kusovky thead {
	color: #81858a;
}


table.kusovky tr:hover {
	background-color: #f5f5f5;
}

table.kusovky tr td{
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
}


/* ----- Detail ----- */

.detail {
	overflow: hidden;
	margin-bottom: 40px;	
}


table.kosik {
	padding: 5px;
	margin-top: 20px
}

table.kosik thead {
	color: #81858a;
}


table.kosik .availability {
	text-align: left;
	margin-bottom: inherit;
}

table.kosik tr {
	border-bottom: 1px solid #d6d6d6;
}


table.kosik tr {
	padding: 5px;
}


/* ----- Registrace ----- */


table.registrace tr {
	border: inherit;
} textarea {
	/* Reduce size from 250px so that form fits into the width of the page */
	width: 190px;
}


table.registrace tr td.label {
	text-align: right;
	width: 20%;
}


/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  display: inline-block;;
  z-index: 2;
}

/* Hide the tooltip content by default */
[data-tooltip]:before, [data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -55px;
  padding: 7px;
  width: 90px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before, [data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

