abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:0 0}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:0 0}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle} * :focus{outline:0}*,* :after,* :before{-webkit-box-sizing:border-box;box-sizing:border-box} input:-webkit-autofill,input:-webkit-autofill:active,input:-webkit-autofill:focus,input:-webkit-autofill:hover{-webkit-box-shadow:0 0 0 30px #fff inset!important}


:root {
  color-scheme: light dark;
}

/* FONT */

@font-face {
	font-family: 'Inter';
	src: url('/webfonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
	font-weight: 100 900; 
	font-display: swap;
}

/* STANDARDS */

html {
	font: 400 18px/1.6 "Inter", -apple-system, BlinkMacSystemFont, "Lexend", Futura, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	background-color: #FFFFFF;
	color: #121212;
	scroll-behavior: smooth;
}

body {
	font: 400 18px/1.6 "Inter", -apple-system, BlinkMacSystemFont, "Lexend", Futura, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	height: 100dvh;
	min-height: -webkit-fill-available; 
	display: flex;
	flex-direction: column;
}

body.no-scroll {
	overflow: hidden;
	position: fixed;
	width: 100%;
}


textarea, input:not([type='checkbox']), button{
	font: 400 18px/1.6 "Inter", -apple-system, BlinkMacSystemFont, "Lexend", Futura, "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
	-webkit-appearance: none; 
}

input[type='checkbox']{
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2); 
	transform: scale(1.2);
	cursor: pointer;
}

select, select option{
	font-family: "Inter", sans-serif, -apple-system;
	font-size: 20px;
	line-height: 1.5;
	-webkit-appearance: none; 
	appearance: none;
}

a, a:link, a:visited {
	color: rgba(18,18,18,1);
	text-decoration: none;
	transition: color 0.5s ease, opacity 0.5s ease;
}

a:hover{
	color: #4646ff;
	border-color: #4646ff !important;
}



@media (max-width: 500px) {
	
	html, body{
		font-size: 16px !important;
		overscroll-behavior: none;
		touch-action: manipulation; 
		-webkit-overflow-scrolling: touch;
	}
	
	textarea, input:not([type='checkbox']), button, select, select option{
		font-size: 14px; 
	}
}


@media (prefers-color-scheme: dark) {
	body, html{
		background-color: #121212;
		color: #FFFFFF;
	}
	
	a, a:link, a:visited{
		color: #FFFFFF;
	}
}


/* CONTAINER */

.container{
	display: flex;
	flex: 1;
	margin-top: 110px;
	height: calc(100dvh - 160px);
}

@media (max-width: 900px) {
	.container{
		margin-top: 95px;
		height: unset;
	}
}

@media (max-width: 500px) {
	.container{
		margin-top: 75px;
		height: unset;
	}
}



/* MAIN CENTERING */

main{
	flex: 1;
	overflow-y: auto;
}

body.shared main{
	flex: none;
	position: relative;
	width: 100%;
	min-height: 100dvh;
	max-width: 1000px;
	padding: 25px 0 0 0 !important;
	margin: 0 auto !important;
}


@media (max-width: 900px) {
	main{
		width: 100%;
		padding-top: 80px;
		min-height: unset;
	}
}

	


/* SIDEBAR */

.sidebar {
	position: sticky;
	top: 0;
	height: calc(100dvh - 110px);
	overflow-x: hidden;
	overflow-y: scroll;
	width: 300px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	user-select: none;
	-webkit-user-select: none; 
	-moz-user-select: none; 
	-ms-user-select: none;
	scrollbar-width: none;       
	-ms-overflow-style: none;
}

.sidebar ul.collections{
	margin-top: 25px;
	flex-shrink: 0;
}


.sidebar ul li{
	list-style: none;
	display: flex;
	align-items: center;
}

.sidebar ul li .collection-link{
	font-weight: 600;
	display: inline-block;
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden; 
	white-space: nowrap;
	padding: 10px 5px 10px 15px;
	cursor: pointer;
	transition: color 0.5s ease;
}

.sidebar ul li:hover .collection-link{
	color: #4646ff;
	cursor: pointer;
}

.sidebar ul li.active .collection-link{
	font-weight: 700;
	color: #4646ff;
}

.sidebar ul li > i{
	color: #4646ff;
	width: 30px;
	flex: 0 0 auto; 
	padding: 5px 5px;
	margin: 0 2px 0 15px;
	border-radius: 5px;
	text-align: center;
}

.sidebar ul li i.fa-bars:hover{
	cursor: grab;
}

.sidebar .sortable-ghost {
	opacity: 1 !important;
	background: rgba(70, 70, 255, 0.2);
	border: 3px dashed rgba(70, 70, 255, 0.4);
	border-radius: 5px;
	margin-left: 5px;
}

.sortable-chosen {
	opacity: 1; 
}

.sidebar.dragging .sortable-chosen {
	opacity: 0.5 !important;
}

.sidebar .open-add-collection {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 0;
	border: none;
	background-color: rgba(18,18,18,0);
	color: #999;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 25px;
	cursor: pointer;
}

@keyframes textShimmer {
  0% {
	background-position: -200%;
  }
  100% {
	background-position: 200%;
  }
}

.sidebar .open-add-collection.highlight {
  
  background: linear-gradient(125deg, rgba(70, 70, 255, .8) 0%, #DB5461 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 2s linear;
}


.sidebar .open-add-collection i {
	width: 30px;
	flex: 0 0 auto; 
	padding: 5px 5px;
	margin: 0 2px 0 15px;
}

.sidebar .open-add-collection:hover {
	color: rgba(70, 70, 255, 0.7);
}

.sidebar ul.secondary{
	max-width: 100%;
	margin-top: auto;
}

.sidebar ul.secondary{
	list-style: none;
	padding: 25px 0;
	display: flex;
	justify-content: center; 
	flex-wrap: wrap;
	flex-direction: column;
	gap: 5px; 
	font-size: 15px !important;
}

.sidebar ul.secondary li {}

.sidebar ul.secondary a {
	color: rgba(18,18,18,.5) !important;
	padding: 0 25px !important;
}

.sidebar ul.secondary a:hover{
	color: #4646ff !important;
}

@media (max-width: 600px) {
	.sidebar ul.secondary{
		font-size: 12px;
	}
}

@media (max-width: 900px) {
	.sidebar {
		display: none; 
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		padding-top: 200px;
		font-size: 18px;
		background-color: #FFFFFF;
		z-index: 1; 
	}
	
	.sidebar ul.secondary{
		display: none;
	}

	
	.sidebar .open-add-collection{
		font-size: 18px !important;
	}
	
	.sidebar.active {
		display: block; 
	}
}




@media (prefers-color-scheme: dark) {
	.sidebar ul li.active .collection-link{
		color: #9E9EFA;
	}
	
	.sidebar ul li i{
		color: #FFFFFF;
	}
	
	.sidebar ul li:hover .collection-link, .sidebar ul li:hover i{
		color: #D8D8F7 !important;
	}
	
	.sidebar .open-add-collection:hover {
		color: #D8D8F7;
	}


	.sidebar h1 span {
		background-color: #FFFFFF;
		color: #121212;
	}
	
	.sidebar ul.secondary a {
		color: rgba(255,255,255,.5) !important;
	}

}

@media (max-width: 900px) and (prefers-color-scheme: dark) {
	.sidebar {
		background-color: #121212 !important;
	}

}

/*TOP MENÜ & ACCOUNT SECTION */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	padding: 25px;
	background-color: rgba(255,255,255,.8);
	box-shadow: 0 50px 50px white inset;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	gap: 25px;
	z-index: 2;
	align-items: flex-start;
}



body.shared header{
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

header h1 {
	font-size: 30px;
	line-height: 55px;
	position: relative;
	align-items: center;
	white-space: nowrap;
	margin-right: auto;
	font-weight: 700;
	order: 1;
	width: 275px;
}

body.shared header h1{
	display: flex;
}

header h1 span {
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	background-color: rgba(18,18,18,1);
	color: #ffffff;
	border-radius: 5px;
	padding: 3px 5px 5px 4px;
	margin-left: 8px;
	position: relative;
	top: -12px;
	display: inline-block;
}

header .account-section {
	display: flex;
	justify-content: flex-end;
	position: relative;
	width: auto;
	margin-left: auto;
	z-index: 1000;
	flex-shrink: 1;
	white-space: nowrap;
	order: 3;
}

header .account-section button,
header .button {
	position: relative;
	overflow: hidden;
	background-color: rgba(70, 70, 255, 0.1);
	border: 0;
	border-radius: 12px;
	padding: 14px 16px;
	font-weight: 600;
	cursor: pointer;
	color: rgba(70, 70, 255, 1);
	transition: background-color 0.5s ease, opacity 0.5s ease;
}


header .account-section button::before,
header .button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(219, 84, 97, 0.3) 0%, rgba(70,70,255,0.3) 50%, rgba(219, 84, 97, 0.3) 100%);
	background-size: 200% auto;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1; 
}


