@charset "UTF-8";
/*
|--------------------------------------------
| Цвета, шрифты, миксины, переменные, дефолтные стили
|--------------------------------------------
*/
/*
|---------------------------------------
| Цвета сайта
|---------------------------------------
*/
/*
|--------------------------------------------
| Переменные
|--------------------------------------------
*/
/*
|--------------------------------------------
| Шрифты
|--------------------------------------------
*/
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Semibold.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
/*
|--------------------------------------------
| Миксины
|--------------------------------------------
*/
/*
|--------------------------------------------
| Общие классы
|--------------------------------------------
*/
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-nowrap {
  white-space: nowrap;
}
.text-small {
  font-size: 0.8em;
}
.text-orange {
  color: rgb(249, 194, 46);
}
.text-violet {
  color: #66f;
}
.text-red {
  color: #fd6060;
}
.text-green {
  color: #48ee3b;
}
.text-yellow {
  color: #f9c22e;
}
.text-danger {
  color: #fd6060;
}
.text-success {
  color: #48ee3b;
}
.text-warning {
  color: #f9c22e;
}
.text-info {
  color: lightblue;
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.block {
  margin: 15px 0;
}

.section-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background: url("../images/section-bg.jpg") no-repeat center center/cover;
}
.section-bg ~ * {
  position: relative;
}

.light-wrapper {
  padding: 15px;
  position: relative;
}

.inactive {
  pointer-events: none;
  opacity: 0.8;
}

.link {
  color: #f9c22e !important;
}
.link:hover {
  text-decoration: underline;
}

.css-filter-grayscale {
  filter: grayscale(100%);
}

/*
|--------------------------------------------
| Дефолтные стили для элементов
|--------------------------------------------
*/
* {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.9);
}
a:hover {
  color: rgb(249, 194, 46);
}

html {
  font-size: 10px;
}

body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1920px;
  margin: 0 auto;
  background: rgb(26, 25, 31);
}

html, body {
  height: 100%;
}

.container {
  position: relative;
  z-index: 2;
}
.container:after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1300px;
    margin-left: 0;
    margin-right: 0;
  }
}
img {
  max-width: 100%;
  max-height: 100%;
}

input:invalid {
  box-shadow: none;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.select {
  position: relative;
  display: inline-block;
}
.select:after {
  content: "▼";
  display: block;
  font-size: 12px;
  position: absolute;
  z-index: 5;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

iframe {
  border: none;
}

textarea {
  resize: vertical;
}

section {
  position: relative;
  padding: 30px 0;
  background: rgb(26, 25, 31);
}

p {
  margin: 0 0 10px;
}

@media screen and (max-width: 575px) {
  body {
    font-size: 15px;
  }
}
/*
|--------------------------------------------
| Стили отдельных элементов:
| кнопки, формы, редактор и тд.
|--------------------------------------------
*/
.alert {
  position: relative;
  padding: 10px;
  padding-left: 40px;
  border-left: 3px solid rgb(249, 194, 46);
  background: hsla(0, 0%, 100%, 0.1);
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin: 15px 0;
}
.alert:before {
  font-family: "FontAwesome";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.alert-warning:before {
  content: "\f071";
  color: rgb(249, 194, 46);
}
.alert-success {
  border-left-color: #48ee3b;
}
.alert-success:before {
  content: "\f00c";
  color: #48ee3b;
}
.alert-danger {
  border-left-color: #fd6060;
}
.alert-danger:before {
  content: "\f06a";
  color: #fd6060;
}
.alert-info {
  border-left-color: lightblue;
}
.alert-info:before {
  content: "\f05a";
  color: lightblue;
}
.alert-lgbt {
  background: rgba(102, 102, 255, 0.5);
}
.alert-lgbt:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/icons/lgbt.png") no-repeat center center/contain;
  color: lightblue;
}
.alert ul, .alert ol {
  margin-top: 0;
  padding-left: 20px;
}
.alert > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .alert {
    font-size: 13px;
  }
}
/*
|--------------------------------------------
| Стили кнопок
|--------------------------------------------
*/
.btn {
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  text-decoration: none;
  max-width: 100%;
  background: #fff;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s;
  min-width: 160px;
  text-align: center;
}
.btn-default {
  background: none;
  border: 2px solid rgb(249, 194, 46);
  color: rgba(255, 255, 255, 0.7);
}
.btn-default:hover {
  color: #fff;
}
.btn-auto {
  min-width: 0;
}
.btn-block {
  width: 100%;
}
.btn-more {
  margin-top: 30px;
}
.btn:focus {
  box-shadow: none;
}
.btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.theme-trigger, .feedback-button {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}
.theme-trigger .fa, .feedback-button .fa {
  position: relative;
  top: -1.5px;
}
.theme-trigger:hover, .feedback-button:hover {
  color: rgb(249, 194, 46);
}

/*
|--------------------------------------------
| Стили элементов форм
|--------------------------------------------
*/
.form-group {
  margin-top: 10px;
  display: block;
}
.form-group.row {
  display: flex;
}
.form-group-label {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.form-group-checkbox {
  cursor: pointer;
  display: block;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}
.form-group-checkbox input {
  margin-right: 5px;
}
.form-input-text {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 37px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  border-radius: 5px;
  border: 2px solid #17171c;
  font-size: 15px;
}
.form-input-text::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-weight: normal;
  opacity: 0.7;
}
.form-input-text::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-weight: normal;
  opacity: 0.7;
}
.form-input-text:-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-weight: normal;
  opacity: 0.7;
}
.form-input-text:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-weight: normal;
  opacity: 0.7;
}
.form-input-text.textarea {
  line-height: 1.2;
  padding: 10px;
  height: 130px;
}
.form-input-text:focus, .form-input-text:active {
  border-color: rgb(249, 194, 46);
}
.form-input-submit {
  border: none;
}
.form-policy {
  font-size: 13px;
}
.form-policy a {
  text-decoration: underline;
}
.form-error {
  color: #fd6060;
  font-size: 14px;
}

