
.btn {
	display: inline-block;
	padding: 8px 16px;
	vertical-align: top;

	color: #ffffff;
	font-family: 'Exo 2', sans-serif;
	font-size: 14px;
	font-weight: 900;
	line-height: 20px;

	background: #70a7ff;
	border-radius: 99999px;
}
.btn.disabled {
	cursor: default;
	background: #d7dfe0;
}

.tm__col__list {
	list-style: disc outside none;
	padding-left: 2em;
}
.tm__col__list li + li {
	margin-top: 8px;
}
.tm__col__button {
	display: inline-block;
	padding: 8px 16px;
	vertical-align: top;

	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	line-height: 20px;

	background: #025193;
	border-radius: 99999px;
}
.tm__col__button--sporenie {
	background: #feaf6e;
}

@media screen and (min-width: 1280px) {
	.btn {
		padding: 9px 24px;

		font-size: 16px;
		line-height: 24px;
	}
	.tm__col__list li + li {
		margin-top: 12px;
	}
	.tm__col__button {
		padding: 9px 24px;

		font-size: 16px;
		line-height: 24px;
	}
}

/* Branding */

.branding {
	display: block;
	padding: 16px;
	width: 204px;
}
.branding__img {
	display: block;
	height: auto;
	width: 100%;
}

@media screen and (min-width: 600px) {
	.branding {
		padding: 24px;
		width: 240px;
	}
}

@media screen and (min-width: 1280px) {
	.branding {
		padding: 32px;
		width: 320px;
	}
}

/* Menu trigger */

.header__menu__trigger {
	display: block;
	height: 32px;
	margin-top: -16px;
	padding: 8px;
	position: absolute;
	right: 8px;
	top: 50%;
	width: 40px;
}
.header__menu__trigger span {
	display: block;
	height: 3px;
	left: 8px;
	opacity: 1;
	position: absolute;
	right: 8px;

	background: #7f8c8d;
}
.header__menu__trigger span:nth-child(1) {
	top: 8px;

	border-radius: 2px 2px 0 0;
}
.header__menu__trigger span:nth-child(2),
.header__menu__trigger span:nth-child(3) {
	top: 14px;
}
.header__menu__trigger span:nth-child(4) {
	top: 20px;

	border-radius: 0 0 2px 2px;
}
.header__menu__trigger.open span {
	border-radius: 2px;
}
.header__menu__trigger.open span:nth-child(1),
.header__menu__trigger.open span:nth-child(4) {
	opacity: 0;
	top: 14px;
}
.header__menu__trigger.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.header__menu__trigger.open 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: 600px) {
	.header__menu__trigger {
		height: 56px;
		margin-top: -28px;
		padding: 12px;
		right: 12px;
		width: 56px;
	}
	.header__menu__trigger span {
		height: 4px;
		left: 12px;
		right: 12px;
	}
	.header__menu__trigger span:nth-child(1) {
		top: 19px;
	}
	.header__menu__trigger span:nth-child(2),
	.header__menu__trigger span:nth-child(3) {
		top: 26px;
	}
	.header__menu__trigger span:nth-child(4) {
		top: 33px;
	}
	.header__menu__trigger.open span:nth-child(1),
	.header__menu__trigger.open span:nth-child(4) {
		top: 26px;
	}
}

/* Topbar button */

.topbar__button {
	clear: both;
	display: inline-block;
	padding: 12px;
	vertical-align: top;
	width: 100%;

	color: #ffffff;
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;

	background: #2c3e50;
}
.topbar__button strong {
	font-weight: 900;
}
.topbar__button i {
	margin-left: 8px;
}

.topbar__button:hover {
	background: #212e3c;
}

@media screen and (min-width: 600px) {
	.topbar__button {
		padding: 12px 24px;
	}
}

@media screen and (min-width: 1280px) {
	.topbar__button {
		padding: 12px 32px;
	}
}

/* Overlay */

.overlay {
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;

	background: rgba(44, 62, 80, 0.8);
}

/* Load more */

