/* Import */

@font-face {
	font-family: "FreightSans";
	font-display: fallback;
	src: url("../fonts/FreightSansProBlack-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/FreightSansProBlack-Regular.woff") format("woff"), url("../fonts/FreightSansProBlack-Regular.ttf") format("truetype"), url("../fonts/FreightSansProBlack-Regular.svg#FreightSansProBlack-Regular") format("svg");
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: "FreightSans";
	font-display: fallback;
	src: url("../fonts/FreightSansProBold-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/FreightSansProBold-Regular.woff") format("woff"), url("../fonts/FreightSansProBold-Regular.ttf") format("truetype"), url("../fonts/FreightSansProBold-Regular.svg#FreightSansProBold-Regular") format("svg");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "FreightSans";
	font-display: fallback;
	src: url("../fonts/FreightSansProMedium-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/FreightSansProMedium-Regular.woff") format("woff"), url("../fonts/FreightSansProMedium-Regular.ttf") format("truetype"), url("../fonts/FreightSansProMedium-Regular.svg#FreightSansProMedium-Regular") format("svg");
	font-weight: 500;
	font-style: normal;
}

/***** Reset *****/

*,
*:after,
*:before {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
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;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
body {
	line-height: 1;
	font-family: "FreightSans", sans-serif;
	font-weight: 500;
}
body.overflow {
	overflow: hidden;
}
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;
}
:focus {
	outline: none;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.transition {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.transition:active,
.transition:focus {
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
}

/* Typography */

p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
p a {
	font-weight: 700;
	color: #df1b50;
}
p a:focus,
p a:active {
	color: #e77724;
}
p strong {
	font-weight: 700;
}
p em {
	font-weight: 600;
}
sub,
sup {
	position: relative;
	vertical-align: baseline;

	font-size: 75%;
	line-height: 0;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}

/* Click Ripple */

.click__ripple__haver {
	overflow: hidden;
	position: relative;
}
.click__ripple {
	display: block;
	opacity: 0.3;
	position: absolute;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	z-index: 20;

	background: #ffffff;
	border-radius: 100%;
}
.click__ripple.animate {
	-webkit-animation: choice__ripple 0.45s linear;
	-moz-animation: choice__ripple 0.45s linear;
	-o-animation: choice__ripple 0.45s linear;
	animation: choice__ripple 0.45s linear;
}
@-webkit-keyframes choice__ripple {
	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		-moz-transform: scale(2);
		-ms-transform: scale(2);
		-o-transform: scale(2);
		transform: scale(2);
	}
}
@-moz-keyframes choice__ripple {
	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		-moz-transform: scale(2);
		-ms-transform: scale(2);
		-o-transform: scale(2);
		transform: scale(2);
	}
}
@-o-keyframes choice__ripple {
	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		-moz-transform: scale(2);
		-ms-transform: scale(2);
		-o-transform: scale(2);
		transform: scale(2);
	}
}
@keyframes choice__ripple {
	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		-moz-transform: scale(2);
		-ms-transform: scale(2);
		-o-transform: scale(2);
		transform: scale(2);
	}
}

/* Tracking Pixels */

.tracking__pixels {
	pointer-events: none;
	position: absolute;
	opacity: 0;
	z-index: -1;
}

/* PreHeader */

.preheader__home {
	display: none;
}
.preheader__home__wrap {
	background: #fcdc31;
}
.preheader__home__inner {
	padding: 0 0 0 15px;
}
.preheader__home__inner__left,
.preheader__home__inner__right {
	font-size: 0;
}
.preheader__home__inner__left {
	float: left;
}
.preheader__home__inner__right {
	float: right;
}
.preheader__home__inner__left__item,
.preheader__home__inner__right__phone,
.preheader__home__inner__right__help {
	display: inline-block;
	vertical-align: top;

	font-size: 14px;
	line-height: 40px;
	text-decoration: none;
}
.preheader__home__inner__left__item,
.preheader__home__inner__right__phone {
	position: relative;
	z-index: 0;

	color: #000000;
	font-weight: 500;
}
.preheader__home__inner__left__item {
	margin: 0 30px 0 0;
}
.preheader__home__inner__left__item:before {
	bottom: 12px;
	content: " ";
	display: block;
	height: 2px;
	left: 0;
	position: absolute;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	width: 0;
	z-index: -1;

	background: #e77724;
}
.preheader__home__inner__left__item:active:before,
.preheader__home__inner__left__item:focus:before,
.preheader__home__inner__left__item:hover:before {
	width: 100%;
}
.preheader__home__inner__right__phone img {
	display: inline-block;
	height: auto;
	margin: -1px 4px 0 0;
	max-width: 14px;
	vertical-align: middle;
	width: 100%;
}
.preheader__home__inner__right__phone i {
	margin: 0 6px 0 0;
	vertical-align: middle;
}
.preheader__home__inner__right__help {
	margin: 0 0 0 10px;
	padding: 0 15px;

	color: #ffffff;
	font-weight: 700;

	background: #e77724;
}
.preheader__home__inner__right__help:active,
.preheader__home__inner__right__help:focus,
.preheader__home__inner__right__help:hover {
	background: #ce600f;
}

@media screen and (min-width: 1200px) {
	.preheader__home {
		display: block;
	}
	.preheader__home__inner {
		margin: auto;
		max-width: 1150px;
		padding: 0;
	}
	.preheader__home__inner__right__phone img {
		margin: -1px 8px 0 0;
	}
	.preheader__home__inner__right__help {
		margin: 0 0 0 30px;

		font-size: 16px;
	}
}

/* Header */

.header__home {
	position: relative;
}
.header__home__wrap {
	position: relative;
	z-index: 10;

	background: #ffffff;
}
.header__home__inner {
	padding: 17px 15px;
}
.header__home__inner__logo,
.header__home__inner__logo--img {
	display: block;
}
.header__home__inner__logo {
	float: left;
	width: 144px;

	text-decoration: none;
}
.header__home__inner__logo--img {
	height: auto;
	width: 100%;
}

@media screen and (min-width: 1200px) {
	.header__home {
		margin: auto;
		max-width: 1150px;
	}
	.header__home__wrap {
		float: left;
	}
	.header__home__inner {
		padding: 33px 0;
	}
	.header__home__inner__logo {
		width: 174px;
	}
}

/* Navigation */