/*
|--------------------------------------------
| Стили заголовков
|--------------------------------------------
*/
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  font-weight: 600;
  margin: 0 0 15px;
  letter-spacing: 0.5px;
}

h1, .h1 {
  font-size: 35px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 26px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 20px;
  font-weight: normal;
}

@media screen and (max-width: 575px) {
  h2, .h2 {
    font-size: 26px;
  }
  h3, .h3 {
    font-size: 24px;
  }
  h4, .h4 {
    font-size: 22px;
  }
  h5, .h5 {
    font-size: 20px;
  }
}
.html-editor p, .html-editor li {
  line-height: 1.9;
  letter-spacing: 0.5px;
}
.html-editor a {
  color: #f9c22e;
}
.html-editor a:hover {
  text-decoration: none;
}

@media screen and (max-width: 575px) {
  .html-editor p, .html-editor li {
    line-height: 1.6;
  }
}
/*
|--------------------------------------------
| Стили всплывающих окон
|--------------------------------------------
*/
.fancybox-button:focus,
.fancybox-close-small:focus:after {
  outline: none;
}

.fancybox-container {
  z-index: 100;
}

.fancybox-content {
  color: rgb(26, 25, 31);
  vertical-align: top;
}

.modal {
  display: none;
  height: auto;
  width: 580px;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 30px);
  padding: 2rem;
  border-radius: 5px;
  background: rgb(26, 25, 31);
  color: rgba(255, 255, 255, 0.9) !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.modal-fav {
  width: 300px;
}
.modal-fav input[type=checkbox] {
  position: relative;
  top: 1px;
}
.modal-title {
  font-size: 22px;
}
.modal-video {
  box-shadow: 0 0 20px 0 #fff;
  padding: 0;
  width: 800px;
  height: auto;
  background: rgb(26, 25, 31);
  color: rgba(255, 255, 255, 0.9);
}
.modal-video-frame {
  width: 100%;
  height: 400px;
  background: url("../images/load.gif") no-repeat center center #fff;
}
.modal-video .tab-container {
  margin-top: 0;
}
.modal .tab-list-item {
  border-radius: 5px;
}

.response-modal {
  position: fixed;
  z-index: 12;
  right: 10px;
  top: 10px;
  width: 200px;
  max-width: calc(100% - 20px);
  text-align: center;
  border-radius: 5px;
  padding: 15px;
  display: none;
}
.response-modal.green {
  background: #48ee3b;
  color: rgb(26, 25, 31);
}
.response-modal.red {
  background: #fd6060;
}
.response-modal.orange {
  background: rgb(249, 194, 46);
  color: rgb(26, 25, 31);
}

