body {
	margin: 0;
	padding: 0;
	line-height: 1.2;
	font-size: 16px;
	min-height: 100vh;
	background-color: #f5f7fc;
	font-family: "Segoe UI", sans-serif;
}

body.loading {
	overflow: hidden;
}

.page-wrapper {
	padding: 0;
}

input.form-control {
	box-shadow: inset 0 0 50px 50px #fff !important;
	border-radius: 12px;
	border: 1px solid #ddd;
}

/* ::-webkit-scrollbar-button{ display: none; height: 13px; border-radius: 0px; background-color: #ff0000; } ::-webkit-scrollbar-button:hover{ background-color: #AAA; } ::-webkit-scrollbar-thumb{ background-color: #ffff00; } ::-webkit-scrollbar-thumb:hover{ background-color: #ffff00; } ::-webkit-scrollbar-track{ background-color: #000000; } ::-webkit-scrollbar-track:hover{ background-color: #000000; } ::-webkit-scrollbar
{
	width: 11px;
} */

* {
	/*border-radius: 0 !important;*/
}

.bootstrap-select .dropdown-toggle:focus {
	outline: none !important;
}

.card-header {
	background-color: #fff;
}

table {
	margin: 0 !important;
}

.pagination-entry {
	display: flex;
	gap: 5px;
	align-items: center;
}

select.form-control {
	max-height: 38px;
}

.backdrop.active {
	opacity: 1;
	pointer-events: initial;
}

.backdrop {
	position: fixed;
	top: 53px;
	left: 0;
	right: 0;
	bottom: 0;
	transition: 0.2s;
	z-index: 3;
	/*z-index: calc(2147483647 - 100);*/
	opacity: 0;
	cursor: pointer;
	pointer-events: none;
	background-color: #0009;
}

table.data-table tbody > tr:hover {
	background-color: #f7940014;
}

.loading-position-relative {
	position: relative !important;
	overflow: hidden;
}

.loading-position-relative .loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	z-index: 2000;
	background-color: rgba(0, 0, 0, 0.2);
	transition: 0.2s;
}

.loading-position-relative .loader > * {
	font-size: 24px;
	color: var(--app-red);
}

.loading-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: #000000;
	overflow: hidden;
	display: none;
	z-index: 10;
}

.loading-bar.loading {
	display: block;
	z-index: 2147483647;
}

.loading-bar div:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--app-red);
	animation: loading-bar-before 2100ms cubic-bezier(0.65, 0.81, 0.73, 0.4) infinite;
}

.loading-bar div:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--app-red);
	animation: loading-bar-after 2100ms cubic-bezier(0.16, 0.84, 0.44, 1) infinite;
	animation-delay: 1150ms;
}

.loading-bar-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2147483646;
	background-color: #00000036;
}

@keyframes loading-bar-before {
	0% {
		left: -35%;
		right: 100%;
	}
	60%,
	100% {
		left: 100%;
		right: -90%;
	}
}

@keyframes loading-bar-after {
	0% {
		left: -200%;
		right: 100%;
	}
	60%,
	100% {
		left: 107%;
		right: -8%;
	}
}

.daterangepicker {
	display: flex;
}

.popover {
	max-width: unset;
}

div.data-filter-popover-backdrop,
div.data-filter-popover-backdrop + .popover.fade.show {
	z-index: 2147483647 !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
	color: var(--app-highlight) !important;
	background-color: var(--app-highlight-rgba) !important;
}

.dropdown-item.active,
.dropdown-item:active {
	color: #fff !important;
	background-color: var(--app-highlight) !important;
}

li.page-item > * {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #6c757d;
}

.page-item.active .page-link {
	color: #fff;
	border-color: #6c757d;
	background-color: #6c757d;
}

.page-link:focus {
	color: #fff;
	border-color: #545b62;
	background-color: #5a6268;
	box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, .5);
}

.snacks {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	padding: 15px;
	display: flex;
	max-width: 100%;
	flex-direction: column;
	gap: 15px;
	z-index: 2147483647;
}

.snacks.hasSnacks.blocking {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: unset;
	justify-content: end;
}

.snacks:not(.hasSnacks) {
	display: none;
}

.snacks .snack {
	padding: 20px;
	max-width: 600px;
	margin: 0 auto;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	border-top: 2px solid transparent;
	box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
	transition: 0.5s cubic-bezier(0, 1.02, 0.58, 1);
}

.snacks .snack.status-ok {
	border-top: 2px solid var(--green);
}

.snacks .snack.status-warning {
	border-top: 2px solid var(--yellow);
}

.snacks .snack.status-error {
	border-top: 2px solid var(--red);
}

.snacks .snack .snack-message {
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 15px;
	letter-spacing: 1px;
	color: #0f0f0f;
}

.snacks .snack .snack-footer {
	display: flex;
	justify-content: space-between;
}

