:root {
    /*--content-background-color: #fefae0;*/
    --content-background-color: #ffffff;
    --sidebar-background-color: #606C38;
    --sidebar-hover-bg: #283618;
    --h1-color: #283618;
    --h1-font-size: 4rem;
    --h1-font-weight: 800;
    --h2-color: #283618;
    --h2-font-size: 3rem;
    --h2-font-weight: 800;
    --h3-color: #606C38;
    --h3-font-size: 2rem;
    --h3-font-weight: 600;
    --h4-color: #606C38;
    --h4-font-size: 1.3rem;
    --h4-font-weight: 600;
    --h5-color: #606C38;
    --h5-font-size: 1.1rem;
    --h5-font-weight: 700;
    --link-color: #283618;
    --subtext-color: #BC6C25;
    --text-color: #DDA15E;
    --breadcrumb-background-color: #f4efd1;
}

/* altalanos tartalmi resz */
body, html {
    background: var(--background-color);
    overflow-x: hidden;
}

#wrapper {
    display: flex;
    min-height: 100vh;
}

.content-wrapper {
    margin-left: 80px;
    flex-grow: 1;
    background: var(--content-background-color);
}

.content {
    padding: 0 30px;
}

section {
    background: var(--content-background-color);
    padding: 15px;
}

h1 {
    color: var(--h1-color);
    font-size: var(--h1-font-size);
    font-weight: var(--h1-font-weight);
}

h2 {
    color: var(--h2-color);
    font-size: var(--h2-font-size);
    font-weight: var(--h2-font-weight);
}

h3 {
    color: var(--h3-color);
    font-size: var(--h3-font-size);
    font-weight: var(--h3-font-weight);
}

h4 {
    color: var(--h4-color);
    font-size: var(--h4-font-size);
    font-weight: var(--h4-font-weight);
}

h5 {
    color: var(--h5-color);
    font-size: var(--h5-font-size);
    font-weight: var(--h5-font-weight);
}

li a {
    color: var(--link-color);
}

#footer {
    background-color: var(--breadcrumb-background-color);
    padding: 15px;
}

.footer-links {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links li {
    display: inline;
}

.footer-links a {
    color: var(--link-color);
    text-decoration: none;
}

.copyright {
    font-size: 12px;
}

.sitename {
    font-family: "Lato";
    font-weight: 900;
    font-size: 3rem;
    display: flex;
    align-items: center;
}

.sitename-container {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    line-height: 1;
}

.sitename-description {
    display: block;
    margin-top: 5px;
}

.sitename-first {
    color: #8c5a5e;
}

.sitename-last {
    color: #4b6879;
}

.sitename-description {
    font-size: 22px;
    font-weight: 400;
}

.breadcrumb-wrapper {
    padding: 15px;
    background-color: var(--breadcrumb-background-color);
}

.breadcrumb-wrapper a {
    color: var(--link-color);
    text-decoration: none;
}

.breadcrumb {
    margin-bottom: 0;
}

.datasheet-wrapper .btn {
    color: #ffffff;
    background-color: var(--sidebar-background-color);
    transition: font-size 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    border-radius: 20px;
    line-height: 8px;
    padding: 15px;
    white-space: nowrap;
}

.datasheet-wrapper-buttons {
    padding: 15px 0;
    border-top: 1px solid var(--breadcrumb-background-color);
    border-bottom: 1px solid var(--breadcrumb-background-color);
    margin-bottom: 15px;
    align-items: center;
    display: flex;
}

.datasheet-wrapper-buttons-left {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
}

.datasheet-wrapper-buttons-right {
    flex: 0 0 40%;
    text-align: right;
    display: inline-block;
    font-size: 10px;
}

.datasheet-wrapper-buttons-right i {
    display: block;
    font-size: 20px;
}

.datasheet-wrapper-buttons-right a {
    text-align: center;
    text-decoration: none;
    display: inline-block;
    color: #B2675E;
    padding: 3px;
    border: 1px solid transparent;
}

.datasheet-wrapper-buttons-right a:hover {
    border: 1px solid #B2675E;
    background-color: #ffffff;
}

.datasheet-wrapper .btn:hover {
    color: #ffffff;
    background-color: var(--sidebar-hover-bg);
}

.jstree-contextmenu {
    z-index: 1055 !important;
    /*position: absolute !important;*/
}

#ratingTabNav .nav-link,
#ratings-content a {
    color: #B2675E;
    text-decoration: none;
}

