*, ::before, ::after {
    box-sizing: border-box;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    line-height: inherit;
    /*scrollbar-width: none; /* Skryje scrollbary v prohlížečích podporujících tuto vlastnost */
    overflow-y: scroll; /* Zajistí, že stránka bude stále skrolovatelná */
    display: -ms-flexbox !important;
    display: flex !important;
    min-height: 100vh;
    background-color: #ffffff;
    color: #0d0c0f;
}

body:is(.dark *) {
    background-color: #0d0c0f;
    color: #f9f9f9;
}

/* Skryje posuvníky, ale zachová scrollování */
::-webkit-scrollbar {
    /*display: none; /* Skryje scrollbary v prohlížečích založených na WebKitu */
}

.after::after, .before::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #d2d2d2;
    margin: 10px auto;
}

.after-h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #d2d2d2;
    margin: 10px 0 0 -1.25rem;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    cursor: default;
}

a {
    color: inherit;
    text-decoration: inherit;
}

b, strong {
    font-weight: bolder;
} 

p {
    margin-top: 0;
    margin-bottom: 0;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
}

h1, .h1 {
    font-size: 2rem;
}

h2, .h2 {
    font-size: 1.5rem;
}

h3, .h3 {
    font-size: 1.17rem;
}

h4, .h4 {
    font-size: 1rem;
}

h5, .h5 {
    font-size: .83rem;
}

h6, .h6 {
    font-size: .67rem;
}

small {
    font-size: 80%;
    font-weight: 400;
}

main {
    flex-grow: 1;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

main a {
    color: #607d8b; 
    text-decoration: none; 
    transition: color 0.3s ease;
    font-weight: 600; /* bold */
    width: fit-content;
}

main a:is(.dark *) {
    color: #96c0d4;
}

main a:hover {
    text-decoration: underline;
}

.cursor-pointer {
    cursor: pointer;
}

img, video {
    display: block;
    max-width: 100%;
    height: auto;
}

img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
}

section {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    color: #0d0c0f;
    max-width: 1440px;
}

section:is(.dark *) {
    color: #f9f9f9;
}