header .account-section button.highlight,
header .button.highlight {
	
}

header .account-section button.highlight::before,
header .button.highlight::before {
	opacity: 1;
	animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
	0% {
		background-position: -200% center;
	}
	100% {
		background-position: 200% center;
	}
}


header .account-section button:hover, header .button:hover{
	opacity: .6;
	cursor: pointer !important;
}

header .account-section button i, header .button i{
	margin-right: 8px;
}

header .account-section .recent-sent-button, header .account-section .recent-sent-button:hover {
	cursor: default; 
	color: rgba(18,18,18,.6);
	background-color: rgba(18,18,18,.05);
}

@media (max-width: 900px) {
	
	header{
		width: 100%;
		flex-wrap: wrap;
	}
	
	
	header h1 {
		display: flex;
		margin-right: auto;
		flex: 1 1 0;
		min-width: 0;
		width: auto;
		overflow: hidden;
	}
	
	header .account-section {
		order: 2;
		flex: 0 0 auto; 
		white-space: nowrap; 
	}
}

@media (max-width: 500px) {
	
	header {
		gap: 25px 5px !important;
	}

	header h1 {
		font-size: 22px;
		line-height: 38px;
	}
	
	header h1 span {
		font-size: 10.5px;
		padding: 4px 4px 5px 4px;
		margin-left: 6px;
		top: -8px;
	}
	
	header .account-section button, header .button {
		padding: 8px 12px;
		font-size: 18px !important;
	}
}

@media (max-width: 400px) {
	
	header h1 {
		font-size: 20px;
		line-height: 38px;
	}
	
	header h1 span {
		font-size: 9.5px;
		padding: 3px 3px 4px 3px;
		margin-left: 4px;
		top: -7px;
	}
	
	
	header .account-section button, header .button {
		font-size: 16px !important;
	}
}

@media (prefers-color-scheme: dark) {
	header {
		background-color: rgba(18,18,18,.1);
		box-shadow: 0 50px 50px #121212 inset;
	}
	
	header h1 {
		color: #FFFFFF;
	}
	
	header h1 span {
		color: #121212;
		background-color: #FFFFFF;
	}
	
	header .account-section button, header .account-section .recent-sent-button, header .account-section .recent-sent-button:hover, header .button{
		background-color: rgba(255, 255, 255, .15) !important;
		color: rgba(255, 255, 255, 1);
	}
	
	header .account-section button:hover, header .button:hover {
		background-color: rgba(255, 255, 255, .2);
		color: rgba(255, 255, 255, 1);
	}
}


/* SEARCH */

aside.search-container {
	order: 2;
	flex-grow: 1;
	position: relative;
	overflow: hidden;
	background-color: rgba(18,18,18,0.05);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-radius: 15px;
	display: flex;
	flex-direction: column;
}


aside.search-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(219,84,97,0.3) 0%, rgba(70,70,255,0.3) 50%, rgba(219,84,97,0.3) 100%);
	background-size: 200% auto;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
}

aside.search-container.input-highlight::before {
	opacity: 1;
	animation: shimmer 2s ease-in-out infinite;
}


@keyframes shimmer {
	0% {
		background-position: -200% center;
	}
	100% {
		background-position: 200% center;
	}
}

aside.search-container .top-content {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0 25px;
	gap: 15px;
}

aside.search-container .search-icon{	
	color: rgba(18,18,18,0.5);
	transition: all 0.5s ease;
}

aside.search-container .search-icon i.fa-loader {
	animation: spin 1s linear infinite;
}

