/*
 * style.css - vychozi styl pro vsechna media
 * Autor: Radek Liska, radarfox at seznam.cz 
 */

/* ==============================================[ css reset ] */

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 {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 100%;
	vertical-align: baseline;
	outline: 0;
}

:focus {
	outline: 0;
}

/* ==============================================[ vlastni tridy ] */

.left {
	float: left;
}

.right {
	float: right;
}

.clear {
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
}

/* ==============================================[ hlavni bloky ] */

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	background: #668a25;
	color: #fff;
	font: 75% Arial, Helvetica, sans-serif;
	text-align: left;
	line-height: 1.5;
}

/* ==============================================[ barvy ] */

.black {
	color: #000;
}

.white {
	color: #fff;
}

.yellow {
	color: #ecec4d;
}

.orange {
	color: #ff9409;
}

/* ==============================================[ radkove prvky ] */

a {
	color: #ecec4d;
	text-decoration: underline;
}

a:hover {
	color: #ff9409;
}

strong,
.strong,
b,
.bold {
	font-weight: bold;
}

em,
.em,
i,
.italic {
	font-style: italic;
}

ins,
.ins,
.underline {
	text-decoration: underline;
}

del,
.del {
	text-decoration: line-through;
}

abbr,
.abbr {
	border-bottom: 1px dotted #fff;
	cursor: help;
}

code,
.code {
	font: 100% "Courier New", Courier, monospace;
}

.capitalize {
	text-transform: capitalize;
}

.lowercase {
	text-transform: lowercase;
}

.uppercase {
	text-transform: uppercase;
}

.smallcaps {
	font-variant: small-caps;
}

sub,
.sub {
	font-size: 75%;
	vertical-align: sub;
}

sup,
.sup {
	font-size: 75%;
	vertical-align: super;
}

big,
.big {
	font-size: 125%;
}

small,
.small {
	font-size: 92%;
}

/* ==============================================[ odstavce ] */

p {
	margin: 1em 0;
	text-align: left;
}

blockquote {
	margin: 1em 4em 1em 4em;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justify {
	text-align: justify;
}

/* ==============================================[ nadpisy ] */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0.8em 0 0.4em;
	color: #ecec4d;
	font-size: 125%;
	font-weight: normal;
}

h1,
h2 {
	font-size: 150%;
}

/* ==============================================[ obrazky ] */

.img,
.img-left,
.img-right,
.imgs,
.imgs-left,
.imgs-right {
	margin: 1em 0;
	text-align: center;
}

.img-left,
.imgs-left {
	float: left;
	margin: 1em 1em 0 0;	
}

.img-right,
.imgs-right {
	float: right;
	margin: 1em 0 0 1em;
}

.img img,
.img-left img,
.img-right img,
.imgs img,
.imgs-left img,
.imgs-right img {
	margin: 0;
}

.imgs img  {
	margin: 0 5px 5px;
}

.imgs-left img,
.imgs-right img {
	margin: 0 0 5px;
}

.img .alt,
.img-left .alt,
.img-right .alt,
.imgs .alt,
.imgs-left .alt,
.imgs-right .alt {
	margin: 0;
	text-align: center;
}

.imgs .alt,
.imgs-left .alt,
.imgs-right .alt {
	margin: -5px 0 0;
}

/* ==============================================[ oddelovace ] */

.hr {
	margin: 1em 0;
	height: 1px;
	background: #829f4c;
}

.hr hr {
	display: none;
	font-size: 0;
}

/* ==============================================[ seznamy ] */

ul,
ol {
	margin: 1em 0 1em 2em;
	list-style: disc outside;
}

ol {
	list-style-type: decimal;
}

ul.list-disc {
	list-style-type: disc;
}

ul.list-circle {
	list-style-type: circle;
}

ul.list-square {
	list-style-type: square;
}

ul.nobullet {
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
}

ol.list-decimal {
	list-style-type: decimal;
}

ol.list-lower {
	list-style-type: lower-alpha;
}

ol.list-upper {
	list-style-type: upper-alpha;
}

ol.list-lower-roman {
	list-style-type: lower-roman;
}

ol.list-upper-roman {
	list-style-type: upper-roman;
}

ul ul,
ol ol {
	margin-bottom: 0.5em;
}

ul ul ul,
ol ol ol {
	margin-bottom: 0.5em;
}

dl {
	margin: 1em 0;
}

dt {
	margin: 0.3em 0;
}

dd {
	margin: 0.3em 0 0.3em 2em;
}

/* ==============================================[ tabulky ] */

table {
	margin: 0.5em 0;
	border-collapse: collapse;
	border-color: #fff;
	font-size: 100%;
}

caption {
	margin: 0 0 0.5em;
	color: #ecec4d;
	font-size: 125%;
	font-weight: normal;
}

td,
th {
	padding: 4px;
	border-color: #fff;
	font-weight: normal;
	text-align: left;
	vertical-align: middle;
}

th {
	font-weight: bold;
}

/* ==============================================[ formulare ] */

fieldset {
	margin: 1em 0;
	padding: 1em;
	border: 1px solid #fff;
}

legend {
	margin: 0 0 0.5em;
	padding: 0 0.5em;
	color: #ecec4d;
	font-size: 125%;
	font-weight: normal;
}

input,
button,
select,
textarea {
	padding: 4px 6px;
	border: 1px solid #3a6214;
	background: #3a6214;
	color: #fff;
	font: normal 100% Arial, Helvetica, sans-serif;
}

select {
	padding: 0;
}

input:focus,
select:focus,
textarea:focus {
	border-color: #fff;
}

input.noborder {
	width: auto !important;
	border: none;
	background: transparent;
}

input.disabled {
	background: #eee;
	color: #999;
}

button {
	overflow: visible;
	border-color: #666;
	background: #bfcd64 url(../img/button.png) repeat-x;
	color: #000;
	font-weight: normal;
	cursor: pointer;
}

button:hover {
	border-color: #000;
	background-image: none;
}

.social {
    clear: both;
}

a.social--like__link {
    background: url('https://www.growway-garden.cz/img/like.png') 0 0 no-repeat;
    display: block;
    width: 70px;
    height: 50px;
    position: relative;
    text-decoration: none;
}

span.social--like__count {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    font-size: 20px;
}
span.social--like {
    display: inline-block;
}

span.social--facebook {
    display: inline-block;
    width: 80%;
}

.video {
	max-width: 	100%;
}

.video iframe {
	max-width: 	100%;
}

a.en {
    display: block;
    width: 50px;
    height: 25px;
    background: url('https://www.growway-garden.cz/img/en.png') 0 0 no-repeat;
    position: absolute;
    left: 30px;
    top: 8px;
}