@media screen and (max-width: 575px) {
  .modal-video {
    height: 350px;
  }
  .modal-video-frame {
    height: 308px;
  }
}
.tab-container {
  margin-top: 20px;
}
.tab-container-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: auto;
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
}
.tab-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.tab-list-item {
  display: inline-block;
  padding: 10px;
  margin-right: 3px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.tab-list-item.active, .tab-list-item:hover {
  background: rgb(249, 194, 46);
  color: rgb(26, 25, 31);
}
.tab-content-item {
  display: none;
}
.tab-content-item.active {
  display: block;
}

/*
|--------------------------------------------
| Стили отдельных блоков, секций
|--------------------------------------------
*/
.auth-form-wrapper {
  margin-top: 20px;
}

.best-row {
  margin-top: 30px;
  padding: 15px;
  position: relative;
}
.best-row-items a {
  margin-right: 10px;
  margin-bottom: 10px;
}
.best-row-items a .fa {
  margin-right: 5px;
}
.best-row-items a:hover .fa {
  color: rgb(249, 194, 46);
}

@media screen and (max-width: 575px) {
  .best-row-items {
    display: flex;
    flex-wrap: wrap;
  }
  .best-row-items > a {
    width: calc(50% - 10px);
    margin: 5px;
  }
}
/*
|--------------------------------------------
| Хлебные крошки
|--------------------------------------------
*/
.breadcrumbs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs-wrapper {
  position: relative;
  padding: 15px 0;
  border-bottom: 2px solid rgb(30.7357142857, 29.5535714286, 36.6464285714);
}
.breadcrumbs > li {
  display: inline-block;
  vertical-align: top;
}
.breadcrumbs > li:after {
  font-family: "FontAwesome";
  content: "\f105";
  margin-left: 10px;
  margin-right: 5px;
}
.breadcrumbs > li:last-child:after {
  display: none;
}
.breadcrumbs > li > a {
  text-decoration: none;
  font-size: 15px;
}
.breadcrumbs > li:hover > a, .breadcrumbs > li.active > a {
  color: rgb(249, 194, 46);
}

.catalog {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.catalog-main-item {
  width: 211px;
  padding: 10px;
}
.catalog-main-item .film-item-image {
  height: 275px;
}
.catalog-full-item {
  padding: 10px;
  width: 211px;
}
.catalog-full-item .film-item-image {
  height: 285px;
}

@media screen and (max-width: 1100px) {
  .catalog {
    justify-content: space-around;
  }
}
@media screen and (max-width: 575px) {
  .catalog-main-item, .catalog-full-item {
    padding: 5px;
    width: 50%;
  }
  .catalog-main-item .film-item-image, .catalog-full-item .film-item-image {
    height: 300px;
  }
}
@media screen and (max-width: 400px) {
  .catalog-main-item .film-item-image, .catalog-full-item .film-item-image {
    height: 250px;
  }
}
.collection-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  justify-content: space-around;
}
.collection-list-item {
  position: relative;
  display: block;
  margin: 10px;
  width: 403px;
  height: 275px;
  border-radius: 5px;
  overflow: hidden;
}
.collection-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-list-item-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  font-size: 23px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s;
}
.collection-list-item-title span {
  text-shadow: -1px 1px 1px #000;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
}
.collection-list-item:hover .collection-list-item-title {
  background-color: rgba(0, 0, 0, 0.3);
}
.collection-list-item:hover .collection-list-item-title span {
  color: rgb(249, 194, 46);
}
.collection-item {
  margin-top: 30px;
  display: flex;
  padding: 10px;
  border: 2px solid rgb(26, 25, 31);
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  border-radius: 5px;
}
.collection-item-title a {
  transition: all 0.3s;
}
.collection-item-image {
  display: inline-block;
  line-height: 0.9;
  cursor: pointer;
  position: relative;
}
.collection-item-image-wrapper {
  width: 220px;
}
.collection-item-image:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s;
}
.collection-item-image:after {
  font-family: "FontAwesome";
  content: "\f04b";
  position: absolute;
  z-index: 2;
  font-size: 40px;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}
