@import url('https://fonts.googleapis.com/css2?family=Andika:ital,wght@0,400;0,700;1,400;1,700&family=Rosario:ital,wght@0,300..700;1,300..700&display=swap');

.sidebar-left {
  background: var(--theme-color-950c);
  grid-area: sidebar-left;
  border-radius: var(--border-radius-xs);
}

.sidebar-left--title {
  display: flex;
  font-family: var(--font-titles);
  font-size: var(--font-size-xl);
  margin: 0 var(--margin-s);
  color: var(--theme-color-200);
  background-image: linear-gradient(
    10deg,
    rgb(92, 137, 209) 0%,
    rgb(49, 135, 178) 10%,
    transparent 90%,
    transparent 100%
  );
  background-size: 90% 5%;
  background-repeat: no-repeat;
  background-position: left 4% bottom 0%;
  padding: var(--padding-xs);
  margin-bottom: 10px;
}

.sidebar-left--title {
  display: flex;
  font-family: var(--font-titles);
  font-size: var(--font-size-xl);
  margin: 0 var(--margin-s);
  color: var(--theme-color-200);
  background-image: linear-gradient(
    10deg,
    rgb(92, 137, 209) 0%,
    rgb(49, 135, 178) 10%,
    transparent 90%,
    transparent 100%
  );
  background-size: 90% 5%;
  background-repeat: no-repeat;
  background-position: left 4% bottom 0%;
  padding: var(--padding-xs);
  margin-bottom: 10px;
}

.sidebar-left--title-special{
    font-family: "Rosario", sans-serif;
    font-weight: 500;
    font-size: var(--font-size-s);
    padding-bottom: 7px !important;
}

.sidebar-left--content {
  font-family: var(--font-general);
  font-size: var(--font-size);
  margin: 0 var(--margin-l);
  color: var(--theme-color-100);
  text-align: left;
}

.sidebar-left--content div {
  margin: 0px;
  padding: 0px;
}

.sidebar-left--content img {
  height: auto;
}

/*REFACTO*/
.sidebar-left--content-special{
  width: 100%;
  padding: 5px;
  margin: 0px;
}

.sidebar-left--cover-anime {
  width: 100%;
  padding: var(--padding-s);
}


.sidebar-left--single-eps-list{
    max-height: 300px;
    overflow-y: auto;
}

.sidebar-left--single-eps-list::-webkit-scrollbar {
  width: 5px;
}

.sidebar-left--single-eps-list::-webkit-scrollbar-thumb {
  background: var(--theme-color-700);
  border-radius: 4px;
}

.sidebar-left--single-eps-list::-webkit-scrollbar-thumb:hover {
  background: var(--theme-color-400);
}

.sidebar-left--single-ep{
  font-family: "Rosario", sans-serif;
  font-weight: 300;
  font-style: normal;
  display: flex;
  background-color: var(--theme-color-950);
  padding: var(--padding-s) !important;
  color: var(--theme-color-100);
  background-color: var(--theme-color-800);
}

.sidebar-left--single-ep:hover{
  color: var(--theme-color-200);
  background-color: var(--theme-color-600);
}

.sidebar-left--single-ep-current{
    color: var(--theme-color-200);
      background-color: var(--theme-color-600);
}

.sidebar-left--single-ep img{
  width: auto;
  max-height: 50px;
  padding-right: 10px;
  aspect-ratio: 16 / 9;
}

.sidebar-left--single-ep-details{
  flex: 1;
  margin: auto !important;
}


.sidebar-left--single-ep-details h4{
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.sidebar-left--single-ep-details h1 {
  font-family: var(--font-titles);
  background-color: var(--theme-color-200);
  color: var(--theme-color-800);
  width: fit-content;
  padding: 0 5px;
  border-radius: 5px;
  text-align: justify;
  text-justify: inter-word;
  font-size: var(--font-size);
}

.tooltip {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  /* Dark background */
  color: white;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
  pointer-events: none;
  /* Prevents the tooltip from blocking mouse events */
  display: none;
  /* Hidden by default */
  z-index: 9999;
}