.nav__home__wrap {
	display: none;
	height: 100vh;
	overflow: scroll;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9;

	background: #009cb6;
}
.nav__home__inner__menu {
	padding: 57px 0 0;
}
.nav__home__inner__menu__level2 {
	display: none;
}
.nav__home__inner__menu,
.nav__home__inner__menu__item,
.nav__home__inner__menu__item__anchor,
.nav__home__inner__menu__item__anchor__icon,
.nav__home__inner__menu__item__anchor__heading,
.nav__home__inner__menu__item__anchor__subheading,
.nav__home__inner__menu__item__anchor__arrow {
	display: block;
}
.nav__home__inner__menu__item {
	position: relative;
}
.nav__home__inner__menu__item.search {
	margin: -1px 0 0;
}
.nav__home__inner__menu__item__anchor {
	padding: 15px 0 15px 70px;
	position: relative;

	font-size: 0;
	text-decoration: none;
}
.search .nav__home__inner__menu__item__anchor {
	padding: 23px 0 24px 70px;

	border-top: 1px solid #38b3c5;
}
.nav__home__inner__menu__item__anchor:after {
	bottom: 0;
	content: " ";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;

	background: #38b3c5;
	border-left: 70px solid #009cb6;
	border-right: 15px solid #009cb6;
}
.nav__home__inner__menu__item__anchor:active,
.nav__home__inner__menu__item__anchor:hover,
.nav__home__inner__menu__item__anchor:focus {
	background: #16a5bc;
}
.nav__home__inner__menu__item__anchor__icon {
	height: auto;
	left: 10px;
	margin: -25px 0 0;
	max-width: 50px;
	position: absolute;
	top: 50%;
	width: 100%;
}
.nav__home__inner__menu__item__anchor i.fa-search {
	left: 22px;
	margin: -12px 0 0;
	position: absolute;
	top: 50%;

	color: #ffffff;
	font-size: 25px;
}
.nav__home__inner__menu__item__anchor__icon__desktop {
	display: none;
}
.nav__home__inner__menu__item__anchor__heading {
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
}
.nav__home__inner__menu__item__anchor__subheading {
	overflow: hidden;
	padding: 0 40px 0 0;
	white-space: nowrap;

	color: #b1e4e3;
	font-size: 14px;
	line-height: 17px;
	text-overflow: ellipsis;
}
.nav__home__inner__menu__item__anchor__arrow {
	height: auto;
	margin: -5px 0 0;
	max-width: 7px;
	position: absolute;
	right: 15px;
	top: 50%;
	width: 100%;
}
.nav__home__inner__menu__item__anchor i.fa-angle-right {
	margin: -9px 0 0;
	position: absolute;
	right: 15px;
	top: 50%;

	color: #ffffff;
	font-size: 18px;
}
.nav__home__inner__contact {
	margin: -1px 0 0;
	padding: 10px 15px 0;
	position: relative;

	font-size: 0;
	text-align: center;

	border-top: 1px solid #38b3c5;
}
.nav__home__inner__contact__anchor,
.nav__home__inner__contact__phone {
	text-decoration: none;
}
.nav__home__inner__contact__anchor {
	display: block;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
}
.nav__home__inner__contact__anchor:active,
.nav__home__inner__contact__anchor:hover,
.nav__home__inner__contact__anchor:focus {
	color: #fcdc31;
}
.nav__home__inner__contact__social {
	margin: 10px 0 18px;
}
.nav__home__inner__contact__social a {
	display: inline-block;
	height: 40px;
	margin: 0 8px;
	vertical-align: middle;
	width: 40px;

	line-height: 40px;
	text-align: center;
}
.nav__home__inner__contact__social a i {
	vertical-align: middle;

	color: #ffffff;
	font-size: 34px;
}
.nav__home__inner__contact__social a:active i,
.nav__home__inner__contact__social a:focus i {
	color: #f1a91e;
}
.nav__home__inner__contact__social a:hover i {
	color: #fcdc31;
}
.nav__home__inner__contact__phone {
	display: inline-block;
	margin: 0 0 15px;
	padding: 9px;
	vertical-align: middle;
	width: 100%;

	color: #009cb6;
	font-size: 16px;
	font-weight: 700;
	line-height: 19px;

	background: #ffffff;
}
.nav__home__inner__contact__phone:active,
.nav__home__inner__contact__phone:focus,
.nav__home__inner__contact__phone:hover {
	background: #fcdc31;
}
.nav__home__inner__contact__phone img {
	display: inline-block;
	height: auto;
	margin: -2px 7px 0 0;
	max-width: 12px;
	vertical-align: middle;
	width: 100%;
}
.nav__home__inner__contact__phone i {
	margin: -2px 7px 0 0;
	vertical-align: middle;

	color: #009cb6;
}
.nav__home__inner__trigger {
	display: block;
	height: 24px;
	position: absolute;
	right: 15px;
	top: 15px;
	width: 24px;
}
.nav__home__inner__trigger span {
	display: block;
	height: 3px;
	left: 0;
	opacity: 1;
	position: absolute;
	width: 100%;

	background: #000000;
}
.nav__home__inner__trigger span:nth-child(1) {
	top: 5px;
}
.nav__home__inner__trigger span:nth-child(2),
.nav__home__inner__trigger span:nth-child(3) {
	top: 12px;
}
.nav__home__inner__trigger span:nth-child(4) {
	top: 19px;
}
.nav__home__inner__trigger.show span:nth-child(1),
.nav__home__inner__trigger.show span:nth-child(4) {
	opacity: 0;
	top: 12px;
}
.nav__home__inner__trigger.show span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.nav__home__inner__trigger.show span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media screen and (min-width: 1200px) {
	.nav__home__wrap {
		display: block;
		float: right;
		height: auto;
		overflow: visible;
		position: static;
		width: auto;

		background: #ffffff;
	}
	.nav__home__inner__menu {
		padding: 0;

		font-size: 0;
	}
	.nav__home__inner__menu__item,
	.nav__home__inner__menu__item.search {
		display: inline-block;
		margin: 0 0 0 30px;
		vertical-align: baseline;
	}
	.nav__home__inner__menu__item:after {
		bottom: 30px;
		content: " ";
		display: block;
		height: 3px;
		left: 0;
		position: absolute;
		width: 0;

		background: #e77724;
		-webkit-transition: all 0.2s ease;
		-moz-transition: all 0.2s ease;
		-o-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}
	.nav__home__inner__menu__item:hover:after {
		width: 100%;
	}
	.nav__home__inner__menu__item__anchor,
	.search .nav__home__inner__menu__item__anchor {
		padding: 0;

		border: 0 none;
	}
	.search .nav__home__inner__menu__item__anchor {
		height: 93px;

		line-height: 93px;
	}
	.nav__home__inner__menu__item__anchor .click__ripple {
		display: none;
	}
	.nav__home__inner__menu__item__anchor:active,
	.nav__home__inner__menu__item__anchor:focus,
	.nav__home__inner__menu__item__anchor:hover {
		background: #ffffff;
	}
	.nav__home__inner__menu__item__anchor:active,
	.nav__home__inner__menu__item__anchor:focus {
		color: #e77724;
	}
	.nav__home__inner__trigger,
	.search .nav__home__inner__menu__item__anchor__heading,
	.nav__home__inner__menu__item__anchor:after,
	.nav__home__inner__menu__item__anchor__icon,
	.nav__home__inner__menu__item__anchor__subheading,
	.nav__home__inner__menu__item__anchor__arrow,
	.nav__home__inner__menu__item__anchor i.fa-angle-right,
	.nav__home__inner__contact {
		display: none;
	}
	.nav__home__inner__menu__item__anchor__icon__desktop {
		display: block;
		height: auto;
		margin: 41px 0 0;
		max-width: 11px;
		width: 100%;
	}
	.nav__home__inner__menu__item__anchor i.fa-search {
		margin: 0;
		position: static;
		vertical-align: middle;

		color: #000000;
		font-size: 14px;
	}
	.nav__home__inner__menu__item__anchor__heading {
		color: #000000;
		font-size: 14px;
		line-height: 93px;
		text-transform: uppercase;
	}
	.nav__home__inner__menu__item__anchor:active .nav__home__inner__menu__item__anchor__heading,
	.nav__home__inner__menu__item__anchor:focus .nav__home__inner__menu__item__anchor__heading {
		color: #e77724;
	}
	.nav__home__inner__menu__level2 {
		left: -20px;
		position: absolute;
		width: 250px;
		z-index: 10;

		background: #ffffff;
		border: 1px solid #ebebeb;
		border-bottom: 0 none;
	}
	.nav__home__inner__menu__item__level2,
	.nav__home__inner__menu__item__level2 a {
		display: block;
	}
	.nav__home__inner__menu__item__level2 {
		border-bottom: 1px solid #ebebeb;
	}
	.nav__home__inner__menu__item__level2 a {
		padding: 0 20px;

		color: #000000;
		font-size: 14px;
		line-height: 50px;
		text-decoration: none;
	}
	.nav__home__inner__menu__item__level2 a:hover {
		padding: 0 20px 0 30px;

		color: #e77724;
	}
	.nav__home__inner__menu__item__level2 a:active,
	.nav__home__inner__menu__item__level2 a:focus {
		padding: 0 20px 0 30px;

		color: #ffffff;

		background: #e77724;
	}
}