.collection-item-image:hover:before, .collection-item-image:hover:after {
  opacity: 1;
}
.collection-item-content {
  width: calc(100% - 220px);
  padding-left: 20px;
}
.collection-item-introtext {
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .collection-list-item {
    width: calc(50% - 20px);
    margin: 10px;
  }
}
@media screen and (max-width: 767px) {
  .collection-list-item {
    height: 200px;
  }
  .collection-item {
    padding: 10px;
    flex-wrap: wrap;
  }
  .collection-item-content {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .collection-list-item {
    width: 350px;
    max-width: 100%;
    height: 250px;
  }
}
.comments {
  margin-top: 20px;
}
.comments-form {
  margin: 15px 0;
}
.comments-introtext {
  font-size: 13px;
}
.comments-new-link {
  margin: 10px 0;
}
.comments-list {
  padding-left: 20px;
  list-style-type: none;
}
.comments-list-root {
  padding-left: 0;
}
.comments-smile {
  margin: 2px;
}
.comments-item {
  margin: 15px 0;
}
.comments-item-header {
  display: flex;
  align-items: center;
}
.comments-item-body {
  font-size: 15px;
  line-height: 1.4;
}
.comments-item-avatar {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  object-fit: cover;
}
.comments-item-author {
  margin: 0 10px;
  font-weight: bold;
  color: #f9c22e;
}
.comments-item-createdon {
  font-size: 0.8em;
  opacity: 0.75;
}
.comments-item-text {
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  border-radius: 5px;
  border: 2px solid #17171c;
  margin: 7px 0;
  padding: 15px;
}
.comments-item-reply {
  font-size: 13px;
}
.comments-item-rating {
  font-size: 18px;
  margin-left: auto;
}
.comments-item-rating-value {
  margin: 0 5px;
  font-weight: bold;
}
.comments-item-rating-up:hover, .comments-item-rating-up.active {
  color: #48ee3b;
}
.comments-item-rating-down:hover, .comments-item-rating-down.active {
  color: #fd6060;
}
.comments-item-rating-up, .comments-item-rating-down {
  display: inline-block;
  cursor: pointer;
}
.comments-item-rating-up.clicked, .comments-item-rating-down.clicked {
  transform: scale(0.85) !important;
}
.comments-last-item {
  padding: 10px 0;
  line-height: 1.2;
  border-bottom: 1px solid #17171c;
}
.comments-last-item:last-child {
  border-bottom: none;
}
.comments-last-item-name {
  font-size: 15px;
  margin-bottom: 5px;
  color: #f9c22e;
}
.comments-last-item-time {
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
  font-weight: 400;
  margin-left: 5px;
}
.comments-last-item-text {
  margin: 8px 0 5px;
  font-size: 14px;
}
.comments-last-item-link {
  display: inline-block;
  font-size: 12px;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.content {
  display: flex;
}
.content-left {
  width: calc(100% - 400px);
}
.content-right {
  width: 400px;
  padding-left: 15px;
}

.content-section {
  background: #17171c;
}
.content-section .content-hidden {
  background: none;
}

.content-hidden {
  padding: 15px;
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  position: relative;
}
.content-hidden.hidden {
  max-height: 150px;
  overflow: hidden;
}
.content-hidden.hidden:after {
  content: "";
  display: block;
  height: 50px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, rgb(26, 25, 31), rgba(26, 25, 31, 0));
}
.content-hidden-button {
  margin-top: 15px;
}

@media screen and (max-width: 1500px) {
  .content {
    flex-wrap: wrap;
  }
  .content-left, .content-right {
    width: 100%;
    padding-left: 0;
  }
}
.cookie-block {
  z-index: 100;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 5px;
  background: #17171c;
  text-align: center;
  font-size: 14px;
  display: none;
  border-top: 1px solid #f9c22e;
}
.cookie-block span {
  margin: 0 5px;
}
.cookie-block a {
  white-space: nowrap;
}
.cookie-block button {
  border: 1px solid #f9c22e;
  background: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  border-radius: 3px;
}
.cookie-block button:hover {
  background: #f9c22e;
  color: #17171c;
}

@media screen and (max-width: 575px) {
  .cookie-block {
    font-size: 14px;
  }
  .cookie-block span {
    margin: 0;
  }
  .cookie-block button {
    width: 100px;
    margin-top: 6px;
  }
}
.film-item {
  display: block;
  text-decoration: none;
  padding-bottom: 5px;
}
.film-item:hover {
  color: rgba(255, 255, 255, 0.9);
}
.film-item:hover .film-item-image:before, .film-item:hover .film-item-image:after {
  opacity: 1;
}
.film-item-image {
  position: relative;
  display: inline-block;
  height: 300px;
  width: 100%;
}
.film-item-image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s;
}
.film-item-image:after {
  font-family: "FontAwesome";
  content: "\f144";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  opacity: 0;
  transition: all 0.3s;
}
.film-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.film-item-type {
  background: #66f;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px 8px;
  font-weight: 600;
  font-size: 14px;
}
.film-item-episode {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  color: rgb(26, 25, 31);
  font-weight: 600;
  padding: 5px 8px;
  font-size: 14px;
}
.film-item-rating {
  position: absolute;
  right: 10px;
  top: 10px;
}
.film-item-rating-kp {
  margin-bottom: 7px;
}
.film-item-rating * {
  width: 40px;
  height: 40px;
  border: 2px solid #f9c22e;
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
  background: rgba(0, 0, 0, 0.8);
  font-weight: 600;
  font-size: 15px;
}
.film-item-rating *.success {
  border-color: #48ee3b;
}
.film-item-rating *.danger {
  border-color: #fd6060;
}
.film-item-fav {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgb(249, 194, 46);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 31px;
  color: rgb(26, 25, 31);
  z-index: 2;
}
.film-item-fav:hover {
  background: rgb(212.4023255814, 156.5069767442, 6.0976744186);
}
.film-item-fav.active {
  background: #48ee3b;
}
.film-item-fav.active:hover {
  background: rgb(31.0563380282, 202.9014084507, 17.5985915493);
}
.film-item-fav-form {
  position: absolute;
  bottom: 25px;
  right: 5%;
  width: 90%;
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  padding: 5px;
  border-radius: 3px;
  z-index: 5;
}
.film-item-title {
  font-size: 18px;
  margin: 5px 0;
  font-weight: 400;
}
.film-item-genres {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
  color: rgb(249, 194, 46);
  letter-spacing: 0.5px;
}
.film-item-viewed {
  position: absolute;
  right: 10px;
  bottom: 50px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.7);
}
.film-item-viewed:hover {
  opacity: 1;
}
.film-item-viewed.active {
  background: #17171c;
  opacity: 1;
}
.film-item-fav i, .film-item-viewed i {
  line-height: 27px;
}
.film-item-ts {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 30px;
  padding: 5px 8px;
  font-weight: 600;
  font-size: 14px;
  background: red;
}

.slider .film-item {
  width: 200px;
}

@media screen and (max-width: 575px) {
  .film-item-image {
    height: 275px;
  }
}
.film-genres {
  color: rgb(249, 194, 46);
  font-size: 13px;
  text-transform: uppercase;
}
.film-title-small {
  margin-top: -10px;
  margin-bottom: 10px;
  opacity: 0.7;
}
.film-info {
  display: flex;
}
.film-info-image {
  width: 220px;
}
.film-info-content {
  width: calc(100% - 220px);
  padding-left: 20px;
}
.film-info-left {
  width: 250px;
}
.film-info-left .film-item-image {
  height: 350px;
}
.film-info-right {
  width: calc(100% - 250px);
  padding-left: 20px;
}
.film-info-table {
  line-height: 1.7;
  margin-top: -5px;
}
.film-info-table td {
  vertical-align: top;
}
.film-info-table td:first-child {
  white-space: nowrap;
}
.film-info-table td:first-child:after {
  content: ":";
}
.film-info-table td:last-child {
  padding-left: 15px;
  font-weight: 300;
}
.film-info-table a {
  color: rgb(249, 194, 46);
}
.film-info-table a:hover {
  opacity: 0.8;
}
.film-content {
  margin-top: 15px;
}
.film-video {
  width: calc(100% - 100px);
  margin: 0 auto;
}
.film-video-frame {
  width: 100%;
  max-width: 100%;
  height: 580px;
  background: url("../images/load.gif") no-repeat center center #fff;
}
.film-parts {
  margin-top: 20px;
}
.film-parts:first-of-type {
  padding-top: 0;
}
.film-parts-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
}
.film-parts-item.active {
  color: rgb(249, 194, 46);
}
.film-parts-item.active .film-parts-item-title:before {
  font-family: FontAwesome;
  content: "\f04b";
  margin-right: 5px;
}
.film-parts-item-rating {
  padding: 3px 5px;
  display: inline-block;
  margin-left: 10px;
  min-width: 35px;
  text-align: center;
}
.film-parts-item-rating.success {
  border: 1px solid #48ee3b;
  color: #48ee3b;
}
.film-parts-item-rating.danger {
  border: 1px solid #fd6060;
  color: #fd6060;
}
.film-parts-item-rating.warning {
  border: 1px solid #f9c22e;
  color: #f9c22e;
}
.film-similar {
  margin-top: 20px;
}
.film-user-note textarea {
  resize: both;
}
.film-user-note textarea::-webkit-input-placeholder {
  font-size: 13px;
}
.film-user-note textarea::-moz-placeholder {
  font-size: 13px;
}
.film-user-note textarea:-moz-placeholder {
  font-size: 13px;
}
.film-user-note textarea:-ms-input-placeholder {
  font-size: 13px;
}