#ajax_loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
}

#ajax_loader i.spinner-border {
    color: var(--breadcrumb-background-color);
}
/* altalanos tartalmi resz vege */

/* bemutato kepek carousel */
.cover-images {
    position: relative;
}

.image-carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.image-carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.image-slide {
    flex: 0 0 33.33%;
    padding: 0 5px;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    color: #fff;
    font-size: 1.5rem;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 1.5rem;
    color: #fff;
}
/* bemutato kepek carousel vege */

/* fooldali ferde hatasu kepek */
.monthly-image-montage {
    background-color: #ffffff;
}

.monthly-image-montage-text {
    padding: 15px;
}

.monthly-image-montage-text h4 {
    margin-bottom: 0;
}

.images-wrapper-link {
    text-decoration: none;
}

.images-wrapper {
    position: relative;
    display: flex;
    height: 150px;
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
}

.image-container {
    position: relative;
    flex: 0 0 calc((100% / 6) + 20px);
    margin-left: -23px;
}

.image-container:nth-child(1) {
    z-index: 6;
    margin-left: 0;
}

.image-container:nth-child(2) {
    z-index: 5;
}

.image-container:nth-child(3) {
    z-index: 4;
}

.image-container:nth-child(4) {
    z-index: 3;
}

.image-container:nth-child(5) {
    z-index: 2;
}

.image-container:nth-child(6) {
    z-index: 1;
}

