/*------------------------*/
/*Fonts*/
/*------------------------*/

@font-face {
	font-family: 'AvenirLTStd-Light';
	font-display: swap;
	src: url('data/fonts/AvenirLTStd-Light_edited.otf') format('truetype');
}

@font-face {
	font-family: 'AvenirLTStd-Book';
	font-display: swap;
	src: url('data/fonts/AvenirLTStd-Book.otf') format('truetype');
}

@font-face {
	font-family: 'AvenirLTStd-Medium';
	font-display: swap;
	src: url('data/fonts/AvenirLTStd-Medium_edited.otf') format('truetype');
}


/*------------------------*/
/*Reset*/
/*------------------------*/

html {
	box-sizing: border-box;
}

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

:disabled * {
	pointer-events: none;
}

a {
	color: inherit;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

a:active,a:hover {
	outline-width: 0;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.54;
}

img {
	vertical-align: middle;
	border-style: none;
}

/*------------------------*/
/*Tags*/
/*------------------------*/

body {
	min-width: 360px;
	width: 100%;
	margin:0;     /* This is used to reset any browser-default margins */
	height:100vh; /* This is needed to overcome a Chrome bug. */
}

body,
a, p, li, button,
h1, h2, h3, h4, h5, h6 {
line-height: 1.5;
font-family: 'AvenirLTStd-Light';
}

body.css-modal-opened {
	overflow: hidden;
	position: fixed;
}

a, p, li, button {
	font-family: 'AvenirLTStd-Light';
	font-size: 18px;
}

h1, h2, h3, h4, h5, h6,
.css-bold {
	font-family: 'AvenirLTStd-Medium';
	font-weight: bold;
	letter-spacing: 1.5px;
}

h1, h2, h3, h4, h5, h6,
.css-uppercase {
	text-transform: uppercase;
	letter-spacing: 1px;
}

.css-underline,
.css-button.css-underline,
.css-underline-highlight:hover,
.css-underline-highlight:active,
.css-underline-highlight:focus {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	letter-spacing: 1px;
}

h1 {font-size:36px}
h2 {font-size:30px}
h3 {font-size:24px}
h4 {font-size:20px}
h5 {font-size:18px}
h6 {font-size:16px}

h1, h2, h3, h4, h5, h6 {
	font-weight:400;
	margin:10px 0;
}

/*------------------------*/
/*Text*/
/*------------------------*/

.css-no-decoration {
	text-decoration: none;
}

.css-tiny{font-size:10px}
.css-small{font-size:12px}
.css-medium{font-size:15px}
.css-large{font-size:18px}
.css-xlarge{font-size:24px}
.css-xxlarge{font-size:36px}
.css-xxxlarge{font-size:48px}

/*------------------------*/
/*Responsiveness layout*/
/*------------------------*/

@media (max-width:600px) {
	.css-display-block-small {
		display: block;
		width: 100%!important;
	}

	.css-center-small {
		text-align: center;
	}

	.css-left-small {
		text-align: left;
	}

	.css-margin-top-small {
		padding-top: 16px;
	}
}

@media (min-width: 601px) and (max-width: 992px) {
	.css-display-block-medium{
		display: block;
		width: 100% !important;
	}

	.css-center-medium {
		text-align: center;
	}

	.css-margin-top-medium {
		padding-top: 16px;
	}
}

@media (min-width: 993px) and (max-width: 1250px) {
	.css-display-block-large{
		display: block;
		width: 100% !important;
	}

	.css-center-large {
		text-align: center;
	}

	.css-right-large {
		float: right;
	}

	.css-left-large {
		float: left;
	}
}

@media (min-width: 1251px) {
	.css-center-xlarge {
		text-align: center;
	}

	.css-right-xlarge {
		float: right;
	}

	.css-left-xlarge {
		float: left;
	}
}

/*------------------------*/
/*Layout*/
/*------------------------*/

.css-full-width {
	width: 100%;
}

.css-center {
	text-align: center;
}

.css-right {
	float: right;
}

.css-left {
	float: left;
}

.css-margin-top {
	margin-top: 16px;
}

.css-margin-bottom {
	margin-bottom: 16px;
}

.css-no-margin-bottom {
	margin-bottom: 0px;
}

.css-no-margin-top {
	margin-top: 0px;
}

.css-margin-top-32 {
	margin-top: 32px;
}

.css-margin-bottom-32 {
	margin-bottom: 32px;
}

.css-margin-bottom-64 {
	margin-bottom: 64px;
}

.css-margin-wide {
	margin-right: 16px;
	margin-left: 16px;
}

.css-padding-small {
	padding: 4px 8px;
}

.css-padding {
	padding: 8px 16px;
}

.css-padding-large {
	padding: 12px 24px;
}

.css-padding-4 {
	padding-top: 4px;
	padding-bottom: 4px;
}

.css-padding-16 {
	padding-top: 16px;
	padding-bottom: 16px;
}

.css-padding-64 {
	padding-top: 64px;
	padding-bottom: 64px;
}

.css-padding-wide {
	padding-left: 40px;
	padding-right: 40px;
}

.css-position-relative,
.css-align-container {
	position: relative;
}

.css-align-top-left {
	position: absolute;
	left: 0;
	top: 0;
}

.css-align-top-middle {
	position: absolute;
	left: 50%;
	top: 0;
}

.css-align-top-right {
	position: absolute;
	right: 0;
	top: 0;
}

.css-align-middle-left {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0%,-50%);
	-ms-transform: translate(-0%,-50%);
}