/* Hero */

.hero__home__inner {
	padding: 20px 15px;

	text-align: center;

	background: #fcdc31;
}
.hero__home__inner__heading {
	margin: 0 auto 12px;
	max-width: 460px;

	font-size: 36px;
	font-weight: 900;
	line-height: 36px;
}
.hero__home__inner__subheading {
	display: block;
	margin: 0 auto 5px;
	max-width: 470px;

	color: #000000;
	font-size: 16px;
	line-height: 24px;
}

@media screen and (min-width: 1200px) {
	.hero__home__inner {
		margin: auto;
		max-width: 1150px;
		padding: 50px 60px 54px;

		text-align: left;

		background: #fcdc31 url(/res/images/hero--bg.svg) no-repeat right bottom;
	}
	.hero__home__inner__heading {
		margin: 0 0 26px;
		max-width: 500px;
		font-size: 48px;
		line-height: 49px;
	}
	.hero__home__inner__subheading {
		margin: 0 0 11px;
		font-size: 21px;
		line-height: 27px;
	}
}

/* Products */

.products__home__wrap {
	background: #ffffff;
}
.products__home__inner {
	padding: 25px 15px 2px;

	font-size: 0;
	text-align: center;
}
.products__home__inner__item {
	display: inline-block;
	margin: 0 0 25px;
	vertical-align: top;
	width: 50%;
}
.products__home__inner__item.pzp,
.products__home__inner__item.hypoteky,
.products__home__inner__item.poistenie,
.products__home__inner__item.zdravotne-poistenie,
.products__home__inner__item.poistenie-na-hory,
.products__home__inner__item.pausaly {
	padding: 0 7px 0 0;
}
.products__home__inner__item.sporenie,
.products__home__inner__item.pozicky,
.products__home__inner__item.havarijne-poistenie,
.products__home__inner__item.cestovne-poistenie,
.products__home__inner__item.poistenie-zodpovednosti-zamestnanca,
.products__home__inner__item.investovanie {
	padding: 0 0 0 7px;
}
.products__home__inner__item.disabled {
	display: none;
}
.products__home__inner__item__icon {
	display: block;
	height: 120px;
	padding: 10px 0 0 0;
	width: 100%;

	border-radius: 3px;
	box-shadow: 0 -4px 0 rgba(0, 0, 0, 0.15) inset;
}
.products__home__inner__item__icon img {
	display: block;
	height: auto;
	margin: auto;
	max-width: 100px;
	width: 100%;
}
.pzp .products__home__inner__item__icon {
	background: #e77724;
}
.pzp .products__home__inner__item__icon:active,
.pzp .products__home__inner__item__icon:focus {
	background: #cf6c21;
}
.sporenie .products__home__inner__item__icon {
	background: #45c2ca;
}
.sporenie .products__home__inner__item__icon:active,
.sporenie .products__home__inner__item__icon:focus {
	background: #3ca8b0;
}
.hypoteky .products__home__inner__item__icon {
	background: #df1b50;
}
.hypoteky .products__home__inner__item__icon:active,
.hypoteky .products__home__inner__item__icon:focus {
	background: #c41846;
}
.pozicky .products__home__inner__item__icon {
	background: #c4d600;
}
.pozicky .products__home__inner__item__icon:active,
.pozicky .products__home__inner__item__icon:focus {
	background: #adbd00;
}
.poistenie .products__home__inner__item__icon {
	background: #615f9c;
}
.poistenie .products__home__inner__item__icon:active,
.poistenie .products__home__inner__item__icon:focus {
	background: #504f82;
}
.havarijne-poistenie .products__home__inner__item__icon {
	background: #f1a91e;
}
.havarijne-poistenie .products__home__inner__item__icon:active,
.havarijne-poistenie .products__home__inner__item__icon:focus {
	background: #d9991a;
}
.zdravotne-poistenie .products__home__inner__item__icon {
	background: #ce1c6a;
}
.zdravotne-poistenie .products__home__inner__item__icon:active,
.zdravotne-poistenie .products__home__inner__item__icon:focus {
	background: #b5195d;
}
.cestovne-poistenie .products__home__inner__item__icon {
	background: #009cb6;
}
.cestovne-poistenie .products__home__inner__item__icon:active,
.cestovne-poistenie .products__home__inner__item__icon:focus {
	background: #00869b;
}
.poistenie-na-hory .products__home__inner__item__icon {
	background: #c4d600;
}
.poistenie-na-hory .products__home__inner__item__icon:active,
.poistenie-na-hory .products__home__inner__item__icon:focus {
	background: #adbd00;
}
.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__icon {
	background: #615f9c;
}
.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__icon:active,
.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__icon:focus {
	background: #504f82;
}
.pausaly .products__home__inner__item__icon {
	background: #45c2ca;
}
.pausaly .products__home__inner__item__icon:active,
.pausaly .products__home__inner__item__icon:focus {
	background: #3ca8b0;
}
.investovanie .products__home__inner__item__icon {
	background: #df1b50;
}
.investovanie .products__home__inner__item__icon:active,
.investovanie .products__home__inner__item__icon:focus {
	background: #c41846;
}
.disabled .products__home__inner__item__icon {
	cursor: default;

	background: #d6d6d6;
}
.products__home__inner__item__heading {
	padding: 14px 0;
	position: relative;

	text-align: center;
}
.products__home__inner__item__heading:after {
	bottom: -2px;
	content: " ";
	display: block;
	height: 4px;
	left: 50%;
	margin: 0 0 0 -20px;
	position: absolute;
	width: 40px;

	background: #fcdc31;
}
.products__home__inner__item__heading a {
	color: #000000;
	font-size: 23px;
	font-weight: 900;
	line-height: 17px;
	text-decoration: none;
	text-transform: uppercase;
}
.poistenie .products__home__inner__item__heading a,
.havarijne-poistenie .products__home__inner__item__heading a,
.zdravotne-poistenie .products__home__inner__item__heading a,
.cestovne-poistenie .products__home__inner__item__heading a,
.poistenie-na-hory .products__home__inner__item__heading a,
.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__heading a,
.pausaly .products__home__inner__item__heading a {
	font-size: 16px;
}
.poistenie .products__home__inner__item__heading a span,
.havarijne-poistenie .products__home__inner__item__heading a span,
.zdravotne-poistenie .products__home__inner__item__heading a span,
.cestovne-poistenie .products__home__inner__item__heading a span,
.poistenie-na-hory .products__home__inner__item__heading a span,
.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__heading a span,
.pausaly .products__home__inner__item__heading a span {
	font-size: 23px;
}
.pzp .products__home__inner__item__heading a:hover {
	color: #e77724;
}
.pzp .products__home__inner__item__heading a:active,
.pzp .products__home__inner__item__heading a:focus {
	color: #cf6c21;
}
.sporenie .products__home__inner__item__heading a:hover {
	color: #45c2ca;
}
.sporenie .products__home__inner__item__heading a:active,
.sporenie .products__home__inner__item__heading a:focus {
	color: #3ca8b0;
}
.hypoteky .products__home__inner__item__heading a:hover {
	color: #df1b50;
}
.hypoteky .products__home__inner__item__heading a:active,
.hypoteky .products__home__inner__item__heading a:focus {
	color: #c41846;
}
.pozicky .products__home__inner__item__heading a:hover {
	color: #c4d600;
}
.pozicky .products__home__inner__item__heading a:active,
.pozicky .products__home__inner__item__heading a:focus {
	color: #adbd00;
}
.poistenie .products__home__inner__item__heading a:hover {
	color: #615f9c;
}
.poistenie .products__home__inner__item__heading a:active,
.poistenie .products__home__inner__item__heading a:focus {
	color: #504f82;
}
.havarijne-poistenie .products__home__inner__item__heading a:hover {
	color: #f1a91e;
}
.havarijne-poistenie .products__home__inner__item__heading a:active,
.havarijne-poistenie .products__home__inner__item__heading a:focus {
	color: #d9991a;
}
.zdravotne-poistenie .products__home__inner__item__heading a:hover {
	color: #ce1c6a;
}
.zdravotne-poistenie .products__home__inner__item__heading a:active,
.zdravotne-poistenie .products__home__inner__item__heading a:focus {
	color: #b5195d;
}
.cestovne-poistenie .products__home__inner__item__heading a:hover {
	color: #009cb6;
}
.cestovne-poistenie .products__home__inner__item__heading a:active,
.cestovne-poistenie .products__home__inner__item__heading a:focus {
	color: #00869b;
}
.poistenie-na-hory .products__home__inner__item__heading a:hover {
	color: #c4d600;
}
.poistenie-na-hory .products__home__inner__item__heading a:active,
.poistenie-na-hory .products__home__inner__item__heading a:focus {
	color: #adbd00;
}
.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__heading a:hover {
	color: #615f9c;
}
.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__heading a:active,
.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__heading a:focus {
	color: #504f82;
}
.pausaly .products__home__inner__item__heading a:hover {
	color: #45c2ca;
}
.pausaly .products__home__inner__item__heading a:active,
.pausaly .products__home__inner__item__heading a:focus {
	color: #3ca8b0;
}
.investovanie .products__home__inner__item__heading a:hover {
	color: #df1b50;
}
.investovanie .products__home__inner__item__heading a:active,
.investovanie .products__home__inner__item__heading a:focus {
	color: #c41846;
}
.products__home__inner__item__info,
.products__home__inner__item__btn {
	display: none;
}
.slick-arrow {
	cursor: pointer;
	display: inline-block;
	height: 50px;
	position: absolute;
	width: 50px;
	z-index: 1;

	font-family: "Font Awesome 5 Free";
	font-size: 0;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	line-height: 0;
	text-align: center;
	text-rendering: auto;

	background: #fcdc31;
	border: 0 none;
}
.slick-arrow:after {
	font-size: 34px;

	line-height: initial;
	text-align: center;
	text-indent: 0;
}
.slick-prev {
	left: -15px;
}
.slick-prev:after {
	content: "\f104";
}
.slick-next {
	right: -15px;
}
.slick-next:after {
	content: "\f105";
}