aside.search-container .search-icon i.fa-plus:hover {
	cursor: pointer;
	color: #4646ff;
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

aside.search-container input {
	width: 100%;
	padding: 14px 0;
	border: 0;
	font-weight: 600;
	outline: none;
	background: url('../images/poweredby.png') no-repeat;
	background-position: right center;
	background-size: 50px;
	transition: all 0.5s ease;
}

aside.search-container:focus-within{
	background-color: rgba(18,18,18,.08);
}

aside.search-container:focus-within input,
aside.search-container:focus-within .search-icon {
	transition-delay: 0s;
}

aside.search-container:not(:focus-within) input,
aside.search-container:not(:focus-within) .search-icon {
	transition-delay: .5s;
}

aside.search-container ul.results{
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0 25px;
	max-height: 400px;
	overflow-x: hidden;
	overflow-y: scroll;
	z-index: 100000000;
}

aside.search-container ul.results li{ 
	display: flex;
	position: relative;
	width: 100%;
	padding: 15px;
}

aside.search-container ul.results li:last-of-type{ 
	margin-bottom: 25px;
}

aside.search-container ul.results li .add-missing-book{ 
	display: flex;
	width: 100%;
	align-items: center;
	gap: 25px;
	position: relative;
	font-weight: 600;
}

aside.search-container ul.results li .add-missing-book i{
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	border-radius: 5px;
	background-color: white;
	flex-shrink: 0; 
}

aside.search-container ul.results li.active, aside.search-container ul.results li:not(.information):hover{ 
	cursor: pointer;
	color: #4646ff;
	background-color: rgba(70, 70, 255, 0.05);
	border-radius: 5px;
}


aside.search-container ul.results li.active .book-preview img {
	box-shadow: 
		0 12px 20px rgba(0, 0, 0, 0.2),
		0 6px 8px rgba(0, 0, 0, 0.05);
	transform: scale(1.05);
}

aside.search-container ul.results li .book-details p.isbn{ 
	display: none;
}


@media (max-width: 900px) {
	aside.search-container {
		order: 3;
		overflow: hidden;
		flex: 0 0 100%;
		flex-basis: 100%; 
	}
	
	aside.search-container ul.results li{ 
		padding-left: 0;
		padding-right: 0;
	}
	
	
	aside.search-container .search-icon, aside.search-container input {
		font-size: 18px !important;
	}
}


@media (prefers-color-scheme: dark) {
	aside.search-container {
		background-color: rgba(255,255,255,.15);
		color: #FFFFFF;
	}
	
	aside.search-container:focus-within{
		background-color: rgba(255,255,255,.10);
	}
	
	aside.search-container .search-icon {
		color: rgba(255, 255, 255, .8);
	}
	
	aside.search-container ul.results li .add-missing-book i{
		color: rgba(70, 70, 255, 1);
	}
}



/* BOOK PREVIEW RESULTS */

.book-preview {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 25px;
	position: relative;
}

.book-preview img {
	max-width: 60px !important;
	max-height: 80px;
	width: auto;
	height: auto;
	border-radius: 5px;
	flex-shrink: 0;
	box-shadow: 
		0 8px 15px rgba(0, 0, 0, 0.15),
		0 4px 6px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.5s ease, transform 0.5s ease;
}



.book-preview .book-details {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 85px);
}

.book-preview .book-title-author{
	flex: 1;
	min-width: 150px;
}

.book-preview .book-title-author strong {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	font-weight: 700;
}

.book-preview .book-title-author p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
	max-width: 100%;
	font-size: 14px;
	font-weight: 400 !important;
}


/* NOTIFICATOIN SECTION */

.notification-container{ 
	position: fixed;
	bottom: 25px;
	right: 25px;
	max-width: calc(100% - 50px);
	display: flex;
	gap: 25px;
	flex-direction: column;
	z-index: 10000000000000000000;
	max-height: 800px;
	overflow: scroll;
}

