/* Global Variables */
:root {
	--accent-color				: #dcdb00;
}

/* General css */
.section-bg-title span {
    line-height: 1.2em;
}

.section-title h3 {
    background: url('../img/icon-sub-heading.png') no-repeat;
    background-size: 25px auto;
	padding-left: 35px;
}

/* AlertNewBS */
.alert-new-bs {
	padding-top: 2rem;
}

/* Header */
@media only screen and (max-width: 991px) {
	.main-header {
		border-bottom: 0px;
	}

	.header-btn {
		display: block;
	}
}

/* Page header */
.page-header {
    padding: 160px 0 90px;
}

/* Horizontal splitter */
.horizontal-splitter {
	position: relative;
	background: var(--accent-color);
	padding: 5px 0;
	z-index: 1;
}

/* Page Zadejte kod */
.page-zadejte-kod {
	background-image: url('../img/section-bg-circle-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0;
}

.zadejte-kod-content {
	margin-right: 30px;
}

.zadejte-kod-form .form-control {
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 18px 20px;
	box-shadow: none;
	outline: none;
}

.zadejte-kod-form .form-control::placeholder {
	color: var(--text-color);
}	

.zadejte-kod-image {
	position: relative;
}

@media only screen and (max-width: 991px) {
	.zadejte-kod-image {
		padding-top: 2rem;
	}
}

.zadejte-kod-img figure {
	display: block;
	border-radius: 18px;
	overflow: hidden;
}

.zadejte-kod-img figure:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(32, 39, 55, 0) 48.06%, #202737 97.67%);
	width: 100%;
	height: 100%;
}

.zadejte-kod-img img {
	width: 100%;
	aspect-ratio: 1 / 1.07;
    object-fit: cover;
}

.zadejte-kod-image-content {
	position: absolute;
	right: 50px;
	bottom: 50px;
	left: 50px;
	text-align: center;
	z-index: 1;
}

.zadejte-kod-image-content .section-title {
	margin-bottom: 10px;
}

.zadejte-kod-image-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.zadejte-kod-image-content ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	line-height: normal;
}

.zadejte-kod-image-content ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.zadejte-kod-image-content ul li a:hover {
	color: var(--primary-color);
}

.zadejte-kod-image-content ul li img {
	width: 100%;
	max-width: 24px;
	margin-right: 15px;
}

.zadejte-kod-info-box {
	background-color: var(--secondary-color);
	border-radius: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 100px;
	padding: 40px 70px;
}

.zadejte-kod-info-item {
	width: calc(25% - 22.5px);
}

.zadejte-kod-info-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.zadejte-kod-info-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--accent-color);
	border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.zadejte-kod-info-item:hover .icon-box:before {
    transform: scale(1);
}

.zadejte-kod-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.zadejte-kod-info-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.zadejte-kod-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.zadejte-kod-info-content p {
	margin: 0;
}

.zadejte-kod-info-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.zadejte-kod-info-content p a:hover {
	color: var(--accent-color);
}

.page-zadejte-kod .section-title p {
    position: relative;
    padding: 5px 0 5px 20px;
}

.page-zadejte-kod .section-title p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 10px;
    height: 100%;
    width: 4px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

/* Page Login */
.page-login {
	background-image: url('../img/section-bg-circle-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0;
}

.login-content {
	margin-right: 30px;
}

.login-form .form-group,
.jidelnicek-form .form-group {
	padding-bottom: 20px;
}

.login-form .padding-none .form-group,
.jidelnicek-form .padding-none .form-group {
	padding-bottom: 0;
}

.login-form .form-control,
.jidelnicek-form .form-control {
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 18px 20px;
	box-shadow: none;
	outline: none;
}

.login-form .form-control::placeholder,
.jidelnicek-form .form-control::placeholder {
	color: var(--text-color);
}	

.login-form .radio label,
.login-form .checkbox label,
.jidelnicek-form .radio label,
.jidelnicek-form .checkbox label {
    padding-top: 0.8rem;
}

.login-form .checkbox + p.help-block,
.jidelnicek-form .checkbox + p.help-block {
    display: none;
}

.login-image {
	position: relative;
}

@media only screen and (max-width: 991px) {
	.login-image {
		padding-top: 2rem;
	}
}

.login-img figure {
	display: block;
	border-radius: 18px;
	overflow: hidden;
}

.login-img figure:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(32, 39, 55, 0) 48.06%, #202737 97.67%);
	width: 100%;
	height: 100%;
}

.login-img img {
	width: 100%;
	aspect-ratio: 1 / 1.07;
    object-fit: cover;
}