@media screen and (min-width: 430px) {
	.products__home__inner__item__heading {
		padding: 12px 0;
	}
	.products__home__inner__item__heading:after {
		bottom: 2px;
	}
	.products__home__inner__item__heading a {
		line-height: 23px;
	}
	.poistenie .products__home__inner__item__heading a,
	.havarijne-poistenie .products__home__inner__item__heading a,
	.zdravotne-poistenie .products__home__inner__item__heading a,
	.cestovne-poistenie .products__home__inner__item__heading a,
	.poistenie-na-hory .products__home__inner__item__heading a,
	.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__heading a,
	.pausaly .products__home__inner__item__heading a {
		font-size: 23px;
	}
}

@media screen and (min-width: 1200px) {
	.products__home__inner {
		margin: auto;
		max-width: 1150px;
		padding: 0 0 35px;
	}
	.products__home__inner .slick-arrow {
		top: 68px;
	}
	.products__home__inner__item {
		width: 25%;

		text-align: center;
	}
	.products__home__inner__item.pzp,
	.products__home__inner__item.hypoteky,
	.products__home__inner__item.sporenie,
	.products__home__inner__item.pozicky,
	.products__home__inner__item.poistenie,
	.products__home__inner__item.havarijne-poistenie,
	.products__home__inner__item.zdravotne-poistenie,
	.products__home__inner__item.cestovne-poistenie,
	.products__home__inner__item.poistenie-na-hory,
	.products__home__inner__item.poistenie-zodpovednosti-zamestnanca,
	.products__home__inner__item.pausaly,
	.products__home__inner__item.investovanie {
		padding: 0;
	}
	.products__home__inner__item.disabled {
		display: block;
	}
	.products__home__inner__item__icon {
		height: 186px;

		border-radius: 0;
		box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	}
	.products__home__inner__item__icon:active,
	.products__home__inner__item__icon:focus,
	.products__home__inner__item__icon:hover {
		padding: 5px 0 0;
	}
	.products__home__inner__item__icon img {
		max-width: 166px;
	}
	.products__home__inner__item__icon:active img,
	.products__home__inner__item__icon:focus img,
	.products__home__inner__item__icon:hover img {
		max-width: 176px;
	}
	.products__home__inner__item__heading {
		padding: 20px 0 15px;
	}
	.products__home__inner__item__heading:after {
		display: none;
	}
	.products__home__inner__item__heading a,
	.poistenie .products__home__inner__item__heading a,
	.havarijne-poistenie .products__home__inner__item__heading a,
	.zdravotne-poistenie .products__home__inner__item__heading a,
	.cestovne-poistenie .products__home__inner__item__heading a,
	.poistenie-na-hory .products__home__inner__item__heading a,
	.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__heading a,
	.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__heading a span,
	.pausaly .products__home__inner__item__heading a,
	.pausaly .products__home__inner__item__heading a span {
		font-size: 32px;
		font-weight: 900;
		line-height: 32px;
	}
	.poistenie .products__home__inner__item__heading a span,
	.havarijne-poistenie .products__home__inner__item__heading a span,
	.zdravotne-poistenie .products__home__inner__item__heading a span,
	.cestovne-poistenie .products__home__inner__item__heading a span,
	.poistenie-na-hory .products__home__inner__item__heading a span {
		display: none;
	}
	.products__home__inner__item.disabled .products__home__inner__item__heading a {
		cursor: default;
	}
	.products__home__inner__item__info {
		display: block;
		padding: 0 0 20px;

		line-height: 19px;
	}
	.products__home__inner__item__btn {
		display: inline-block;
		max-width: 177px;
		vertical-align: middle;
		width: 100%;

		color: #ffffff;
		font-size: 18px;
		font-weight: 900;
		line-height: 50px;
		text-decoration: none;

		background: #4ab948;
		border-radius: 25px;
		box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
	}
	.products__home__inner__item__btn:hover {
		background: #3fa938;
	}
	.products__home__inner__item__btn:active,
	.products__home__inner__item__btn:focus {
		background: #329b2b;
		box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15) inset;
	}
	.poistenie .products__home__inner__item__btn,
	.havarijne-poistenie .products__home__inner__item__btn,
	.zdravotne-poistenie .products__home__inner__item__btn,
	.cestovne-poistenie .products__home__inner__item__btn,
	.poistenie-zodpovednosti-zamestnanca .products__home__inner__item__btn,
	.pausaly .products__home__inner__item__btn {
		max-width: 247px;

		font-weight: 700;
	}
	.disabled .products__home__inner__item__btn {
		cursor: default;

		background: #d6d6d6;
	}
}