.image-clippath {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0; 
    left: 0;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.image-container:first-child .image-clippath {
    clip-path: polygon(0% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.image-container:last-child .image-clippath {
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.images-wrapper-link:hover {
    opacity: 0.8;
}
/* fooldali ferde hatasu kepek vege */

/* menu sidebar */
.sidebar {
    width: 80px;
    padding: 5px 0;
    position: fixed;
    top: 0;
    bottom: 0;
    border-right: 2px solid var(--sidebar-hover-bg);
    background: var(--sidebar-background-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar .nav {
    flex-grow: 1;
}

.sidebar .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 5px;
}

.sidebar .logo img {
    max-width: calc(100% - 20px);
    height: auto;
}

.sidebar .nav-item {
    text-align: center;
}

.sidebar .nav-item .nav-link {
    color: #d5dced;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
    font-size: 11px;
    transition: font-size 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.sidebar .nav-item i {
    font-size: 30px;
    display: block;
    color: #d5dced;
    transition: font-size 0.3s ease, color 0.3s ease;
}

.sidebar .nav-item:hover i {
    color: #ffffff;
}

.sidebar .nav-item:hover .nav-link {
    color: #ffffff;
    background-color: var(--sidebar-hover-bg);
}

.toggle-btn {
    text-align: center;
    cursor: pointer;
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
}

.toggle-btn i {
    font-size: 24px;
    color: #343a40;
    transition: transform 0.3s ease;
}

.menu-text {
    display: block;
}

.sidebar .sidebar-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: auto;
    width: 100%;
}

.sidebar .sidebar-buttons:last-child {
    margin-top: 10px;
    margin-bottom: 15px;
}

.sidebar .sidebar-buttons a {
    display: block;
    width: calc(100% - 5px);
    padding: 10px 0;
    font-size: 12px;
    text-align: center;
    border-radius: 20px;
    margin: 0 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 24px;
}

.sidebar .sidebar-buttons a:last-child {
    margin-right: 0;
}

.sidebar a.login-btn {
    border: 2px solid var(--sidebar-hover-bg);
    background-color: transparent;
    color: #d5dced;
}

.sidebar a.login-btn:hover {
    background-color: #ffffff;
    color: #0c1e3c;
}

.sidebar a.register-btn {
    background-color: #6c757d;
    color: #ffffff;
}

.sidebar a.register-btn:hover {
    background-color: #ffffff;
    color: #6c757d;
}

.sidebar.expanded .sidebar-buttons a {
    font-size: 14px;
}

.toggle-btn:hover {
    background-color: #0c1e3c;
    border-radius: 50%;
}

.toggle-btn:hover i {
    color: #ffffff;
}
/* menu sidebar vege */

/* kereses felugro ablak */
.search-box,
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 15, 31, 0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
}

.card .age-verification {
    position: absolute;
}

.search-box form,
.age-verification-inner {
    width: 100%;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: transparent;
    flex-grow: 1;
    max-height: 100%;
    overflow-y: auto;
}

.card .age-verification-inner {
    padding: 15px;
}

.search-box a {
    color: #bf9599;
    text-decoration: none;
}

.search-box a:hover {
    color: #f2f2f2;
    text-decoration: underline;
}

.search-box button:hover {
    background-color: #ffffff;
}

.search-box .input-group {
    background: #ffffff;
    border-radius: 8px;
}

.search-box .dropdown-menu a {
    display: block;
}

.search-box .input-group-btn {
    border: 1px solid #cccccc;
}

.search-genre {
    display: none;
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.btn-genre-dropdown {
    text-align: left;
}

.close-icon {
    font-size: 24px;
    color: #d5dced;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.dropdown-menu a {
    text-decoration: none !important;
    outline: 0;
    padding: 3px 10px;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    color: #fff;
    background-color: #bf9599;
}

.dropdown-menu a:focus,
.dropdown-menu a:hover {
    color: #fff;
    background-color: #402525;
}
/* kereses felugro ablak vege */

/* kepregenyek listaja */
.row.card-deck > div {
    margin: 15px 0;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 0;
    background: transparent;
}

.card-header {
    position: relative;
    padding-top: 150%;
    overflow: hidden;
}

.card-header img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card a {
    color: var(--link-color);
    text-decoration: none;
}

.card-title {
    margin-bottom: 0;
    font-size: 14px;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.card-title-type {
    font-size: 11px;
    color: var(--text-color);
}

.ownlist-wrapper {
    padding: 15px 15px 0 15px;
}

.ownlist-wrapper a {
    font-size: 26px;
}
/* kepregenyek listaja vege */

/* lapozo */
.search-pagination,
.search-alphabet {
    text-align: center;
}

.search-pagination.left {
    text-align: left;
}

.pagination,
.alphabet {
    margin-bottom: 15px;
}

.pagination .page-link,
.alphabet .alphabet-link {
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 36px;
    border-radius: 8px !important;
    color: #666666;
}

.alphabet .alphabet-link {
    width: 40px;
    height: 40px;
    line-height: 30px;
}

.pagination .page-item.active a,
.pagination .page-item.active button,
.alphabet .alphabet-item.active a,
.alphabet .alphabet-item.active button {
    background-color: #8c5a5e;
    color: #ffffff;
}

.pagination .page-item a:hover,
.pagination .page-item button:hover,
.alphabet .alphabet-item a:hover,
.alphabet .alphabet-item button:hover {
    background-color: #402525;
    color: #ffffff !important;
}
/* lapozo vege */

/* adatlap */
.datasheet-wrapper .header,
.datasheet-wrapper h1 > span {
    color: var(--h1-color);
    font-size: var(--h1-font-size);
    font-weight: var(--h1-font-weight);
    display: inline-block;
}

.datasheet-wrapper .header,
.datasheet-wrapper h4 > span {
    color: var(--h4-color);
    font-size: var(--h4-font-size);
    font-weight: var(--h4-font-weight);
}

.datasheet-wrapper h1 {
    margin-bottom: 0;
    line-height: 1.3;
}

.datasheet-wrapper .sub-header,
.datasheet-wrapper .sub-header span {
    color: var(--text-color);
    margin-bottom: 15px;
}

.data-wrapper {
    margin-bottom: 30px;
    color: var(--subtext-color)
}

#eventModal a,
.data-wrapper a {
    color: var(--link-color);
}

.sub-info-wrapper1 {
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 5px;
}

.breadcrumb li::after,
.sub-header span::after,
.sub-info-wrapper1 span::after,
.footer-links li::after,
.pre-header span::after,
.original-story-data span::after,
.story-characters span::after,
.story-genre span::after {
    content: "\25AA";
    margin: 0 5px;
    font-size: 10px;
}

.breadcrumb li:last-child::after,
.sub-header span:last-child::after,
.sub-info-wrapper1 span:last-child::after,
.footer-links li:last-child::after,
.pre-header span:last-child::after,
.original-story-data span:last-child::after,
.story-characters span:last-child::after,
.story-genre span:last-child::after {
    content: "";
    margin: 0;
}

.sub-info-wrapper2 {
    margin-top: 15px;
    font-size: 0.85rem;
}

.sub-info-wrapper2 .name {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.pre-header {
    text-transform: uppercase;
}

.pre-header a {
    text-decoration: none;
    font-weight: bold;
}

.pre-header,
.pre-header a {
    color: var(--text-color);
    font-size: 14px;
}

.story-wrapper {
    margin-bottom: 15px;
}

.story-wrapper h4 {
    font-weight: 800;
    margin-bottom: 0;
    margin-right: 10px;
    margin-top: 30px;
}

.original-story-data {
    font-size: 14px;
}

.story-creators {
    margin-top: 30px;
}

.story-characters,
.story-genre {
    font-size: 14px;
    margin-top: 5px;
}

.story-characters label,
.story-genre label {
    margin-right: 5px;
}

.sub-rating-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.rating-disabled {
    pointer-events: none;
}

.ratingPieChart circle {
    fill: none;
    stroke-width: 2.5;
}

.ratingPieChart .background {
    stroke: #e0e0e0;
}

.ratingPieChart .progress {
    stroke: var(--sidebar-hover-bg);
    stroke-linecap: round;
    stroke-dasharray: 0, 100;
    transition: stroke-dasharray 0.5s ease;
    transform: rotate(-90deg);
    transform-origin: center;
}

.ratingPieChart .rating-count {
    font-weight: bold;
}

.rating-text {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
    font-size: 12px;
}

.rating-main-text {
    font-size: 14px;
}

.rating-input {
    width: 1px;
}

.rating-main-summary {
    margin-left: 15px;
}

.card-title-creator-type span::after {
    content: "\002C";
}

.card-title-creator-type span:last-child::after {
    content: "";
}

.story-chapter {
    position: relative;
    min-height: 30px;
}
  
.story-chapter::before {
    content: "";
    position: absolute;
    top: 15px;
    left: -20px;
    width: 10px;
    height: calc(100% - 30px);
    border-left: 2px solid var(--sidebar-background-color);
    opacity: 0;
}

.story-chapter::after {
    content: "";
    position: absolute;
    top: 15px;
    left: -20px;
    height: 2px;
    width: 10px;
    background-color: var(--sidebar-background-color);
    opacity: 0;
}

.story-chapter.expanded::before,
.story-chapter.expanded::after {
    opacity: 1;
}

.story-chapter .bottom-line {
    position: absolute;
    bottom: 15px;
    left: -20px;
    height: 2px;
    width: 10px;
    background-color: var(--sidebar-background-color);
}

.picture-caption {
    font-size: 12px;
    margin-top: 5px;
}

.creator-description {
    overflow: hidden;
    position: relative;
    display: block;
}

.creator-description.expanded {
    overflow: visible;
}

.cover-images .col-4 {
    padding: 5px;
}
/* adatlap vege */

/* urlap elemek */
.form-control {
    border: 1px solid var(--sidebar-hover-bg);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}
  
.floating-input,
.floating-select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
  
.floating-label {
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 10px;
    transition: 0.2s ease all;
    color: #aaa;
    font-size: 16px;
    z-index: 1;
}

.floating-label span {
    color: red;
}

.form-group.form-inline .floating-label {
    top: 0;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label,
.floating-select:focus ~ .floating-label,
.floating-select:not(:placeholder-shown) ~ .floating-label {
    top: -14px;
    left: 10px;
    font-size: 13px;
    color: #000000;
    padding: 3px;
    background-color: var(--content-background-color);
}

.form-inline.d-flex .floating-label {
    top: 0;
}

.form-group-file .floating-label {
    top: -14px;
    font-size: 13px;
}

.form-group .btn-success {
    background-color: var(--sidebar-background-color);
}

.form-group-flex,
.breadcrumb-wrapper {
    display: flex;
}

.form-submit-left,
.breadcrumb {
    flex: 0 0 50%;
}

.form-submit-links,
.nextprev-links {
    flex: 0 0 50%;
    text-align: right;
}

.form-submit-links,
.form-submit-links a {
    color: var(--link-color);
    font-size: 14px;
}

.form-card-message {
    margin-bottom: 15px;
    background-color: #ffffff;
    border-radius:8px;
}

.form-card-message .card-heading {
    padding: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.form-card-message .card-block {
    padding: 15px;
}

input:required:invalid,
input:focus:invalid {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAeVJREFUeNqkU01oE1EQ/mazSTdRmqSxLVSJVKU9RYoHD8WfHr16kh5EFA8eSy6hXrwUPBSKZ6E9V1CU4tGf0DZWDEQrGkhprRDbCvlpavan3ezu+LLSUnADLZnHwHvzmJlvvpkhZkY7IqFNaTuAfPhhP/8Uo87SGSaDsP27hgYM/lUpy6lHdqsAtM+BPfvqKp3ufYKwcgmWCug6oKmrrG3PoaqngWjdd/922hOBs5C/jJA6x7AiUt8VYVUAVQXXShfIqCYRMZO8/N1N+B8H1sOUwivpSUSVCJ2MAjtVwBAIdv+AQkHQqbOgc+fBvorjyQENDcch16/BtkQdAlC4E6jrYHGgGU18Io3gmhzJuwub6/fQJYNi/YBpCifhbDaAPXFvCBVxXbvfbNGFeN8DkjogWAd8DljV3KRutcEAeHMN/HXZ4p9bhncJHCyhNx52R0Kv/XNuQvYBnM+CP7xddXL5KaJw0TMAF8qjnMvegeK/SLHubhpKDKIrJDlvXoMX3y9xcSMZyBQ+tpyk5hzsa2Ns7LGdfWdbL6fZvHn92d7dgROH/730YBLtiZmEdGPkFnhX4kxmjVe2xgPfCtrRd6GHRtEh9zsL8xVe+pwSzj+OtwvletZZ/wLeKD71L+ZeHHWZ/gowABkp7AwwnEjFAAAAAElFTkSuQmCC);
    background-position: right center;
    background-repeat: no-repeat;
}

textarea:required:invalid {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAeVJREFUeNqkU01oE1EQ/mazSTdRmqSxLVSJVKU9RYoHD8WfHr16kh5EFA8eSy6hXrwUPBSKZ6E9V1CU4tGf0DZWDEQrGkhprRDbCvlpavan3ezu+LLSUnADLZnHwHvzmJlvvpkhZkY7IqFNaTuAfPhhP/8Uo87SGSaDsP27hgYM/lUpy6lHdqsAtM+BPfvqKp3ufYKwcgmWCug6oKmrrG3PoaqngWjdd/922hOBs5C/jJA6x7AiUt8VYVUAVQXXShfIqCYRMZO8/N1N+B8H1sOUwivpSUSVCJ2MAjtVwBAIdv+AQkHQqbOgc+fBvorjyQENDcch16/BtkQdAlC4E6jrYHGgGU18Io3gmhzJuwub6/fQJYNi/YBpCifhbDaAPXFvCBVxXbvfbNGFeN8DkjogWAd8DljV3KRutcEAeHMN/HXZ4p9bhncJHCyhNx52R0Kv/XNuQvYBnM+CP7xddXL5KaJw0TMAF8qjnMvegeK/SLHubhpKDKIrJDlvXoMX3y9xcSMZyBQ+tpyk5hzsa2Ns7LGdfWdbL6fZvHn92d7dgROH/730YBLtiZmEdGPkFnhX4kxmjVe2xgPfCtrRd6GHRtEh9zsL8xVe+pwSzj+OtwvletZZ/wLeKD71L+ZeHHWZ/gowABkp7AwwnEjFAAAAAElFTkSuQmCC);
    background-position: right top;
    background-repeat: no-repeat;
}

input:required:valid {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAepJREFUeNrEk79PFEEUx9/uDDd7v/AAQQnEQokmJCRGwc7/QeM/YGVxsZJQYI/EhCChICYmUJigNBSGzobQaI5SaYRw6imne0d2D/bYmZ3dGd+YQKEHYiyc5GUyb3Y+77vfeWNpreFfhvXfAWAAJtbKi7dff1rWK9vPHx3mThP2Iaipk5EzTg8Qmru38H7izmkFHAF4WH1R52654PR0Oamzj2dKxYt/Bbg1OPZuY3d9aU82VGem/5LtnJscLxWzfzRxaWNqWJP0XUadIbSzu5DuvUJpzq7sfYBKsP1GJeLB+PWpt8cCXm4+2+zLXx4guKiLXWA2Nc5ChOuacMEPv20FkT+dIawyenVi5VcAbcigWzXLeNiDRCdwId0LFm5IUMBIBgrp8wOEsFlfeCGm23/zoBZWn9a4C314A1nCoM1OAVccuGyCkPs/P+pIdVIOkG9pIh6YlyqCrwhRKD3GygK9PUBImIQQxRi4b2O+JcCLg8+e8NZiLVEygwCrWpYF0jQJziYU/ho2TUuCPTn8hHcQNuZy1/94sAMOzQHDeqaij7Cd8Dt8CatGhX3iWxgtFW/m29pnUjR7TSQcRCIAVW1FSr6KAVYdi+5Pj8yunviYHq7f72po3Y9dbi7CxzDO1+duzCXH9cEPAQYAhJELY/AqBtwAAAAASUVORK5CYII=);
    background-position: right center;
    background-repeat: no-repeat;
}

textarea:required:valid {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAepJREFUeNrEk79PFEEUx9/uDDd7v/AAQQnEQokmJCRGwc7/QeM/YGVxsZJQYI/EhCChICYmUJigNBSGzobQaI5SaYRw6imne0d2D/bYmZ3dGd+YQKEHYiyc5GUyb3Y+77vfeWNpreFfhvXfAWAAJtbKi7dff1rWK9vPHx3mThP2Iaipk5EzTg8Qmru38H7izmkFHAF4WH1R52654PR0Oamzj2dKxYt/Bbg1OPZuY3d9aU82VGem/5LtnJscLxWzfzRxaWNqWJP0XUadIbSzu5DuvUJpzq7sfYBKsP1GJeLB+PWpt8cCXm4+2+zLXx4guKiLXWA2Nc5ChOuacMEPv20FkT+dIawyenVi5VcAbcigWzXLeNiDRCdwId0LFm5IUMBIBgrp8wOEsFlfeCGm23/zoBZWn9a4C314A1nCoM1OAVccuGyCkPs/P+pIdVIOkG9pIh6YlyqCrwhRKD3GygK9PUBImIQQxRi4b2O+JcCLg8+e8NZiLVEygwCrWpYF0jQJziYU/ho2TUuCPTn8hHcQNuZy1/94sAMOzQHDeqaij7Cd8Dt8CatGhX3iWxgtFW/m29pnUjR7TSQcRCIAVW1FSr6KAVYdi+5Pj8yunviYHq7f72po3Y9dbi7CxzDO1+duzCXH9cEPAQYAhJELY/AqBtwAAAAASUVORK5CYII=);
    background-position: right top;
    background-repeat: no-repeat;
}

.form-inline .form-control {
    display: inline-block;
    width: auto;
}

.select2-selection__rendered {
    background-color: #ffffff;
    color: #000000 !important;
    height: 44px !important;
}

#comicTabsContent .select2-container {
    width: 100% !important;
}

.form-advanced .btn {
    padding: 3px;
}

.form-advanced .row {
    margin-bottom: 15px;
}

.form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
}

.form-inline .form-group .select2 {
    margin-right: 15px;
    margin-top: -2px;
}

.form-inline.d-flex .form-group.d-flex:last-child {
    flex-grow: 1;
    width: 100%;
}

.form-inline.d-flex .form-group.d-flex:last-child input {
    width: 100%;
}

.form-group.d-flex label {
    line-height: 46px;
}

.form-control.tagify {
    height: auto !important;
    min-height: 46px;
}
/* urlap elemek vege */

/* esemenynaptar */
.calendar-default {
    color: var(--link-color);
}

.fc-toolbar-chunk button,
.fc-toolbar-chunk button:disabled {
    background-color: var(--sidebar-background-color);
    color: #ffffff;;
}

.fc-toolbar-chunk button:hover,
.fc-toolbar-chunk button:disabled:hover {
    background-color: var(--sidebar-hover-bg);
    color: #ffffff;;
}

.mainpage-calendar {
    border-color: var(--bs-border-color-translucent);
    border-radius: var(--bs-border-radius);
}

#mainpage-calendar .fc-header-toolbar {
    display: none;
}

#mainpage-calendar .fc-listYear-view {
    border: none;
}

.fc-daygrid-event-dot,
.fc-list-event-dot {
    border-color: var(--sidebar-background-color) !important;
}
/* esemenynaptar vege */

/* eletkor ellenorzes */
.age-verification {
    text-align: center;
    color: #fff;
}

.age-verification .btn {
    line-height: 26px;
    margin-top: 5px;
    padding: 6px 12px;
    border-radius: 6px;
}

.age-verification .btn-success {
    color: #ffffff;
    background-color: rgb(25, 135, 84);
    border-color: rgb(25, 135, 84);
}

.age-verification .btn-warning {
    color: #000000;
    background-color: rgb(255, 193, 7);
    border-color: rgb(255, 193, 7);
}
/* eletkor ellenorzes vege */

/* doorbanner */
body.no-scroll {
    overflow: hidden;
}

#doorbanner {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(8, 15, 31, 0.95);
    padding: 60px; /* Padding a banner felett */
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; 
    align-items: center;
}