.css-align-middle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
}

.css-align-middle-right {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
}

.css-align-bottom-left {
	position: absolute;
	left: 0;
	bottom: 0;
}

.css-align-bottom-middle {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,0%);
	-ms-transform: translate(-50%,0%);
}

.css-align-bottom-right {
	position: absolute;
	right: 0;
	bottom: 0;
}

.css-bar {
	width: 100%;
	overflow :hidden;
}

.css-bar .css-bar-item {
	width: auto;
	display: inline-block;
	outline: 0;
}

@media (min-width: 991px) and (max-width: 1100px) {
	.css-bar #navigation-right {
		float: right;
	}
}

@media (max-width: 992px) {
	.css-bar .css-bar-cta {
		text-transform: uppercase;
	}
}

@media (min-width: 991px) {
	.css-bar .css-bar-cta {
		position: absolute;
		left: 17px;
		top: 17px;
	}
}

/*------------------------*/
/*Visibility*/
/*------------------------*/

.css-display-inline-block {
	display: inline-block;
}

.css-show {
	display: block!important;
}

.css-hide {
	display: none!important;
}

@media (max-width:600px) {
	 .css-hide-small {
		display: none!important;
	}
}

@media (min-width:601px) and (max-width: 992px) {
	 .css-hide-medium {
		display: none!important;
	}
}

@media (min-width: 993px) and (max-width: 1250px) {
	 .css-hide-large {
		display: none!important;
	}
}

@media (min-width: 1251px) {
	 .css-hide-xlarge {
		display: none!important;
	}
}

/*------------------------*/
/*Grid*/
/*------------------------*/

.css-cell-row {
	display: inline-block;
	width: 100%;
}

.css-col {
	float: left;
	width: 100%;
}

@media (min-width: 0px) {
	.css-col.s1 {width:8.33333%}
	.css-col.s2 {width:16.66666%}
	.css-col.s3 {width:24.99999%}
	.css-col.s4 {width:33.33333%}
	.css-col.s5 {width:41.66666%}
	.css-col.s6 {width:49.99999%}
	.css-col.s7 {width:58.33333%}
	.css-col.s8 {width:66.66666%}
	.css-col.s9 {width:74.99999%}
	.css-col.s10 {width:83.33333%}
	.css-col.s11 {width:91.66666%}
	.css-col.s12 {width:99.99999%}
}

@media (min-width: 601px) {
	.css-col.m1 {width:8.33333%}
	.css-col.m2 {width:16.66666%}
	.css-col.m3 {width:24.99999%}
	.css-col.m4 {width:33.33333%}
	.css-col.m5 {width:41.66666%}
	.css-col.m6 {width:49.99999%}
	.css-col.m7 {width:58.33333%}
	.css-col.m8 {width:66.66666%}
	.css-col.m9 {width:74.99999%}
	.css-col.m10 {width:83.33333%}
	.css-col.m11 {width:91.66666%}
	.css-col.m12 {width:99.99999%}
}

@media (min-width: 993px) {
	.css-col.l1 {width:8.33333%}
	.css-col.l2 {width:16.66666%}
	.css-col.l3 {width:24.99999%}
	.css-col.l4 {width:33.33333%}
	.css-col.l5 {width:41.66666%}
	.css-col.l6 {width:49.99999%}
	.css-col.l7 {width:58.33333%}
	.css-col.l8 {width:66.66666%}
	.css-col.l9 {width:74.99999%}
	.css-col.l10 {width:83.33333%}
	.css-col.l11 {width:91.66666%}
	.css-col.l12 {width:99.99999%}
}

@media (min-width: 1251px) {
	.css-col.xl1 {width:8.33333%}
	.css-col.xl2 {width:16.66666%}
	.css-col.xl3 {width:24.99999%}
	.css-col.xl4 {width:33.33333%}
	.css-col.xl5 {width:41.66666%}
	.css-col.xl6 {width:49.99999%}
	.css-col.xl7 {width:58.33333%}
	.css-col.xl8 {width:66.66666%}
	.css-col.xl9 {width:74.99999%}
	.css-col.xl10 {width:83.33333%}
	.css-col.xl11 {width:91.66666%}
	.css-col.xl12 {width:99.99999%}
}