/* Articles */

.articles__home__wrap {
	background: #ffffff;
}
.articles__home__inner {
	padding: 20px 15px 45px;

	font-size: 0;
	text-align: center;
}
.articles__home__inner__heading,
.articles__home__inner__heading a {
	color: #000000;
	font-size: 23px;
	font-weight: 900;
	line-height: 23px;
	text-decoration: none;
}
.articles__home__inner__heading {
	margin: 0 0 20px;
}
.articles__home__inner__btn {
	display: inline-block;
	max-width: 256px;
	vertical-align: middle;
	width: 100%;

	color: #000000;
	font-size: 18px;
	font-weight: 700;
	line-height: 50px;
	text-decoration: none;

	background: #fcdc31;
}
.articles__home__inner__btn:active,
.articles__home__inner__btn:focus,
.articles__home__inner__btn:hover {
	background: #efcf2f;
}
.articles__home__inner__carousel--featured {
	display: none;
}
.articles__home__inner__item {
	display: block;
	margin: 0 0 40px;
	overflow: hidden;

	text-decoration: none;
	border-radius: 4px;
}
.articles__home__inner__item__bg {
	overflow: hidden;
	padding: 62.5% 0 0;
	position: relative;
	width: 100%;

	border-radius: 4px;
}
.articles__home__inner__item__bg img {
	display: block;
	height: auto;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.articles__home__inner__item__heading {
	padding: 55px 15px 0;
	position: relative;

	color: #000000;
	font-size: 21px;
	font-weight: 500;
	line-height: 22px;
	text-align: center;
}
.articles__home__inner__item__heading__category--icon {
	display: block;
	height: 64px;
	left: 50%;
	margin: 0 0 0 -32px;
	position: absolute;
	top: -32px;
	width: 64px;

	background: #fcdc31;
	border: 4px solid #ffffff;
	border-radius: 50%;
}
.articles__home__inner__item__heading__category--icon:after {
	bottom: -18px;
	display: inline-block;
	left: 50%;
	padding: 3px 5px;
	position: absolute;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);

	color: #000000;
	font-size: 14px;
	font-weight: 700;
	line-height: 14px;
	text-transform: uppercase;
	white-space: nowrap;

	background: #fcdc31;
	border-radius: 4px;
}
.banky .articles__home__inner__item__heading__category--icon:after {
	content: "Banky";
}
.elektrina--a--plyn .articles__home__inner__item__heading__category--icon:after {
	content: "Energie";
}
.havarijne-poistenie .articles__home__inner__item__heading__category--icon:after {
	content: "Havarijné poistenie";
}
.hypoteky .articles__home__inner__item__heading__category--icon:after {
	content: "Hypotéky";
}
.poistenie .articles__home__inner__item__heading__category--icon:after {
	content: "Poistenie";
}
.pozicky .articles__home__inner__item__heading__category--icon:after {
	content: "Pôžičky";
}
.pzp .articles__home__inner__item__heading__category--icon:after {
	content: "PZP";
}
.sporenie .articles__home__inner__item__heading__category--icon:after {
	content: "Sporenie";
}
.zdravotne-poistenie .articles__home__inner__item__heading__category--icon:after {
	content: "Zdravotné poistenie";
}
.banky .articles__home__inner__item__heading__category--icon {
	background: #fcdc31 url(/res/images/banky--articles--icon.svg) no-repeat center;
}
.elektrina--a--plyn .articles__home__inner__item__heading__category--icon {
	background: #fcdc31 url(https://setrisova.sk/templates/setrisova_magazin/images/elektrina--a--plyn--articles--icon.svg) no-repeat center;
}
.havarijne-poistenie .articles__home__inner__item__heading__category--icon {
	background: #fcdc31 url(http://setrisova.sk/templates/setrisova_magazin/images/havarijne-poistenie--articles--icon.svg) no-repeat center;
}
.hypoteky .articles__home__inner__item__heading__category--icon {
	background: #fcdc31 url(https://setrisova.sk/templates/setrisova_magazin/images/hypoteky--articles--icon.svg) no-repeat center;
}
.poistenie .articles__home__inner__item__heading__category--icon {
	background: #fcdc31 url(https://setrisova.sk/templates/setrisova_magazin/images/poistenie--articles--icon.svg) no-repeat center;
}
.pozicky .articles__home__inner__item__heading__category--icon {
	background: #fcdc31 url(https://setrisova.sk/templates/setrisova_magazin/images/pozicky--articles--icon.svg) no-repeat center;
}
.pzp .articles__home__inner__item__heading__category--icon {
	background: #fcdc31 url(https://setrisova.sk/templates/setrisova_magazin/images/pzp--articles--icon.svg) no-repeat center;
}
.sporenie .articles__home__inner__item__heading__category--icon {
	background: #fcdc31 url(https://setrisova.sk/templates/setrisova_magazin/images/sporenie--articles--icon.svg) no-repeat center;
}
.zdravotne-poistenie .articles__home__inner__item__heading__category--icon {
	background: #fcdc31 url(https://setrisova.sk/templates/setrisova_magazin/images/zdravotne-poistenie--articles--icon.svg) no-repeat center;
}
.articles__home__inner__item__heading__heading {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;

	box-shadow: 0 0 0 #fcdc31 inset;
}
.articles__home__inner__item:hover .articles__home__inner__item__heading__heading {
	box-shadow: 0 -4px 0 #fcdc31 inset;
}
.articles__home__inner__item:active .articles__home__inner__item__heading__heading,
.articles__home__inner__item:focus .articles__home__inner__item__heading__heading {
	box-shadow: 0 -28px 0 #fcdc31 inset;
}

@media screen and (min-width: 500px) {
	.articles__home__inner__item {
		display: inline-block;
		vertical-align: top;
		width: 48%;
	}
	.articles__home__inner__item:nth-of-type(odd) {
		margin-right: 4%;
	}
}