#doorbanner .doorbanner-inner {
    height: 100%;
}

.banner-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#close-banner {
    display: block;
    text-align: right;
    color: white;
    cursor: pointer;
    text-decoration: none;
}
/* doorbanner vege */

/* mainbanner */
#mainbanner {
    width: 100%;
    border: 1px solid var(--sidebar-background-color);
    margin-top: 50px;
    padding: 15px;
    position: relative;
    max-height: 150px;
}

#mainbanner a {
    max-height: 120px;
}

#mainbanner .banner-image {
    max-height: 120px;
}

#mainbanner span {
    position: absolute;
    top: -12px;
    left: 15px;
    display: inline-block;
    padding: 3px;
    background-color: var(--content-background-color);
    font-size: 10px;
}
/* mainbanner vege */

/* csillagos ertekeles */
.rating-container {
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
    line-height: 1;
    height: auto;
}
/* csillagos ertekeles vege */

/* DataTables */
.dt-container > div {
    margin-bottom: 15px;
}

.dt-container a {
    color: var(--link-color);
}

.btn-admin-add {
    line-height: 1.5;
}

.dt-function-select {
    width: auto;
    min-width: 150px;
}
/* DataTables vege */

#navbarDropdown .btn {
    color: #B2675E;
    font-family: "Lato";
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