aside {
    min-width: 200px;
    max-height: 100%;
    background: linear-gradient(90deg, #99191900, #f9f9f9);
}

aside:is(.dark *) {
    background: linear-gradient(90deg, #99191900, #1a161f);
}

.container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-content: flex-start;
    margin: 1rem 0;
    width: 100%;
    padding: 1rem;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-right: 0;
    margin-left: 0;
}

.info-bar {
    display: -ms-flexbox !important;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    width: 100% !important;
    padding: .5rem; /* 8px */
    margin-bottom: .75rem; /* 12px */
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: .5rem !important;
}

.info-bar:is(.dark *) {
    background: #252229;
}

.info-bar h2 {
    margin-bottom: 0;
}

.menu-section {
    display: flex;
    /* justify-content: center; */
}

.menu-section .searching {
    display: none;
}

.menu-section .searching svg {
    width: 1.5rem;
    height: 1.5rem;
}

.menu-list {
    display: flex;
}

.menu-list-body {
    width: 100%;
    margin-left: 2rem; /* 32px */
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu h3 {
    margin-left: 2rem; /* 32px */
    margin-bottom: .5rem; /* 8px */
    font-weight: 700;
}

.sidebar-list {
    display: grid;
    gap: .5rem;
    list-style-type: none;
}

.right-side, .left-side, .side {
    position: relative;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
}

ul {
    list-style-type: none;
    padding-left: 0;
}





/******************************/
/*          CAROUSEL          */
/******************************/
.carousel {
    position: relative;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel .carousel-inner .carousel-item {
    height: 200px;  
    overflow: hidden;
}

.carousel .carousel-inner .carousel-item img {
    min-height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-slide {
    position: relative;
    text-align: center;
}

.carousel-slide img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}

.slick-slide img {
    display: block;
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before, .slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide img {
    display: block;
}




/******************************/
/*             TAB            */
/******************************/
.tab-container {
    position: relative;
    border-radius: .5rem;
    margin-top: 20px;
}

.tab-list {
    display: none;
    padding: 20px;
    border: 1px solid #dee2e6;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    background: #f9f9f9;
    border-radius: 0 .5rem .5rem .5rem;
}

.tab-list:is(.dark *) {
    background: #252229;
}

.tab-list.active {
    display: block;
}

.tab-list form {
    width: 100%;
    margin: 1rem 0;
}

.tab-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    gap: 5px;
    overflow-x: scroll;
    overflow-y: hidden; /* Skrývá vertikální posuvník, pokud existuje */
    -ms-overflow-style: none;  /* Pro Internet Explorer a Edge */
    scrollbar-width: none;  /* Pro Firefox */
}

.tab-links::-webkit-scrollbar {
    display: none;  /* Pro Chrome, Safari a Opera */
}

.tab-links a {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: .5rem .5rem 0 0;
    background-color: #f0f0f0;
    color: #000;
    display: inline-block;
}

.tab-links a.active {
    color: #fff;
    border: 1px solid #dee2e6;
    border-bottom: none;
}

.tab-links a:is(.dark *) {
    background: rgb(37 34 41);
}

.karta {
    border: 1px solid #dee2e6;
    border-radius: .5rem .5rem 0 0;
}




/******************************/
/*            TABLE           */
/******************************/
/* table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}

.table thead th {
    color: #212529; 
}

.table tbody td {
    color: #495057; 
    padding: 5px;
}

.table tbody tr:hover {
    background-color: #e2e6ea;
}

.tab-pane .table tbody td {
    text-align: center;
}

.tab-pane .table tbody td:nth-child(2) {
    text-align: left;
}

.tab-pane .table tbody td img {
    margin: 0 auto;
} */


/******************************/
/*            IMAGE           */
/******************************/
.img-fluid {
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.2);
    width: 100%;
    border-radius: .5rem !important;
}

.img-size {
    height: 195px;
}





/******************************/
/*            FORM            */
/******************************/
.form-group {
    margin-bottom: 1rem;
}

.form-group textarea {
    border: 1px solid #ccc;
    width: 100%;
    height: 100px;
}

.form-control {
    display: block;
    width: 100%;
    height: 45px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .5rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.label {
    color: white;
    border: 1px solid #9E9E9E;
    padding: 0 .25rem;
}

label {
    display: inline-block;
    margin-top: .5rem;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

button, select {
    text-transform: none;
}

input {
    padding: 5px 10px;
    border: 1px solid #ccc;
    color: black;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af;
}

input[type=checkbox], 
input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

button, input {
    overflow: visible;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}

textarea {
    resize: vertical;
    border: 1px solid #ccc;
    padding: 10px;
    color: black;
    width: 100%;
}

textarea:is(.dark *) {
    background: #e1e1e1;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}


/******************************/
/*            BTNS            */
/******************************/
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .5rem;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    color: white;
}

.add {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding: .5em 1em;
    border: transparent;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    background: dodgerblue;
    color: white;
    border-radius: .5rem;
    margin-top: 10px;
}
   
.add:hover,
.btn-search:hover {
    background: linear-gradient(90deg, rgba(30,144,255,1) 0%, rgba(0,212,255,1) 100%);
    text-decoration: none;
    color: #ffffff !important;
}
   
.add:active {
    transform: translate(0em, 0.2em);
}

.add-book {
    padding: .5em 1em;
    background: #61872B;
    color: white;
    margin-top: 10px;
    height: fit-content;
}
   
.add-book:hover {
    background: linear-gradient(90deg, #61872B 0%, #80AE2E 100%);
    text-decoration: none;
}
   
.add-movie {
    padding: .5em 1em;
    background: #A52B21;
    color: white;
    margin-top: 10px;
    height: fit-content;
}
   
.add-movie:hover {
    background: linear-gradient(90deg, #A52B21 0%, #E31E24 100%);
    text-decoration: none;
}

.add-game {
    padding: .5em 1em;
    background: #0A76A9;
    color: white;
    margin-top: 10px;
    height: fit-content;
}
   
.add-game:hover {
    background: linear-gradient(90deg, #0A76A9 0%, #14ACF5 100%);
    text-decoration: none;
}

.add-book:active,
.add-movie:active,
.add-game:active {
    transform: translate(0em, 0.2em);
}

.btn-search {
    padding: .5em 1em;
    background: dodgerblue;
    color: white;
    border-radius: 0 .5rem .5rem 0;
}

.search-field {
    width: 100%;
    position: relative;
    border-radius: .5rem 0 0 .5rem;
    border: 1px solid #ced4da;
}

button, [role="button"] {
    cursor: pointer;
}

.input-group-append .btn, .input-group-prepend .btn {
    position: relative;
    z-index: 2;
}

.input-group>.input-group-append>.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-primary,
.btn-muted {
    padding: 7px 18px;
    border-radius: .5rem;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-muted {
    background: transparent;
    color: #ccc;
}

.btn-muted:hover {
    color: #fff;
}


/******************************/
/*           SOCIALS          */
/******************************/
/* TWITTER */
.btn-twitter {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #ffffff !important;
}

/* E-MAIL */
.btn-email {
    background-color: #343a40;
    border-color: #343a40;
    color: #ffffff !important;
}

/* LINKEDIN */
.btn-linkedin {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #ffffff !important;
}

/* FACEBOOK */
.btn-facebook {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff !important;
}

/* WHATS APP */
.btn-whatsapp {
    background-color: #28a745;
    border-color: #28a745;
    color: #ffffff !important;
}

.btn,
.btn-twitter,
.btn-email,
.btn-linkedin,
.btn-facebook,
.btn-whatsapp {
    color: #fff;
    margin-bottom: .5rem; /* 8px */
    margin-right: .25rem; /* 4px */
}




/******************************/
/*            CARD            */
/******************************/
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: .5rem;
    border: 1px solid #ccc;
    margin-bottom: 1rem; /* 16px */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.card-body {
    display: flex;
    flex-wrap: wrap;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
    width: 100%;
    background-color: #f9f9f9;
    border-radius: .5rem !important;
}

.card-body:is(.dark *) {
    background: #252229;
}

.card-body h4 {
    margin-bottom: .75rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body h3 {
    font-weight: 700;
    /* width: 100%; */ /* články na indexu - ne */
}

.card-text {
    -webkit-line-clamp: 6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
}

.card-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: .75rem;
    width: 100%;
    font-weight: 700;
}

.card-title a {
    /* width: 100%; */ /* články na indexu - ne */
}

.seasons-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
}


/******************************/
/*          PASSWORD          */
/******************************/
.password-field {
    --c-text: #5A5A64;
    --c-text-light: #A1A1B6;
    --c-text-selection: #09ABC3;
    --c-background: #fff;
    --c-background-selection: rgba(9, 171, 195, 0.15);
    --c-border: #E2E2ED;
    --c-border-hover: #D0D0DB;
    --c-border-active: #09ABC3;
    --c-shadow: rgba(41, 41, 86, 0.06);
    --c-shadow-active: rgba(9, 171, 195, 0.25);
    --eye-background: 0;
    --eye-offset: 3px;
    --eye-wrapper-y: 0;
    --eye-y: 0;
    --eye-x: 0;
    --eye-s: 1;
    width: 100%;
    position: relative;
    border-radius: .5rem;
    border: 1px solid #ced4da;
    background: var(--c-background);
    box-shadow: inset 0 0 0 1px var(--border, var(--c-border)), 0px 1px 3px var(--shadow, var(--c-shadow));
    transition: box-shadow .25s;
}

.password-field:hover {
    --border: var(--c-border-hover);
    --eye-duration: .05s;
}

.password-field:focus-within {
    --border: var(--c-border-active);
    --shadow: var(--c-shadow-active);
}

.password-field input,
.password-field button {
    -webkit-appearance: none;
    outline: none;
    background: none;
    border: none;
    margin: 0;
}

.password-field input {
    display: block;
    font-family: inherit;
    font-size: 16px;
    line-height: 21px;
    height: 45px;
    color: var(--c-text);
    padding: 12px 41px 12px 16px;
    opacity: var(--o, var(--default-o, 1));
    pointer-events: var(--pe, var(--default-pe, auto));
    border-radius: .5rem;
}

.password-field input::placeholder {
    color: var(--c-text-light);
    transition: color .25s;
}

.password-field input::selection {
    color: var(--c-text-selection);
    background: var(--c-background-selection);
}

.password-field input:focus::placeholder,
.password-field input:hover::placeholder {
    color: var(--c-text);
}

.password-field input:not(.clear) {
    width: 100%;
}

.password-field input.clear {
    --y: var(--clear-y, 12px);
    --o: var(--clear-o, 0);
    --pe: var(--clear-pe, none);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

.password-field button {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    padding: 11px;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    transform: scale(var(--s, 1));
    color: var(--c-text-light);
    transition: color .25s, transform .15s;
}

.password-field button:hover {
    color: var(--c-text);
}

.password-field button:active {
    --s: .95;
}

.password-field button svg {
    display: block;
    width: 23px;
    height: 23px;
    pointer-events: none;
}

.password-field button svg .top,
.password-field button svg .bottom,
.password-field button svg .lashes {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5px;
    stroke-linecap: round;
}

.password-field button svg .lashes {
    stroke-dasharray: 3px;
    stroke-dashoffset: var(--eye-offset);
}

.password-field button svg .top {
    fill: var(--c-background);
    fill-opacity: var(--eye-background);
}

.password-field button svg .eye {
    fill: currentColor;
    transform-origin: 10.5px 13.5px;
    transform: translate(var(--eye-x), var(--eye-y)) scale(var(--eye-s)) translateZ(0);
    transition: transform var(--eye-duration, .3s);
}

.password-field.show {
    --default-y: -12px;
    --default-o: 0;
    --default-pe: none;
    --clear-y: 0;
    --clear-o: 1;
    --clear-pe: auto;
}


/******************************/
/*          FA-ICON           */
/******************************/
.fa-circle-question {
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.fa-regular.fa-envelope,
.fa-regular.fa-bell {
    font-size: 25px;
    margin-right: 20px;
    color: #ffffff;
}

.fa-trash-can {
    margin-right: 10px;
}


/******************************/
/*         COLOR TEXT         */
/******************************/
/* MOVIES */
.movies {
    color: #A52B21;
}

.movies:is(.dark *) {
    color: #E31E24; 
}

/* BOOKS */
.books {
    color: #61872B;
}

.books:is(.dark *) {
    color: #80AE2E;
}

/* GAMES */
.games {
    color: #0A76A9;
}

.games:is(.dark *) {
    color: #00A0E3;
}

/* BADGES */
.badges,
.badges:is(.dark *) {
    color: #fec303;
}

/* STATS */
.stats:is(.dark *) {
    color: #607D8B;
}

/* SHOP */
.shop:is(.dark *) {
    color: #ca7620;
}

/* COMMUNITY */
.community:is(.dark *) {
    color: #8e8e8e;
}



/******************************/
/*           AVATAR           */
/******************************/
.avatar {
    margin: auto;
}

.avatar-container {
    display: inline-block;
    position: relative;
    margin: 10px; 
}

.avatar-container input[type="radio"] {
    display: none;
}

.avatar-container.selected img {
    box-shadow: 0 0 10px 5px #e91e63;
}


/******************************/
/*           PAYMENT          */
/******************************/
.payment {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem; /* 16px */
}


/******************************/
/*             BOX            */
/******************************/
.box-info {
    display: flex !important;
    flex-wrap: wrap;
    margin-bottom: .75rem; /* 12px */
    margin-top: 1rem;
}

.box-img {
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
}

.box-img img {
    object-fit: cover; 
    max-width: 180px; 
}

.box-info-rating {
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-content: flex-start;
}

.box-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.box-detail {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    width: 100%;
}


/******************************/
/*           NOVINKY          */
/******************************/
.add-content {
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.news-item {
    padding: 1rem 1.25rem;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease;
}

.news-item:is(.dark *) {
    background: #0d0c0f;
}

.news-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.news-content {
    font-size: .95rem;
    line-height: 1.6;
    opacity: .95;
}

.news-toggle {
    display: inline-block;
    margin-top: .25rem;
    font-size: .85rem;
    cursor: pointer;
    color: #6c757d;
}

.news-toggle:hover {
    color: #000;
}

.news-item:is(.dark *) .news-toggle:hover {
    color: #fff;
}

.news-meta {
    margin-top: .75rem;
    font-size: .75rem;
    opacity: .6;
    text-align: right;
}

.add-content details {
    background: rgba(0,0,0,.03);
    border-radius: .5rem;
    padding: .75rem 1rem;
}

.add-content details:is(.dark *) {
    background: rgba(255,255,255,.04);
}


/******************************/
/*         PAGINÁTOR          */
/******************************/
.pagination {
    margin-top: 2rem; /* 32px */
    width: 100%;
}

.first-page {
    margin-right: 1rem; /* 16px */
}

.current-page {
    margin-left: 1rem; /* 16px */
    margin-right: 1rem; /* 16px */
}

.last-page {
    margin-left: 1rem; /* 16px */
}

.step-links {
    display: flex;
    justify-content: center;
}


/******************************/
/*         USER ICON          */
/******************************/
.user {
    display: flex;
    justify-content: space-between;
}

.user img {
    border-radius: 50%;
    width: 30px;
}

.user a {
    margin-left: .75rem; /* 12px */
    font-size: 80%;
}

.user p {
    margin-bottom: 0;
}

.komentar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.komentar li {
    border: 1px solid lightgrey;
    border-radius: .5rem;
    padding: 15px;
}

.komentar .user {
    width: 100%;
    justify-content: space-between;
    padding: 0 10px;
}

.komentar li .after {
    padding: 0 10px;
    margin-bottom: 0;
    width: 100%;
}

.my-komentar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.komentar .card-body {
    background-color: #ffffff;
}

.komentar .card-body:is(.dark *) {
    background-color: #0d0c0f;
}

.komentar .user a {
    font-size: 100%;
}

/******************************/
/*           FOOTER           */
/******************************/
footer {
    padding: 1rem;
    flex-shrink: 0;
    margin-top: auto; 
    border-top: 1px solid #dee2e6 !important;
    color: #ffffff;
}

footer a {
    color: #ccc;
    text-decoration: underline;
    text-underline-offset: 4px;
}

footer a:hover {
    color: #fff;
}

.footer-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-social-icons {
    margin-top: .75rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.footer-social-icons a {
    text-decoration: none;
}

.column {
    align-self: flex-start;
    width: 20rem;
    margin-top: 2rem;
}

.column h5 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;

}

.column li a {
    text-decoration-line: underline;
}


/******************************/
/*            MODE            */
/******************************/
.bg-light {
    background: linear-gradient(90deg, #99191900, #f9f9f9);
}

.bg-dark {
    background: linear-gradient(90deg, #99191900, #1a161f);
}

.mode {
    display: flex;
    align-items: flex-end;
    margin-bottom: .5rem;
    margin-right: 1rem;
    gap: 1rem;
}

.sun, .moon {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}

.sun {
    display: none;
}

.moon {
    display: block;
}

.sun:is(.dark *) {
    display: block;
}

.moon:is(.dark *) {
    display: none;
}


/******************************/
/*           RATING           */
/******************************/
.hodnoceni {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    width: 100%;
}

.hodnoceni ul li:last-child::after {
    display: none;
}

.hvezdicky {
    text-align: center;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 10px;
}

.rating::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 75px;
    height: 75px;
    background: #444444;
    border-radius: 50%;
    z-index: 2;
    margin: 4px;
}

.rating::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 85px;
    height: 85px;
    background: conic-gradient(
        var(--gradient-color, #0a0) 0%,
        var(--gradient-color, #0a0) var(--gradient-value, 50%),
        #777777 var(--gradient-value, 50%)
    );
    border-radius: 50%;
    z-index: 1;
    margin: 4px;
}

.rating-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}

.rating-inner span {
    font-size: 10px;
    margin-left: 2px;
    color: #ffd700;
    margin-top: -10px;
}

.rating:is(.dark *) {
    box-shadow: none;
}

.rating-users {
    text-align: center;
}

.rating-users li form {
    display: flex;
    justify-content: center;
}

.rating-users li form button {
    font-size: 13px;
}



/******************************/
/*       FAVORITE IKONY       */
/******************************/
.favorite-menu {
    display: grid;
    width: 100%;
    background-color: #fff;
    grid-template-columns: repeat(4, minmax(0, auto));
    position: relative;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.075);
    color: black;
    border: 1px solid #dee2e6 !important;
    border-radius: .5rem !important;
    margin-top: 1rem;
}

.favorite-menu:is(.dark *) {
    background: #252229;
}

.favorite-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 40px;
    border-radius: 99em;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform-origin: center left;
    transition: width 0.2s ease-in;
    text-decoration: none;
    color: inherit;
}

.favorite-link:before {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    border-radius: .5rem !important;
    width: 100%;
    height: 100%;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.2s ease-in;
    transform-origin: center right;
    /* background-color: #7c7b7b; */
    margin-left: 1px;
}

.favorite-link:hover, .favorite-link:focus {
    outline: 0;
    width: 130px;
}

.favorite-link:hover:before,
.favorite-link:hover .favorite-link-title, .favorite-link:focus:before,
.favorite-link:focus .favorite-link-title {
    transform: translateX(0);
    opacity: 1;
}

.favorite-link-icon {
    display: block;
    flex-shrink: 0;
    left: 18px;
    position: absolute;
}

.favorite-link-icon i {
    font-size: 20px;
    color: #000000;
}

.favorite-link-icon i:is(.dark *) {
    color: #ffffff;
}

.favorite-link-title {
    transform: translateX(100%);
    transition: transform 0.2s ease-in;
    transform-origin: center right;
    display: block;
    text-align: center;
    text-indent: 28px;
    width: 100%;
    color: #000000;
}

.favorite-link-title:is(.dark *) {
    color: #ffffff;
}



/******************************/
/*           VLAJKY           */
/******************************/
.language-switcher {
    display: flex;
    gap: 10px;
}

.language-switcher .flag img {
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-radius: 50%;
}


/******************************/
/*           AUTHOR           */
/******************************/
.author-book {
    display: flex;
    flex-wrap: wrap;
}

.author-book-list {
    display: flex;
    align-items: start;
    width: 100%;
}

.author-book-list img {
    min-width: 80px;
    border-radius: .5rem !important;
    object-fit: cover;
    max-width: 100px;
}

.author-book-detail {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-left: 1rem; /* 16px */
}

.fans {
    display: flex;
    flex-wrap: wrap;
}

.heart a:hover, .heart a:hover {
    text-decoration: none;
}

.heart a {
    display: flex;
    position: relative;
}

.heart i {
    font-size: 20px;
    color: #000000;
}

.heart i:is(.dark *) {
    color: #ffffff;
}

.author-info {
    display: -ms-flexbox !important;
    display: flex !important;
    margin-bottom: .75rem; /* 12px */
    margin-top: 1rem; /* 16px */
}

.author-poster {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    margin-right: 1rem; /* 16px */
}

.author-poster img {
    width: 100%;
    border-radius: .5rem !important;
    object-fit: cover;
}

.author-info-detail {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    flex-grow: 1;
    width: 100%;
}

.author-bio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.author-bio details {
    width: 100%;
}

.creator-movie-list {
    width: 100% !important;
    border-collapse: collapse;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.creator-movie-info {
    display: flex;
    align-items: center;
    padding: .25rem; /* 4px */
}

.creator-movie-info img {
    width: 70px; 
    height: auto;
}

.sudy {
    border-bottom: 1px solid #dee2e6;
}

.sudy:nth-child(even) {
    background-color: #f2f2f2;
}

.sudy:nth-child(even):is(.dark *) {
    background-color: #1c1c1c; 
}

/* .sudy:nth-child(1) {
    border-radius: 0 .5rem 0 0;
} */

.sudy:last-child {
    border-bottom: 0;
}

.creator-movie-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-left: .5rem; /* 8px */
}

.creator-movie-name {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    flex: 1;
}

.creator-movie-name p {
    width: 100%;
}

.creator-movie-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 120px;
    font-size: 15px;
}

.movie-rating {
    font-weight: 600;
    color: #d94b4b;
    background: rgba(217, 75, 75, 0.1);
    border: 1px solid rgba(217, 75, 75, 0.3);
    padding: 4px 10px 4px 12px;
    box-shadow: 0 2px 6px rgba(217, 75, 75, 0.25);
    margin: 0 15px 10px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

 .creator-movie-stars {
    /*margin-right: 10px;*/
    text-align: center;
}

.creator-movie-stars i {
    /*margin-right: 10px;*/
} 


/******************************/
/*           CELEBRIT         */
/******************************/
.celebrit-list {
    display: grid;
    gap: 1rem;
    width: 100%;
    margin-bottom: .75rem; /* 12px */
}

.celebrit-list img {
    border-top-left-radius: .5rem; /* 8px */
    border-top-right-radius: .5rem; /* 8px */
    object-fit: cover;
}

.celebrit-list h4 {
    text-align: center;
    margin-top: .75rem;
}


/******************************/
/*           OSTATNÍ          */
/******************************/
.market {
    display: revert;
    width: fit-content;
    padding: 5px 10px;
    border-radius: .5rem;
    font-size: 1.17rem;
}

.selection {
    display: flex;
    margin-top: 20px;
    /* flex-wrap: wrap; */
    justify-content: flex-end;
    width: 100%;
}

.favorite {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.favorite i {
    font-size: 18px;
    margin: 10px;
}


/******************************/
/*     POSLEDNÍ RECENZE       */
/******************************/
.last-review {
    display: flex;
    margin-bottom: .75rem; /* 12px */
    width: 100%;
}

.last-review-body {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    flex: 2;
    margin-left: .5rem;
}

.last-review-title {
    display: flex;
    flex-wrap: wrap;
}

.last-review-text {
    font-size: .875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
    width: 100%;
}

.last-review-user {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: small;
}


/******************************/
/*       ABECEDNÍ FILTR       */
/******************************/
.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.alphabet-item {
    padding: .35rem 0.6rem;
    border-radius: .5rem;
    text-decoration: none;
    font-weight: 600;
}

.page-subtitle {
    margin-bottom: 1.5rem;
}

.letter {
    font-weight: 600;
}

.page-title {
    margin-bottom: 1.5rem;
    width: 100%;
}

.search-table {
    width: 100%;
}

.search-grid {
    display: grid;
    grid-template-columns: 90px 1fr 80px 180px;
    align-items: center;
    gap: .5rem;
    border: 1px solid #ccc;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
}

.search-header {
    padding: .75rem;
    font-weight: 600;
    min-height: 1px;
    width: 100%;
    border-radius: .5rem !important;
}

.search-grid:is(.dark *) {
    background: #252229;
}

.search-row {
    margin-top: .6rem;
    border-radius: .5rem;
    padding: .5rem;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.search-row img {
    display: block;
    width: 90px;
    border-radius: .5rem;
    object-fit: cover;
}

.search-rating {
    display: flex;
    align-items: center;
    font-size: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.users-rating {
    width: 80px;
    text-align: center;
}

.title a {
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.year {
    color: #6b7280;
    text-align: center;
}

.stars {
    letter-spacing: 1px;
    text-align: center;
    padding: .25rem;
}


/******************************/
/*           OSTATNÍ          */
/******************************/
.overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-shadow: 1px 1px 3px #ccc;
    width: 100%;
    padding: 10px;
    text-align: left;
}

.text-muted {
    color: #6c757d !important;
}

.hidden {
    display: none;
}

.last-line:last-child::after {
    content: none;
}

.after.line:nth-last-child(-n+2)::after {
    content: none; /* Odstraní obsah posledního after */
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #ccc;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    width: 100%;
}

.talk-img {
    padding: 1.25rem;
    text-align: center;
    border-radius: .5rem 0;
}

.errorlist {
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    padding: 15px;
    margin: 40px 0;
    font-size: 20px;
    font-weight: bold;
    border-radius: .5rem;
    text-align: center;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem; /* 8px */
}
    
.tag-detail {
    border-radius: .5rem !important;
    background-color: #c0c0c0;
    padding: .25rem; /* 4px */
}

.award-admin {
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6 !important;
    padding: 1rem; /* 16px */
}

.signup {
    width: 50% !important;
    margin-top: 1rem; /* 16px */
    margin-left: auto;
    margin-right: auto;
}

.hover\:underline:hover {
    text-decoration-line: underline;
}

.big-search {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.big-search form {
    display: flex;
    max-width: 400px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    border-radius: .5rem;
}

.big-search button {
    box-shadow: none;
}

.alert {
    margin: 30px 10px; 
    padding: .5rem; /* 8px */
    border-radius: .5rem !important;
    border-color: #c3e6cb;
    background: #d4edda;
    color: #155724;
}

.alert:is(.dark *) {
    background: #80AE2E;
}










@media (max-width: 499.98px) {
    .celebrit-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    main {
        width: 100%;
    }
}

@media (max-width: 599.98px) {
    .menu-section .searching {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        margin: 10px 0;
    }

    .menu-section .searching input {
        width: 60%;
        border-radius: .5rem 0 0 .5rem;
        max-height: 2rem;
        padding: .5rem !important;
        border: 1px solid #dee2e6 !important;
    }

    .tab-list {
        border-radius: 0 0 .5rem .5rem;
    }

    .sm-rating-users {
        display: flex;
        flex-wrap: wrap;
    }
 
    /*.sudy:nth-child(1) {
        border-radius: 0;
    } */
}

@media (max-width: 767.98px) {
    .column h5 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .seasons-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    /* .hvezdicky {
        display: none;
    } */

    main {
        /* width: 100%; */
        margin: 0 auto; 
    }

    .favorite-link-title {
        transform: none;
    }
    
    .favorite-link:before {
        background-color: initial;
    }

    .favorite-link {
        width: 100%;
        padding: 0 10px;
    }

    .favorite-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .after.line:nth-last-child(2)::after {
        content: '';
    }

    .last-comment {
        display: flex;
        flex-wrap: wrap;
    }

    .last-comment p {
        margin-bottom: 1rem;
        width: 100%;
    }

    .author-poster {
        width: 130px;
    }

    .creator-movie-name {
        flex: 100%;
        border-bottom: 1px solid #dee2e6;
        margin-bottom: 5px;
        padding-bottom: 7px;
    }

    .creator-movie-rating {
        justify-content: space-between;
        width: 100%;
    }

    .movie-rating {
        width: auto;
        margin: 0;
    }

    .box-img {
        width: 100%;
    }

    .box-info {
        flex-wrap: wrap;
    }

    .box-detail {
        margin-top: 1.25rem; /* 20px */
    }

    .box-info > div {
        flex-wrap: wrap;
    }

    .box-detail .box-info-rating {
        display: none;
    }

    .box-info-rating {
        display: block;
        text-align: center;
    }

    
}

@media (max-width: 991.98px){
    .right-side {
        margin-top: 20px;
    }

    .hidden {
        display: none;
    }

    .right-side, .left-side {
        padding-right: 0;
        padding-left: 0;
    }

    .sm-rating-users {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        min-width: 0;
        width: 100%;
        word-wrap: break-word;
        background-color: #fff;
        background-clip: border-box;
        border-radius: .5rem;
        border: 1px solid #ccc;
        margin-bottom: 1rem;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        flex-wrap: wrap;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-height: 1px;
        padding: 1.25rem;
    }

    .sm-rating-users:is(.dark *) {
        background: #0d0c0f;
    }

    .sm-rating-users li > div {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    .sm-rating-users li:last-child::after {
        display: none;
    }

    .popup-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 9999;
    }

    .popup-window {
        background: #fff;
        max-width: 90%;
        margin: 8% auto;
        padding: 1rem 1.2rem;
        border-radius: .5rem;
        border: 1px solid #ccc;
        position: relative;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 3px 20px rgba(0,0,0,0.25);
    }

    .popup-window:is(.dark *) {
        background: #252229;
    }

    .popup-window h3 {
        text-align: center;
    }

    .popup-close {
        position: absolute;
        right: 14px;
        top: 0;
        font-size: 28px;
        cursor: pointer;
        font-weight: bold;
    }

    .sm-hidden {
        display: none;
    }

}

@media (max-width: 1023.98px) {
    .menu-section {
        border-bottom: 1px solid #ccc;
    }

    .menu h3 {
        margin-top: 1rem;
    }

    .menu-list-body {
        margin-left: 0px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    main {
        width: 100%;
    }

    .container {
        margin: 0 auto;
    }

    .hr-hidden {
        display: none;
    }

    .sidebar-list {
        display: flex;
        overflow: scroll;
    }

    .sidebar-list li:last-child, 
    .sidebar-list li:last-child:is(.dark *) {
        border-right: none;
        display: flex;
    }

    .sidebar-list li {
        border-right: 1px solid #000000;
        display: flex;
        white-space: nowrap
    }

    .sidebar-list li:is(.dark *) {
        border-right: 1px solid #ffffff;
    }

    .sidebar-list li a {
        display: block;
        padding-right: 10px;
        width: max-content;
    }

    .sidebar-list li a:last-child {
        display: flex;
    }

    .stars:is(.dark *) {
        color: #ffffff;
    }

    
}

@media (min-width: 576px) {
    .container {
        width: 540px; 
    }
}

@media (min-width: 600px) {
    .sm-rating-users {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm-rating-users li:nth-child(2n+2) {
        border-left: 1px solid #ccc;
    }
    
    .sm-rating-users li:nth-last-child(-n + 2) {
        border-bottom: none;
    }

}

@media (min-width: 640px) {
    .footer-body {
        flex-direction: row;
    }

    .menu-list {
        justify-content: center;
    }

}

@media (min-width: 768px) {
    .container {
        width: 720px;
    }

    .stats-container {
        border-right: 1px solid lightgrey;
    }

    .xl\:hidden {
        display: none;
    }

    .author-poster {
        width: 40%;
        max-width: 200px;
    }

    .img-size {
        width: 200px;
        height: 300px;
    }

    .celebrit-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .favorite-link-title {
        display: initial;
    }

    .hvezdicky {
        display: initial;
    }

    .box-img {
        margin-right: 1rem;
    }

    .box-img .box-info-rating {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .rating-users {
        padding-left: 20px;
        text-align: center;
    }
    .selection {
        flex-wrap: wrap;
    }

}

@media (min-width: 992px) {
    .right-side {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .left-side {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .container {
        width: 820px;
    }

    .hvezdicky {
        border-right: none;
    }
    
    .box-info-rating {
        display: none;
    }

    .popup-overlay {
        display: none;
    }

}

@media (min-width: 1024px) {
    aside {
        border-right: 1px solid #d2d2d2;
        min-width: 200px;
    }

    aside:is(.dark *) {
        border-right: 1px solid #ffffff;
    }

    /* section {
        flex-direction: row;
    } */

    .menu-section {
        flex-direction: column;
        height: 100vh;
    }

    .menu h3 {
        padding-top: 2.75rem;
    }

    .author-info-detail {
        width: 55%;
    }

    .celebrit-list {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .box-detail {
        width: 55%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1000px;
    }
}