.login-image-content {
	position: absolute;
	right: 50px;
	bottom: 50px;
	left: 50px;
	text-align: center;
	z-index: 1;
}

.login-image-content .section-title {
	margin-bottom: 10px;
}

.login-image-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.login-image-content ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	line-height: normal;
}

.login-image-content ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.login-image-content ul li a:hover {
	color: var(--primary-color);
}

.login-image-content ul li img {
	width: 100%;
	max-width: 24px;
	margin-right: 15px;
}

.login-info-box {
	background-color: var(--secondary-color);
	border-radius: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 100px;
	padding: 40px 70px;
}

.login-info-item {
	width: calc(25% - 22.5px);
}

.login-info-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.login-info-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--accent-color);
	border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.login-info-item:hover .icon-box:before {
    transform: scale(1);
}

.login-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.login-info-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.login-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.login-info-content p {
	margin: 0;
}

.login-info-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.login-info-content p a:hover {
	color: var(--accent-color);
}

.page-login .section-title p {
    position: relative;
    padding: 5px 0 5px 20px;
}

.page-login .section-title p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 10px;
    height: 100%;
    width: 4px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

/* Page Zaslani hesla */
.page-zaslani-hesla {
	background-image: url('../img/section-bg-circle-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0;
}

.zaslani-hesla-content {
	margin-right: 30px;
}

.zaslani-hesla-form .form-group {
	padding-bottom: 20px;
}

.zaslani-hesla-form .padding-none .form-group {
	padding-bottom: 0;
}

.zaslani-hesla-form .form-control {
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 18px 20px;
	box-shadow: none;
	outline: none;
}

.zaslani-hesla-form .form-control::placeholder {
	color: var(--text-color);
}	

.zaslani-hesla-form .radio label,
.zaslani-hesla-form .checkbox label {
    padding-top: 0.8rem;
}

.zaslani-hesla-form .checkbox + p.help-block {
    display: none;
}

.zaslani-hesla-image {
	position: relative;
}

@media only screen and (max-width: 991px) {
	.zaslani-hesla-image {
		padding-top: 2rem;
	}
}

.zaslani-hesla-img figure {
	display: block;
	border-radius: 18px;
	overflow: hidden;
}

.zaslani-hesla-img figure:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(32, 39, 55, 0) 48.06%, #202737 97.67%);
	width: 100%;
	height: 100%;
}

.zaslani-hesla-img img {
	width: 100%;
	aspect-ratio: 1 / 1.07;
    object-fit: cover;
}

.zaslani-hesla-image-content {
	position: absolute;
	right: 50px;
	bottom: 50px;
	left: 50px;
	text-align: center;
	z-index: 1;
}

.zaslani-hesla-image-content .section-title {
	margin-bottom: 10px;
}

.zaslani-hesla-image-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.zaslani-hesla-image-content ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	line-height: normal;
}

.zaslani-hesla-image-content ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.zaslani-hesla-image-content ul li a:hover {
	color: var(--primary-color);
}

.zaslani-hesla-image-content ul li img {
	width: 100%;
	max-width: 24px;
	margin-right: 15px;
}

.zaslani-hesla-info-box {
	background-color: var(--secondary-color);
	border-radius: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 100px;
	padding: 40px 70px;
}

.zaslani-hesla-info-item {
	width: calc(25% - 22.5px);
}

.zaslani-hesla-info-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.zaslani-hesla-info-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--accent-color);
	border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.zaslani-hesla-info-item:hover .icon-box:before {
    transform: scale(1);
}

.zaslani-hesla-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.zaslani-hesla-info-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.zaslani-hesla-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.zaslani-hesla-info-content p {
	margin: 0;
}

.zaslani-hesla-info-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.zaslani-hesla-info-content p a:hover {
	color: var(--accent-color);
}

.page-zaslani-hesla .section-title p {
    position: relative;
    padding: 5px 0 5px 20px;
}

.page-zaslani-hesla .section-title p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 10px;
    height: 100%;
    width: 4px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

