/* 
Datalife Engine template,
name: Serial, creation date: 22 october 2022, version dle: 15 and higher
*/

:root {
  --primary-color: #181818; /* Темный фон */
  --secondary-color: #E8E8E8; /* Светлый акцент */
  --accent-color: #FF5733; /* Яркий акцент */
  --light-gray: #E8E8E8; 
  --dark-gray: #333;
  --white: #fff;
}

/* RESET, BASIC UI SETTINGS */
* {
  background: transparent;
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
table,
iframe,
video,
frame,
embed,
object {
  max-width: 100%;
}

body {
  font: 16px "Open Sans", sans-serif; /* Используем Open Sans */
  line-height: normal;
  padding: 0;
  margin: 0;
  color: var(--secondary-color); /* Используем переменные */
  background-color: var(--primary-color);
  min-height: 100%;
  width: 100%;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: var(--white); /* Используем переменные */
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-color); /* Используем переменные */
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  font-size: 24px;
  font-family: "Roboto", sans-serif; /* Используем Roboto для заголовков */
}

::selection {
  background: #93cbcc;
  color: var(--white); /* Используем переменные */
}

b,
strong,
.bolder {
  font-weight: 700;
}

button,
select,
textarea,
input[type="text"],
input[type="password"],
input[type="button"],
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  font-size: 16px;
  font-family: inherit;
}

button,
.btn,
input[type="button"],
input[type="reset"],
input[type="submit"],
.form__btn,
.qq-upload-button,
.pm__links a,
.usp__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  padding: 0 15px;
  height: 40px;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  background-color: rgba(91, 166, 177, 0.45); /* Используем rgba для прозрачности */
  color: var(--white); /* Используем переменные */
  border-radius: 2px;
  box-shadow: none;
  gap: 10px;
  transition: all 0.3s ease; /* Добавляем плавный переход */
}

button:hover,
.btn:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.form__btn:hover,
.qq-upload-button:hover,
.pm__links a:hover,
.usp__btn a:hover {
  background-color: rgba(75, 69, 70, 0.8); /* Используем rgba для прозрачности */
  color: var(--white); /* Используем переменные */
  border-color: #923637;
}

button:active,
input[type="button"]:active,
input[type="submit"]:active {
  box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.1);
}

.color-btn,
[class*=fr],
[class*=plyr],
[class*=owl-],
[id*=mceu] {
  padding: 0;
  margin: 0;
  line-height: normal;
  border: 0;
  box-shadow: none;
  background: none;
  border-radius: 0;
}

input[type="text"],
input[type="password"] {
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  padding: 0 15px;
  background-color: rgba(0, 0, 0, 0.5); /* Используем rgba для прозрачности */
  color: var(--white); /* Используем переменные */
  border: 1px solid var(--light-gray); /* Добавляем тонкую границу */
  transition: all 0.3s ease; /* Добавляем плавный переход */
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: var(--accent-color); /* Изменяем цвет границы при фокусе */
  outline: none;
}

select {
  height: 40px;
  padding: 0 15px;
  display: block;
  background-color: rgba(0, 0, 0, 0.5); /* Используем rgba для прозрачности */
  color: var(--white); /* Используем переменные */
  border: 1px solid var(--light-gray); /* Добавляем тонкую границу */
  transition: all 0.3s ease; /* Добавляем плавный переход */
  appearance: none; /* Скрываем стандартный select */
  -webkit-appearance: none; /* Скрываем стандартный select */
  background-image: url(../dleimages/chevron.svg);
  padding-right: 30px;
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 0.6em auto;
}

select:focus {
  border-color: var(--accent-color); /* Изменяем цвет границы при фокусе */
  outline: none;
}

select option {
  padding: 6px 10px;
}

select[multiple] {
  padding: 0 5px;
}

textarea {
  padding: 15px;
  overflow: auto;
  vertical-align: top;
  resize: vertical;
  background-color: rgba(0, 0, 0, 0.5); /* Используем rgba для прозрачности */
  color: var(--white); /* Используем переменные */
  border: 1px solid var(--light-gray); /* Добавляем тонкую границу */
  transition: all 0.3s ease; /* Добавляем плавный переход */
}

textarea:focus {
  border-color: var(--accent-color); /* Изменяем цвет границы при фокусе */
  outline: none;
}

