/* @import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap'); */

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

/*
@media (min-width: 576px) {
	html {
		font-size: 16px;
	}
}
*/

body {
	font-family: Play, sans-serif;
	min-height: 100vh;
	overflow-x: hidden;
}

body.is-startpage {
	background: var(--bg-dark-gradient);
}

.content {
	display: flex;
	flex-direction: column;
	color: var(--text-main);
	overflow-x: hidden;
}

/* ----- Media Query for Javascript ---- */

.state-indicator {
	position: absolute;
	top: -999em;
	left: -999em;
}

.state-indicator:before {
	content: 'desktop';
}

/* desktop */
@media all and (min-width: 992px) {
	.state-indicator:before {
		content: 'desktop';
	}
}

/* tablet */
@media all and (min-width: 768px) {
	.state-indicator:before {
		content: 'tablet';
	}
}

/* tablet-small / smart-phone-large */
@media all and (min-width: 576px) {
	.state-indicator:before {
		content: 'tablet-small';
	}
}

/* smallest */
@media all and (max-width: 575px) {
	.state-indicator:before {
		content: 'mobile';
	}
}

/* ----- LINKS ----- */

.btn.focus,
.btn:focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), .25);
}

a {
	color: var(--primary);
	outline: none !important;
	text-decoration: none;
	filter: brightness(100%);
	transition: all .25s;
}

a:active,
a:focus,
a:hover {
	color: var(--primary);
	text-decoration: none;
	filter: brightness(100%);
}

button:focus,
a:focus {
	position: relative;
	box-shadow: none;
	border: 0 none;
	outline: 0 none;
	transition: all .25s;
}

button:before,
a:before,
#js--subnav-account a:before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: transparent;
	user-select: none;
	pointer-events: none;
	color: var(--department);
	transition: box-shadow .15s;
	border-radius: 0.125rem;
	box-shadow: 0 0 0 0 currentColor;
}

button:focus:before,
a:focus:before,
#js--subnav-account a:focus:before {
	content: '';
	box-shadow: 0 0 4px 2px currentColor;
	opacity: 0.35;
}

.toggle-btn,
a.menu-sub-item,
a.account-menu-item {
	color: var(--text-color-light);
	filter: brightness(100%);
	transition: color .25s;
}

.toggle-btn:active,
.toggle-btn:focus,
.toggle-btn:hover,
a.menu-sub-item:active,
a.menu-sub-item:focus,
a.menu-sub-item:hover,
a.account-menu-item:active,
a.account-menu-item:focus,
a.account-menu-item:hover {
	color: var(--txt-primary);
	filter: brightness(100%);
}

.toggle-btn:active svg,
.toggle-btn:focus svg,
.toggle-btn:hover svg {
	color: var(--primary);
	fill: var(--primary);
}

a.text-primary:focus,
a.text-primary:hover,
a.text-hover-primary:focus,
a.text-hover-primary:hover {
	color: var(--txt-primary) !important;
	text-decoration: none;
}

/* Delete button, specifically Coupon delete button in basket standard */

a.minibutton.delete:active:before,
a.minibutton.delete:focus:before,
a.minibutton.delete:hover:before {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a.minibutton.delete svg.color-delete {
	outline: none;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	filter: brightness(100%);
	transition: filter .2s;
}

a.minibutton.delete:hover svg.color-delete,
a.minibutton.delete:active svg.color-delete,
a.minibutton.delete:focus svg.color-delete {
	color: var(--error);
	box-shadow: none;
	filter: brightness(115%);
}

.isDisabled {
	display: inline-block !important;
	cursor: not-allowed !important;
	text-decoration: none !important;
	color: var(--txt-mute);
}

.isDisabled a {
	pointer-events: none !important;
	text-decoration: none !important;
	color: var(--txt-mute);
}

.aimeos-container {
	border: 0 none !important;
}