@media screen and (min-width: 1200px) {
	.articles__home__inner {
		margin: auto;
		max-width: 1190px;
		padding: 25px 0 40px;
	}
	.articles__home__inner__carousel--featured {
		display: block;
	}
	.articles__home__inner__item,
	.articles__home__inner__item:nth-of-type(odd) {
		display: block;
		float: left;
		margin: 0 1.68% 40px;
		position: relative;
		width: 21.64%;
	}
	.articles__home__inner__item:hover {
		-webkit-transform: translateY(-5px);
		-moz-transform: translateY(-5px);
		-ms-transform: translateY(-5px);
		-o-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}

/* Recommendations */

.recommendation__home__wrap {
	background: #e3f5f5;
}
.recommendation__home__inner {
	padding: 20px 15px 15px;

	text-align: center;
}
.recommendation__home__inner__heading {
	margin: 0 0 20px;

	font-size: 23px;
	font-weight: 900;
	line-height: 23px;
}
.recommendation__home__inner__carousel__item {
	margin: 0 10px;
	padding: 30px;
	position: relative;

	background: #ffffff;
	border-radius: 3px;
}
.recommendation__home__inner__carousel .slick-arrow {
	margin: -25px 0 0;
	top: 50%;
}
.recommendation__home__inner__carousel__item__heading {
	margin: 0 0 74px;
	line-height: 18px;
}
.recommendation__home__inner__carousel__item__heading a {
	color: #000000;
	font-size: 18px;
	font-weight: 700;
	line-height: 18px;
	text-decoration: none;
}
.recommendation__home__inner__carousel__item__heading a:hover {
	color: #e77724;
}
.recommendation__home__inner__carousel__item__heading a:active,
.recommendation__home__inner__carousel__item__heading a:focus {
	color: #cf6c21;
}
.recommendation__home__inner__carousel__item__logo,
.recommendation__home__inner__carousel__item__logo img,
.recommendation__home__inner__carousel__item__btn {
	display: block;
}
.recommendation__home__inner__carousel__item__logo {
	bottom: 80px;
	height: 74px;
	left: 50%;
	margin: 0 0 0 -60px;
	position: absolute;
	width: 120px;
}
.recommendation__home__inner__carousel__item__logo img {
	height: 54px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 120px;
}
.recommendation__home__inner__carousel__item__btn {
	margin: auto;
	max-width: 165px;

	color: #4ab948;
	font-size: 18px;
	font-weight: 900;
	line-height: 44px;
	text-decoration: none;

	background: #ffffff;
	border: 3px solid #4ab948;
	border-radius: 25px;
}
.recommendation__home__inner__carousel__item__btn:hover {
	color: #ffffff;

	background: #3fa938;
	border: 3px solid #3fa938;
}
.recommendation__home__inner__carousel__item__btn:active,
.recommendation__home__inner__carousel__item__btn:focus {
	background: #329b2b;
	border: 3px solid #329b2b;
}

@media screen and (min-width: 1200px) {
	.recommendation__home__wrap {
		background: #ffffff;
	}
	.recommendation__home__inner {
		margin: auto;
		max-width: 1150px;
		padding: 45px 0 85px;
	}
	.recommendation__home__inner__carousel__item {
		margin: 0;
		width: 25%;

		border-radius: 0;
	}
	.recommendation__home__inner__carousel__item:nth-child(odd) {
		background: #e3f5f5;
	}
	.recommendation__home__inner__carousel__item:nth-child(even) {
		background: #bee8e8;
	}
	.slick-prev {
		left: -25px;
	}
	.slick-next {
		right: -25px;
	}
}

/* Partners */

.partners__home__inner {
	padding: 20px 15px 15px;

	text-align: center;
}
.partners__home__inner__heading {
	margin: 0 0 20px;

	font-size: 23px;
	font-weight: 900;
	line-height: 23px;
}
.partners__home__inner__carousel .slick-arrow {
	margin: -25px 0 0;
	top: 50%;
}
.partners__home__inner__carousel__item__logo {
	margin: auto;
	display: block;
	height: 100%;
	max-width: 175px;
	max-height: 80px;

	width: 100%;
}

@media screen and (min-width: 1200px) {
	.partners__home__inner {
		margin: auto;
		max-width: 1150px;
		padding: 10px 0 75px;
	}
}

/* Footer */

.footer__home__wrap {
	margin: 40px 0 0;

	background: #009cb6 url(/res/images/footer--bg--mobile.svg) no-repeat center;
	border-bottom: 12px solid #615f9c;
}
.footer__home__inner {
	padding: 30px 15px 25px;

	font-size: 0;
	text-align: center;
}
.footer__home__inner__item {
	display: inline-block;
	margin: 0 0 30px;
	vertical-align: top;
	width: 50%;
}
.footer__home__inner__item.product {
	display: none;
}
.footer__home__inner__item__heading,
.footer__home__inner__item__heading a {
	margin: 0 0 10px;

	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}
.footer__home__inner__item__heading a:hover {
	cursor: default;
}
.footer__home__inner__item__heading a.transition:hover {
	cursor: pointer;

	color: #fcdc31;
}
.footer__home__inner__item__heading a.transition:active,
.footer__home__inner__item__heading a.transition:focus {
	color: #f1a91e;
}
.footer__home__inner__item__info,
.footer__home__inner__item__link {
	display: block;
	padding: 0 10px;

	color: #b1e4e3;
	font-size: 16px;
	line-height: 19px;
	text-decoration: none;
}
a.footer__home__inner__item__link:hover {
	color: #fcdc31;
}
.footer__home__inner__item__link.bigger {
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
}
.footer__home__inner__item__link.bigger img {
	display: inline-block;
	margin: -1px 4px 0 0;
	max-width: 13px;
	vertical-align: middle;
	width: 100%;
}
a.footer__home__inner__item__link:active,
a.footer__home__inner__item__link:focus {
	color: #f1a91e;
}
span.footer__home__inner__item__link {
	text-transform: uppercase;
}
.footer__home__inner__item.product .footer__home__inner__item__heading a {
	text-transform: uppercase;
}
.footer__home__inner__social {
	clear: both;
}
.footer__home__inner__item__btn {
	display: block;
	margin: 0 auto 4px;
	max-width: 160px;
	padding: 9px;

	color: #009cb6;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;

	background: #ffffff;
}
.footer__home__inner__item__btn:hover {
	background: #fcdc31;
}
.footer__home__inner__item__btn:active,
.footer__home__inner__item__btn:focus {
	background: #f1a91e;
}
.footer__home__inner__item__btn img {
	display: inline-block;
	height: auto;
	margin: -2px 7px 0 0;
	max-width: 12px;
	vertical-align: middle;
	width: 100%;
}
.footer__home__inner__item__contact {
	display: inline-block;
	margin: 0 0 4px;

	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 19px;
	text-decoration: none;
}
.footer__home__inner__item__contact img {
	display: inline-block;
	margin: -1px 4px 0 0;
	vertical-align: middle;
	width: 14px;
}
.footer__home__inner__item__contact i {
	margin: 0 5px 0 0;
	vertical-align: middle;

	font-size: 14px;
}
.footer__home__inner__item__contact:active,
.footer__home__inner__item__contact:focus,
.footer__home__inner__item__contact:hover {
	color: #fcdc31;
}
.footer__home__inner__social p {
	margin: 0 auto 15px;
	max-width: 510px;

	color: #b1e4e3;
	font-size: 14px;
	line-height: 17px;
}
.footer__home__inner__social p a {
	display: inline;
	height: auto;
	margin: 0;
	vertical-align: baseline;
	width: auto;

	color: #b1e4e3;
	font-size: 14px;
	font-weight: 500;
	line-height: 17px;
	text-decoration: underline;
}
.footer__home__inner__social p a:active,
.footer__home__inner__social p a:focus,
.footer__home__inner__social p a:hover {
	color: #fcdc31;
}
.footer__home__inner__social a {
	display: inline-block;
	height: 52px;
	margin: 0 5px;
	vertical-align: middle;
	width: 52px;

	font-size: 0;
	line-height: 52px;
	text-align: center;

	border-radius: 4px;
}
.footer__home__inner__social a i {
	vertical-align: middle;

	color: #ffffff;
	font-size: 34px;
}
.footer__home__inner__social a:active i,
.footer__home__inner__social a:focus i,
.footer__home__inner__social a:hover i {
	font-size: 38px;
}
.footer__home__inner__social a.facebook {
	background: #3b5998;
}
.footer__home__inner__social a.facebook:active,
.footer__home__inner__social a.facebook:focus,
.footer__home__inner__social a.facebook:hover {
	background: #4267b2;
}
.footer__home__inner__social a.instagram {
	background: url(/res/images/instagram--bg.png) no-repeat center;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}
.footer__home__inner__social a.instagram:active,
.footer__home__inner__social a.instagram:focus,
.footer__home__inner__social a.instagram:hover {
	-webkit-background-size: 140%;
	-moz-background-size: 140%;
	-o-background-size: 140%;
	background-size: 140%;
}
.footer__home__inner__social a.linkedin {
	background: #04669a;
}
.footer__home__inner__social a.linkedin:active,
.footer__home__inner__social a.linkedin:focus,
.footer__home__inner__social a.linkedin:hover {
	background: #0077b5;
}
.footer__home__inner__social a.twitter {
	background: #48aae6;
}
.footer__home__inner__social a.twitter:active,
.footer__home__inner__social a.twitter:focus,
.footer__home__inner__social a.twitter:hover {
	background: #1b95e0;
}
/*.footer__home__inner__social a.facebook {
	background: #3b5998 url(/res/images/facebook.svg) no-repeat center;
	-webkit-background-size: 80%;
	-moz-background-size: 80%;
	-o-background-size: 80%;
	background-size: 80%;
}
.footer__home__inner__social a.facebook:hover {
	background: #4267b2 url(/res/images/facebook.svg) no-repeat center;
	-webkit-background-size: 90%;
	-moz-background-size: 90%;
	-o-background-size: 90%;
	background-size: 90%;
}
.footer__home__inner__social a.instagram {
	background: url(/res/images/instagram.svg) no-repeat center, url(/res/images/instagram--bg.png) no-repeat center;
	-webkit-background-size: 80%, 100%;
	-moz-background-size: 80%, 100%;
	-o-background-size: 80%, 100%;
	background-size: 80%, 100%;
}
.footer__home__inner__social a.instagram:hover {
	background: url(/res/images/instagram.svg) no-repeat center, url(/res/images/instagram--bg.png) no-repeat center;
	-webkit-background-size: 90%, 140%;
	-moz-background-size: 90%, 140%;
	-o-background-size: 90%, 140%;
	background-size: 90%, 140%;
}
.footer__home__inner__social a.linkedin {
	background: #04669A url(/res/images/linkedin.svg) no-repeat center;
	-webkit-background-size: 80%;
	-moz-background-size: 80%;
	-o-background-size: 80%;
	background-size: 80%;
}
.footer__home__inner__social a.linkedin:hover {
	background: #0077b5 url(/res/images/linkedin.svg) no-repeat center;
	-webkit-background-size: 90%;
	-moz-background-size: 90%;
	-o-background-size: 90%;
	background-size: 90%;
}
.footer__home__inner__social a.twitter {
	background: #48AAE6 url(/res/images/twitter.svg) no-repeat center;
	-webkit-background-size: 80%;
	-moz-background-size: 80%;
	-o-background-size: 80%;
	background-size: 80%;
}
.footer__home__inner__social a.twitter:hover {
	background: #1B95E0 url(/res/images/twitter.svg) no-repeat center;
	-webkit-background-size: 90%;
	-moz-background-size: 90%;
	-o-background-size: 90%;
	background-size: 90%;
}*/

@media screen and (min-width: 1200px) {
	.footer__home__wrap {
		margin: 0;
		background: #009cb6 url(/res/images/footer--bg--desktop.svg) no-repeat center;
	}
	.footer__home__inner {
		margin: auto;
		max-width: 1150px;
		padding: 60px 0 110px;
	}
	.footer__home__inner__item {
		margin: 0 0 50px;
		width: 25%;
	}
	.footer__home__inner__item.product {
		display: inline-block;
	}
}

/***** Cookies *****/

.cookies__wrap {
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	z-index: 20;

	background: #000000;
	background: rgba(0, 0, 0, 0.9);
}
.cookies__inner {
	padding: 5px 15px;

	text-align: center;
}
.cookies__inner__text {
	color: #ffffff;
	font-size: 14px;
	line-height: 17px;
}
.cookies__inner__text + .cookies__inner__text {
	margin: 5px 0 0;
}
.cookies__inner__text.druhy__text {
	display: none;
}
.cookies__inner__text a {
	color: #ffffff;
	font-weight: 500;
	text-decoration: underline;
}
.cookies__inner__text a:hover,
.cookies__inner__text a:active,
.cookies__inner__text a:focus {
	color: #ffffff;
}
.cookies__inner__text a.cookies__inner__anchor {
	display: inline-block;
	margin: 0 0 0 10px;
	padding: 0 18px;
	vertical-align: middle;

	line-height: 22px;
	text-decoration: none;

	background: #666666;
	border-radius: 3px;
}
.cookies__inner__text a.cookies__inner__anchor:hover {
	background: #767676;
}

@media screen and (min-width: 1200px) {
	.cookies__inner {
		margin: auto;
		max-width: 1150px;
		padding: 5px 0;
	}
}

/***** PopUp *****/

.popup {
	opacity: 1;
	position: relative;
	visibility: visible;
	z-index: 99999;
}
.popup.hidden {
	opacity: 0;
	visibility: hidden;
}
.popup__wrap {
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transform: scale(1) translate3d(0, 0, 0);
	-moz-transform: scale(1) translate3d(0, 0, 0);
	-ms-transform: scale(1) translate3d(0, 0, 0);
	-o-transform: scale(1) translate3d(0, 0, 0);
	transform: scale(1) translate3d(0, 0, 0);
	z-index: 21;
}
.popup.hidden .popup__wrap {
	-webkit-transform: scale(0.95) translate3d(0, 0.5em, 0);
	-moz-transform: scale(0.95) translate3d(0, 0.5em, 0);
	-ms-transform: scale(0.95) translate3d(0, 0.5em, 0);
	-o-transform: scale(0.95) translate3d(0, 0.5em, 0);
	transform: scale(0.95) translate3d(0, 0.5em, 0);
}
.popup__inner {
	bottom: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	left: 30px;
	overflow: hidden;
	position: fixed;
	right: 30px;
	top: 30px;

	background: #ffffff;
	box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.8);
}
.popup__inner__header {
	display: block;
	padding: 10px 55px 10px 15px;
	position: relative;

	color: #000000;
	font-size: 21px;
	font-weight: 700;
	line-height: 24px;
	text-align: left;

	background: #fcdc31;
}
.popup__inner__header__close {
	display: block;
	height: 45px;
	position: absolute;
	right: 0;
	top: 0;
	width: 45px;

	background: url(/res/images/popup--close.svg) no-repeat center;
}
.popup__inner__scroll {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	overflow: auto;
	padding: 15px;
}
.popup__inner__content {
	text-align: center;
}
.popup__inner__content__heading,
.popup__inner__content p,
.popup__inner__content ul,
.popup__inner__content ol {
	display: block;
	margin: 0 0 15px;

	color: #000000;
	text-align: left;
}
.popup__inner__content__heading {
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
}
.popup__inner__content__heading:not(:first-child) {
	padding: 10px 0 0;
}
.popup__inner__content p {
	font-size: 14px;
	line-height: 17px;
}
.popup__inner__content ul,
.popup__inner__content ol {
	padding: 0 0 0 1.6em;

	font-size: 14px;
	line-height: 17px;
}
.popup__inner__content ul {
	list-style: disc outside none;
}
.popup__inner__content ol {
	list-style: decimal outside none;
}
.popup__inner__content ul li,
.popup__inner__content ol li {
	padding: 0;
}
.popup__inner__content strong {
	font-weight: 700;
}
.popup__inner__content a {
	color: inherit;
	text-decoration: none;

	box-shadow: 0 -5px 0 #fcdc31 inset;
}
.popup__inner__content a:active,
.popup__inner__content a:focus,
.popup__inner__content a:hover {
	box-shadow: 0 -17px 0 #fcdc31 inset;
}
.popup__inner__content a.large {
	display: inline-block;
	margin: 0 0 10px;
	vertical-align: middle;

	font-size: 21px;
	line-height: 24px;
}
.popup__inner__content a.large:last-of-type {
	margin: 0;
}
.popup__inner__content a.large:active,
.popup__inner__content a.large:focus,
.popup__inner__content a.large:hover {
	box-shadow: 0 -24px 0 #fcdc31 inset;
}
.popup__inner__content a img {
	display: inline-block;
	height: auto;
	margin: -1px 4px 0 0;
	max-width: 14px;
	vertical-align: middle;
	width: 100%;
}
.popup__inner__content a i {
	margin: 0 6px 0 0;
	vertical-align: middle;

	font-size: 18px;
}
.popup__inner__content a.popup__inner__content__btn {
	display: inline-block;
	margin: 10px 0 0;
	max-width: 256px;
	vertical-align: middle;
	width: 100%;

	color: #ffffff;
	font-size: 18px;
	font-weight: 900;
	line-height: 50px;

	background: #45ba40;
	border-radius: 25px;
	box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1) inset;
}
.popup__inner__content a.popup__inner__content__btn:active,
.popup__inner__content a.popup__inner__content__btn:focus {
	background: #329b2b;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1) inset;
}
.popup__inner__content a.popup__inner__content__btn:hover {
	background: #3fa938;
	box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1) inset;
}