@media (min-width: 1701px) {
	.css-col.xxl1 {width:8.33333%}
	.css-col.xxl2 {width:16.66666%}
	.css-col.xxl3 {width:24.99999%}
	.css-col.xxl4 {width:33.33333%}
	.css-col.xxl5 {width:41.66666%}
	.css-col.xxl6 {width:49.99999%}
	.css-col.xxl7 {width:58.33333%}
	.css-col.xxl8 {width:66.66666%}
	.css-col.xxl9 {width:74.99999%}
	.css-col.xxl10 {width:83.33333%}
	.css-col.xxl11 {width:91.66666%}
	.css-col.xxl12 {width:99.99999%}
}

/*------------------------*/
/*Default colors*/
/*------------------------*/

.css-shadow {
	box-shadow: 0 2px 5px 0 rgba(41, 8, 73, 0.16), 0 2px 10px 0 rgba(41, 8, 73, 0.12), 0 -2px 10px 0 rgba(41, 8, 73, 0.12);
}

/*Main colors*/

.css-white  { background-color: #ffffff; color: #8f51a3; }
.css-yellow { background-color: #ffd524; color: #290849; }
.css-gold   { background-color: #ecb602; color: #290849; }
.css-purple { background-color: #55185d; color: #ffffff; }
.css-dark   { background-color: #290849; color: #ffffff; }


/*SVG colors*/

.css-white .css-svg svg {
	fill: #8f51a3;
}

.css-yellow .css-svg svg,
.css-gold .css-svg svg {
	fill: #290849;
}

.css-purple .css-svg svg,
.css-dark .css-svg svg {
	fill: #ffffff;
}

/*Hard border*/

.css-white .css-hard-border {
	border: solid 1px #8f51a3;
}

.css-yellow .css-hard-border,
.css-gold .css-hard-border {
	border: solid 1px #290849;
}

.css-purple .css-hard-border,
.css-dark .css-hard-border {
	border: solid 1px #ffffff;
}

/*Soft border*/

.css-white .css-soft-border {
	border: solid 1px rgba(143, 81, 163, 0.1);
}

.css-yellow .css-soft-border,
.css-gold .css-soft-border {
	border: solid 1px rgba(41, 8, 73, 0.1);
}

.css-purple .css-soft-border,
.css-dark .css-soft-border {
	border: solid 1px rgba(255, 255, 255, 0.1);
}

/*Soft highlight*/

.css-white .css-soft-highlight:hover, 
.css-white .css-soft-highlight:focus {
	background-color: rgba(143, 81, 163, 0.1);
}

.css-yellow .css-soft-highlight:hover, 
.css-yellow .css-soft-highlight:focus,
.css-gold .css-soft-highlight:hover, 
.css-gold .css-soft-highlight:focus {
	background-color: rgba(41, 8, 73, 0.1);
}

.css-purple .css-soft-highlight:hover, 
.css-purple .css-soft-highlight:focus,
.css-dark .css-soft-highlight:hover, 
.css-dark .css-soft-highlight:focus {
	background-color: rgba(255, 255, 255, 0.1);
}

/*Hard highlight*/

.css-white .css-hard-highlight:hover,
.css-white .css-hard-highlight:active,
.css-white .css-hard-highlight:focus {
	color: #ffffff;
	background-color: #8f51a3;
}

.css-yellow .css-hard-highlight:hover,
.css-yellow .css-hard-highlight:active,
.css-yellow .css-hard-highlight:focus {
	color: #ffd524;
	background-color: #55185d;
}

.css-gold .css-hard-highlight:hover,
.css-gold .css-hard-highlight:active,
.css-gold .css-hard-highlight:focus {
	color: #ecb602;
	background-color: #55185d;
}

.css-purple .css-hard-highlight:hover,
.css-purple .css-hard-highlight:active,
.css-purple .css-hard-highlight:focus,
.css-dark .css-hard-highlight:hover,
.css-dark .css-hard-highlight:active,
.css-dark .css-hard-highlight:focus {
	color: #55185d;
	background-color: #ffffff;
}

/*Outline highlight*/

.css-white .css-outline-highlight:focus,
.css-white .css-outline-highlight:active {
	outline: 1px solid #8f51a3;
}

.css-yellow .css-outline-highlight:focus,
.css-yellow .css-outline-highlight:active,
.css-gold .css-outline-highlight:focus,
.css-gold .css-outline-highlight:active {
	outline: 1px solid #000000;
}

.css-purple .css-outline-highlight:focus,
.css-purple .css-outline-highlight:active,
.css-dark .css-outline-highlight:focus,
.css-dark .css-outline-highlight:active {
	outline: 1px solid #ffffff;
}

/*Shadow highlight*/

.css-white .css-shadow-highlight:hover,
.css-white .css-shadow-highlight:focus {
	box-shadow: 1px 1px 2px 0 rgba(41, 8, 73, 0.10);
}

.css-yellow .css-shadow-highlight:hover,
.css-yellow .css-shadow-highlight:focus,
.css-gold .css-shadow-highlight:hover,
.css-gold .css-shadow-highlight:focus {
	box-shadow: 2px 2px 5px 0 rgba(41, 8, 73, 0.12), 2px 2px 10px 0 rgba(41, 8, 73, 0.08);
}

.css-purple .css-shadow-highlight:hover,
.css-purple .css-shadow-highlight:focus,
.css-dark .css-shadow-highlight:hover,
.css-dark .css-shadow-highlight:focus {
	box-shadow: 2px 2px 5px 0 rgba(41, 8, 73, 0.16), 2px 2px 10px 0 rgba(41, 8, 73, 0.12);
}


/*------------------------*/
/*Sections*/
/*------------------------*/

.css-section {
	display: block;
}

@media  (min-width: 0px) {
	.css-section {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

@media  (min-width: 601px) {
	.css-section {
		padding-top: 35px;
		padding-bottom: 35px;
	}
}

@media (min-width: 993px) {
	.css-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

@media (min-width: 1251px) {
	.css-section {
		padding-top: 45px;
		padding-bottom: 45px;
	}
}

@media (min-width: 1701px) {
	.css-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/*------------------------*/
/*Button*/
/*------------------------*/

.css-button {
	border: none;
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background-color: inherit;
	cursor: pointer;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.css-button:disabled {
	cursor: not-allowed;
	opacity: 0.3;
}

/*Explicit definition for IE*/
.css-white  .css-button { background-color: #ffffff; color: #8f51a3; }
.css-yellow .css-button { background-color: #ffd524; color: #290849; }
.css-gold   .css-button { background-color: #ecb602; color: #290849; }
.css-purple .css-button { background-color: #55185d; color: #ffffff; }
.css-dark   .css-button { background-color: #290849; color: #ffffff; }

/*------------------------*/
/*Image*/
/*------------------------*/

.css-image {
	max-width: 101%;
	height: auto;
	line-height: 0;
}

.css-circle {
	border-radius: 50%;
}

.css-round {
	border-radius: 8px;
}

.css-rotate-180 {
	-webkit-transform: rotate(180deg);     /* Chrome and other webkit browsers */
	-moz-transform: rotate(180deg);        /* FF */
	-o-transform: rotate(180deg);          /* Opera */
	-ms-transform: rotate(180deg);         /* IE9 */
	transform: rotate(180deg);             /* W3C compliant browsers */

	/* IE8 and below */
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=-1, M12=0, M21=0, M22=-1, DX=0, DY=0, SizingMethod='auto expand');
} 

/*------------------------*/
/*List*/
/*------------------------*/

.css-list-style-type-none {
	list-style-type: none;
	padding-left: 10px;
}

/*------------------------*/
/*Animation*/
/*------------------------*/

.css-transition-transform-fast {
	-webkit-transition: transform 0.2s;
	-moz-transition: transform 0.2s;
	-ms-transition: transform 0.2s;
	-o-transition: transform 0.2s;
	transition: transform 0.2s;
}

.css-transition-fast {
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.css-transition-slow {
	-webkit-transition: all 2s;
	-moz-transition: all 2s;
	-ms-transition: all 2s;
	-o-transition: all 2s;
	transition: all 2s;
}

.css-pulse {
	animation: pulse 5s infinite;
}

@keyframes pulse {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

#motto::after {
	animation: changeMotto 8s linear infinite alternate;
	content: "facebook/nationofte";
}

@keyframes changeMotto {
	0%  { opacity: 1; content: "Národ, ktorý ťa ocení"; }
	60% { opacity: 1; content: "Národ, ktorý ťa ocení"; }
	70%  { opacity: 0; }
	80%   { opacity: 1; content: "facebook/nationofte"; }
	100%  { opacity: 1; content: "facebook/nationofte"; }
}

/*------------------------*/
/*Modal*/
/*------------------------*/

.css-modal {
	z-index: 3;
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: #000000;
	background-color: rgba(0,0,0,0.8);
}

#navigation-sticky-body {
}

#navigation-top {
	position: -webkit-sticky; /* Safari */
	position: sticky;
	z-index: 20;
	top: 0;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}

/*------------------------*/
/*Custom*/
/*------------------------*/

@media (min-width: 601px) and (max-width: 1250px) {
	div.css-truncate p.css-truncate {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		cursor: pointer;
	}
	div.css-truncate p.css-truncate-hide {
		display: none;
	}
}
@media (min-width: 601px) and (max-width: 993px) {
	div.css-truncate p.css-truncate {
		-webkit-line-clamp: 4;
	}
}

@media (min-width: 1251px) {
	div.css-truncate p.css-truncate-hide {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		cursor: pointer;
	}
}

.css-gallery {
	line-height: 0;
	-webkit-column-gap: 10px;
	   -moz-column-gap: 10px;
	        column-gap: 10px;
	display: inline-block;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 0) {
	.css-gallery {
		-webkit-column-count: 1;
		   -moz-column-count: 1;
		        column-count: 1;
	}
}

@media (min-width: 993px) {
	.css-gallery {
		-webkit-column-count: 2;
		   -moz-column-count: 2;
		        column-count: 2;
	}
}

@media (min-width: 1251px) {
	.css-gallery {
		-webkit-column-count: 3;
		   -moz-column-count: 3;
		        column-count: 3;
	}
}

.css-gallery-image {
	margin: 10px auto 10px auto;
	outline-width: 8px;
	outline-style: solid;
	outline-color: rgba(85,24,93,0.3);
	overflow: hidden;
	position: relative;
}
.css-gallery-image:hover:not([data-disable]) {
	filter: drop-shadow(4px 4px 6px rgba(85,24,93,0.2));
	/*outline-width: 2000px;*/
}

body.css-browser-chrome .css-gallery-image:hover:not([data-disable]) {
	position: static;
}

.css-white .css-gallery-image {
	outline-color: rgba(0,0,0,0.3);
}
.css-yellow .css-gallery-image {
	outline-color: rgba(255,213,36,0.3);
}
.css-gold .css-gallery-image {
	outline-color: rgba(236,182,2,0.3);
}
.css-purple .css-gallery-image {
	outline-color: rgba(85,24,93,0.3);
}
.css-dark .css-gallery-image {
	outline-color: rgba(41,8,73,0.3);
}

.css-gallery img {
	width: 100%;
	height: auto;
	outline-width: 8px;
	outline-style: solid;
	outline-offset: -8px;
	transform: scale(1);
}
.css-gallery-image:hover:not([data-disable]) img {
	transform: scale(1.15);
}
.css-white .css-gallery img {
	outline-color: rgba(0,0,0,0.3);
}
.css-yellow .css-gallery img {
	outline-color: rgba(255,213,36,0.3);
}
.css-gold .css-gallery img {
	outline-color: rgba(236,182,2,0.3);
}
.css-purple .css-gallery img {
	outline-color: rgba(85,24,93,0.3);
}
.css-dark .css-gallery img {
	outline-color: rgba(41,8,73,0.3);
}

.css-gallery-meta {
	position: absolute;
	transform: translateY(0);
	visibility: hidden;
	opacity: 0;
}
.css-gallery-image:hover:not([data-disable]) div.css-gallery-meta {
	opacity: 1;
	visibility: visible;
	transform: translateY(-100%);
}
.css-gallery-meta.css-white {
	background-color: rgba(0,0,0,0.7);
}
.css-gallery-meta.css-yellow {
	background-color: rgba(255,213,36,0.7);
}
.css-gallery-meta.css-gold {
	background-color: rgba(236,182,2,0.7);
}
.css-gallery-meta.css-purple {
	background-color: rgba(85,24,93,0.7);
}
.css-gallery-meta.css-dark {
	background-color: rgba(41,8,73,0.7);
}

/*MOUSE OVER CINEMA EFFECT*/
/*
@media (min-width: 993px) {
	.css-gallery:hover:not([data-disable]) .css-gallery-image:not(:hover) img {
		filter: opacity(50%);
	}
	.css-gallery-image:hover:not([data-disable]) img {
		filter: none;
	}
}
*/

.css-gallery-image, 
.css-quote-gallery-image {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.css-quote-gallery-image {
	background-attachment: fixed;
}

.css-quote-card {
	min-width: 300px;
	max-width: 500px;
	width: 40%;
}

.css-image-card {
	background-color: rgba(255, 255, 255, 0.8);
	border: solid 1px rgba(255, 255, 255, 0.9);
}

.css-podcast-card {
	display: block;
	min-height: 50px;
}

.css-podcast-icon {
	display: inline-block;
	min-width: 50px;
	width: 60px;
	max-width: 23%;
}

.css-social-icon {
	display: inline-block;
	width: 80px;
}

/*------------------------*/
/*IDs*/
/*------------------------*/

#leadspace {
	width: 100%;
	height: 100vh;
	min-height: 920px;
	width: 100%;
	margin: auto;
	padding-top: 30px;
	padding-bottom: 30px;
	overflow: hidden;
}

#leadspace img {
	min-width: 150px;
	width: 30%;
	max-width: 600px;
}

#leadspace .css-align-frame-top {
	position: absolute;
	width: 100%;
	height: 21px;
	left: 0;
	top: 20px;
	background-image: url("data/leadspace/frame_horizontal.png");
	background-repeat: repeat-x;
	background-size: 77px 15px; 
}
#leadspace .css-align-frame-right {
	position: absolute;
	height: 100%;
	width: 21px;
	right: 20px;
	top: 0;
	background-image: url("data/leadspace/frame_vertical.png");
	background-repeat: repeat-y;
	background-size: 15px 77px; 
}

#leadspace .css-align-frame-bottom {
	position: absolute;
	width: 100%;
	height: 21px;
	left: 0;
	bottom: 20px;
	background-image: url("data/leadspace/frame_horizontal.png");
	background-repeat: repeat-x;
	background-size: 77px 15px; 
}

#leadspace .css-align-frame-left {
	position: absolute;
	height: 100%;
	width: 21px;
	left: 20px;
	top: 0;
	background-image: url("data/leadspace/frame_vertical.png");
	background-repeat: repeat-y;
	background-size: 15px 77px; 
}


@media (max-width:600px) {
	#leadspace .css-align-frame-top,
	#leadspace .css-align-frame-bottom {
		background-size: 66px 12px; 
	}

	#leadspace .css-align-frame-right,
	#leadspace .css-align-frame-left {
		background-size: 12px 66px; 
	}
}

/*
@media (max-width:600px) {
@media (min-width: 601px) and (max-width: 992px) {
@media (min-width: 993px) and (max-width: 1250px) {
@media (min-width: 1251px) {
*/

#leadspace .css-align-flowers-top-left {
	position: absolute;
	min-width: 150px; 
	width: 25%;
	max-width: 450px;
	left: -2%;
	top: -6%;
}

#leadspace .css-align-flowers-top-middle {
	position: absolute;
	left: 50%;
	top: 0;
}

#leadspace .css-align-flowers-top-right {
	position: absolute;
	min-width: 150px;
	width: 25%;
	max-width: 450px;
	right: -1%;
	top: -4%;
}

#leadspace .css-align-flowers-middle-left {
	position: absolute;
	min-width: 200px;
	width: 40%;
	max-width: 730px;
	top: 35%;
	left: 1%;
	transform: translate(-22%,-15%);
	-ms-transform: translate(-22%,-15%);
}

#leadspace .css-align-flowers-middle-right {
	position: absolute;
	min-width: 100px;
	width: 15%;
	max-width: 300px;
	top: 35%;
	right: 20%;
	transform: translate(40%,-30%);
	-ms-transform: translate(40%,-30%);
}

#leadspace .css-align-flowers-bottom-left {
	position: absolute;
	min-width: 150px;
	width: 20%;
	max-width: 250px;
	left: -1%;
	bottom: -2%;
}