.snacks .snack .snack-footer .snack-footer-action {
	transition: 0.2s;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1.5px;
	cursor: pointer;
	color: var(--blue);
	text-transform: uppercase;
}

.snacks .snack .snack-footer .snack-closer {
	transition: 0.2s;
	cursor: pointer;
	color: var(--blue);
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 24px;
	text-align: center;
}

.snacks .snack .snack-footer .snack-closer:hover,
.snacks .snack .snack-footer .snack-footer-action {
	color: var(--blue);
}

.width-1px {
	width: 1px;
}

.border.d-flex.input-group-prepend.justify-content-center.pl-3.pr-3.bg-white {
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}

button.btn.dropdown-toggle.border.border-left-0.bg-white {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

button.btn.btn-secondary.border-radius-0 {
	border-radius: 20px;
}

button.dropdown-toggle.btn.btn-secondary {
	border-radius: 20px;
}

.card-header.d-flex.p-2.bg-light.tables-view-header {
	background-color: transparent !important;
}

html {
	/*scrollbar-gutter: stable;*/
}

body {
	box-sizing: border-box;
}

header.header {
	padding: 10px 0;
	border-bottom: 1px solid var(--app-color-6);
	background-color: hsl(240deg 10% 99% / 95%);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

header.header > .container {
	gap: 25px;
	display: flex;
	justify-content: space-between;
}

header.header > .container > * {
	gap: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
}

header.header .site-logo-wrapper {
	color: #fff;
	font-weight: bold;
	background-color: var(--app-main);
	border-radius: 12px;
	width: 56px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
}

header.header .site-name-wrapper > .site-name {
	color: var(--app-main);
	font-weight: bold;
	font-size: 20px;
}

.user-status {
	font-size: 13px;
	color: #67677e;
	font-weight: 400;
}

header.header .header-center {
	flex: 1;
}

header.header .search-wrapper {
	display: flex;
	position: relative;
	flex: 1;
	max-width: 450px;
}

header.header .search-wrapper > .search-icon {
	position: absolute;
	pointer-events: none;
	font-size: 13px;
	color: #67677e;
	font-weight: 400;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}

header.header .search-wrapper > .search-input {
	padding-left: 30px;
	height: 42px;
}

header.header .search-wrapper > .search-input::placeholder {
	color: #b7b7b7;
}

header.header .auth-toggle {
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 16px;
	border-radius: 18px;
	color: var(--app-gold);
	background-color: #d4af3721;
	transition: 0.2s;
}

header.header .auth-toggle:hover {
	background-color: var(--app-gold);
	color: #fff;
}

header.header .client-wrapper {
	border-left: 1px solid #f1f1f1;
	padding-left: 12px;
}

header.header .client-wrapper > .logo-img {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 100px;
	height: 42px;
	display: block;
}
footer.footer {
	background-color: var(--app-main);
	color: #fff;
	padding: 25px 0;
	text-align: center;
	font-size: 15px;
}

footer.footer > .container > * {
	gap: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
}

footer.footer .footer-text {
	margin: 0;
	color: #ccc;
	font-weight: 600;
}

footer.footer .footer-text a {
	color: #fff;
	text-decoration: none ;
	margin-left: 5px;
	transition: color 0.3s ease;
}

footer.footer .footer-text a:hover {
	color: var(--app-gold);
}
footer.footer .footer-text a.active {
	color: var(--app-gold-light) !important;
}


.section:nth-child(odd) {
	background-color: #fff;
}

.section:nth-child(even) {
	background-color: var(--app-color-alpha-6);
}

.section > .container {
	padding: 120px 24px;
}

.teaser-badge {
	display: inline-flex;
	width: fit-content;
}

.gold-badge {
	font-size: 14px;
	font-weight: 500;
	padding: 10px 16px;
	border-radius: 18px;
	color: var(--app-gold);
	background-color: #d4af3721;
}

.teaser-slogan {
	display: flex;
	font-size: 60px;
	margin-top: 15px;
	font-weight: bold;
	line-height: 60px;
	width: fit-content;
	flex-direction: column;
}

.teaser-stats {
	display: flex;
	gap: 50px;
	margin: 25px 0
}

.teaser-stats > .teaser-stat {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.teaser-stats > .teaser-stat > .teaser-stat-number {
	font-weight: bold;
	font-size: 24px;
}

.teaser-stats > .teaser-stat > .teaser-stat-label {
	color: var(--app-muted);
	font-size: 13px;
}

.shiny {
	position: relative;
	overflow: hidden;
}

.shiny::before {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
			120deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.6) 50%,
			rgba(255, 255, 255, 0) 100%
	);
	transform: skewX(-25deg);
}

.shiny:hover::before {
	animation: shine 1s forwards;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

.teaser > .teaser-part {
	display: flex;
	flex-direction: column;
}

.teaser-text {
	font-size: 18px;
	margin: 20px 35px 35px 0;
	color: #6c757d !important;
}

.button-primary {
	transition: 0.3s;
	background-color: #151537;
	color: #fff;
	font-weight: 500;
	padding: 16px 32px;
	border: none;
	border-radius: 10px;
	height: 44px;
	font-size: 18px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none !important;
	outline: none !important;
}

.button-primary:hover {
	background-color: #292956;
	color: #fff;
}

.button-primary[disabled],
.button-outline-primary[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}

.button-medium {
	height: 40px !important;
	font-size: 14px !important;
	font-weight: 500 !important;
}

.button-golden {
	transition: 0.3s;
	font-weight: 500;
	padding: 16px 32px;
	border: none;
	border-radius: 10px;
	height: 44px;
	font-size: 18px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	outline: none !important;
	color: var(--app-main);
	text-decoration: none !important;
	background-color: var(--app-gold-light);
}

.button-golden:hover {
	background-color: var(--app-gold-extra-light);
	color: var(--app-main);
}

.button-outline-primary {
	transition: 0.3s;
	background-color: transparent;
	color: #151537;
	font-weight: 500;
	padding: 16px 32px;
	border: 2px solid #151537;
	border-radius: 10px;
	height: 44px;
	font-size: 18px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	outline: none !important;
}

.button-outline-primary:hover {
	background-color: #151537;
	color: #fff;
}

.teaser-ctas {
	display: flex;
	gap: 20px;
}

.teaser {
	display: flex;
	gap: 50px;
}

.teaser > .teaser-part {
	flex: 1;
}

.teaser-image {
	width: 100%;
	margin-top: 36px;
	padding-top: 50%;
	background-color: var(--app-color-6);
	border-radius: 16px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.teaser-image:before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	content: "";
	background-image: linear-gradient(to right, rgba(239, 193, 57, 0.2), rgba(21, 21, 55, 0.2));
	border-bottom-color: rgb(220, 220, 229);
	border-bottom-style: solid;
	border-bottom-width: 0;
	border-left-color: rgb(220, 220, 229);
	border-left-style: solid;
	border-left-width: 0;
	border-right-color: rgb(220, 220, 229);
	border-right-style: solid;
	border-right-width: 0;
	border-top-color: rgb(220, 220, 229);
	border-radius: 24px;
	border-top-style: solid;
	border-top-width: 0;
	/* colorrgb(26, 26, 35); */
	display: block;
	filter: blur(64px);
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-feature-settings: normal;
	font-variation-settings: normal;
	tab-size: 4;
	text-size-adjust: 100%;
	transform: matrix(0.994522, 0.104528, -0.104528, 0.994522, 0, 0);
	unicode-bidi: isolate;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media (max-width: 1024px) {
	.teaser {
		gap: 0;
		flex-direction: column;
	}
}

.categories {
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 15px;
	margin-top: 48px;
}

@media (max-width: 1199px) {
	.categories {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.categories {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.categories {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

.categories > .category {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	padding: 24px;
	cursor: pointer;
	transition: 0.3s;
	color: #fff;
	text-decoration: none !important;
	border-radius: 12px;
	box-shadow: 0 0 4px -3px #000;
	border: 1px solid transparent;
}

.categories > .category:hover {
	background-color: #d4af3721;
	background-image: linear-gradient(to right bottom, #fff9c8, hsl(45deg 85% 58% / 5%));
	box-shadow: 0 0 20px -9px #0000006e;
	border-color: #dddddd52;
}

.categories > .category * {
	transition: 0.3s;
}

.categories > .category > .category-icon {
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 12px;
	background: var(--app-main);
}

.categories > .category:hover > .category-icon {
	background-color: var(--app-purple);
	color: #fff;
}

.categories > .category > .category-name {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-top: 12px;
	color: var(--app-main);
}

.categories > .category:hover > .category-name {
	color: var(--app-gold-light);
}

.categories > .category > .category-description {
	font-size: 14px;
	line-height: 20px;
	margin-top: 4px;
	color: var(--app-muted);
	text-align: center;
	height: 40px;
}

.highlighted-vouchers {
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 25px;
	margin-top: 48px;
}

.voucher {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	padding: 0;
	transition: 0.3s;
	border-radius: 12px;
	border: 1px solid var(--app-gray);
	color: var(--app-muted);
	overflow: hidden;
	position: relative;
	user-select: none;
}

.voucher:hover {
	box-shadow: 0 0 20px 0 var(--app-main-transparent);
}

.highlighted-vouchers .voucher {
	border: 1px solid var(--app-gold-extra-light);
}

.highlighted-vouchers .voucher:hover {
	box-shadow: 0 0 20px 0 var(--app-gold-extra-light);
}

.voucher .voucher-body {
	flex: 1;
	display: flex;
	padding: 24px;
	flex-direction: column;
}

.voucher .voucher-rating-likes {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	margin-bottom: 16px;
	flex: 1;
	align-items: end;
}

.voucher .voucher-name {
	font-weight: bold;
	color: var(--app-main);
	font-size: 18px;
	margin-bottom: 8px;
}

.voucher .voucher-description {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--app-muted);
	margin-bottom: 16px;
	font-size: 14px;
	flex: 1;
}

.voucher .voucher-image {
	padding-top: 75%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #6868ff1f;
	border-bottom: 1px solid #f7f7f7;
}

.highlighted-vouchers .voucher .voucher-image {
	background-color: #f5de9226;
}

.voucher .voucher-perks {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	padding: 12px;
}

.voucher .voucher-value {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	color: #fff;
	background-color: var(--app-main);
	padding: 5px 10px;
	border-radius: 15px;
	transition: 0.2s;
	border: 2px solid #fff;
}

.voucher .voucher-deal {
	font-weight: 600;
	font-size: 12px;
	background-color: var(--app-gold-light);
	padding: 5px 10px;
	border-radius: 15px;
	transition: 0.2s;
	color: var(--app-main);
	border: 2px solid #fff;
}

.voucher .voucher-deal:hover {
	background-color: var(--app-main);
	color: #fff;
	opacity: .8;
}

.voucher .voucher-value:hover {
	background-color: var(--app-gold);
	opacity: .8;
}

.voucher .voucher-validity {
	font-size: 12px;
}

.voucher .voucher-advertiser-info {
	gap: 10px;
	display: flex;
	margin-bottom: 24px;
	align-items: center;
}

.voucher .voucher-advertiser-logo {
	width: 50px;
	height: 50px;
	flex-grow: 0;
	flex-shrink: 0;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 2px solid var(--app-main);
}

.voucher .voucher-name-category {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.voucher .voucher-name-category .voucher-advertiser-name {
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
	color: var(--app-main);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}

.voucher .voucher-name-category .voucher-category {
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none !important;
	padding: 2px 5px;
	background-color: #28285512;
	color: var(--app-main);
	width: fit-content;
	cursor: pointer;
}

.voucher .voucher-name-category .voucher-category:hover {
	background-color: var(--app-main);
	color: #fff;
}

.voucher .cta,
.cta.button-golden {
	margin-top: 16px;
}
.voucher .cta {
	cursor: pointer;
}

.section.section-highlighted-vouchers h1 {
	margin-bottom: 16px;
}

.section.section-highlighted-vouchers h1 + .muted-text {
	font-size: 18px;
}

@media (min-width: 769px) {
	.highlighted-vouchers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.highlighted-vouchers {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.image-uploader {
	background: var(--app-color-alpha-6);
	border: 1px solid var(--app-color-6);
}

.image-uploader-preview {
	padding: 10px;
	overflow: auto;
	max-width: 100%;
	max-height: 500px;
}

.image-uploader-preview > img {
	min-width: 100px;
	min-height: 100px;
	object-fit: cover;
	position: relative;
}

img.img-missing {
	position: relative;
}

img.img-missing:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: conic-gradient(#cccccca1 25%, transparent 0 50%, #cccccc91 0 75%, transparent 0);
	background-size: 8px 8px;
	border: 1px solid #ffffff;
}

.control-label-wrapper {
	gap: 2px;
	padding: 5px 0;
}

.control-label-wrapper > button {
	width: 26px;
	height: 26px;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	transition: 0.2s;
	border-radius: 50%;
	outline: none;
	font-size: 12px;
}

.control-label-wrapper > button:not([disabled]):hover {
	background-color: light-dark(#eeeeec, #323232);
}

button.file-upload-cancel-button:not([disabled]) {
	color: var(--app-color-1);
}

button.file-uploader-button:not([disabled]) {
	color: var(--app-color-25);
}

.two-lines-ellipsis {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
}

.three-lines-ellipsis {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
}

.cached-content
{
	font-size: 13px;
}

.cached-content h1
{
	font-size: 2em !important;
	margin: 0 !important;
	padding: 0 !important;
}

.cached-content h2
{
	font-size: 1.5em !important;
	margin: 0 !important;
	padding: 0 !important;
}

.cached-content h3
{
	font-size: 1.17em !important;
	margin: 0 !important;
	padding: 0 !important;
}

.cached-content h4
{
	font-size: 1em !important;
	margin: 0 !important;
	padding: 0 !important;
}

.cached-content h5
{
	font-size: 0.83em !important;
	margin: 0 !important;
	padding: 0 !important;
}

.cached-content h6
{
	font-size: 0.67em !important;
	margin: 0 !important;
	padding: 0 !important;
}

.cached-content p
{
	margin: 0 !important;
	padding: 0 !important;
}