#navbarDropdown .btn:hover {
    border-bottom: 2px solid #b2675e;
}

#read-more {
    font-size: 14px;
}

.add-to-own-list.bi-clipboard-minus {
    background-color: green;
    color: #fff;
}

.add-to-wish-list.bi-bag-dash {
    background-color: blue;
    color: #fff;
}

.add-to-read-list.bi-bookmark-dash {
    background-color: red;
    color: #fff;
}

.bi-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    font-size: 22px !important;
    color: #000;
}

/* Táblázatos elrendezés */
.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 15px;
    margin-left: 0;
}

.list-view .col-6 {
    display: table-row;
    width: 100%;
}

.list-view .card {
    width: 100% !important;
    margin: 0;
    border: none;
}

.list-view .card-header {
    display: none !important;
}

.list-view .card-body {
    display: table-row !important;
}

.list-view .card-body > div {
    display: table-cell !important;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
    width: 1%;
    word-break: break-word;
}

.list-view .card-title-type {
    font-size: 14px;
    color: var(--bs-card-title-color);
}

.list-view .ownlist-wrapper {
    text-align: right !important;
}

.view-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    height: 46px;
}

.view-switcher .view-link {
    margin-right: 10px;
}

.view-switcher .view-link:last-child {
    margin-right: 0;
}