.film-video {
  margin-top: 20px;
}
.film-video-title {
  margin: 0 0 -20px;
  padding: 10px;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
}
.film-video-actions {
  margin-left: 30px;
  display: flex;
  font-size: 14px;
  user-select: none;
}
.film-video-actions > * {
  white-space: nowrap;
}
.film-video-feedback {
  text-decoration: none;
  padding: 0 15px;
}
.film-video-light {
  display: inline-block;
  position: relative;
  padding-left: 44px;
  cursor: pointer;
}
.film-video-light:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 36px;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}
.film-video-light:after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  display: block;
  width: 20px;
  height: calc(100% + 2px);
  background: rgb(249, 194, 46);
  border-radius: 3px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}
.film-video-light.active:after {
  left: 17px;
  background: rgb(0, 163.7, 0);
}
.film-video-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  z-index: 15;
  display: none;
}
.film-video-share {
  margin-top: -3px;
  padding: 10px;
  text-align: center;
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
}
.film-video-share > a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  height: 25px;
  line-height: 1.5;
  width: 35px;
  text-align: center;
  border-radius: 3px;
}
.film-video-share > a.vk {
  background: #5075a5;
}
.film-video-share > a.fb {
  background: #4b6baf;
}
.film-video-share > a.ok {
  background: #fc6d00;
}
.film-video-share > a.tw {
  background: #2daae1;
}
.film-video-share > a.tg {
  background: #5075a5;
}
.film-video-share > a:hover {
  color: #fff;
  opacity: 0.8;
}
.film-video-placeholder {
  position: relative;
  background: #000;
  margin: 20px 0;
  padding: 40px;
  min-height: 350px;
}
.film-video-placeholder:after {
  font-family: "FontAwesome";
  content: "\f05e";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
}

body.player-focused .film-video {
  position: relative;
  z-index: 16;
}

