@import "base/button.css";
@import "base/color.css";
@import "base/flex.css";
@import "base/sizing.css";
@import "base/spacing.css";
@import "base/table.css";

:root {
	--bg-body: #F2F2F2;
	--outline-color-1: #d1d1d1;
}

/* # Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: var(--bg-body);
	font-family: "Nunito Sans", sans-serif;
}

button {
	padding: .5rem 1rem;
	cursor: pointer;
}

input,
textarea,
select {
	width: 100%;
	padding: .5rem;
	background-color: #fff;
	border: none;
	outline: 1px solid var(--outline-color-1);
}

/* Display */
.block {
	display: block;
}

.display-none { display: none; }

.container {
	width: 100%;
	padding: 0 1rem;
}

/* ###################################################################### OWN CUSTOM ######################################################3 */

.font-logo {
	font-family: "DM Sans", system-ui;
	color: #060771;
	/*letter-spacing: .05rem;*/
	font-size: 24pt !important;
	/*	background-color: #fff;
	padding: 0 .86rem;
	outline: 1px solid #060771;
	border-radius: 3px;*/
}

.link {
	color: blue;
	text-decoration: none;
}

.link:hover {
	text-decoration: underline;
}

.link-active {
	color: #000;
	font-weight: bold;
	text-decoration: underline;
	text-decoration-line: #000;
}

.link-btn {
	display: flex;
	align-items: center;
	max-width: fit-content;
}

/* Navbar */
nav {
	width: 100%;
	background-color: #ffffff;
	color: #000;
	outline: 1px solid #d1d1d1;
}

nav .navbar {
	width: 100%;
	display: flex;
	padding: 1rem 0;
	align-items: center;
	margin-bottom: 1rem;
}

nav .navbar ul {
	display: flex;
	list-style: none;
	margin-left: auto;
}

nav .navbar ul li {
	display: flex;
	list-style: none;
	margin: 0 .5rem;
}

nav .navbar ul li a {
	text-decoration: none;
	color: #3852B4;
}

nav .navbar ul li a:hover {
	color: #000;
}

/* Card */
.card {
	background-color: #fff;
	padding: 1rem;
	outline: 1px solid var(--outline-color-1);
}

/* ------------------------------------------ Loading Screen */
.loading-screen {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	backdrop-filter: blur(22px);
	z-index: 999;
}

/* ----------------------------------------- Toasty */
@keyframes slide-left {

	0% {
		transform: translateX(300px);
		/* Start position */
		opacity: 0;
	}

	50% {
		opacity: .2;
	}

	100% {
		transform: translateX(0);
		/* End position */
		opacity: 1;
	}
}

.toasty {
	display: flex;
	position: absolute;
	top: 10%;
	right: 3%;
	background-color: #000;
	color: #fff;
	justify-content: center;
	align-items: center;
	padding: 1rem;
	animation: slide-left .25s ease-in;
}

/* @ Responsive */
@media screen and (min-width: 769px) {

	.container {
		width: 769px;
		margin-left: auto;
		margin-right: auto;
	}

	.anime-wraper {
		grid-template-columns: repeat(5, 1fr);
		gap: 1rem;
	}

	#anime-content .thumbnail {
		max-width: 100%;
		max-height: 100%;
		object-fit: cover;
		float: left;
	}
}