#leadspace .css-align-flowers-bottom-right {
	position: absolute;
	min-width: 100px;
	width: 20%;
	max-width: 250px;
	right: -2%;
	bottom: -80px;
}

@media (max-width:600px) {

	#leadspace .css-align-flowers-top-left {
		left: -3%;
		top: -4%;
	}
	#leadspace .css-align-flowers-bottom-right {
		bottom: -1%;
	}

	#leadspace {
		min-height: 1080px;
	}
}

@media (min-width:1180px) {
	#leadspace {
		min-height: 1080px;
	}

	#leadspace #RSVP {
		position: absolute;
		display: inline-block;
		min-width: 150px;
		width: 20%;
		max-width: 300px;
		top: 60%;
		right: 20%;
		transform: translate(40%,-30%);
		-ms-transform: translate(40%,-30%);
		z-index: 10;
	}
}

/*
#leadspace-content {
	background-color:rgba(255, 255, 255, 0.5);
}
*/

#logo {
	padding: 12px 24px;
}

#logo svg {
	min-width: 260px;
	width: 30%;
	max-width: 800px;
}

#wedding-date {
	font-size: 48px;
	padding: 8px 16px;
}

@media (min-width:993px) {
	.css-align-countdown {
		width: 170px;
		text-align: right;
	}
}