/*
|------------
| MEDIA
|-------------
*/
@media screen and (max-width: 1600px) {
  .film-video-frame {
    height: 500px;
  }
}
@media screen and (max-width: 1536px) {
  .film-video-frame {
    height: 480px;
  }
}
@media screen and (max-width: 1500px) {
  .film-video {
    width: 100%;
  }
}
@media screen and (max-width: 1399px) {
  .film-video-frame {
    height: 420px;
  }
}
@media screen and (max-width: 991px) {
  .film-video-frame {
    height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .film-info {
    flex-wrap: wrap;
  }
  .film-info-right {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
  .film-info-content {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .film-video {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .film-video .tab-list-item {
    font-size: 14px;
    padding: 7px;
  }
  .film-video-frame {
    height: 350px;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .film-video-share > a {
    margin: 0 5px;
  }
  .film-info-table td {
    font-size: 14px;
    white-space: normal !important;
  }
  .film-parts-item {
    align-items: flex-start;
    font-size: 14px;
  }
  .film-parts-item-year {
    padding-left: 15px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 400px) {
  .film-video-frame {
    height: 300px;
  }
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.filter-row.queries {
  justify-content: space-between;
}
.filter-row.queries .filter-group {
  margin-right: 0;
  width: calc(50% - 10px);
}
.filter-row.queries .filter-group input {
  width: 100%;
}
.filter-group {
  margin-right: 15px;
  margin-bottom: 10px;
}
.filter-group-years {
  display: flex;
  align-items: center;
}
.filter-group-years span {
  margin: 0 5px;
}
.filter-group-years input {
  width: 75px;
}
.filter-group.country {
  width: 150px;
}
.filter-group option {
  font-size: 14px;
}
.filter-label {
  display: flex;
  margin-bottom: 4px;
  color: rgb(249, 194, 46);
  user-select: none;
  font-weight: 600;
  font-size: 15px;
}
.filter-checkbox {
  display: flex;
  align-items: center;
}
.filter-checkbox input {
  margin-right: 4px;
}
.filter-clean {
  text-decoration: none;
}
.filter input[type=text] {
  width: 180px;
}
.filter input[name=page] {
  width: 100px;
}
.filter-trigger {
  line-height: 1;
  display: block;
  padding: 10px;
  padding-top: 6px;
  border: 1px dashed #f9c22e;
  text-align: center;
  border-radius: 5px;
}
.filter-trigger i {
  font-size: 20px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.filter-trigger.active i {
  transform: rotate(-180deg);
}

@media screen and (max-width: 575px) {
  .filter-group {
    width: 100%;
    margin-right: 0;
  }
  .filter-group.country {
    width: 100%;
  }
  .filter-group-years input {
    width: calc(50% - 8px);
  }
  .filter-row.queries .filter-group {
    width: 100%;
  }
}
.footer {
  padding: 15px 0;
  border-top: 2px solid rgb(30.7357142857, 29.5535714286, 36.6464285714);
  background: #17171c;
}
.footer a {
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-copyrights {
  font-size: 14px;
  margin-bottom: 15px;
}

.header {
  padding: 15px 0;
  border-bottom: 2px solid rgb(30.7357142857, 29.5535714286, 36.6464285714);
  position: fixed;
  left: 200px;
  top: 0;
  z-index: 10;
  width: calc(100% - 200px);
  background: #17171c;
  transition: all 0.3s;
}
.header + * {
  margin-top: 73px;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-search {
  position: relative;
}
.header-search-form {
  position: relative;
  width: 500px;
}
.header-search input {
  display: block;
  width: 100%;
  padding: 10px;
  padding-right: 40px;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  border-radius: 5px;
}
.header-search input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-weight: normal;
  opacity: 0.7;
}
.header-search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-weight: normal;
  opacity: 0.7;
}
.header-search input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-weight: normal;
  opacity: 0.7;
}
.header-search input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-weight: normal;
  opacity: 0.7;
}
.header-search input:active, .header-search input:focus {
  border-color: rgb(249, 194, 46);
}
.header-search button {
  position: absolute;
  right: 5px;
  top: 0;
  height: 100%;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.9);
}
.header-search-result {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: rgb(26, 25, 31);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  display: none;
}
.header-search-result-item {
  display: block;
  padding: 10px;
  text-decoration: none;
}
.header-search-result-item-actors {
  opacity: 0.7;
  font-size: 14px;
}
.header-search-result-item-type {
  font-size: 14px;
  opacity: 0.7;
}
.header-search-result-item:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}
.header-logo {
  color: #f9c22e;
  text-decoration: none;
  font-size: 27px;
  font-weight: 700;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  border-radius: 3px;
  text-align: center;
  display: inline-block;
  line-height: 30px;
}

.logo {
  display: block;
  padding: 15px;
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
}
.logo span:first-child {
  color: #f9c22e;
}
.top-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.top-menu > li {
  position: relative;
}
.top-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 10px 15px;
}
.top-menu > li > a .fa {
  position: relative;
  top: -0.5px;
}
.top-menu > li:hover > a, .top-menu > li.active > a {
  color: rgb(249, 194, 46);
  text-decoration: none;
}
.top-menu > li:hover > a svg, .top-menu > li.active > a svg {
  fill: rgb(249, 194, 46);
}
.top-menu > li:hover .top-menu-2 {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
.top-menu > li.parent > a:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 10px;
}
.top-menu-icon {
  width: 20px;
  margin-right: 15px;
  display: flex;
  height: 20px;
  align-items: center;
  justify-content: center;
}
.top-menu-icon svg {
  width: 100%;
  fill: rgba(255, 255, 255, 0.9);
}
.top-menu-2 {
  position: absolute;
  left: 100%;
  top: -10px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: #000;
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  width: 600px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  transform: translate(0, 30px);
  opacity: 0;
  visibility: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  display: grid;
  grid-template-rows: repeat(10, 1fr);
  grid-auto-flow: column;
}
.top-menu-2:before {
  position: absolute;
  z-index: 3;
  left: -20px;
  top: 20px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: gray;
}
.top-menu-2 > li > a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  padding: 10px;
  text-decoration: none;
}
.top-menu-2 > li > a:hover {
  color: rgb(249, 194, 46);
}
.top-menu-2 > li > a.strong {
  font-weight: 600;
  color: rgb(249, 194, 46);
}
.top-menu-2 > li > a.strong:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1199px) {
  .header-search-form {
    width: 400px;
  }
}
@media screen and (max-width: 991px) {
  .header {
    width: 100%;
    left: 0;
  }
  .header-search {
    margin-right: auto;
  }
  .top-menu-trigger {
    font-size: 30px;
    cursor: pointer;
    margin-right: 20px;
  }
  .top-menu-trigger:hover {
    color: rgb(249, 194, 46);
  }
  .top-menu > li.parent > a:after {
    display: none;
  }
  .top-menu > li.parent:hover .top-menu-2 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 5px 0 8px;
  }
  .header-flex {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .header-user {
    order: 2;
    font-size: 15px;
    margin-left: auto;
  }
  .header-search {
    width: 100%;
    margin-top: 5px;
    order: 3;
  }
  .header-search-form {
    width: 100%;
  }
  .header-search input {
    padding: 7px 10px;
    border: none;
    background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  }
  .header + * {
    margin-top: 87px;
  }
  .top-menu-trigger {
    order: 1;
  }
}
.page-fixed {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 11;
  width: 200px;
  height: 100%;
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
}

.page-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 340px;
  overflow-x: hidden;
  padding-left: 200px;
}
.page-content-top {
  flex: 1 0 auto;
}
.page-content-bottom {
  flex: 0 0 auto;
}