.notification-section {
	padding: 10px 20px;
	background-color: rgba(70, 70, 255, 0.1);
	border-radius: 12px;
	color: #232380;
	display: inline-flex;
	gap: 15px;
	align-items: center;
	position: relative; 
	animation: fadeIn 0.5s ease-in-out;
	margin-left: auto;
	backdrop-filter: 25px;
	-webkit-backdrop-filter: blur(25px);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.notification-section.hidden {
	display: none;
}

.notification-section.error {
	background-color: rgba(244, 67, 54, 0.2);
	color: #7A221B;
}

.notification-section.success {
	background-color: rgba(70, 200, 70, 0.2);
	color: #236423;
}

.notification-section .notification-message {
	flex: 1;
}

.notification-section .notification-button {
	background-color: rgba(18,18,18,0);
	padding: 0;
	border: 0;
	color: #4646ff;
	cursor: pointer;
}

.notification-section .notification-close {
	cursor: pointer;
	color: rgba(18,18,18,.4);
}

.notification-section .notification-close:hover {
	color: rgba(18,18,18,.6);
}

.notification-section .notification-button:hover {
	opacity: .8;
}

.notification-section i {
}

.notification-section.notification-error .notification-button {
	color: #7A221B;
}

.notification-section.notification-success .notification-button {
	color: #236423;
}

@media (max-width: 900px) {
	.notification-section{
		font-size: 18px;
	}
}

@media (max-width: 600px) {
	.notification-section{
		font-size: 16px;
	}
	
	.notification-section .notification-button{
		display: none;
	}
}

@media (prefers-color-scheme: dark) {
	.notification-section{
		color: rgba(255,255,255,.8) !important;
	}
	
	.notification-section .notification-button {
		color: rgba(255,255,255,.8) !important;
	}
	
	.notification-section .notification-close {
		color: rgba(255,255,255,.6);
	}
	
	.notification-section .notification-close:hover {
		color: rgba(255,255,255,.8);
	}
}

/* TIMELINE */

.timeline-section {
	width: 100%;
	padding: 25px;
}

.timeline-section .timeline-header {
	display: flex;
	flex-wrap: wrap; 
	width: 100%;
	align-items: stretch;
	justify-content: space-between; 
	margin-bottom: 25px;
	gap: 10px; 
}

.timeline-section .timeline-header .smart-collection-description{
	flex: 0 0 100%;
	font-size: 16px;
	font-weight: 600;
	color: rgba(18,18,18,.4) !important;
	padding: 15px 0;
}

.timeline-section .timeline-header .smart-collection-description b {
	color: rgba(18,18,18,.6) !important
}
.timeline-section .timeline-header .smart-collection-description b i:first-of-type {
	margin-right: 4px;
	color: #4646ff;
}

.timeline-section .timeline-header h2 {
	margin-top: 4px;
	font-size: 28px;
	white-space: nowrap;
	min-width: fit-content;
}

.timeline-section .timeline-header .actions-container {
	display: flex;
	gap: 10px;
	align-items: stretch;
	flex-shrink: 0;
	min-width: fit-content;
}

body.shared h2{
	font-size: 26px;
	margin-bottom: 10px;
}

body.shared .curator{
	margin-bottom: 25px;
}

body.shared .curator .by{
	color: #4646ff;
}

body.shared .curator .by a{
	border-bottom: 1px solid #4646ff;
	color: #4646ff;
}

body.shared .curator .description{
	display: inline;
}

.timeline-section .timeline-header h2 a:hover{
	color: inherit;
	cursor: default;
}

.timeline-section .timeline-header h2 i {
	margin-left: 10px;
	vertical-align: middle;
	display: inline-block;
	display: none;
}

.timeline-section .count_headline {
	font-size: 12px;
	vertical-align: middle;
	background-color: rgba(70, 70, 255, 0.08);
	color: rgba(70, 70, 255, 0.5);
	padding: 4px 7px;
	margin-left: 4px;
	border-radius: 5px;
	position: relative;
	top: -2px;
}

.timeline-section .timeline-header .open-timeline-settings{
	display: flex;
	background-color: rgba(70, 70, 255, 0.1);
	color: #4646ff;
	border-radius: 15px;
	font-size: 16px;
	font-weight: 600;
	overflow: hidden;
	padding: 14px 15px;
	transition: all 0.5s ease;
	align-items: center;
}
.timeline-section .timeline-header .open-timeline-settings i{
	margin-right: 8px
}

.timeline-section .timeline-header .open-timeline-settings:hover{
	opacity: .6;
	cursor: pointer !important;
}



.timeline-section .timeline-header .sharing-box {
	display: none;
	align-items: center;
	gap: 5px;
	background-color: #4646ff;
	color: #FFF;
	border-radius: 15px;
	overflow: hidden;
	padding: 12px 15px;
	cursor: pointer;
	transition: opacity 0.5s ease;
	margin-left: auto;
	white-space: nowrap;
	flex-wrap: nowrap; 
}

.timeline-section .timeline-header .sharing-box i{
	margin-right: 8px
}


.timeline-section .timeline-header .sharing-box:hover, .timeline-section .timeline-header .sharing-box *:hover{
	cursor: pointer;
}

.timeline-section .timeline-header .sharing-box:hover{
	opacity: .6;
}

@keyframes copyEffect {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
}

.timeline-section .timeline-header .sharing-box.copy-effect {
	animation: copyEffect 0.8s ease-out;
}


.timeline-section .timeline-header .sharing-box label{
	font-size: 16px;
	line-height: 1;
	margin-top: 1px;
	font-weight: 600;
}

.timeline-section .timeline-header .sharing-box input{
	display: none;
	width: calc(1ch * 17);
	background-color: rgba(0,0,0,0);
	color: #FFF;
	font-size: 16px;
	line-height: 1;
	border: 0;
}

.timeline-section .timeline{
	display: flex;
	flex-direction: column;
}

body.shared .timeline{
	padding-bottom: 50px;
}

.timeline-section .timeline.loading {
	font-style: italic;
	text-align: center;
}

.timeline-section .year-group {
	display: flex;
	flex-direction: column;
}

.timeline-section h3 {
	font-size: 24px;
	line-height: 2;
}


.timeline-section h4 {
	font-size: 18px;
	font-weight: 600;
	line-height: 2;
	margin-top: 5px
}


.timeline-section .book-entry {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	padding: 15px 0;
	position: relative;
	transition: all .5s ease-in-out;
}

.timeline-section .book-entry:last-of-type{
	border-bottom-width: 0;
}

body:not(.shared) .timeline-section .book-entry:hover {
	cursor: pointer;
	color: #4646ff;
}

.timeline-section .book-entry img {
	max-width: 60px !important;
	max-height: 80px;
	width: auto;
	height: auto;
	border-radius: 5px;
	flex-shrink: 0;
	box-shadow: 
		0 8px 15px rgba(0, 0, 0, 0.15),
		0 4px 6px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.timeline-section .book-entry:hover img {
	box-shadow: 
		0 12px 20px rgba(0, 0, 0, 0.2),
		0 6px 8px rgba(0, 0, 0, 0.05);
	transform: scale(1.05);
}

.timeline-section .book-entry .book-details {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	gap: 25px;
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 85px);
	max-width: 100%;
}

.timeline-section .book-entry .book-details .book-title-author{ 
	padding-right: 25px;
	flex: 1;
	min-width: 150px;
	position: relative;
}

.timeline-section .book-entry .book-details .book-title-author strong {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	font-weight: 700;
}

.timeline-section .book-entry .book-details .book-title-author p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
	max-width: 100%;
	font-size: 14px;
	font-weight: 400 !important;
}

.timeline-section .book-entry .book-details .book-read-status {
	font-size: 14px;
	font-weight: 600;
	color: rgba(18,18,18,.6);
	white-space: nowrap;
	text-align: right;
	border-radius: 15px;
	background-color: rgba(18,18,18,.05);
	padding: 6px 12px;
}

.timeline-section .book-entry .book-details .book-read-status i{
	color: rgba(70, 70, 255, 1) !important;
	margin-right: 3px;
}

.timeline-section .book-entry a.abl {
	font-size: 14px;
	font-weight: 600;
	color: rgba(18,18,18,.6);
	white-space: nowrap;
	text-align: right;
	border-radius: 15px;
	background-color: rgba(18,18,18,.05);
	padding: 6px 12px;
}

.timeline-section .book-entry a.abl i{
	color: rgba(70, 70, 255, 1) !important;
	margin-right: 3px;
}

.timeline-section .book-entry a.abl:hover {
	background-color: rgba(70, 70, 255, .15);
	cursor: pointer !important;
}


.timeline-section .book-entry .book-details .book-rating {
	color: #4646ffa;
	display: flex;
	gap: 2px;
	cursor: default;
}


.timeline-section .book-entry .book-details .book-rating .rating-desktop {
	display: inline; 
}

.timeline-section .book-entry .book-details .book-rating .rating-mobile {
	display: none;  
	font-size: 12px;
	font-weight: 600;
	color: rgba(18,18,18,.6);
	white-space: nowrap;
	border-radius: 15px;
	background-color: rgba(18,18,18,.05);
	padding: 4px 12px;
}

.timeline-section .book-entry .book-details .book-rating .rating-mobile i{
	color: rgba(70, 70, 255, 1) !important;
	margin-right: 3px;
}

body.shared .timeline-section .book-entry p.note{
	position: relative; 
	flex: 0 0 100%;
	white-space: wrap;
	font-size: 16px;
	padding: 15px;
	background-color: rgba(18,18,18,.02);
	color: rgba(18,18,18,.6);
	border-radius: 5px;
}

.timeline-section .skeleton-container, .timeline-section .empty-container {
	display: flex;
	flex-direction: column;
}


