:root {
	--green: #08c18a;
	--darkGreen: #08b37f;
	--lightGreen: #cff3e5;
	--gray: #e8e8e8;
	--darkGray: #8b8b8b;
	--dark: #3c3c3c;
}

@font-face {
	font-family: 'awesome';
	src: url('../fonts/fontawesome-webfont.eot');
	src: url('../fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/fontawesome-webfont.woff') format('woff'),
		 url('../fonts/fontawesome-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}


@font-face {
	font-family: 'Gibson Regular';
	font-style: normal;
	font-weight: normal;
	src: local('Gibson Regular'), url('../fonts/GibsonRegular.woff') format('woff');
	font-display: swap;
}	

@font-face {
	font-family: 'Gibson Light';
	font-style: normal;
	font-weight: normal;
	src: local('Gibson Light'), url('../fonts/GibsonLight.woff') format('woff');
	font-display: swap;
}

@font-face {
	font-family: 'Gibson SemiBold';
	font-style: normal;
	font-weight: normal;
	src: local('Gibson SemiBold'), url('../fonts/GibsonSemiBd.woff') format('woff');
	font-display: swap;
}
	

@font-face {
	font-family: 'Gibson Bold';
	font-style: normal;
	font-weight: normal;
	src: local('Gibson Bold'), url('../fonts/GibsonBold.woff') format('woff');
	font-display: swap;
}

body {
	margin: 0;
	font-family: 'Gibson Regular';
}

.wrapper {
	width: 96%;
	max-width: 1174px;
	margin: 0 auto;
	position: relative;
}

.none {
	display: none !important;
}

.mt0 {
	margin-top: 0 !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.message {
	position: relative;
	padding: .75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: .25rem;
	color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

.message.ok {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

.message.error {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.logo {
	text-decoration: none;
	color: #fff;
	font-size: 36px;
	line-height: 1;
	float: left;
	font-weight: 100;
	margin-right: 25px;
}

.logo strong {
	color: var(--green);
}

.menu-holder {
	width: calc(100% - 250px);
	float: left;
}

header {
	width: 100%;
	float: left;
	padding: 15px 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
}

header nav {
	width: 100%;
	float: left;
	margin-top: 10px;
}

header nav a {
	color: #fff;
	margin-right: 25px;
	text-decoration: none;
	transition: .35s all;
	border-radius: 100px;
	padding: 10px;
}

header nav a:hover,
header nav a.active {
	background: rgba(255,255,255,.2);
}

header nav a.active {
	border: 1px solid #fff;
}

.gray {
	color: var(--darkGray);
}

.banner {
	width: 100%;
	height: 600px;
	float: left;
	background: url('../img/banner.webp') no-repeat center center;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	padding: 150px 0;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-content: center;
	align-items: center;
}

.banner h1 {
	color: #fff;
	font-size: 28px;
	text-align: center;
	font-family: 'Gibson Semibold';
	margin-bottom: 0;
}

.banner p {
	font-family: 'Gibson Light';
	color: #fff;
	font-size: 24px;
	text-align: center;
	margin-top: 10px;
}

.banner video {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	object-fit: cover;
	top: 0;
	left: 0;
	pointer-events: none;
}

.banner::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: -1;
}

.banner .middle {
	max-width: 80%;
}

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

.button {
	background: var(--green);
	color: #fff;
	padding: 15px 30px;
	font-size: 16px;
	border-radius: 4px;
	text-decoration: none;
	transition: .35s all;
	display: inline-block;
	cursor: pointer;
	border: 0;
}

.button:hover {
	background: var(--lightGreen) !important;
	color: var(--darkGreen) !important;
}

.banner.disable {
	pointer-events: none;
	opacity: .5;
}

.main {
	width: 100%;
	float: left;
	margin: 50px 0;
}

.link {
	color: var(--green);
	margin-left: 15px;
}

footer {
	width: 100%;
	background: #f7f7f7;
	float: left;
	padding: 50px 0 25px;
}

footer ul {
	list-style: none;
	padding: 0;
	float: left;
	margin-right: 150px;
}

footer ul li {
	line-height: 25px;
}

footer ul li a {
	color: var(--dark);
	transition: .3s all;
}

footer ul li a:hover {
	color: var(--green);
}

p {
	font-size: 13px;
	width: 100%;
	float: left;
	display: block;
	margin-bottom: 0;
	margin-top: 40px;
}

p a {
	color: var(--green);
}

table {
	width: 100%;
	border-collapse: collapse;
}

table thead tr {
	background: rgba(0,0,0,0.1);
	border: 1px solid rgba(0,0,0,0.1);
}

table thead th {
	padding: 14px 16px;
	text-align: left;
	font-family: 'Gibson Light';
}

.col1 {
	max-width: 300px;
	float: left;
	box-sizing: border-box;
	padding-right: 10px;
}

.clear {
	clear: both;
}

.fs15 {
	font-size: 15px;
	line-height: 32.5px;
}

.float-right {
	float: right;
}

.col {
	width: 50%;
	float: left;
}

.col--left {
	box-sizing: border-box;
	padding-right: 7.5px;
}

.col--right {
	box-sizing: border-box;
	padding-left: 7.5px;
}

.col-3 {
	width: 33.333%;
	float: left;
	box-sizing: border-box;
	padding-right: 10px;
}

input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
input[type="checkbox"]:not(:checked) + label,
input[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox aspect */
input[type="checkbox"]:not(:checked) + label:before,
input[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1.25em; height: 1.25em;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  border-radius: 3px;
}
/* checked mark aspect */
input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after {
  content: '\f00c';
  font-family: 'awesome';
  position: absolute;
  top: 2px; left: 2px;
  margin: auto;
  font-size: 12px;
  line-height: 0.8;
  background: var(--green);
  color: #fff;
  text-align: center;
  line-height: 17px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transition: all .2s;
}
/* checked mark aspect changes */
input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
input[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
input[type="checkbox"]:disabled:not(:checked) + label:before,
input[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
input[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
input[type="checkbox"]:disabled + label {
  color: #aaa;
}

input[type="radio"]:not(:checked),
input[type="radio"]:checked {
  position: absolute;
  left: -9999px;
}
input[type="radio"]:not(:checked) + label,
input[type="radio"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox aspect */
input[type="radio"]:not(:checked) + label:before,
input[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1.25em; height: 1.25em;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  border-radius: 100%;
}
/* checked mark aspect */
input[type="radio"]:not(:checked) + label:after,
input[type="radio"]:checked + label:after {
   content: '';
  font-family: 'awesome';
  position: absolute;
  top: 3px; left: 3px;
  margin: auto;
  font-size: 12px;
  line-height: 0.8;
  background: var(--green);
  width: 16px;
  height: 16px;
  border-radius: 100%;
  transition: all .2s;
}
/* checked mark aspect changes */
input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
input[type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
input[type="radio"]:disabled:not(:checked) + label:before,
input[type="radio"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
input[type="radio"]:disabled:checked + label:after {
  color: #999;
}
input[type="radio"]:disabled + label {
  color: #aaa;
}

table {
	margin: 40px 0;
	background: #fff !important;
	color: #9ba1a8 !important;
	border: 1px solid #e1e6ea !important;
    border-bottom-color: rgb(225, 230, 234);
	border-bottom-color: #d4dbe1;
	box-shadow: 0 3px 2px -2px #e1e6ea,0 2px 1px -1px #f8fafb !important;
}

table th {
	color: var(--dark);
}

table th a {
	color: var(--dark);
}

table td {
	vertical-align: middle;
}

table small {
	display: block;
	margin-top: 5px;
}

table td:first-child,
table th:first-child {
	padding-left: 15px;
}

tr:nth-child(even) {
	background: rgba(0, 0, 0, 0.025);
}

table td a {
	color: rgba(31, 184, 143, 1);
}

table td a:hover {
	color: rgba(31, 184, 143, 1);
	text-decoration: underline;
}

table .dblclick {
	cursor: pointer;
	transition: .3s all;
}

table .dblclick:hover {
	background: rgba(106,227,195, 0.065);
}

table .view a,
table .delete a,
table .status a,
table .inf a,
table .month-1 a,
table .month-2 a,
table .month-3 a,
table .users_actions a,
table .pdf a {
	display: inline-block;
	width: 30px;
	height: 20px;
	text-decoration: none;
	opacity: 0.5;
	transition: 0.3s all;
}

table .pdf a {
	width: 25px;
}

table .view a:hover,
table .pdf a:hover,
table .month-1 a:hover,
table .month-2 a:hover,
table .month-3 a:hover,
table .inf a:hover,
table .users_actions a:hover,
table .delete a:hover,
table .status a:hover {
	opacity: 1;
}

table .view a {
	background: url('../img/pencil.svg') no-repeat center left;
	background-size: contain;
}

table .delete a {
	background: url('../img/trash.svg') no-repeat center left;
	background-size: contain;
}

table .status a {
	background: url('../img/check.svg') no-repeat center left;
	background-size: contain;
}

table .status.deactive a {
	background: url('../img/ban.svg') no-repeat center left;
	background-size: contain;
}

#notify {
	height: 36.5px;
	background: #fff;
	position: absolute;
	right: 150px;
	z-index: 100;
	line-height: 16.5px;
	top: 1px;
	box-sizing: border-box;
	padding: 10px 15px;
	box-shadow: 0 .188rem .375rem rgba(0,0,0,.16);
	border-radius: 3px;
	font-size: 13px;
	pointer-events: none;
	opacity: 0;
	transform: translateX(-30px);
	transition: .3s all ease-in-out;
}

#notify i {
	font-style: normal;
}

#notify::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	right: -5px;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
}

#notify.active {
	opacity: 1;
	transform: translateX(0);
}

.modal-overlay {
	background: rgba(0,0,0,.2);
	border: none;
	bottom: 0;
	box-sizing: border-box;
	left: 0;
	outline: none;
	overflow: auto;
	padding: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
	transition: .3s all ease-in-out;
	transform: translateY(10px);
	opacity: 0;
	pointer-events: none;
}

.modal-overlay.active {
	opacity: 1;
	transform: translateY(0px);
	pointer-events: all;
}

.modal-holder {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	min-height: 100%;
	width: 100%;
}

.modal {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	background: #fff;
	border-radius: 6px;
	outline: none;
	max-height: 90vh;
	height: 600px;
	width: 920px;
	max-width: 90%;
}

.modal__content,
.modal__header {
	width: 100%;
	box-sizing: border-box;
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.modal__headline {
	width: 100%;
	float: left;
	box-sizing: border-box;
	padding: 0 15px;
	height: 25px;
}

.modal__header {
	height: 50px;
	display: block;
	padding-bottom: 0;
}

.modal__header button {
	display: block;
	float: right;
	padding: 0;
	background: #fff;
	border: 0;
	cursor: pointer;
}

.modal__header button span {
	width: 21px;
	display: inline-block;
	fill: #000;
}

.modal__header h2 {
	margin: 0;
	float: left;
}

.modal button.modal-button {
	flex: 1 1 20%;
	height: 50px;
	border-radius: 5px;
	display: flex;
	margin: 0;
	vertical-align: middle;
	background: #fff;
	align-content: center;
	align-items: center;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	transition: .3s all ease-in-out;
	cursor: pointer;
	padding: 10px 0;
}

.modal button.modal-button:hover,
.modal button.modal-button.active {
	background: rgba(31, 184, 143, .1);
	color: rgba(31, 184, 143, 1);
}

.modal button.modal-button img {
	width: 22px;
	height: 22px;
	margin-right: 10px;
	margin-left: 10px;
	border-radius: 100%;
	object-fit: cover;
}

.w100p {
	width: 100%;
	display: block;
}

.hp-products {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}

p.paragraph {
	opacity: .5;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
	margin-top: 8px;
}

a.link {
	font-size: 16px;
	font-weight: normal;
	color: var(--green);
	text-decoration: underline;
}

.float-right {
	float: right;
}

.menu-holder .button {
	float: right;
	padding: 8px 20px 9px;
	font-size: 14px;
}

.padding0 {
	padding: 0;
}

.container {
	display: flex;
	flex-wrap: wrap;
}

/* Pro desktop (sirka obrazovky vetsi nez 992px) */
@media only screen and (min-width: 992px) {
  .container {
	justify-content: space-between;
  }
  .article {
	width: calc(33.33% - 20px); /* 20px jsou okraje mezi article prvky */
  }
}

/* Pro tablet (sirka obrazovky vetsi nez 768px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container {
	justify-content: center;
  }
  .article {
	width: calc(50% - 20px);
  }
}

/* Pro mobil (sirka obrazovky mensi nez 768px) */
@media only screen and (max-width: 767px) {
  .container {
	justify-content: center;
  }
  .article {
	width: 100%;
  }
}

.article {
	margin-bottom: 30px;
}

.article img,
.article-image {
	width: 100%;
	height: 240px;
	border-radius: 15px 30px;
	object-fit: cover;
}

.article-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.article h2 a {
	color: var(--green);
}

.article h2 {
	margin-bottom: 10px;
}

.article p {
	opacity: .4;
	margin-top: 0px;
	margin-bottom: 10px;
}

ul.tags {
	padding: 0;
	list-style: none;
	margin-bottom: 0;
}

ul.tags li {
	background: #ececec;
	color: #8d8d8d;
	display: inline-block;
	margin-right: 5px;
	border-radius: 40px;
	padding: 7px 15px;
}

.height300 {
	height: 300px;
}

.mt-20 {
	margin-top: 20px !important;
}

.detail {
	width: 70%;
	float: left;
	box-sizing: border-box;
	padding-right: 10px;
}

.detail p {
	margin: 0;
	margin-bottom: 15px;
}

.detail p span {
	color: inherit !important;
	background: inherit !important;
}

.detail img {
	max-width: 100%;
	border-radius: 15px 30px;
	object-fit: cover;
}

aside {
	width: 30%;
	float: right;
	padding-left: 10px;
	box-sizing: border-box;
}

aside .article {
	width: 100%;
}

@media (max-width: 1000px) {
	aside,
	.detail {
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}
}

.detail .ql-editor {
	outline: none !important;
}

.detail .ql-clipboard,
.detail .ql-tooltip,
.detail p br {
	display: none;
}

.detail p {
	font-size: 17px;
	line-height: 1.5;
}

iframe {
	border: 0 !important;
}

label {
	width: 100%;
	font-family: 'Gibson Semibold';
	margin-bottom: 3px;
	display: block;
}

input,
textarea,
select {
	width: 100%;
	background: #fff;
	border-radius: 3px;
	height: 35px;
	line-height: 35px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	outline: none !important;
	padding: 0 10px;
	font-size: 15px;
	appearance: none;
	-webkit-appearance: none;
	transition: .3s all;
	margin-bottom: 20px;
}

input:focus,
textarea:focus {
	border-color: var(--green);
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(var(--darkGreen), 0.25);
}

select {
	appearance: none;
	background: #fff url('../img/arrow-down.svg') no-repeat center right 15px !important;
	background-size: 15px !important;
}

@media (max-width: 760px) {
	.banner {
		background-image: url('../img/banner-mobile.webp');
	}
	
	h2 a.link {
		display: contents;
	}
}

@media (max-width: 1100px) {
	body {
		padding-top: 69px;
	}

	.main {
		margin-top: 25px;
	}
	
	header {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		background: #fff;
	}
	
	.logo {
		color: #444;
	}
	
	.banner {
		height: auto;
		padding: 60px 15px;
		background-attachment: scroll;
	}
	
	.banner h1 {
		margin-top: 0;
		font-size: 28px;
	}
	
	.banner p {
		font-size: 16px;
	}
	
	.menu-bar {
		width: 36.8px;
		height: 35.8px;
		background: url('../img/menu-bar.svg') no-repeat center center;
		background-size: 80%;
		border: 1px solid #e0e0e0;
		border-radius: 4px;
		float: right;
	}
	
	.menu-holder {
		width: 100% !important;
		box-sizing: border-box;
		pointer-events: none;
		position: absolute;
		background: #fff;
		top: 61px;
		left: 0;
		z-index: 100;
		padding-bottom: 20px;
		border-bottom: 1px solid #e0e0e0;
		opacity: 0;
		transform: translateY(-10%);
		transition: .3s all;
	}
	
	.menu-holder .button {
		float: none;
		margin-top: 10px;
	}
	
	.menu-holder.active {
		opacity: 1;
		transform: translateY(0%);
		pointer-events: all;
	}
	
	.menu-holder nav {
		width: 100%;
		float: left;
		text-align: center;
	}
	
	.menu-holder nav a {
		width: 100%;
		display: block;
		margin: 0 !important;
		height: 30px;
		color: var(--green);
		line-height: 30px;
		font-size: 18px;
	}
}

.fixed-buttons {
	width: 100%;
	position: fixed;
	box-sizing: border-box;
	padding: 7px;
	left: 0;
	bottom: 0;
	z-index: 1000;
	background: #fff;
	border-top: 1px solid #e0e0e0;
}

.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  margin-top: 20px !important;
  justify-content: center !important;
  width: 100% !important;
  float: right;
}

.pagination li {
  margin: 0 !important;
  float: left;
  display: block;
  margin-left: -1px !important;
}

.pagination li a {
  display: block;
  float: left;
  text-decoration: none;
  padding: 10px 20px !important;
  background: #fff;
  color: var(--green);
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
}

.pagination li.active a {
  background: var(--green);
  color: #fff;
}

footer ul {
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

footer ul li {
	display: inline-block;
	margin: 0 15px;
}

footer ul li a {
	font-size: 16px;
	color: var(--darkGray);
}