#countdown-days,
#countdown-days2,
#countdown-hours,
#countdown-hours2,
#countdown-minutes,
#countdown-minutes2,
#countdown-seconds,
#countdown-seconds2 {
/*	background-color: rgba(255, 255, 255, 0.5); */
	padding: 8px 16px;
}

#countdown .countdown-value {
	font-size: 36px;
}

@media (max-height:800px) {
	
	#leadspace .css-align-flowers-middle-right {
		display: none;
	}
}

@media (max-height:800px) and (min-width:601px) {
	#logo svg {
		width: 30%;
		max-width: 420px;
	}

	#leadspace .css-align-flowers-middle-left {
		min-width: 200px;
		width: 35%;
		max-width: 650px;
		top: 35%;
		left: 2%;
		transform: translate(-18%,-15%);
		-ms-transform: translate(-18%,-15%);
	}
	#leadspace .css-align-flowers-top-left {
		left: -3%;
		top: -4%;
	}
	#leadspace .css-align-flowers-bottom-right {
		bottom: -3%;
	}
}

@media (max-height:650px) and (max-width:600px), (max-height:740px) and (min-width:601px) {
	#logo {
		padding: 8px 16px;
	}

	#logo svg {
		width: 20%;
		max-width: 400px;
	}

	#wedding-date {
		padding: 0 16px;
		margin: 0.7em auto;
	}

	#countdown-days,
	#countdown-days2,
	#countdown-hours,
	#countdown-hours2,
	#countdown-minutes,
	#countdown-minutes2,
	#countdown-seconds,
	#countdown-seconds2 {
		padding: 0 16px;
	}

	#countdown .countdown-value {
		font-size: 28px;
	}

	#leadspace .css-align-flowers-middle-left {
		min-width: 200px;
		width: 30%;
		max-width: 550px;
		top: 35%;
		left: 2%;
		transform: translate(-18%,-13%);
		-ms-transform: translate(-18%,-13%);
	}
	#leadspace .css-align-flowers-top-left {
		left: -3%;
		top: -4%;
	}
	#leadspace .css-align-flowers-bottom-right {
		bottom: -9%;
	}
}