/* Page Index */
.page-index {
	background-image: url('../img/section-bg-circle-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0;
}

.index-content {
	margin-right: 30px;
}

.index-form .form-group,
.jidelnicek-form .form-group {
	padding-bottom: 20px;
}

.index-form .padding-none .form-group,
.jidelnicek-form .padding-none .form-group {
	padding-bottom: 0;
}

.index-form .form-control,
.jidelnicek-form .form-control {
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 18px 20px;
	box-shadow: none;
	outline: none;
}

.index-form .form-control::placeholder,
.jidelnicek-form .form-control::placeholder {
	color: var(--text-color);
}	

.index-form .radio label,
.index-form .checkbox label,
.jidelnicek-form .radio label,
.jidelnicek-form .checkbox label {
    padding-top: 0.8rem;
}

.index-form .checkbox + p.help-block,
.jidelnicek-form .checkbox + p.help-block {
    display: none;
}

.index-image {
	position: relative;
}

@media only screen and (max-width: 991px) {
	.index-image {
		padding-top: 2rem;
	}
}

.index-img figure {
	display: block;
	border-radius: 18px;
	overflow: hidden;
}

.index-img figure:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(32, 39, 55, 0) 48.06%, #202737 97.67%);
	width: 100%;
	height: 100%;
}

.index-img img {
	width: 100%;
	aspect-ratio: 1 / 1.07;
    object-fit: cover;
}

.index-image-content {
	position: absolute;
	right: 50px;
	bottom: 50px;
	left: 50px;
	text-align: center;
	z-index: 1;
}

.index-image-content .section-title {
	margin-bottom: 10px;
}

.index-image-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.index-image-content ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	line-height: normal;
}

.index-image-content ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.index-image-content ul li a:hover {
	color: var(--primary-color);
}

.index-image-content ul li img {
	width: 100%;
	max-width: 24px;
	margin-right: 15px;
}

.index-info-box {
	background-color: var(--secondary-color);
	border-radius: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 100px;
	padding: 40px 70px;
}

.index-info-item {
	width: calc(25% - 22.5px);
}

.index-info-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.index-info-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--accent-color);
	border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.index-info-item:hover .icon-box:before {
    transform: scale(1);
}

.index-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.index-info-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.index-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.index-info-content p {
	margin: 0;
}

.index-info-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.index-info-content p a:hover {
	color: var(--accent-color);
}

.page-index .section-title p {
    position: relative;
    padding: 5px 0 5px 20px;
}

.page-index .section-title p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 10px;
    height: 100%;
    width: 4px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

/* Page Jidelnicek */
.page-jidelnicek {
	background-image: url('../img/section-bg-circle-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0;
}

.jidelnicek-content {
	margin-right: 30px;
}

.page-jidelnicek .jidelnicek ul li {
    padding-bottom: 5px;
    line-height: 1.6rem;
}

/* Page Zasady */
.page-zasady {
	background-image: url('../img/section-bg-circle-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0;
}

.zasady-content {
	margin-right: 30px;
}

.page-zasady li {
	line-height: 1.6rem;
}

/* Footer */
.footer-main .poradce-photo {
    width: 150px;
    height: 150px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-radius: 50%;
    margin-right: 1rem;
}

.footer-links {
	padding-bottom: 1rem;
}

.footer-links a,
.cookie-consent-popup a {
	color: var(--text-color);
}

/*--------------------------------------------------------------
# Cookie consent
--------------------------------------------------------------*/
.cookie-consent-popup {
    color: #ffffff;
}

.cookie-consent-overlay {
    position: fixed;
    flex-wrap: wrap;
    align-content: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    color: #000000;
}


.cookie-consent-popup .cookie-consent-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    z-index: 100001;
}

.cookie-consent-popup section {
    background-color: #000000;
}

.cookie-consent-popup .container {
    z-index: 100001;
}

.cookie-consent-popup .cookie-consent-controls {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
}

.cookie-consent-popup .cookie-consent-controls.open {
    max-height: 600px;
}

@keyframes show {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes hide {
    from {opacity: 1;}
    to {opacity: 0;}
}

.cookie-consent-popup h1 {
    font-size: 22px;
}

.cookie-consent-popup .cookie-consent-controls div:first-child {
    padding-top: 20px;
}

.cookie-consent-popup button {
    width: 200px;
}

#podmiky-rozbal + #podmiky {
    display: none;
}

#podmiky-rozbal {
    padding-bottom: 1rem;
    cursor: pointer;
    text-decoration: underline;
}

a.podminky-souhlas-button {
    padding-bottom: 1rem;
}

.disclaimer-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1050; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

.disclaimer-modal-content {
    background-color: #000000;
    margin: 10% auto; /* 10% from the top and centered */
    padding: 25px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 700px;
    position: relative;
    border-radius: 5px;
}

.disclaimer-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 5px;
    right: 15px;
}

.disclaimer-close:hover,
.disclaimer-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.disclaimer-trigger {
    cursor: pointer;
    text-decoration: underline;
}

.field-mealplan-agree_terms .help-block {
    margin-left: 25px;
}

.help-block-error {
	margin-top: 1rem;
	color: var(--accent-color);
}