@media screen and (max-width: 991px) {
  .page-fixed {
    transition: all 0.5s;
    left: -250px;
    opacity: 0;
    z-index: 20;
    overflow: auto;
    overflow-x: hidden;
  }
  .page-fixed.active {
    left: 0;
    opacity: 1;
  }
  .page-content {
    padding-left: 0;
  }
}
/*
|--------------------------------------------
| Пагинация
|--------------------------------------------
*/
ul.pagination {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  padding: 0;
  list-style: none;
}
ul.pagination > .page-item {
  text-align: center;
  display: inline-block;
  margin: 5px;
}
ul.pagination > .page-item:first-child {
  margin-left: 0;
}
ul.pagination > .page-item > .page-link {
  display: block;
  border-radius: 2px;
  padding: 5px;
  text-decoration: none;
  border: 1px solid rgb(249, 194, 46);
  min-width: 33px;
}
ul.pagination > .page-item.active > .page-link, ul.pagination > .page-item:hover > .page-link {
  background: rgb(249, 194, 46);
  color: rgb(26, 25, 31);
}
ul.pagination > .page-item.disabled {
  opacity: 0.5;
  pointer-events: none;
}

#pdopage.loaded {
  z-index: 5;
}
#pdopage.loaded > * {
  opacity: 0.25;
}
#pdopage.loaded:after {
  content: "";
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 6;
  display: block;
  width: 60px;
  height: 60px;
  background: url("../images/helpers/loading.gif") no-repeat center center/contain;
}

@media screen and (max-width: 575px) {
  ul.pagination {
    display: flex;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    font-size: 14px;
  }
  ul.pagination > .page-item {
    margin: 3px;
  }
  ul.pagination > .page-item > .page-link {
    min-width: 28px;
  }
}
.person-link {
  display: inline-block;
  position: relative;
}
.person-link:hover .person-link-content {
  display: block;
}
.person-link-content {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 10;
  padding: 10px;
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  width: 220px;
  display: none;
}
.person-link-content-title {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  line-height: 1.2;
}

.profile-grid {
  display: flex;
}
.profile-grid-nav {
  width: 250px;
}
.profile-grid-content {
  width: calc(100% - 250px);
  padding-left: 20px;
}
.profile-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.profile-menu > li {
  white-space: nowrap;
}
.profile-menu > li > a {
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  text-decoration: none;
  position: relative;
  padding-right: 30px;
}
.profile-menu > li > a span {
  margin-left: 3px;
}
.profile-menu > li.active > a {
  color: rgb(249, 194, 46);
}
.profile-menu > li.active > a:after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: rgb(249, 194, 46);
  border-radius: 50%;
}
.profile-content {
  margin-top: 20px;
}
.profile-search-form {
  width: 400px;
  max-width: 100%;
  position: relative;
}
.profile-search-form button[type=submit] {
  position: absolute;
  background: none;
  border: none;
  right: 10px;
  top: 10px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}
.profile-search-form a {
  display: inline-block;
  text-decoration: none;
  margin-top: 4px;
  font-size: 14px;
}
.profile-category-form {
  display: flex;
  align-items: flex-end;
}
.profile-category-form > * {
  min-width: 200px;
  padding-right: 10px;
  margin-bottom: 10px;
}
.profile-category-form label {
  color: rgb(249, 194, 46);
  font-size: 15px;
}

