/*
	Created by Michael Schuijff <michael@reglobe.nl>
	Copyright Lost Images, The Netherlands
	
	For more information, visit www.michaelschuijff.nl
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body, html {
	position: relative;
}
html {
	height: 100%;
}
body {
	display: flex;
	height: 100%;
	flex-direction: column;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-weight: 400;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;	
}

@media (max-width: 600px) {
	body {
		font-size: 13px;
	}
}

header, footer, main {
	box-sizing: border-box;
}
main {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 48px 24px;
	flex: 1 0 auto;
	overflow-x: auto;
}

header {
	display: flex;
	padding: 10px 24px;
	border-bottom: solid 1px #eff0f0;
	background: #ffffff;
	justify-content: space-between;
	align-items: center;
}
header h1 {
	font-size: 24px;
}
header img.logo {
	max-width: 200px;
}
header a {
	color: inherit;
	text-decoration: none;
}
header nav {
	display: flex;
	height: 32px;
	gap: 6px;
}
header .nav-button {
	position: relative;
	display: block;
	cursor: pointer;
	height: 100%;
	aspect-ratio: 1;
	border: 0;
}
header .nav-button:hover {
	border-radius: 3px;
	background-color: #f4f6f4;
}

header .badge-number {
	position: absolute;
	right: -6px;
	top: -4px;
	width: 20px;
	line-height: 20px;
	color: #ffffff;
	background: #0d6efd;
	border-radius: 10px;
	font-size: 11px;
	text-align: center;
	pointer-events: none;
}

header .nav-wishlist {
	background: url(svg/wishlist.svg) no-repeat center center;
	background-size: 18px;
}
header .nav-alerts {
	background: url(svg/alerts.svg) no-repeat center center;
	background-size: 15px;
}
header .nav-user {
	background: url(svg/user.svg) no-repeat center center;
	background-size: 15px;
}

header .alerts-button {
	position: relative;
}
header .alerts {
	position: absolute;
	top: 100%;
	right: 0;
	width: min(60vw, 320px);
	max-height: 80vh;
	margin: 2px -4px;
	border: solid 1px #d2d3d3;
	border-radius: 4px;
	background: #ffffff;
	font-size: 13px;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .2);
	overflow: auto;
	z-index: 100;
}
header .alert {
	position: relative;
	padding: 12px 16px;
}
header .alert + .alert {
	border-top: solid 1px #eff0f0;
}
header .alert:not(.alert-pending) {
	background: #f6f6f8;
	color: #606060;
}

header .alert .text, header .alert .date {
	margin-bottom: 6px;
}
header .alert .date {
	color: #606060;
}
header .alert .date:not(.alert-pending) {
	color: #a0a0a0;
}

header .alert .buttons {
	margin-top: 12px;
	gap: 6px;
}
header .alert .button {
	padding: 6px 12px;
	border-radius: 8px;
	z-index: 1;
}
header .alert .cover {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

header .alerts .no-content {
	padding: 80px 10px;
	text-align: center;
	background: #f6f6f8;
	color: #606060;	
}

@media (max-width: 400px) {
	header img.logo {
		width: 120px;
	}
}

footer {
	display: flex;
	padding: 18px 24px;
	border-top: solid 1px #eff0f0;
	justify-content: space-between;
	color: #666767;
	row-gap: 12px;
}
footer a {
	color: #333434;
	text-decoration: none;
}
footer a:hover {
	text-decoration: underline;
}

footer nav ul {
	display: flex;
	column-gap: 18px;
	row-gap: 6px;
}

.grecaptcha-badge {
	bottom: 50px !important;
}

@media (max-width: 1000px) {
	footer {
		flex-wrap: wrap;
	}
	footer .copyright {
		width: 100%;
	}
	.grecaptcha-badge {
		bottom: 14px !important;
	}
}

@media (max-width: 400px) {
	footer nav ul {
		flex-wrap: wrap;
	}
	footer nav li {
		width: 100%;
	}
}

.breadcrumbs {
	margin-bottom: 32px;
}
.breadcrumbs li {
	display: inline;
}
.breadcrumbs li + li::before {
	content: '› ';
}

main > .state, main > .error {
	position: relative;
	padding: 12px 20px;	
  border-radius: 4px;
}

main > .state {
	color: #155724;
  border: solid 1px #c3e6cb;
	background-color: #d4edda;
}
main > .error {
	color: #721c24;
  border: solid 1px #f5c6cb;
	background-color: #f8d7da;
}

* {
	margin: 0;
	padding: 0;	
	list-style: none;
	font-family: inherit;
	font-size: inherit;
	line-height: 140%;
}

h1, h2, h3, h4, h5 {
	font-weight: 600;
}
strong {
	font-weight: 500;
}
a {
	color: #0d6efd;
}
sup, sub {
	font-size: .8em;
}
.hidden {
	display: none;
}

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

.state-label {
	display: inline-block;
	padding: 6px 10px;
	font-size: 13px;
	border-radius: 10px;	
}
.state-label.green {
	color: #155724;
	background-color: #d4edda;
}
.state-label.orange {
	color: #856404;
	background-color: #fff3cd;
}
.state-label.red {
	color: #721c24;
	background-color: #f8d7da;
}
.state-label.gray {
	color: #464c57;
	background-color: #e2e3e5;
}

.navigate-to-page {
	display: flex;
	margin: 16px 0;
	gap: 8px;
	justify-content: flex-end;
}
.navigate-to-page li {
	position: relative;
	border: solid 1px #eff0f0;
	border-radius: 10px;
	overflow: hidden;
}
.navigate-to-page li > * {
	display: block;
	min-width: 34px;
	text-align: center;
	line-height: 34px;
}
.navigate-to-page a, .navigate-to-page strong {
	font-weight: inherit;
}
.navigate-to-page a {
	color: inherit;
	text-decoration: none;
}
.navigate-to-page a:hover {
	background: #f8f8fa;
}
.navigate-to-page .current-page {
	color: #ffffff;
	background: #0d6efd;
	border-color: #0d6efd;
}

.full-width {
	width: 100% !important;
}

.horizontal-scroll {
  cursor: grab;
	user-select: none;
}

@-moz-document url-prefix() {
	.horizontal-scroll {
		scrollbar-color: #303232 #f0f2f4;
		scrollbar-width: thin;
	}
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	.horizontal-scroll::-webkit-scrollbar {
		height: 6px;
		border-radius: 3px;
		background: #f0f2f4;
	}
	.horizontal-scroll::-webkit-scrollbar-thumb {
		border-radius: 3px;
		background: #303232;
	}
	.horizontal-scroll::-webkit-scrollbar-thumb:active {
		background: #5a5c5c;
	}
}

.is-touch.is-dragging {
	overflow: hidden;
}
.is-dragging * {
	cursor: grabbing !important;
}

.currency-price {
	display: flex;
	justify-content: space-between;
	width: 85px;
}

.tabs {
	display: flex;
	margin-bottom: 32px;
	border-bottom: 1px solid #dee2e6;
	align-items: flex-end;
}
.tabs .tab a {
	display: block;
	padding: 8px 16px;
	color: #0d6efd;
	text-decoration: none;
	margin-bottom: -1px;
	background: 0 0;
	border: 1px solid transparent;
	border-radius: 4px 4px 0 0;
}
.tabs .tab:not(.active) a:focus, .tabs .tab:not(.active) a:hover {
	border-color: #e9ecef #e9ecef #dee2e6;
	isolation: isolate;
}
.tabs .active a {
	color: #495057;
	background-color: #fff;
	border-color: #dee2e6 #dee2e6 #fff;
}

input:not([type=checkbox]):not([type=radio]), textarea, select {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	padding: 10px;
	color: #111111;
	background: transparent;
	border: solid 1px #d2d3d3;
	border-radius: 8px;
	box-sizing: border-box;
}
textarea {
	height: 200px;
	resize: none;
}
select {
	padding-right: 28px;
	background: #ffffff url(svg/dropdown.svg) no-repeat right 10px center;
	background-size: 10px;
}
input[type=checkbox], input[type=radio] {
	vertical-align: middle;
}
.toggle {
	display: inline-block;
	position: relative;
	-webkit-appearance: none;
	appearance: none;
	height: 28px;
	width: 42px;
	border-radius: 100px;
	background: #d4d4d8;
	transition: all .4s;
}
.toggle::after {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	left: 4px;
	top: 4px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 0 4px rgba(40, 40, 40, .45);
	transition: all .4s;
}
.toggle:checked {
	background: #0d6efd;
}
.toggle:checked::after {
	left: 18px;
}

.buttons {
	display: flex;
	width: 100%;
	gap: 10px;
	flex-wrap: wrap;
}
.buttons > div + :not(div) {
	margin-left: -10px;
}

.button {
	display: inline-block;
	-webkit-appearance: none;
	appearance: none;
	padding: 8px 16px;
	color: #ffffff;
	background: #0d6efd;
	border: none;
	border-radius: 10px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
}
.button-green {
	background: #2e8b57;
}
.button-delete, .button-red {
	background: #fd240d;
}
.button-cancel, .button-gray {
	color: #6b7280;
	background: #ececf0;
}

.add-to-wishlist.wishlist {
	padding: 7px 15px;
	border: solid 1px #0d6efd;
	color: #0d6efd;
	background: #ffffff;
}

.price-suggestions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.price-suggestion {
	-webkit-appearance: none;
	appearance: none;
	padding: 8px 10px;
	color: #444444;
	background: #ffffff;
	border: solid 1px #d2d3d3;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
	border-radius: 50px;
	cursor: pointer;
}
.price-suggestion:hover {
	color: #111111;
	background: #f8f9f9;
}
.price-suggestion:active {
	border-color: #cacbcb;
	box-shadow: none;
}

.bubble {
	display: flex;
	width: 100%;
	padding: 16px;
	border: solid 1px #cfd9ff;
	border-radius: 16px;
	background: #f5f7ff;
	gap: 12px;
	box-sizing: border-box;
}
.bubble > .icon {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	flex: 0 0 auto;
	background: url(svg/bubble.svg) no-repeat center center;
	background-size: contain;
}
.bubble > .text p {
	margin: 0;
	padding: 0;
}
.bubble > .text p + p {
	margin-top: 12px;
}

.object-dot {
	position: absolute;
	width: 28px;
	height: 28px;
	transform: translate(-50%, -50%);
	background: rgba(20, 22, 22, .5);
	border: 2px solid rgba(200, 210, 210, .4);
	border-radius: 50%;
	transition: all .2s;
}
.object-dot::after {
	position: absolute;
	content: '';
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	background: #ffffff;
	border-radius: 50%;
	transition: width .2s, height .2s;
}

.object-dot.active {
	background: rgba(17, 17, 17, .75);
	border-color: #e9e9e9;
}
.object-dot.active::after {
	width: 8px;
	height: 8px;
}

table {
	width: 100%;
	border-collapse: collapse;
}
table thead {
	font-weight: 500;
}
table th, table td {
	position: relative;
	padding: 8px 0;
	vertical-align: top;
}
table th {
	font-weight: inherit;
	text-align: left;	
}
table th[align=center] {
	text-align: center;
}
table th[align=right] {
	text-align: right;
}
table th + th, table td + td {
	padding-left: 8px;
}
table a {
	font-weight: 500;
}
table tbody {
	border: solid 1px #eff0f0;
	border-width: 1px 0;
}
table .toggle {
	position: relative;
	margin: -4px 0;
}
table .no-content {
	padding: 30px !important;
	text-align: center;	
}

dialog {
	margin: auto;
	padding: 24px;
	border: none;
	border-radius: 16px;
	background: #ffffff;
	box-sizing: border-box;
	overflow: visible;
}
dialog[open]::backdrop {
	background: rgba(24, 25, 25, .6);
}
dialog .close-dialog {
	position: absolute;
	right: 4px;
	top: 4px;
	width: 38px;
	height: 38px;
	border: none;
	background: url(svg/close-dialog-black.svg) no-repeat center center;
	background-size: 12px;
	cursor: pointer;
	z-index: 1;
}
dialog .close-dialog:active {
	margin-top: 1px;
}

.fade-in {
	animation: fade-in .5s;
	animation-fill-mode: forwards;
}

@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fade-out {
	animation: fade-out .5s;
	animation-fill-mode: forwards;
}

@keyframes fade-out {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}