@media (max-height:900px) and (max-width:800px) {
	#leadspace .css-align-flowers-bottom-right {
		bottom: -4%;
	}
}

#scroll-arrow {
	bottom: 60px;
}


/*
@media (min-width: 0px) {
	#leadspace h1{font-size:26px}
	#leadspace p, #leadspace a{font-size:18px}
	#logo {
		width: 170px;
		height: 170px;
		margin-bottom: 20px;
	}

	.countdown-value {font-size: 28px}
}

@media (min-width: 410px) {
	#leadspace h1{font-size:28px}
	#leadspace p, #leadspace a{font-size:20px}
	#logo {
		width: 180px;
		height: 180px;
		margin-bottom: 25px;
	}

	.countdown-value {font-size: 32px}
}

@media (min-width: 551px) {
	#leadspace h1{font-size:36px}
	#leadspace p, #leadspace a{font-size:22px}
	#logo {
		width: 190px;
		height: 190px;
		margin-bottom: 30px;
	}

	.countdown-value {font-size: 36px}
}

@media (min-width: 651px) {
	#leadspace h1{font-size:48px}
	#leadspace p, #leadspace a{font-size:24px}
	#logo {
		width: 800px;
		height: 800px;
		margin-bottom: 30px;
	}

	.countdown-value {font-size: 36px}
}
*/