.timeline-section .skeleton-item, .timeline-section .empty-item {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 15px 0;
}

.timeline-section .skeleton-item:last-of-type, .timeline-section .empty-item:last-of-type {
	border-bottom-width: 0
}

.timeline-section .skeleton-image, .timeline-section .empty-image {
	width: 60px;
	height: 80px;
	background: #e0e0e0;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgba(18,18,18,.1);
	color: rgba(18,18,18,.20);
	font-size: 30px;
	animation: shimmer 1.5s infinite linear;
	flex-shrink: 0
}

.timeline-section .skeleton-text-container, .timeline-section .empty-text-container {
	max-width: 500px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-grow: 1;
}

.timeline-section .skeleton-text-container .skeleton-text{
	display: block !important;
	width: 100%;
	height: 16px;
	background: #e0e0e0;
	border-radius: 5px;
	animation: shimmer 1.5s infinite linear;
}

.timeline-section .empty-text-container .empty-text {
	display: block !important;
	color: rgba(18,18,18,.4);
	font-weight: 600;
	width: 100%;
}

.timeline-section .skeleton-text-container .skeleton-text:nth-child(2) {
	width: 70%; 
	margin-top: 8px; 
}

.timeline-section .empty-text-container .empty-text:nth-child(2) {
	font-weight: 500;
}

.timeline .timeline-sortable-ghost {
	opacity: 1 !important;
	background: rgba(70, 70, 255, 0.2);
	border: 3px dashed rgba(70, 70, 255, 0.4);
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 5px;
}

.timeline .timeline-sortable-chosen {
	opacity: 0.2; 
}

@keyframes shimmer {
	0% {
		background-position: -200px 0;
	}
	100% {
		background-position: 200px 0;
	}
}

.timeline-section .skeleton-image, .timeline-section .skeleton-text {
	background: linear-gradient(
		to right,
		#e0e0e0 0%,
		#f0f0f0 50%,
		#e0e0e0 100%
	);
	background-size: 200% 100%;
}


@media (max-width: 900px) {
	
	body:not(.shared) .timeline-section h2 {
		display: flex;
		align-items: center;
		padding: 6px 18px;
		background-color: rgba(0,0,0,.1);
		border-radius: 15px;
		font-size: 20px !important;
		font-weight: 600;
		transition: color 0.5s ease, background-color 0.5s ease;
		margin: 0 !important;
		
	}

	body:not(.shared) .timeline-section h2:hover{
		color: #4646ff;
		background-color: rgba(18,18,18,.05);
		cursor: pointer;
	}
	
	.timeline-section .timeline-header h2 i{
		display: inline-block !important
	}
	
	.timeline-section h3 {
		margin-left: 0;
	}
	
	.timeline-section h4 {
		margin-left: 0;
	}
	
	.timeline-section .timeline-header h2 .count_headline {
		display: none;
	}
	
	.timeline-section .book-entry{
		padding-left: 0;
		padding-right: 0;
	}
	
	.timeline-section .book-entry .book-details {
		justify-content: flex-start;
		gap: 5px 10px;
	}
	
	.timeline-section .book-entry .book-details .book-title-author{
		line-height: 1.5;
		padding-right: 15px;
	}
	
	.timeline-section .book-entry .book-details .book-read-status {
		font-size: 12px;
		text-align: left;
		padding: 4px 12px;
	}
	
	.timeline-section .book-entry a.abl {
		font-size: 12px;
		text-align: left;
		padding: 4px 12px;
	}
	
	.timeline-section .skeleton-item, .timeline-section .empty-item {
		padding-left: 0;
		padding-right: 0;
	}
	
}


@media (max-width: 600px) {
	
	body:not(.shared) .timeline-section h2 {
		padding: 10px 18px;
		font-size: 16px !important;
	}
	
	
	.timeline-section .timeline-header .sharing-box {
		background-color: rgba(70, 70, 255, .1);
		padding: 14px 20px;
		gap: 2px;
		color: #4646ff;
		margin-left: 0 !important;
	}
	
	.timeline-section .timeline-header .sharing-box label{
		font-size: 16px;
	}
	
	.timeline-section .timeline-header .open-timeline-settings{
		font-size: 16px;
		padding: 14px 20px;
	}
	
	.timeline-section .timeline-header .sharing-box i, .timeline-section .timeline-header .open-timeline-settings i{
		margin-right: 0;
	}
	
	.timeline-section .timeline-header .sharing-box span, .timeline-section .timeline-header .open-timeline-settings span{
		display: none;
	}
	
	.timeline-section .timeline-header .smart-collection-description{
		padding-top: 25px;
		font-size: 14px;
	}
}



@media (max-width: 500px) {
	
	body.shared .curator, body.shared .curator .by{
		font-size: 16px !important;
	}
	
	.timeline-section .book-entry .book-details .book-title-author{
		padding-right: 0;
	}
	
	.timeline-section .book-entry .book-details .book-rating .rating-desktop {
		display: none; 
	}
	
	.timeline-section .book-entry .book-details .book-rating .rating-mobile {
		display: inline;  
	}
	
}

@media (prefers-color-scheme: dark) {
	
	.timeline-section .count_headline {
		background-color: rgba(70, 70, 255, 0.15);
		color: rgba(70, 70, 255, 1);
	}
	
	.timeline-section .timeline-header .open-timeline-settings{
		background-color: rgba(70, 70, 255, .25);
		color: #FFF;
	}

	.timeline-section .timeline-header .sharing-box {
		background-color: rgba(70, 70, 255, .25);
		color: #FFF;
	}
	
	.timeline-section .timeline-header .smart-collection-description{
		color: #D8D8F7 !important; 
	}
	
	.timeline-section .timeline-header .smart-collection-description b {
		color: #9E9EFA !important
	}
	
	body.shared .curator .by, body.shared .curator .by a{
		color: #D8D8F7;
		border-color: #D8D8F7;
	}
	
	body.shared .curator .by a:hover{
		color: #D8D8F7 !important;
		border-color: #D8D8F7 !important;
	}
	
	body.shared .curator .description{
		color: #FFFFFF;
	}
	
	body:not(.shared) .timeline-section .book-entry:hover {
		color: #D8D8F7;
	}
	
	.timeline-section .book-entry .book-details .book-read-status {
		color: rgba(255,255,255,.6	);
		background-color: rgba(255,255,255,.15);
	}
	
	.timeline-section .book-entry a.abl {
		color: rgba(255,255,255,.6	);
		background-color: rgba(255,255,255,.15) !important;
	}
	
	.timeline-section .book-entry a.abl:hover {
		color: rgba(255,255,255,.8) !important;
	}

	
	.timeline-section .book-entry .book-details .book-rating .rating-mobile {
		color: rgba(255,255,255,.6	);
		background-color: rgba(255,255,255,.15);
	}
	
	body.shared .timeline-section .book-entry p.note{
		background-color: rgba(255,255,255,.05);
		color: rgba(255,255,255,.6);
		border-radius: 5px;
	}
	
	.timeline-section .skeleton-image, .timeline-section .empty-image{
		background-color: rgba(255, 255, 255, 0.1);
		color: rgba(255, 255, 255, 0.7);
	}
	
	.timeline-section .empty-text-container .empty-text {
		color: rgba(255,255,255,.7);
	}

}

