@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');

:root {
    --text-color: #EDDDC4;
    --text-color-muted: #EDDDC4BB;
    --background-color: #1E1E1E;
    --background-color-transparent: #08242CDD;
    --background-color-card: #152f37;
    --primary: #09171b;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Kiwi Maru', serif;
    margin: 0;
    padding: 0;
}

header {
    min-height: 10vh;
    max-height: 10vh;
    background-color: var(--primary);
}

content>div:first-child {
    padding-top: 10vh;
    padding-bottom: 5vh;
}

footer {
    min-height: 5vh;
    max-height: 5vh;
    background-color: var(--primary);
}

background-image {
    z-index: -1001;
    max-height: 90vh;
    min-height: 90vh;
    display: block;
    position: fixed;
    top: 10vh;
    left: 0;
    right: 0;
    background-image: url("/media/new_image.png");
    background-size: repeat;
}

background-filter {
    z-index: -1000;
    background-color: #1E1E1EE6;
    min-height: 90vh;
    min-width: 100vw;
    display: block;
}

img.picture {
    height: 100px;
    width: 100px;
    /* transform: scaleX(2); */
    object-fit: none;
    border-radius: 100px !important;

}

form.login input {
    background-color: #00000000;
    color: var(--text-color-muted);
    border-radius: 0;
    border: unset;
    border-bottom: 1px solid var(--text-color-muted) !important;
}

form.login input::placeholder {
    color: var(--text-color-muted);
    opacity: 1;
}

form.login input::placeholder:focus {
    color: var(--text-color);
    opacity: 1;
}


form.login input:focus {
    background-color: #FFFFFF20;
    color: var(--text-color);
}

.mangacard {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 5px;
}

.mangacard img {
    border-radius: 5px;
}

.mangacard-text {
    background-color: var(--background-color-transparent);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    /* padding: 1rem; */
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    height: 40%;
}

.mangacard-text:hover,
.mangacard-text:active {
    top: unset;
    bottom: unset;
    height: 100%;
}

.mangacard-text:hover div.title {
    max-height: unset;
}

.mangacard-text:hover div.container>div:nth-child(1) {
    height: unset;
}

.mangacard-text:hover div.container>div:nth-child(3) {
    bottom: 0;
    position: absolute;
    width: 100%;
    padding-bottom: 10%;
}

/* 
.mangacard-text:hover div.container>div:nth-child(3) div.col-6 {
     width: 50%; 
} */

.mangacard-text .more-infos {
    position: absolute;
    bottom: 0;
}

.mangacard-text div.title {
    min-height: 2.5rem;
    max-height: 2.5rem;
    overflow-y: hidden;
}

.mangacard-text div.container {
    height: 100%;
}

.mangacard-text div.container>div:nth-child(1) {
    /* height: 25%; */
    line-height: 100%;
}

.mangacard-text div.container>div:nth-child(3)>div {
    line-height: 100%;
}

.title>div:nth-child(1) {
    height: 100%;
    line-height: 100%;
}

.title>div:nth-child(1)>span:nth-child(1) {
    line-height: 120%;
}

.mangalist {
    /* max-height: 10vh; */
    width: 100%;
    background-color: var(--background-color-card);
    border-radius: 5px;
}

.mangalist img {
    max-height: 10vh;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.mangaview {
    background-color: var(--background-color-card);
}

.mangaview .title {
    font-size: 1.5rem;
    /* min-height: 9rem; */
    max-height: 9rem;
    /* overflow-y: hidden; */
    display: block;
}

.mangaview .interactive img {
    width: 100%;
    border-radius: 5px;
}

.modal {
    color: var(--text-color);
    background-color: rgba(0, 0, 0, 0.8);
    display: block;
}

.modal-content {
    background-color: var(--background-color-card);
}

.modal-footer,
.modal-content,
.modal-header {
    border-color: var(--primary);
}

.taglist>.tag {
    background-color: var(--background-color-card);
    border-radius: 5px;
    font-size: 0.6rem;

}

/* .flex-container {
    display: flex;
    flex-direction: column;
} */

/* .login {
    width: 100%;
    min-height: 100vh;
    background-image: url(/media/new_image.png);
    background-size: cover;

}

.overlay {
    width: 100%;
    min-height: 100vh;
    background-color: #242424;
    opacity: 0.9;
} */