@media screen and (max-width: 1399px) {
  .profile-category-form {
    flex-wrap: wrap;
  }
  .profile-category-form > * {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .profile-grid {
    flex-wrap: wrap;
  }
  .profile-grid-nav {
    width: 100%;
  }
  .profile-grid-content {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .profile-menu {
    display: flex;
    width: 100%;
    overflow: auto;
  }
  .profile-menu > li {
    font-weight: 600;
    text-transform: uppercase;
  }
  .profile-menu > li > a {
    padding: 10px;
  }
  .profile-menu > li.active > a {
    background: #f9c22e;
    color: rgb(26, 25, 31);
  }
  .profile-menu > li.active > a:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .profile-category-form > * {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .profile-category-form {
    display: none;
  }
  .profile-category-form-trigger {
    font-size: 15px;
    border: 1px dashed #f9c22e;
    padding: 10px;
    font-weight: normal;
    text-align: center;
    border-radius: 5px;
  }
  .profile-category-form-trigger:after {
    font-family: "FontAwesome";
    content: "\f107";
    margin-left: 5px;
    font-size: 16px;
    display: inline-block;
    position: relative;
    top: 1px;
  }
  .profile-category-form-trigger.active:after {
    transform: rotate(180deg);
  }
}
.sidebar-item {
  padding: 10px 15px;
  position: relative;
  border: 2px solid rgb(30.7357142857, 29.5535714286, 36.6464285714);
  background: rgba(210, 201, 255, 0.04);
}
.sidebar-item + .sidebar-item {
  margin-top: 30px;
}
.sidebar-item .btn {
  margin-top: 15px;
}
.sidebar-title {
  font-size: 22px;
  font-weight: 600;
}
.sidebar-news-item {
  display: block;
  text-decoration: none;
  line-height: 1.6;
  margin-top: 10px;
}
.sidebar-news-item-title {
  color: rgb(249, 194, 46);
}
.sidebar-news-item-text {
  font-size: 15px;
}
.sidebar-news-item-date {
  opacity: 0.7;
  font-size: 14px;
}
.sidebar-tag-list {
  margin-top: 20px;
}
.sidebar-tag-item {
  margin-right: 5px;
  margin-bottom: 7px;
  display: inline-block;
  text-decoration: none;
  padding: 5px;
  border-radius: 3px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.1s;
}
.sidebar-tag-item:hover {
  transform: scale(1.05);
}
.sidebar-list-item {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}
.sidebar-list-item-title {
  font-size: 17px;
}
.sidebar-list-item-episode {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  opacity: 0.7;
  font-weight: 600;
}
.sidebar-list-item .fa {
  margin-left: 7px;
}
.sidebar-list-item:hover .sidebar-list-item-episode {
  opacity: 1;
  color: rgba(255, 255, 255, 0.9);
}

.slider {
  margin-top: 20px;
}
.slider-title {
  margin-bottom: 0;
}
.slider-nav {
  margin-top: 25px;
  text-align: center;
}
.slider-nav .fa {
  margin: 0 10px;
  font-size: 22px;
  cursor: pointer;
}
.slider-nav .fa:hover {
  color: rgb(249, 194, 46);
}
.slider-sub-title {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 7px;
}
.slider-sub-title a {
  margin-right: 15px;
}

.star-rating {
  position: relative;
  z-index: 3;
  display: inline-block;
}
.star-rating i.fa {
  font-size: 30px;
  margin-right: 1px;
  cursor: pointer;
  color: rgb(115, 173, 33) !important;
}
.star-rating-stars {
  position: relative;
  display: inline-flex;
}
.star-rating-fill {
  position: absolute;
  z-index: 1;
  display: none;
  overflow: hidden;
  display: none;
  white-space: nowrap;
}
.star-rating-fill i.fa {
  transform: scale(0.9);
}
.star-rating-info-numbers {
  color: #f9c22e;
}

@media screen and (max-width: 575px) {
  .star-rating i.fa {
    font-size: 22px;
  }
}
/*
|--------------------------------------------
| Переопределение стилей сторонних пакетов
|--------------------------------------------
*/
body .office-auth-register-wrapper {
  background: none;
  border: none;
}
body #office-auth-form label, body #office-profile-form .col-form-label {
  font-size: 15px;
  font-weight: 600;
}

body .ec-message {
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  border: 2px solid #17171c;
  margin-bottom: 10px;
}
body .ec-message__author {
  color: #f9c22e;
  display: flex;
  align-items: center;
  line-height: 1.2;
}
body .ec-message__avatar {
  border-radius: 50%;
  margin-right: 15px;
}
body .ec-message__meta .ec-message__date {
  float: none;
}
body .ec-message__votes {
  background: none;
}
body .ec-message__reply {
  background: rgba(210, 201, 255, 0.04);
  border-radius: 3px;
}
body .ec-message__reply strong {
  color: #f9c22e;
}
body .ec-stars {
  display: none;
}
body .ec-message__votes-item:nth-child(2) {
  pointer-events: none;
}
body.web-auth .ec-message__votes-item:nth-child(2) {
  pointer-events: auto;
}
body .ec-message__votes-button.enabled:hover, body .ec-message__votes-button.enabled:active, body .ec-message__votes-button.enabled:focus {
  color: #8b8b8b;
}
body .ec-message__votes-button-dislike.active {
  color: red;
}
body .ec-message__votes-button-like.active {
  color: #099d07;
}
body .ec-message__votes-bar span {
  background: #099d07;
}

@media screen and (max-width: 575px) {
  body .ec-message__meta .ec-message__date {
    display: block;
    padding-left: 0;
  }
}
.lazyload, .lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 0.3s;
}

body .selectric {
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  border: 2px solid #17171c;
  color: #fff;
  border-radius: 5px;
  max-width: 250px;
}
body .selectric .label, body .selectric .button {
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
  color: rgba(255, 255, 255, 0.8);
}
body .selectric-hover .selectric {
  border-color: #17171c;
}
body .selectric-open .selectric {
  border-color: rgb(249, 194, 46);
}
body .selectric-wrapper {
  width: 180px;
}
body .selectric-items {
  width: 180px !important;
  border: 2px solid #17171c;
  background: rgb(30.7357142857, 29.5535714286, 36.6464285714);
}
body .selectric-items li {
  position: relative;
  padding-right: 20px;
  color: rgba(255, 255, 255, 0.8);
}
body .selectric-items li:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
body .selectric-items li.selected {
  background: none;
  color: rgb(249, 194, 46);
}
body .selectric-items li.selected:after {
  font-family: "FontAwesome";
  content: "\f00c";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 575px) {
  body .selectric {
    max-width: 100%;
  }
  body .selectric-wrapper {
    width: 100%;
  }
}
body #toast-container > div {
  opacity: 1;
}

.tooltipster-shadow * {
  color: rgb(26, 25, 31) !important;
  line-height: 1.2;
  text-align: center;
  font-size: 14px;
}