@media (max-width: 900px) and (prefers-color-scheme: dark) {
	body:not(.shared) .timeline-section h2 {
		background-color: rgba(255,255,255,.15);
		border-color:  rgba(255,255,255,.3) !important;
	}
	
	body:not(.shared) .timeline-section h2:hover{
		background-color: rgba(255,255,255,.05);
		border-color:  rgba(255,255,255,.4) !important;
	}

}


/* ONBOARDING SECTION */

.onboarding-checklist {
	color: #232380;
	padding: 40px 25px;
	margin: 0 0 25px 0;
	width: calc(100%);
	border-radius: 15px;
	position: relative;
	display: none;
	overflow: hidden;
	flex-shrink: 0;
	background: linear-gradient(125deg, rgba(70, 70, 255, 0.1) 0%, rgba(70, 70, 255, 0.1) 100%);
	font-size: 16px;
	font-weight: 600;
	transition: transform 0.5s ease;
}

.onboarding-checklist a{
	color: #232380; !important;
}

.onboarding-checklist:hover {
	transform: scale(1.01);
}

.onboarding-checklist.onboarding-show{
	display: flex;
	align-items: center;
	gap: 10px;
}

.onboarding-checklist .onboarding-form{
	flex: 1;
}

.onboarding-checklist .onboarding-form p{
	padding: 10px 0;
	font-weight: 400 !important;
	display: none;
}

.onboarding-checklist .onboarding-form p strong{
	font-weight: 500;
}

.onboarding-checklist .close-intro {
	position: absolute;
	top: 15px;
	right: 15px;
	border: none;
	color: #FFF;
	background-color: transparent;
	border-radius: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px !important;
	padding: 0 !important;
	margin: 0 !important;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.5s ease;
}

.onboarding-checklist .close-intro:hover {
	opacity: 0.8;
}


.onboarding-checklist .progress-container {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 15px;
	overflow: hidden;
	margin: 15px 0;
	position: relative;
}

.onboarding-checklist .progress-bar {
	height: 10px;
	background-color: #232380;
	width: 0%;
	transition: width 0.5s ease;
	border-radius: 15px;
}

.onboarding-checklist h3 {
	font-size: 20px;
	line-height: 1.6 !important;
	font-weight: 600 !important;
}

.onboarding-checklist h3 span {
	font-size: 11px;
	line-height: 1;
	font-weight: 600;
	background-color: #232380;
	color: #FFFFFF;
	border-radius: 5px;
	padding: 2px 3px 3px 3px;
	margin-left: 5px;
	position: relative;
	top: -8px;
	display: inline-block;
}

.onboarding-checklist h3 i.responsive-word{
	font-style: normal !important;
}

.onboarding-checklist ul {
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.onboarding-checklist li.step {
	flex: 1;
	display: flex;
	align-items: center;
	opacity: .25;
	transition: opacity 0.5s ease;
}

.onboarding-checklist li.next{
	opacity: 1 !important;
}

.onboarding-checklist li.completed {
	opacity: 1 !important;
}

.onboarding-checklist .step-icon {
	display: inline-block;
	width: 24px;
	text-align: center;
	margin-right: 10px;
	color: rgba(70, 70, 255, 1) !important;
}

.onboarding-checklist .step-text {
	flex: 1;
	cursor: default;
}

.onboarding-checklist .close-complete-intro{
	border: 0;
	background-color: #FFF;
	color: #4646ff;
	border-radius: 15px;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 16px;
	margin-top: 25px;
	transition: opacity 0.5s ease;
	cursor: pointer;
	flex: 0;
}

.onboarding-checklist .close-complete-intro i{
	margin-right: 8px;
}

.onboarding-checklist .close-complete-intro:hover{
	opacity: .6;
}


@media (max-width: 900px) {
	.onboarding-checklist .step-text {
		font-size: 14px !important;
	}
}

@media (max-width: 1200px) {
	.onboarding-checklist ul {
		flex-wrap: wrap;
	}
	
	.onboarding-checklist ul li {
		flex: 0 0 calc(50% - 10px) !important; 
	}
}


@media (max-width: 500px) {
	.onboarding-checklist {
		padding: 25px 25px;
	}
	
	.onboarding-checklist h3{
		font-size: 16px;
	}
	
	.onboarding-checklist h3 span {
		font-size: 10px;
		padding: 2px 3px 3px 3px;
		margin-left: 4px;
		top: -6px;
	}
	
	.onboarding-checklist ul {
		flex-direction: column;
		align-items: flex-start; 
	}
	
	.onboarding-checklist ul li {
		flex: 0 0 calc(100%) !important; 
	}
	
	.onboarding-checklist .onboarding-form p{
		display: none;
	}
}

@media (max-width: 400px) {
	.onboarding-checklist h3 i.responsive-word {
		display: none !important
	}
}


@media (prefers-color-scheme: dark) {	
	
	.onboarding-checklist {
		color: #FFFFFF !important;
	}
	
	.onboarding-checklist a{
		color: #FFFFFF; !important;
	}
	.onboarding-checklist li.step{
		opacity: .5
	}
	
	.onboarding-checklist .step-icon {
		color: #9E9EFA !important;
	}
	
	.onboarding-checklist .progress-bar {
		background-color: #4646ff;
	}

	
	.onboarding-checklist .close-intro {
		color: #4646ff;
	}
	
	.onboarding-checklist {
		color: #FFF; !important;
	}

}


/* OVERLAY */

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 50;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.overlay.hidden {
	opacity: 0; 
	visibility: hidden; 
}

.overlay-content {
	width: 600px;
	max-width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 0 15px;
}

.overlay h2, .overlay h3 {
	z-index: 2;
	font-size: 30px;
	padding: 25px 25px 0 25px;
}

.overlay form p{
	padding: 25px 25px 0 25px;
}

.overlay form p b{
	font-weight: 500;
}

.overlay .smart-criteria{
	margin-top: 25px;
	padding: 25px;
	background-color: rgba(70, 70, 255, 0.05);
	border-radius: 15px;
}

.overlay .overlay-book-preview{
	margin: 25px 0 10px 0;
	border-radius: 15px;
	overflow: hidden;
	padding: 15px;
	background-color: rgba(70, 70, 255, 0.1);
}

.overlay .overlay-book-preview .isbn{
	display: none;
}

.overlay form label, .overlay form span.label{
	display: block;
	margin: 15px 0 10px 0;
	padding: 5px 25px 5px 25px;
	font-weight: 500;
	color: #4646ff;
}

.overlay .smart-criteria label, .overlay .smart-criteria span.label {
	padding-left: 0 !important;
}

.overlay form label .label-optional, .overlay form span.label .label-optional{
	font-weight: 300;
	font-size: 15px;
}

.overlay form label:not(.checkbox-label) a, .overlay form span.label:not(.checkbox-label) a{
	vertical-align: middle;
	display: inline-block;
	font-size: 12px;
	margin-left: 8px;
	padding: 5px 8px;
	font-weight: 500;
	color: #4646ff;
	background-color: rgba(70, 70, 255, 0.05);
	border-radius: 5px;
}

.overlay form label.checkbox-label a, .overlay form span.label.checkbox-label a{
	color: #4646ff;
	border-bottom: 2px solid #4646ff;
}

.overlay form label a i, .overlay form span.label a i{
	font-size: 10px;
}

.overlay form label:not(.checkbox-label) a:hover, .overlay form span.label:not(.checkbox-label) a:hover{
	background-color: rgba(70, 70, 255, 0.15);
}

.overlay form label.checkbox-label a:hover, .overlay form span.label.checkbox-label a:hover{
	color: #000;
	border-color: #000 !important;
}


.overlay form input:not([type='checkbox']),
.overlay form select,
.overlay form textarea {
	width: 100%;
	padding: 15px 25px;
	border-radius: 15px;
	margin: 0 0 10px 0;
	border: 0;
	background-color: rgba(0,0,0,.05);
}

.overlay form textarea#edit-notes, .overlay form textarea#notes {
	padding-top: 5px;
	border-radius: 0 0 15px 15px;
	resize: none;
	min-height: 60px;
}