.view-switcher .view-link {
    color: #aaa;
    font-size: 1.5rem;
    padding: 5px;
    text-decoration: none;
    border: 1px solid #dee5ed;
    border-radius: 4px;
}

.view-switcher .view-link:hover {
    color: #555;
    border-color: #ddd;
}

.view-switcher .view-link.active {
    color: #333;
    background-color: #e6e6e6;
    border-color: #ccc;
}

.readonly-checkbox {
    pointer-events: none;
    opacity: 1;
    background-color: var(--bs-secondary-bg) !important;
}

.profile-link {
    color: var(--text-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    /* menu sidebar */
    body {
        padding-bottom: 60px;
    }

    .sidebar {
        width: 100%;
        height: 60px;
        position: fixed;
        bottom: 0;
        display: flex;
        justify-content: space-between;
        padding: 0;
        z-index: 1000;
        top: auto;
        border-top: 2px solid var(--sidebar-hover-bg);
        border-right: none;
    }

    .sidebar .nav {
        display: flex;
        flex-direction: row !important;
        flex: 1;
        justify-content: space-around;
    }

    .sidebar .nav-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sidebar .nav-item .nav-link {
        padding: 10px;
        color: #d5dced;
        text-align: center;
    }

    .sidebar .nav-item i {
        font-size: 24px;
    }

    .sidebar .nav-item .menu-text {
        display: none;
    }

    .sidebar .sidebar-buttons {
        position: static;
        width: auto;
        padding: 0;
        display: flex;
        justify-content: space-around;
    }

    .sidebar .logo,
    .toggle-btn {
        display: none;
    }
    /* menu sidebar vege */

    /* tartalmi resz */
    .content {
        padding: 0;
    }

    .content-wrapper {
        margin-left: 0;
        width: 100%;
        margin-bottom: 60px;
        padding-left: 0;
        padding-right: 0;
    }
    /* tartalmi resz vege */

    /* urlap elemek */
    .form-group-flex,
    .breadcrumb-wrapper {
        flex-direction: column;
    }

    .form-submit-left,
    .breadcrumb {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    .form-submit-links {
        flex: 0 0 100%;
        text-align: left;
    }
    /* urlap elemek vege */

    /* doorbanner */
    #doorbanner {
        padding: 15px;
    }

    #close-banner {
        top: 3px;
    }
    /* doorbanner vege */

    .sitename img {
        width: 80px;
        height: auto;
    }

    .sitename-first,
    .sitename-last {
        font-size: 2rem;
    }

    .sitename-description {
        font-size: 16px;
    }

    .monthly-image-montage-text h4 {
        font-size: 16px;
    }

    .breadcrumb {
        flex: 1 1 100%;
        margin-bottom: 5px;
        justify-content: center;
    }

    .nextprev-links {
        flex: 1 1 100%;
        justify-content: center;
        text-align: center;
    }

    .search-pagination.left {
        text-align: center;
    }

    h1,
    h1 span {
        font-size: 1.8rem !important;
    }

    .sitename-description {
        font-size: 1.2rem !important;
    }

    .sub-info-wrapper2,
    .search-row div {
        margin-bottom: 15px;
    }

    .datasheet-wrapper-buttons-left {
        flex: 0 0 100%;
        display: flex;
    }
    
    .datasheet-wrapper-buttons-right {
        flex: 0 0 100%;
    }

    .datasheet-wrapper-buttons-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .rating-wrapper {
        margin: 0 auto 15px auto;
    }

    .rating-main-summary {
        margin-left: 0;
    }

    .jump-to-comics {
        display: inline-block;
        margin: 0 auto 15px auto;
    }

    .rating-container {
        margin: 0 auto;
    }

    .sidebar .sidebar-buttons {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .pagination,
    .alphabet {
        margin-bottom: 0;
    }

    .pagination .page-link,
    .alphabet .alphabet-link {
        width: 26px;
        height: 26px;
        line-height: 13px;
        font-size: 12px;
        padding: 6px 0 0 0;
        text-align: center;
    }
}