.load-more__button {
	display: inline-block;
	padding: 32px 16px 16px;
	vertical-align: top;

	color: #7f8c8d;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;

	background: url(../images/load-more.svg) no-repeat center top;
}

.load-more__button:hover {
	color: #95a5a6;
}

@media screen and (min-width: 600px) {
	.load-more__button {
		padding: 32px 24px 24px;
	}
}

@media screen and (min-width: 1280px) {
	.load-more__button {
		font-size: 16px;
		line-height: 24px;
	}
}

/* TM components */

/* table */

.tm__table__scroller {
	overflow: auto;
}
.tm__table {
	display: table;
	table-layout: fixed;
	width: 100%;

	border: 1px solid rgba(44, 62, 80, 0.2);
	border-radius: 4px;
}
.tm__table__row {
	display: table-row;
}
.tm__table__cell {
	display: table-cell;
	padding: 16px;
	width: 128px;

	border-bottom: 1px solid rgba(44, 62, 80, 0.2);
}
.tm__table__cell + .tm__table__cell {
	border-left: 1px solid rgba(44, 62, 80, 0.2);
}
.tm__table__row:last-of-type .tm__table__cell {
	border-bottom: 0;
}
.tm__table__content {
	font-size: 16px;
	line-height: 24px;
}

/* decor */

.tm__decor__scroller {
	overflow: auto;
}
.tm__decor__img {
	display: block;
}
.tm__decor__scroller .tm__decor__img {
	border: 1px solid rgba(44, 62, 80, 0.2);
	border-radius: 4px;
}

/* TotalTip */

.totaltip {
	display: block;
	padding-bottom: 16px;

	border: 1px solid rgba(44, 62, 80, 0.2);
	border-radius: 4px;
}
.totaltip__header {
	min-height: 52px;
	padding: 16px;
	position: relative;
}
.totaltip__branding {
	display: block;
	height: auto;
	max-width: 100px;
	width: 100%;
}


/* temp: zmenit img na iframe */

.totaltip > img {
	display: block;
	height: auto;
	margin: auto;
	max-width: 100%;
}



.totaltip__claim {
	display: inline-block;
	padding: 2px 4px;
	position: absolute;
	right: 16px;
	top: 16px;
	vertical-align: top;

	color: #bdc3c7;
	font-size: 12px;
	font-weight: 500;
	line-height: 14px;

	border: 1px solid rgba(44, 62, 80, 0.2);
	border-radius: 2px;
}
.totaltip__content {
	padding: 16px 16px 0;

	border-top: 1px solid rgba(44, 62, 80, 0.2);
}
.totaltip__heading {
	color: #2c3e50;
}
.totaltip__description {
	margin-top: 12px;

	color: #7f8c8d;
}
.totaltip__button {
	display: inline-block;
	margin-top: 16px;
	padding: 8px 16px;
	vertical-align: top;

	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	line-height: 20px;

	background: #025193;
	border-radius: 99999px;
}
.totaltip--pabk .totaltip__button {
	background: #FF4D00;
}

@media screen and (min-width: 1280px) {
	.totaltip {
		padding-bottom: 24px;
	}
	.totaltip__header {
		min-height: 68px;
		padding: 24px;
	}
	.totaltip__claim {
		right: 24px;
		top: 24px;
	}
	.totaltip__content {
		padding: 24px 24px 0;
	}
	.totaltip__button {
		margin-top: 20px;
		padding: 9px 24px;

		font-size: 16px;
		line-height: 24px;
	}
}

/* Zdravotne poistenie iframe */

#zp__iframe {
	display: block;
	margin-bottom: 16px;
	min-height: 360px;
	overflow: auto;
	width: 100%;

	border: 0;
}

@media screen and (min-width: 600px) {
	#zp__iframe {
		margin-bottom: 24px;
		min-height: 320px;
	}
}

.error_message {
	display: none;
	margin: 0 0 5px;
	padding: 8px 0 0 18px;
	position: relative;

	color: #ff2121;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
}
.error_message:before {
	content: "!";
	display: block;
	height: 14px;
	left: 0;
	position: absolute;
	top: 8px;
	width: 14px;

	color: #ffffff;
	font-size: 11px;
	line-height: 14px;
	text-align: center;

	background: #ff2121;
	border-radius: 50%;
}

