/* Text Align */
.text-left {
	text-align: left;
}

.link-el {
	text-decoration: none;
	color: inherit;
}

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

/* # Font */
.fw-bold { font-weight: 800; }
.fw-normal { font-weight: normal; }

.navbar h1 {
	font-size: 22px;
	font-weight: 900;
}

/* @ Anime Section */
.anime-wraper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: .5rem;
}

.anime-card-title {
	font-size: 16px;
	font-weight: normal;
}

.anime-wraper img {
	width: 100%;
	height: 214px;
	object-fit: cover ;
}

/* @ Anime Detail */
.anime-content-wraper {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 1.5rem;
}

.anime-content-left {
	/*background-color: red;*/
}

.anime-content-right {
	/*background-color: blue;*/
}

.anime-detail-thumbnail {
	width: 220px;
	max-height: 100%;
	object-fit: cover;
}

.anime-detail-tabs {
	width: 100%;
	margin: 1rem 0;
	display: flex;
}

#anime-iframe-wraper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: .25rem;
}

#anime-iframe-wraper iframe {
	width: 100%;
	height: auto;
}

.anime-iframe {
	cursor: pointer;
}

.anime-iframe-cover {
	position: relative;
}

.anime-iframe-thumbnail {
	width: 100%;
	cursor: pointer;
	transition: 250ms opacity ease-in-out;
}

.anime-iframe-duration {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	padding: .25rem;
	background-color: rgba(0, 0, 0, .8);
	color: #fff;
}

.anime-iframe-cover:hover {
	opacity: .9;
}

.anime-iframe-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	display: flex;
	background-color: rgba(0, 0, 0, .9);
}

.anime-iframe-modal-body {
	display: flex;
	width: 80%;
	height: 80%;
	margin: auto;
	position: relative;
}

.anime-iframe-modal-close {
	/*color: #fff;*/
	position: absolute;
	background-color: gold;
	right: 0;
	top: -3rem;
	cursor: pointer;
	padding: .3rem;
}

.anime-iframe-modal iframe {
	width: 100%;
	height: 100%;
	margin: auto;
}

.hide {
	display: none;
}

/* @ Footer */
footer {
	color: #cfcfcf;
}

@media screen and (max-width: 576px) {

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

@media screen and (max-width: 393px) {

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

	.anime-detail-thumbnail {
		width: 100%;
	}

}