.overlay form select {
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	position: relative;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23000000' d='M310.6 246.6l-127.1 128c-6.249 6.249-16.38 6.249-22.63 0l-127.1-128c-6.249-6.249-6.249-16.38 0-22.63l22.63-22.63c6.249-6.249 16.38-6.249 22.63 0L160 305.4l104.4-104.4c6.249-6.249 16.38-6.249 22.63 0l22.63 22.63C316.8 230.3 316.8 240.4 310.6 246.6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 25px 25px; 
}

.overlay form select:hover {
	background-color: #e5e5e5;
	cursor: pointer;
}

.overlay form input[readonly] {
	background: #f9f9f9;
	color: #aaa;
}

.overlay form .counter{
	font-size: 12px;	
	padding: 0 25px 0 25px;
	text-align: right;
	height: 0 !important;
	overflow: visible;
	top: -10px;
	display: block;
	position: relative;
}

.overlay form .button-group{
	display: flex;
	flex-wrap: wrap; 
	gap: 10px;
	justify-content: flex-start; 
	align-items: center; 	
	padding: 15px 25px;
}

.overlay form button{
	border-radius: 15px;
	border: none;
	padding: 8px 16px;
	cursor: pointer;
	transition: opacity 0.5s ease;
	background-color: rgba(18,18,18,.05);
}

.overlay form button i{
	margin-right: 5px;
}


.overlay form button:hover {
	opacity: 0.6;
}


.overlay form button.button-cancel {
	background-color: rgba(255,255,255,0);
	color: rgba(0,0,0,1);
	margin-left: 5px;
}

.overlay form .button-password {
	background-color: rgba(18,18,18,.05);
	color: rgba(0,0,0,1);
	margin-left: 5px;
}

.overlay.persistent .button-cancel{
	display: none !important;
}

.overlay form button.button-delete {
	background-color: #FFE0E0;
	color: #7A221B;
}

.overlay form button.button-save {
	font-weight: 400;
	background-color: #4646ff;
	color: #FFFFFF;
}

.overlay .rating {
	width: 100%;
	display: inline-flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	color: #121212;
	background-color: rgba(0,0,0,.05);
	border-radius: 15px 15px 0 0;
	padding: 20px 25px;
}

.overlay .smart-criteria .rating{
	border-radius: 15px 15px 15px 15px !important;
}

.overlay .rating span {
	display: inline-block;
	font-size: 24px;
	line-height: 28px;
	cursor: pointer;
}
.overlay .rating span i {
	transition: color 0.5s ease;
}

.overlay .rating span i.blink {
	animation: blink-feedback 0.3s ease-in-out;
}


@keyframes blink-feedback {
	0%, 100% {
		transform: scale(1);
		color: #4646ff; 
	}
	50% {
		transform: scale(1.2);
		color: #4646ff; 
	}
}

.tag-container {
	width: 100%;
	min-height: 38px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;	
}

.tag {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 15px;
	font-size: 14px;
	transition: all .5s ease;
}

.tag i{
	margin-right: 8px;
}

.tag:hover{
	cursor: pointer;
	color: #4646ff;
}

.tag:not(.tag-added):hover{
	box-shadow: 0 0 15px rgba(0,0,0,.08);
}

.tag-suggestion {
	color: rgba(0,0,0,.45);
	background-color: rgba(0,0,0,0);
	border: 1px solid rgba(0,0,0,.05);
}

.tag-added {
	background-color: rgba(0,0,0,.1);
	position: relative;
}

.tag-added .icon-trash {
	display: none;
}
.tag-added:hover .icon-check {
	display: none;
}

.tag-added:hover{
	background-color: rgba(244, 67, 54, .1);
	color: rgba(244, 67, 54, 1);
}

.tag-added:hover .icon-trash {
	display: inline;
	color: #FFFFFFF;
}

.tag-input {
	display: inline-flex;
	align-items: center;
	background-color: rgba(0,0,0,.05);
	padding: 8px 8px 8px 12px;
	border-radius: 15px;
	font-size: 14px;
}
.tag-input i {
	color: #4646ff;
	margin-right: 8px;
}
.tag-input input {
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 0 !important;
	outline: none;
	font-size: 14px;
	width: 80px !important; 
	min-width: 80px !important; 
	display: inline-block;
	color: #4646ff
}