@media screen and (min-width: 750px) {
	.popup__inner {
		bottom: auto;
		left: auto;
		margin: auto;
		max-height: 400px;
		position: relative;
		right: auto;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 700px;
	}
	.popup__inner__scroll {
		padding: 15px 15px 25px;
	}
}

/* Banner */

.content__formular__inner__text__banner__wrap,
.content__formular__inner__social__banner__wrap,
.top__wrap {
	padding: 13px 10px 15px;

	text-align: center;
	background: #f4f4f4;
}
.content__formular__inner__text__banner__wrap {
	margin: 0 -15px 15px;
}
.content__formular__inner__text__banner__wrap__claim,
.content__formular__inner__social__banner__wrap__claim,
.top__wrap__claim {
	display: inline-block;
	margin: 0 0 5px;
	vertical-align: middle;

	color: #8e8e8e;
	font-size: 12px;
	line-height: 12px;
}
.banner_300x300,
.banner_300x600,
.banner_300x375 {
	display: block;
	margin: auto;
}
.banner_300x300 {
	height: 300px;
	width: 300px;
}
.banner_300x600 {
	height: 600px;
	width: 300px;
}
.banner_300x375 {
	height: 375px;
	width: 300px;
}

div#topframe,
div#textframe,
div#sideframe,
div#textframe_drawer iframe {
	cursor: pointer;
}