#contact,
#footer {
	padding-left: 6px;
	padding-right: 6px;
}

/*------------------------*/
/*Timeline*/
/*------------------------*/

/* The actual timeline (the vertical ruler) */
.css-timeline {
	position: relative;
	padding: 40px 0 20px 0;
	margin: 50px auto 30px auto;
}

/* The actual timeline (the vertical ruler) */
.css-timeline::after {
	content: '';
	position: absolute;
	width: 2px;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: 0px;
}
.css-white  .css-timeline::after { background-color: #55185d; }
.css-yellow .css-timeline::after { background-color: #290849; }
.css-gold   .css-timeline::after { background-color: #290849; }
.css-purple .css-timeline::after { background-color: #ffffff; }
.css-dark   .css-timeline::after { background-color: #ffffff; }

/* Container around content */
.css-timeline-container {
	padding: 10px 50px;
	position: relative;
	background-color: inherit;
	width: 50%;
	margin: 20px 0 20px 0;
}

/* The circles on the timeline */
.css-timeline-container::after {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	right: -13px;
	background-color: red;
	border-style: solid;
	border-width: 2px;
	top: 46px; /*19px*/
	border-radius: 50%;
	z-index: 1;
}
.css-white  .css-timeline-container::after { background-color: #ffffff; border-color: #55185d; }
.css-yellow .css-timeline-container::after { background-color: #ffd524; border-color: #290849; }
.css-gold   .css-timeline-container::after { background-color: #ecb602; border-color: #290849; }
.css-purple .css-timeline-container::after { background-color: #55185d; border-color: #ffffff; }
.css-dark   .css-timeline-container::after { background-color: #290849; border-color: #ffffff; }

/* Place the container to the left */
.css-timeline-container-left {
	left: 0;
}

/* Place the container to the right */
.css-timeline-container-right {
	left: 50%;
}

/* Add arrows to the left container (pointing right) */
.css-timeline-container-right::before,
.css-timeline-container-left::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 48px; /*22px*/
	width: 0;
	z-index: 1;
	border-style: solid;
}

.css-timeline-container-left::before {
	right: 40px;
	border-width: 10px 0 10px 10px;
}
.css-white  .css-timeline-container-left::before { border-color: transparent transparent transparent #ffd524; }
.css-yellow .css-timeline-container-left::before { border-color: transparent transparent transparent #ecb602; }
.css-gold   .css-timeline-container-left::before { border-color: transparent transparent transparent #ffd524; }
.css-purple .css-timeline-container-left::before { border-color: transparent transparent transparent #290849; }
.css-dark   .css-timeline-container-left::before { border-color: transparent transparent transparent #55185d; }

/* Add arrows to the right container (pointing left) */
.css-timeline-container-right::before {
	left: 40px;
	border-width: 10px 10px 10px 0;
}
.css-white  .css-timeline-container-right::before { border-color: transparent #ffd524 transparent transparent; }
.css-yellow .css-timeline-container-right::before { border-color: transparent #ecb602 transparent transparent; }
.css-gold   .css-timeline-container-right::before { border-color: transparent #ffd524 transparent transparent; }
.css-purple .css-timeline-container-right::before { border-color: transparent #290849 transparent transparent; }
.css-dark   .css-timeline-container-right::before { border-color: transparent #55185d transparent transparent; }

/* Fix the circle for containers on the right side */
.css-timeline-container-right::after {
	left: -12px;
}

/* The actual content */
.css-timeline-content {
	padding: 20px 30px;
	position: relative;
	border-radius: 6px;
}
.css-white  .css-timeline-content { background-color: #ffd524; }
.css-yellow .css-timeline-content { background-color: #ecb602; }
.css-gold   .css-timeline-content { background-color: #ffd524; }
.css-purple .css-timeline-content { background-color: #290849; }
.css-dark   .css-timeline-content { background-color: #55185d; }

.css-timeline-content summary {
	cursor: pointer;
	list-style: none;
	outline: none;
}

.css-timeline-content summary::-webkit-details-marker{
	display: none;
}

.css-timeline-image {
	position: absolute;
	top: -25px;
}
.css-timeline-container-left .css-timeline-image {
	right: -175px;
}
.css-timeline-container-right .css-timeline-image {
	left: -175px;
}

.css-timeline-content img {
}
.css-timeline-image img {
	margin: 35px 25px auto 25px;
}
.css-timeline-content img,
.css-timeline-image img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-style: solid;
	border-width: 3px;
	border-radius:50%;
}
.css-white  .css-timeline-image img { border-color: #ffd524; }
.css-yellow .css-timeline-image img { border-color: #ecb602; }
.css-gold   .css-timeline-image img { border-color: #ffd524; }
.css-purple .css-timeline-image img { border-color: #290849; }
.css-dark   .css-timeline-image img { border-color: #55185d; }


/* Media queries - Responsive timeline on small screens */
@media screen and (max-width: 992px) {
	/* Place the timelime to the left */
	.css-timeline::after {
		left: 31px;
	}

	/* Full-width containers */
	.css-timeline-container {
		width: 83%;
		padding-left: 70px;
		padding-right: 25px;
	}

	/* Make sure that all arrows are pointing leftwards */
	.css-timeline-container::before {
		left: 60px;
		border-style: solid;
		border-width: 10px 10px 10px 0;
	}
	.css-white  .css-timeline-container::before { border-color: transparent #ffd524 transparent transparent; }
	.css-yellow .css-timeline-container::before { border-color: transparent #ecb602 transparent transparent; }
	.css-gold   .css-timeline-container::before { border-color: transparent #ffd524 transparent transparent; }
	.css-purple .css-timeline-container::before { border-color: transparent #290849 transparent transparent; }
	.css-dark   .css-timeline-container::before { border-color: transparent #55185d transparent transparent; }

	/* Make sure all circles are at the same spot */
	.css-timeline-container-left::after, .css-timeline-container-right::after {
		left: 19px;
	}

	/* Make all right containers behave like the left ones */
	.css-timeline-container-right {
		left: 0%;
	}

	.css-timeline-container-right .css-timeline-image,
	.css-timeline-container-left .css-timeline-image {
		right: -110px;
		left: auto;
	}
}
@media screen and (max-width: 600px) {
	/* Full-width containers */
	.css-timeline-container {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}
}

/*------------------------*/
/*Oznamenie a pozvanky*/
/*------------------------*/

@media (min-width: 601px) {
	#pozvanka01, #pozvanka02 {
		max-height: 120px;
	}

	#oznamenie {
		max-height: 300px;
	}
}

/*------------------------*/
/*Navigation scrolling*/
/*------------------------*/
#about, #wedding, #feast, #accomodation, #timeline, #gallery {
	scroll-margin-top: 60px;
}