.tag-input input::-webkit-input-placeholder{
	color: #4646ff;
}

.toggle-switch-container {
	width: 100%;
	margin-bottom: 25px;
}
	
.toggle-switch {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 34px;
	cursor: pointer;
}

.toggle-switch input[type="checkbox"] {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 2;
	cursor: pointer;
}

.toggle-slider {
	position: absolute;
	top: 0;
	right: 0;
	left: calc(100% - 60px);
	bottom: 0;
	background-color: rgba(0,0,0,.1);
	border-radius: 15px;
	transition: 0.5s ease;
	z-index: 1;
}

.toggle-slider::before {
	content: "";
	position: absolute;
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: #fff;
	border-radius: 15px;
	transition: 0.5s ease;
}

.toggle-switch input:checked + .toggle-slider {
	background-color: #4646ff;
}

.toggle-switch input:checked + .toggle-slider::before {
	transform: translateX(26px);
}

.toggle-text {
	width: calc(100% - 70px);
	padding: 0 25px;
	display: inline-block;
	vertical-align: middle;
}



@media (max-width: 900px) {
	
	.overlay-content {
		max-width: 100%;
		border: 0;
		max-height: 100dvh;
		padding: 0 25px;
	}
	
	.overlay.overlay-email .overlay-content, .overlay.overlay-login .overlay-content{
		background: none;
	}
}

@media (max-width: 600px) {
	
	.overlay{
		font-size: 14px;
	}
	
	.overlay form label, .overlay form span.label{
		margin: 15px 0 0 0;
		padding: 5px 25px 5px 15px;
	}
	
	
	.overlay form label:not(.checkbox-label) a, .overlay form span.label:not(.checkbox-label) a{
		font-size: 10px !important;
	}
	
	.overlay form input:not([type='checkbox']),
	.overlay form select,
	.overlay form textarea {
		padding: 10px 15px;
		margin: 0 0 5px 0;
	}
	
	.rating {
		padding: 15px 15px;
	}
	
	.overlay form .button-group{
		gap: 5px;
		padding: 15px 15px;
	}
	
	.overlay h2, .overlay h3 {
		font-size: 24px;
		padding-left: 15px;
	}
	
	.overlay form p{
		padding-left: 15px;
	}
	
	.tag-container{
		padding: 10px 0;
	}
	
	.tag, .tag-input{
		padding-top: 6px;
		padding-bottom: 6px;
		font-size: 12px;
	}
	
	.tag-input input{
		font-size: 12px;
	}
	
}

@media (prefers-color-scheme: dark) {
	.overlay {
		background: rgba(18,18,18,.1);
	}
	
	.overlay form input:not([type='checkbox']),
	.overlay form select,
	.overlay form textarea,
	.overlay form button { 
		background-color: rgba(255,255,255,.15) !important;
	}
	
	.overlay form select {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23f0f0f0' d='M310.6 246.6l-127.1 128c-6.249 6.249-16.38 6.249-22.63 0l-127.1-128c-6.249-6.249-6.249-16.38 0-22.63l22.63-22.63c6.249-6.249 16.38-6.249 22.63 0L160 305.4l104.4-104.4c6.249-6.249 16.38-6.249 22.63 0l22.63 22.63C316.8 230.3 316.8 240.4 310.6 246.6z'/%3E%3C/svg%3E");
	}
	
	.overlay form select:hover {
		background-color: rgba(255,255,255,.2);
	}
	
	.overlay form input[readonly] {
		background-color: rgba(255,255,255,.15);
	}
	
	.overlay form label, .overlay form span.label{
		color: #BBBBF8;
	}
	
	.overlay form label:not(.checkbox-label) a, .overlay form span.label:not(.checkbox-label) a{
		color: rgba(255,255,255,.8);
		background-color: rgba(255,255,255,.15);
	}
	
	.overlay form label.checkbox-label a, .overlay form span.label.checkbox-label a{
		color: #BBBBF8;
		border-color: #BBBBF8 !important;
	}
	
	.overlay form label:not(.checkbox-label) a:hover, .overlay form span.label:not(.checkbox-label) a:hover{
		background-color: rgba(255,255,255,.2);
	}
	
	.overlay form label.checkbox-label a:hover, .overlay form span.label.checkbox-label a:hover{
		color: rgba(255,255,255,1);
		border-color: rgba(255,255,255,1) !important;
	}
	
	.overlay form button.button-cancel {
		color: rgba(255,255,255,1) !important;
	}


	.overlay form button.button-delete {
		background-color: rgba(122, 34, 27, 0.4) !important;
		color: #FFFFFF;
	}
	
	.overlay form button.button-save {
		background-color: rgba(70, 70, 255, 0.4) !important;
		color: #FFFFFF;
	}
	
	.overlay form .button-password {
		background-color: rgba(255,255,255,.15);
		color: #FFFFFF;
	}
	
	.rating {
		color: #FFFFFF;
		background-color: rgba(255,255,255,.15);
	}
	
	.toggle-slider {
		background-color: rgba(255,255,255,.15);
	}
	
	.tag:hover{
		color: #BBBBF8
	}
	
	.tag-suggestion {
		color: rgba(255,255,255,.35);
		background-color: rgba(255,255,255,.15);
		border: 1px solid rgba(0,0,0,.05);
	}
	
	.tag-added {
		background-color: rgba(255,255,255,.5);
	}

	.tag-added:hover{
		background-color: rgba(244, 67, 54, .1);
		color: rgba(244, 67, 54, 1);
	}
	
	.tag-added:hover .icon-trash {
		color: #FFFFFFF;
	}
}

/* FOOTER OUTSIDE */


footer{
	width: 100%;
	max-width: 100%;
	display: none;
	z-index: 0;
}

body.shared footer{
	display: block !important;
}

footer ul {
	display: flex;
	list-style: none;
	padding: 25px 10px;
	justify-content: center; 
	flex-wrap: wrap;
	gap: 5px 25px; 
	font-size: 14px;
	z-index: -5;
}

footer li {
	display: inline; 
}

footer a {
	color: rgba(18,18,18,.5) !important;
}

footer a:hover{
	color: #4646ff;
}

@media (max-width: 900px){
	footer{
		display: block;
	}
}

@media (max-width: 600px) {
	footer ul{
		font-size: 12px;
		gap: 5px 10px;
	}
}

@media (prefers-color-scheme: dark) {
	footer .footer-toggle {
		background: rgba(18,18,18,.5);
		color: #FFFFFF;
	}
	
	footer ul {
		background: rgba(18,18,18,.5);
	}
}