div#topframe iframe,
div#textframe iframe,
div#sideframe iframe,
div#textframe_drawer iframe {
	pointer-events: none;
	border-radius: 4px;
}

/* Drawer banner */

.drawer-banner {
	padding: 8px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 2;
	-webkit-transition: all 1s ease 0.3s;
	-o-transition: all 1s ease 0.3s;
	transition: all 1s ease 0.3s;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}
.drawer-banner.show {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}
.drawer-banner .close-button {
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	width: 32px;
	height: 32px;
	position: absolute;
	top: -32px;
	left: 8px;
	z-index: 1;

	background-color: #ffffff;
	border: 0;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.drawer-banner .close-button:before {
	content: " ";
	display: inline-block;
	width: 100%;
	height: 100%;
	vertical-align: top;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;

	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBmaWxsPSIjNDk1MTU5IiBkPSJNMjAxLjQgMTM3LjRjMTIuNS0xMi41IDMyLjgtMTIuNSA0NS4zIDBsMTYwIDE2MGMxMi41IDEyLjUgMTIuNSAzMi44IDAgNDUuM3MtMzIuOCAxMi41LTQ1LjMgMEwyMjQgMjA1LjMgODYuNiAzNDIuNmMtMTIuNSAxMi41LTMyLjggMTIuNS00NS4zIDBzLTEyLjUtMzIuOCAwLTQ1LjNsMTYwLTE2MHoiLz48L3N2Zz4=");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
}
.drawer-banner.show .close-button:before {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.drawer-banner #textframe_drawer {
	margin: auto;

	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

/* Scaled Banner */

.banner_728x90 {
	display: block;
}
.top__inner {
	overflow: hidden;
}

.banner_728x90-wrap {
	height: 36px;
	margin: auto;
	width: 291.2px;
}
.banner_728x90 {
	height: 90px;
	width: 728px;

	-ms-transform: scale(0.4);
	-moz-transform: scale(0.4);
	-o-transform: scale(0.4);
	-webkit-transform: scale(0.4);
	transform: scale(0.4);

	-ms-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

@media screen and (min-width: 414px) {
	.banner_728x90-wrap {
		height: 45px;
		width: 364px;
	}
	.banner_728x90 {
		-ms-transform: scale(0.5);
		-moz-transform: scale(0.5);
		-o-transform: scale(0.5);
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
}

@media screen and (min-width: 568px) {
	.banner_728x90-wrap {
		height: 67.5px;
		width: 546px;
	}
	.banner_728x90 {
		-ms-transform: scale(0.75);
		-moz-transform: scale(0.75);
		-o-transform: scale(0.75);
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
}

@media screen and (min-width: 768px) {
	.banner_728x90-wrap,
	.banner_728x90 {
		height: 90px;
		width: 728px;
	}
	.banner_728x90 {
		-ms-transform: none;
		-moz-transform: none;
		-o-transform: none;
		-webkit-transform: none;
		transform: none;

		-ms-transform-origin: 50% 50% 0;
		-moz-transform-origin: 50% 50% 0;
		-o-transform-origin: 50% 50% 0;
		-webkit-transform-origin: 50% 50% 0;
		transform-origin: 50% 50% 0;
	}
}

@media screen and (min-width: 1200px) {
	.content__formular__inner {
		margin: auto;
		max-width: 1150px;
		position: relative;
	}
	.content__formular__inner__text {
		float: left;
		padding: 50px 40px 50px 0;
		width: 60%;
	}
	.content__formular__inner__text__tabulka__scroll {
		overflow-x: visible;
	}
	.content__formular__inner__social {
		float: right;
		padding: 50px 0;
		width: 40%;
	}
	.content__formular__inner__social__help {
		padding: 40px;
	}
	.content__formular__inner__social {
		float: right;
		padding: 50px 0;
		width: 40%;
	}
	.content__formular__inner__social.fixed {
		bottom: auto;
		position: fixed;
		top: -40px;
	}
	.content__formular__inner__social.bottom {
		bottom: 0;
		position: absolute;
		right: 0;
		top: auto;
	}
	.content__formular__inner__social__help {
		padding: 40px 40px 50px;
	}
	.content__formular__inner__social__social {
		margin: 40px 0 0;
		padding: 40px;
	}
	.content__formular__inner__social__image {
		padding: 0 0 20px;
	}
	.content__formular__inner__text__share {
		margin: 20px 0 0;
	}

	/* Banner */

	.content__formular__inner__text__banner__wrap {
		margin: 0 0 15px;
	}
	.content__formular__inner__social .content__formular__inner__social__banner__wrap {
		margin: 0 0 40px;
	}
}

/* Banners */
div#topframe,
div#textframe,
div#sideframe {
	cursor: pointer;
}

iframe {
	pointer-events: none;
}