input[type="text"],
input[type="password"],
select,
textarea {
  width: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */ /* Убираем фон, используем границу */
  /* color: var(--white); */ /* Используем переменные */
  box-shadow: inset 0 0 0 1px var(--light-gray); /* Добавляем тонкую границу */
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  box-shadow: inset 0 0 0 1px var(--accent-color); /* Изменяем цвет границы при фокусе */
}

input::placeholder,
textarea::placeholder {
  color: var(--light-gray); /* Используем переменные */
  opacity: 0.5;
  font-size: 14px;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}
/* SNIPPETS */
.img-box,
.img-wide,
.img-responsive,
.img-fit-cover {
  overflow: hidden;
  position: relative;
}

.img-responsive {
  padding-top: 56.25%; /* Соотношение сторон 16:9 */
}

.img-responsive--portrait {
  padding-top: 140%; /* Соотношение сторон 4:3 */
}

.img-box > img,
.img-responsive > img {
  width: 100%;
  min-height: 100%;
  display: block;
}

.img-responsive > img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover; /* Обрезка изображения для соответствия */
}

.img-wide img,
.img-wide > a {
  width: 100%;
  display: block;
}

.img-fit-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clr {
  clear: both;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.ws-nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vw100 {
  margin: 0 calc((100% - 100vw) / 2);
  padding: 0 calc((100vw - 100%) / 2);
}

.img-mask::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80%;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  opacity: 0.8;
}

.expand-link::before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.expand-link {
  display: block;
}

.d-flex,
.fx-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.fd-column,
.fx-col {
  flex-direction: column;
  flex-wrap: nowrap;
}

.jc-space-between,
.fx-row {
  justify-content: space-between;
}

.jc-flex-start,
.fx-start {
  justify-content: flex-start;
}

.jc-center,
.fx-center {
  justify-content: center;
}

.jc-flex-end {
  justify-content: flex-end;
}

.ai-flex-start {
  align-items: flex-start;
}

.ai-center,
.fx-middle {
  align-items: center;
}

.ai-flex-end {
  align-items: flex-end;
}

.order-first {
  order: -1;
}

.order-last {
  order: 10;
}

.flex-grow-1,
.fx-1,
.stretch-free-width {
  flex: 1 1 0;
  max-width: 100%;
  min-width: 50px;
}