/***** Message *****/

.message {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 15;
}
.message.hidden {
  display: none;
}
.message__type {
  display: inline-block;
  margin-left: 8px;
  padding: 6px 8px;

  color: #99a4ae;
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;

  background: #212e3c;
  border-radius: 4px 4px 0 0;
}
.message__content {
  padding: 16px;
  position: relative;

  color: #ffffff;

  background: #2c3e50;
  text-align: center;
  box-shadow: 0 0 10px rgba(29, 42, 54, 0.5);
}
.message__close {
  display: block;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 16px;
}
.message__close span {
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 16px;

  background: #b6bcc1;
}
.message__close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.message__close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.message__content p,
.message__content ul,
.message__content ol {
  padding-right: 32px;

	font-size: 14px !important;
	line-height: 20px !important;

  text-align: left;
}

.notification {
  bottom: 15px;
  display: block;
  height: 50px;
  position: fixed;
  right: 15px;
  width: 50px;
  z-index: 15;

  color: #ffffff;
  text-decoration: none;

  background: #2c3e50 url(../images/notification-bell.svg) no-repeat center center;
  border-radius: 99999px;
  box-shadow: 0 0 10px rgba(29, 42, 54, 0.5);
}
.notification:active,
.notification:focus,
.notification:hover {
  background-color: #1d2a36;
}
.notification.hidden {
  display: none;
}
.notification__amount {
  display: block;
  height: 16px;
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;

  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 16px;
  text-align: center;

  background: #ff0000;
  border-radius: 99999px;
}

@media screen and (min-width: 840px) {
  .message {
    left: auto;
		padding: 24px;
    width: 300px;
  }
  .message__type {
    margin-left: 12px;
  }
  .message__content {
    padding: 20px;

    border-radius: 4px;
  }
  .message__close {
    right: 20px;
    top: 20px;
  }
  .message__content p,
  .message__content ul,
  .message__content ol {
		margin-bottom: 16px;
    padding-right: 36px;
  }

  .notification {
    right: 24px;
    bottom: 24px;
  }
}

/* Banner */

div#topframe,
div#textframe,
div#sideframe {
    cursor: pointer
}

div#topframe iframe,
div#textframe iframe,
div#sideframe iframe {
    pointer-events: none;
}

div#topframe img,
div#textframe img,
div#sideframe img {
	opacity: 0;
	visibility: hidden;
	position: absolute;
}

.banner_728x90 {
	display: block;
}

.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;
	}
}

.banner-300x300,
.banner-300x600,
.banner-300x250 {
	width: 300px;
	text-align: center;
	margin: 0 auto 24px;
	clear: both;
}
.banner-300x300 {
	height: 300px;
	line-height: 300px;
}
.banner-300x600 {
  height: 600px;
  line-height: 600px;
}
.banner-300x250 {
  height: 250px;
  line-height: 250px;
}

.banner_300x300 {
    width: 300px;
    height: 300px;
}
.banner_300x600 {
    width: 300px;
    height: 600px;
}
.banner_300x250 {
    width: 300px;
    height: 250px;
}

.banner-300x300-offset {
	display: none;
}

@media screen and (min-width: 1024px) {
	.banner-300x600,
	.banner-300x300,
	.banner-300x250 {
		position: absolute;
		right: 24px;
		top: 24px;
	}

	.banner-300x300-offset {
		display: block;
		height: 300px;
		margin-bottom: 48px;
		width: 300px;
	}
	.banner-300x600-offset {
		display: block;
		height: 600px;
		margin-bottom: 48px;
		width: 300px;
	}
	.banner-300x250-offset {
		display: block;
		height: 250px;
		margin-bottom: 48px;
		width: 300px;
	}
}

@media screen and (min-width: 1280px) {
	.banner-300x600,
	.banner-300x300,
	.banner-300x250 {
		left: 832px;
		right: auto;
		top: 32px;
	}
}
