	/**
  Theme Name: Apollo1
  Description: Apollo1 Starter Theme
  Theme URI: http://apollo1.cz/
  Version: 1.0
  Author: Apollo1 – Aleš Loziak
  Author URI: http://www.apollo1.cz
  Tags: HTML5, responsive
  Licence: Copyright © Ales Loziak

*/

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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* ------------------ ––– ------------------ */
.jumbotron {
	padding: 0 20px;
	margin: 0;
}

.container {
	margin: 0 auto;
}


/*************************************
+ Grid & Flex
*************************************/

.flex {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex-column {
	-webkit-flex-flow: column wrap;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	flex-wrap: wrap;			/* NEW Firefox */
	flex-direction: column;
}

.flex-row {
	-webkit-flex-flow: row wrap;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-wrap: wrap;			/* NEW Firefox */
	flex-direction: row;
}

.jc-sb {
	/* .justify-content space-between */
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
}

.jc-fe {
	/* .justify-content flex-end */
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	justify-content: flex-end;
}

.jc-fs {
	/* flex start */
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
}

.jc-c {
	/* flex center */
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
}

.jc-fe {
	/* flex end */
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	justify-content: flex-end;
}

.ai-fs {
	/* align-items flex-end */
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	align-items: flex-start;
}

.ai-fe {
	/* align-items flex-end */
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	align-items: flex-end;
}

.ai-c {
	/* align-items center */
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
}

.ai-bl {
	/* align-items center */
	-webkit-align-items: baseline;
	-moz-align-items: baseline;
	align-items: baseline;
}

.ac-sa {
	/* align-items space arround */
	-webkit-align-content: space-around;
	-moz-align-content: space-around;
	align-content: space-around;
}

.ac-sb {
	/* align-items space arround */
	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	align-content: space-between;
}

.as-fe {
	/* align-items space arround */
	-webkit-align-self: flex-end;
	-moz-align-self: flex-end;
	align-self: flex-end;
}

/* --------------------------------------------- */

.row {
	display: block;
}

.row .col {
	/*vertical-align: top;*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	display: block;
	float: left;
	/*margin-left: -5px;*/
}

	.row .col.col-padded {
		padding-left: 20px;
		padding-right: 20px;
	}


.col-12 {
  width: 100%;
}
.col-11 {
  width: 91.66666667%;
}
.col-10 {
  width: 83.33333333%;
}
.col-9 {
  width: 75%;
}
.col-8 {
  width: 66.66666667%;
}
.col-7 {
  width: 58.33333333%;
}
.col-6 {
  width: 50%;
}
.col-5 {
  width: 41.66666667%;
}
.col-4 {
  width: 33.33333333%;
}
.col-3 {
  width: 25%;
}
.col-2 {
  width: 16.66666667%;
}
.col-1 {
  width: 8.33333333%;
}

@media (min-width: 520px) {

	.col-xm-12 {
    width: 100%;
  }
  .col-xm-11 {
    width: 91.66666667%;
  }
  .col-xm-10 {
    width: 83.33333333%;
  }
  .col-xm-9 {
    width: 75%;
  }
  .col-xm-8 {
    width: 66.66666667%;
  }
  .col-xm-7 {
    width: 58.33333333%;
  }
  .col-xm-6 {
    width: 50%;
  }
  .col-xm-5 {
    width: 41.66666667%;
  }
  .col-xm-4 {
    width: 33.33333333%;
  }
  .col-xm-3 {
    width: 25%;
  }
	.col-xm-2 {
    width: 16.66666667%;
  }
	.col-xm-1 {
    width: 8.33333333%;
  }

}

@media (min-width: 576px) {

	.col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
	.col-sm-2 {
    width: 16.66666667%;
  }
	.col-sm-1 {
    width: 8.33333333%;
  }
}

@media (min-width: 768px) {
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
}


@media (min-width: 1200px) {
  .col-xl-12 {
    width: 100%;
  }
  .col-xl-11 {
    width: 91.66666667%;
  }
  .col-xl-10 {
    width: 83.33333333%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-8 {
    width: 66.66666667%;
  }
  .col-xl-7 {
    width: 58.33333333%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-5 {
    width: 41.66666667%;
  }
  .col-xl-4 {
    width: 33.33333333%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-2 {
    width: 16.66666667%;
  }
  .col-xl-1 {
    width: 8.33333333%;
  }
}






/*************************************
 +Typography
*************************************/

h1, h2, h3, h4 {
	line-height: normal;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.7em;
}

h3 {
	font-size: 1.4em;
}

h4 {
	font-size: 1.2em;
}

/*************************************
 +Body & Html
*************************************/

html {

}

body {
	font-family: arial, helvetica, sans-serif;
	font-size: 62.5%;
	line-height: 180%;
	color: #000;
	padding: 0;
	margin: 0;
}

/*************************************
 +(X)HTML / HTML 5 Containers
*************************************/

a {}
a:hover {}

strong { font-weight: bold; }
em { font-style: italic; }

p, ul, ol { margin: 0 0 1.4em 0 }

ul li { list-style:disc; list-style-position: outside; margin: 0 0 0 16px; }
ol li { list-style:decimal; list-style-position: outside; margin: 0 0 0 20px; }

/*img { max-width: 100%; }*/

button {
	border: none;
	background-color: transparent;
}

	button:hover {
		cursor: pointer;
	}

img[width],
img[height] {

}

img[src$='.gif'], img[src$='.png'], img[src$='.jpg'] {
	image-rendering: -moz-crisp-edges;         /* Firefox */
	image-rendering:   -o-crisp-edges;         /* Opera */
	image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
}

/*-moz-font-feature-settings: "liga=1, dlig=1";   /*ligatury
-ms-font-feature-settings: "liga", "dlig";
-webkit-font-feature-settings: "liga", "dlig";
-o-font-feature-settings: "liga", "dlig";
font-feature-settings: "liga", "dlig";

-moz-font-feature-settings:"onum" 1;
-moz-font-feature-settings:"onum=1";
-ms-font-feature-settings:"onum" 1;
-o-font-feature-settings:"onum" 1;
-webkit-font-feature-settings:"onum" 1;
font-feature-settings:"onum" 1;


-moz-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-webkit-font-smoothing: subpixel-antialiased;*/


/* ------------------ table ------------------ */
table {
	width: 100%;
	border-top: 1px solid #aaa;
}

	td, th {
		/* border-bottom: 1px solid #aaa; */
		padding: 8px 12px;
	}

	tfoot {}

		tfoot td,
		tfoot th {
			border: none;
			font-size: .8em;
		}


/* ------------------ forms ------------------ */
		form {

		}

		input, select, textarea {
			background-color: transparent;
			border: none;
			font-weight: 700;
			border: 1px solid #000;
		  padding: 10px;
		}

		input[type="submit"] {
			padding: 10px 20px;
			text-transform: uppercase;
		}

			input[type="submit"]:hover {
				cursor: pointer;
				background-color: #000;
				color: #fff;
			}

			select:hover {
				cursor: pointer;
			}


/* ------------------ video & iframe responsive ------------------ */
.video-container,
.iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.video-container iframe,
.video-container object,
.video-container embed,
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*************************************
 +
*************************************/
.wrapper {
	font-size: 120%;
	background: #eee;
}


/* ------------------ header.head ------------------ */

	header.master {

	}

	.wrapper-content {
		overflow: hidden;
	}



/* ------------------ content ------------------ */
		.content {

		}


/*************************************
 +Hn
*************************************/
h1, h2, h3, h4 {}

/* ------------------ h1 ------------------ */
h1 {

}

	h1 a {

	}

		h1 a span {  }


/*************************************
 +Menus
*************************************/

/* ------------------ menu-container ------------------ */
.menu {

}

	.menu ul,
	ul.menu {
		margin: 0;
		padding: 0;
	}

		.menu li {
			list-style: none;
		}

			.menu li a {
				display: block;
			}


/*************************************
 +Content
*************************************/
/* ------------------ meta ------------------ */
.meta { }

	.meta-edit-post {
		margin: 1.4em 0;
	}


/* ------------------ page ------------------ */



/* ------------------ single ------------------ */



/* ------------------ pagination ------------------ */
.pagination {

}

	.pagination .paged {
		margin: 0 10px;
	}

	.pagination .previous {}

	.pagination .next {}

/* ------------------ comments ------------------ */
.comments {}

	.comments ul li,
	.comments ol li {
		list-style: none;
	}

		.comments .commentMeta * {
			display: inline-block;
		}

			.comments .commentMeta address {
				font-weight: 500;
			}


/* ------------------ search ------------------ */
.search-form {}

	.search-form input {
		border: none;
		color: #000;
		padding: 4px 6px 5px;
		background: #e6e6e6;
		width: 180px;
	}

	.search-form #searchsubmit {
		border: none;
		position: relative;
		top: 0px;
		width: 22px; height: 19px;
		background: transparent url('images/finder.png') center top no-repeat;
	}

		.search-form #searchsubmit:hover {
			cursor: pointer;
			background: url('images/finder.png') center -18px no-repeat;
		}


/*************************************
 +Footer
*************************************/
footer {}



/*************************************
 +Gallery
*************************************/
/* ------------------ NextGEN Gallery ------------------ */
	.ngg-galleryoverview {

	}

		.ngg-gallery-thumbnail-box {
			float: left;
			margin: 0 18px 13px 0;
		}

			.ngg-gallery-thumbnail-box.third {
				margin-right: 0;
			}

			.ngg-gallery-thumbnail {}

				.ngg-gallery-thumbnail a {
					display: block;
				}

					.ngg-gallery-thumbnail a img {}


/* ------------------ ACF Gallery ------------------ */
		figure.acf-gallery {

		}

			figure.acf-gallery .acf-gallery-item {
				float: left;
				margin: 0 18px 13px 0;
			}

				figure.acf-gallery .third {
					margin-right: 0;
				}

				figure.acf-gallery .acf-gallery-item img {

				}

				figure.featured.acf-gallery .acf-gallery-item img {
					/*width: 457px;  hack */
				}




/* ------------------ WP Gallery ------------------ */
		.gallery {
			display: block;
		}

			.gallery-item {
				float: left;
				margin: 0 18px 13px 0;
			}

				.gallery-item.third {
					margin-right: 0;
				}

				.gallery-icon {}

					.gallery-icon a {
						display: inline-block;
					}

						.gallery-icon img {
							max-width: 100%;
							height: 100%;
						}

		.gallery-columns-2 {}

			.gallery-columns-2 .gallery-item {
				width: calc(50% - 18px);
			}

/*************************************
 +WPML Language Switcher
*************************************/
#language-switcher {
	border: 1px solid;
}



/*************************************
 +Misc
*************************************/
.clearfix:after,
.row:after,
.row:before {
	content: " ";
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}

.clearfix:before,
.row:before {
	display: table;
  content: " ";
}

.hidden { display: none !important; }