.btn-icon,
.centered-content {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.icon-at-left [class*="fa-"],
.icon-left .icon {
  margin-right: 0.5em;
}

.icon-at-right [class*="fa-"],
.icon-right .icon {
  margin-left: 0.5em;
}

.hidden,
#dofullsearch,
.form__header .form__btn,
.comment-item__main .quote + br,
.d-none {
  display: none;
}

.anim,
button,
.btn,
.serie-item__img img,
.other-item__img img,
.snews-item__img img {
  transition: all 0.3s;
}

/* COLORS FOR THE DARK THEME */
.bg-basic {
  background-color: var(--primary-color); /* Используем переменные */
}

.bg-darker {
  background-color: #292929;
}

.bg-grey,
.comment-item__reply a {
  background-color: #00aebb;
  color: var(--white); /* Используем переменные */
}

.bg-accent,
.sect__caption a,
.pagination__pages span:not(.nav_ext),
.pagination__pages a:hover {
  background-color: #da1214;
  color: var(--white); /* Используем переменные */
}

.tt-basic {
  color: var(--white); /* Используем переменные */
}

.tt-fade,
.header__menu > li > a,
.header__menu-hidden > li a,
.speedbar a {
  color: rgba(255, 255, 255, 0.8);
}

.tt-fade-2 {
  color: rgba(255, 255, 255, 0.6);
}

.tt-accent,
.descr a {
  color: #81babb;
}

.brd,
.pagination__pages a,
.pagination__pages span {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brd-accent,
.cols__side-menu a,
.pagination__pages span:not(.nav_ext),
.pagination__pages a:hover {
  border: 1px solid #708d8f;
}

/* HOVER EFFECTS */
@media screen and (min-width: 1220px) {
  .header__menu > li:hover > a,
  .header__menu-hidden li a:hover {
    color: var(--accent) !important;
    transition: color 0.3s ease; /* Добавляем плавный переход */
  }

  .header__menu li:hover .header__menu-hidden {
    display: flex;
    transition: opacity 0.3s ease; /* Добавляем плавный переход */
  }

  .cols__side-menu a:hover {
    color: #daf2f3;
    background-color: #3f3f3f;
    transition: all 0.3s ease; /* Добавляем плавный переход */
  }

  .serie-item:hover .serie-item__img img,
  .other-item:hover .other-item__img img,
  .snews-item:hover .snews-item__img img {
    transform: scale(1.1, 1.1);
    transition: transform 0.3s ease; /* Добавляем плавный переход */
  }

  .season-item:hover .season-item__overlay,
  .serie-item-2:hover .serie-item-2__overlay {
    opacity: 1;
    transition: opacity 0.3s ease; /* Добавляем плавный переход */
  }

  .sect__link:hover,
  .sect__caption a:hover,
  .news-item__title:hover,
  .comment-item__reply a:hover {
    text-decoration: underline;
    transition: text-decoration 0.3s ease; /* Добавляем плавный переход */
  }

  .pagination a:hover,
  .tabs__btn-hidden button:hover {
    background-color: var(--accent);
    color: var(--white); /* Используем переменные */
    border-color: var(--accent);
    transition: all 0.3s ease; /* Добавляем плавный переход */
  }

  .lt-is-active .cols__side-menu a:hover {
    color: var(--accent);
    background-color: #cacaca;
    transition: all 0.3s ease; /* Добавляем плавный переход */
  }
}

/* COLORS FOR THE LIGHT THEME
----------------------------------------------- */
.lt-is-active a {color: #222;}
.lt-is-active .bg-basic {background-color: #000;}
.lt-is-active .bg-darker, .lt-is-active .speedbar {background-color: #e4e4e4;}
.lt-is-active .bg-grey {background-color: #56776c; color: #fff;}
.lt-is-active .bg-accent, .lt-is-active .sect__caption a {background-color: #923637; color: #fff;}
.lt-is-active .tt-basic, body.lt-is-active {color: #222;}
.lt-is-active .tt-fade, .lt-is-active .speedbar a {color: #4b4b4b;}
.lt-is-active .tt-fade-2 {color: #707070;}
.lt-is-active .header__menu > li > a, .lt-is-active .header__menu-hidden > li a {color: #ccc;}
.lt-is-active .tt-accent, .lt-is-active .descr a {color: #923637;}
.lt-is-active .wrapper-main {background-color: #efefef; border-bottom: 0;}

.lt-is-active .serie-item__link, .lt-is-active .season-item__link, .lt-is-active .comment-item__reply a {color: #fff;}
.lt-is-active .cols__main, .lt-is-active .sect, .lt-is-active .news-item, 
.lt-is-active .pagination__pages a, .lt-is-active .pagination__pages span, 
.lt-is-active .pnews__date, .lt-is-active .comment-item, .lt-is-active .pseason__rating {border-color: #ccc;}
.lt-is-active .owl-nav button {color: #444;}
.lt-is-active input[type="text"], .lt-is-active input[type="password"], .lt-is-active select, 
.lt-is-active textarea {width: 100%; background-color: #fff; color: #000; 
	box-shadow: inset 0 0 0 1px #ccc;}
.lt-is-active input::placeholder, .lt-is-active textarea::placeholder {color: #000; opacity: 0.5;} 
.lt-is-active .pseason__rating-count {background-color: #27ae60;}
.lt-is-active .unit-rating li {background-image: url(../dleimages/rating2.svg);}

.lt-is-active {
	--accent: #923637;
	--ui-bg: #efefef;
	--ui-bg-darker: #dfdfdf;
	--ui-bg-darkest: #d6d6d6;
	--ui-bg-accent: #111;
	--ui-text-color-on-accent: #fff;
	--ui-bdc: #ccc;
}
#dle-content {display: inherit; gap: inherit; grid-template-columns: inherit;  grid-column: 1 / -1;}
.lt-is-active button:hover,  .lt-is-active .btn:hover {background-color: #792c2e !important; color: #fff;}

.recommendations {
  /* Стиль для всей секции */
  padding: 20px;
  margin-bottom: 30px;
}

.recommendations h2 {
  /* Стиль для заголовка */
  margin-bottom: 10px;
}

.poster-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  width: 80%; 
  margin: 0 auto; 
}

.poster {
  width: 100%;
  height: auto; 
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
  max-height: 230px; /* Устанавливаем максимальную высоту постера */
}

.poster:hover {
  transform: scale(1.1);
}

.poster-title {
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
}

@media (max-width: 768px) { /* Для экранов с шириной менее 768px */
  .poster-container {
    grid-template-columns: repeat(1, 1fr); /* По одному постера в ряд */
  }

  .poster {
    width: 100%;
    height: 300px; /* Увеличиваем высоту для мобильных */
  }
}

