/*----------------------------------------
[Master Stylesheet]

Project:	HotFlix
Version:	3.0
Primary use:	HotFlix Template
----------------------------------------*/
/*----------------------------------------
[Table of contents]

1. Header
2. Home
3. Hero
4. Content
5. Section
6. Breadcrumbs
7. Item
8. Filter
9. Paginator
10. Profile
11. Stats
12. Dashbox
13. Plan
14. Accordion
15. Feature
16. How
17. Roadmap
18. Partners
19. Contacts
20. Comments
21. Reviews
22.	Gallery
23. Footer
24. Sign
25. Page 404
26. Modal
27. Splide customization
28. Plyr customization
29. PhotoSwipe customization
30. Scrollbar-track customization

----------------------------------------*/
/*==============================
	Fonts
==============================*/
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600");
/*==============================
	Common styles
==============================*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'inter', sans-serif;
  font-weight: 400;
  background-color: #1a191f;
  -webkit-font-smoothing: antialiased;
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: 0.4s;
  cursor: pointer;
  transition-property: color, background-color, border-color, opacity, box-shadow;
}
button:focus {
  outline: none;
}
a {
  text-decoration: none;
  transition: 0.4s;
  transition-property: color, background-color, border-color, opacity, box-shadow;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
input,
textarea,
select {
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-shadow: none;
  transition: 0.4s ease;
  transition-property: color, border-color, box-shadow;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
select::-ms-expand {
  display: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
::-moz-selection {
  background: #f9ab00;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #f9ab00;
  color: #fff;
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: #c0c0c0;
  opacity: 1;
}
::-moz-placeholder {
  color: #c0c0c0;
  opacity: 1;
}
:-moz-placeholder {
  color: #c0c0c0;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #c0c0c0;
  opacity: 1;
}
body::-webkit-scrollbar {
  width: 16px;
}
body::-webkit-scrollbar-track {
  background: #1a191f;
}
body::-webkit-scrollbar-thumb {
  background-color: #222028;
  outline: 0 solid #fff;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}
/*==============================
	Header
==============================*/
.header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #080808;
  z-index: 101;
  border-bottom: 1px solid #222028;
}
.header__logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  width: auto;
}
.header__logo img {
  width: auto;
  height: 20px;
  display: block;
}
.header__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 70px;
  right: 0;
  bottom: 0;
  background-color: #1a191f;
  z-index: 99;
  width: 300px;
  padding: 30px 30px 0;
  transform: translate3d(300px, 0, 0);
  transition: 0.4s ease;
  border-top: 2px solid #f9ab00;
}
.header__nav--active {
  transform: translate3d(0, 0, 0);
}
.header__nav-item {
  width: 100%;
  display: block;
  height: 30px;
  margin-bottom: 20px;
  position: relative;
}
.header__nav-item:last-child {
  margin-bottom: 0;
}
.header__nav-link {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.header__nav-link i {
  font-size: 10px;
  margin-left: 2px;
}
.header__nav-link--more i {
  font-size: 20px;
  margin-left: 0;
}
.header__nav-link:hover,
.header__nav-link[aria-expanded="true"] {
  color: #f9ab00;
}
.header__dropdown-menu {
  position: absolute;
  background-color: #222028;
  padding: 15px 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 160px;
  border-radius: 8px;
  border: none;
}
.header__dropdown-menu li {
  margin-bottom: 15px;
  width: 100%;
}
.header__dropdown-menu li:last-child {
  margin-bottom: 0;
}
.header__dropdown-menu a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
}
.header__dropdown-menu a i {
  font-size: 20px;
  line-height: 24px;
  margin-right: 8px;
}
.header__dropdown-menu a:hover {
  color: #f9ab00;
}
.header__dropdown-menu--user a {
  font-size: 14px;
  text-transform: uppercase;
}
.header__dropdown-menu.show {
  display: flex;
}
.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}
.header__auth {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-right: 42px;
}
.header__sign-in {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 8px;
  margin-left: 20px;
  border: 2px solid #f9ab00;
}
.header__sign-in span {
  display: none;
}
.header__sign-in i {
  color: #fff;
  font-size: 20px;
}
.header__sign-in:hover {
  background-color: rgba(249,171,0,0.05);
}
.header__sign-in:hover span {
  color: #fff;
}
.header__btn {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -22px;
  width: 22px;
  height: 40px;
}
.header__btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 22px;
  background: #000;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.4s ease;
  top: 13px;
  background-color: #fff;
  border-radius: 2px;
}
.header__btn span:nth-child(2) {
  top: 21px;
}
.header__btn span:nth-child(3) {
  top: 29px;
}
.header__btn--active span {
  background-color: #f9ab00;
}
.header__btn--active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.header__btn--active span:nth-child(2) {
  opacity: 0;
}
.header__btn--active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}
.header__lang {
  position: relative;
  margin-left: 20px;
}
.header__lang .header__dropdown-menu {
  width: 120px;
  min-width: 120px;
}
.header__lang .header__nav-link {
  height: 40px;
}
.header__profile {
  position: relative;
}
.header__profile .header__dropdown-menu {
  width: 170px;
  min-width: 170px;
}
.header__search-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  color: #fff;
  font-size: 20px;
}
.header__search-btn:hover {
  color: #f9ab00;
}
.header__search {
  position: absolute;
  background-color: #1a191f;
  top: -70px;
  right: -15px;
  left: -15px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  padding: 0 15px;
  pointer-events: none;
  transition: top 0.4s ease;
}
.header__search--active {
  top: 0;
  pointer-events: auto;
}
.header__search-input {
  width: calc(100% - 35px);
  height: 40px;
  border-radius: 8px;
  background-color: #222028;
  border: 2px solid transparent;
  font-size: 16px;
  color: #fff;
  padding: 0 50px 0 20px;
}
.header__search-input:focus {
  border-color: #f9ab00;
}
.header__search-button {
  position: absolute;
  height: 40px;
  color: #fff;
  font-size: 20px;
  top: 50%;
  margin-top: -20px;
  right: 75px;
}
.header__search-button:hover {
  color: #f9ab00;
}
.header__search-close {
  position: absolute;
  height: 40px;
  color: #fff;
  font-size: 20px;
  top: 50%;
  margin-top: -20px;
  right: 15px;
}
.header__search-close:hover {
  color: #eb5757;
}
@media (min-width: 576px) {
  .header__sign-in,
  .header__lang {
    margin-left: 30px;
  }
  .header__auth {
    margin-right: 52px;
  }
}
@media (min-width: 768px) {
  .header__content {
    height: 80px;
  }
  .header__logo {
    height: 80px;
  }
  .header__logo img {
    height: 24px;
  }
  .header__auth {
    margin-right: 52px;
  }
  .header__sign-in {
    height: 40px;
    width: 120px;
    margin-left: 30px;
  }
  .header__sign-in i {
    display: none;
  }
  .header__sign-in span {
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.4s;
  }
  .header__sign-in--user {
    width: auto;
    padding: 0 24px;
  }
  .header__nav {
    top: 80px;
    width: 260px;
    transform: translate3d(260px, 0, 0);
  }
  .header__nav--active {
    transform: translate3d(0, 0, 0);
  }
  .header__search {
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .header__sign-in {
    margin-left: 30px;
  }
  .header__auth {
    margin-right: 0;
  }
  .header__btn {
    display: none;
  }
  .header__nav {
    transform: translate3d(0, 0, 0);
    padding: 0;
    background-color: transparent;
    width: auto;
    flex-direction: row;
    align-items: center;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    margin-left: auto;
    box-shadow: none;
    border: none;
    transition: 0s;
  }
  .header__nav-item {
    margin-right: 35px;
    height: 40px;
    width: auto;
    margin-bottom: 0;
  }
  .header__nav-item:last-child {
    margin-right: 0;
  }
  .header__nav-link {
    height: 40px;
  }
  .header__content {
    justify-content: flex-start;
  }
  .header__auth {
    margin-left: auto;
   
    width: 432px;
  }
  .header__lang {
    margin-left: 24px;
    margin-right: auto;
  }
  .header__search-btn {
    display: none;
  }
  .header__search-close {
    display: none;
  }
  .header__search {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    padding: 0;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    background-color: transparent;
  }
  .header__search-input {
    width: 204px;
  }
  .header__search-button {
    right: 20px;
  }
}
@media (min-width: 1400px) {
  .header__auth {
    width: 492px;
  }
  .header__lang {
    margin-left: 30px;
  }
  .header__nav-item {
    margin-right: 45px;
  }
  .header__nav-item:last-child {
    margin-right: 0;
  }
  .header__search-input {
    width: 350px;
  }
}
/*==============================
	Home
==============================*/
.home {
  margin-top: 70px;
  position: relative;
  display: block;
  background-color: #121212;
  padding: 50px 0;
  overflow: hidden;
}
.home .container {
  position: relative;
  z-index: 3;
}
.home__title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 32px;
  line-height: 42px;
  margin: 0;
  padding-right: 100px;
}
.home__title b {
  font-weight: 600;
}
.home__carousel {
  margin-top: 24px;
}
.home--bg {
  border-bottom: 1px solid #222028;
}
.home--bg:before {
  content: '';
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: url("../img/bg/home__bg.jpg") no-repeat center/cover;
  opacity: 0.2;
}
.home--bg:after {
  content: '';
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: linear-gradient(0deg, #1a191f 0%, #1a191f 25%, rgba(26,25,31,0) 100%);
}
.home--hero {
  padding: 35px 0;
  border-bottom: 1px solid #222028;
}
@media (min-width: 768px) {
  .home {
    margin-top: 80px;
    padding: 70px 0;
  }
  .home__title {
    font-size: 36px;
    padding-right: 120px;
  }
  .home__carousel {
    margin-top: 34px;
  }
  .home--hero {
    padding: 35px 0;
  }
}
@media (min-width: 1200px) {
  .home__title {
    font-size: 32px;
  }
}
/*==============================
	Hero
==============================*/
.hero {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.hero__slide {
  padding: 0 20px;
  width: 100%;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
.hero__slide:before,
.hero__slide:after {
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
.hero__slide:before {
  background-color: rgba(0,0,0,0.25);
  z-index: 1;
}
.hero__slide:after {
  background: linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 560px;
  width: 100%;
  position: relative;
  z-index: 3;
  padding-bottom: 40px;
  padding-right: 20px;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
.hero__title {
  font-size: 32px;
  line-height: 42px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 15px;
  position: relative;
}
.hero__title sub {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 20px;
  bottom: 50%;
  transform: translateY(50%);
  position: relative;
  margin-left: 10px;
  background-color: rgba(26,25,31,0.2);
  border: 2px solid transparent;
  border-radius: 50%;
}
.hero__title sub.green {
  border-color: #29b474;
}
.hero__title sub.yellow {
  border-color: #ffc312;
}
.hero__title sub.red {
  border-color: #eb5757;
}
.hero__text {
  font-size: 16px;
  line-height: 26px;
  color: #c0c0c0;
  margin-bottom: 20px;
}
.hero__category {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__category a {
  font-size: 16px;
  line-height: 20px;
  position: relative;
  color: #f9ab00;
  margin-right: 10px;
}
.hero__category a:after {
  content: ',';
  position: absolute;
  display: block;
  left: 100%;
  top: 0;
  color: #f9ab00;
}
.hero__category a:last-child {
  margin-right: 0;
}
.hero__category a:last-child:after {
  display: none;
}
.hero__category a:hover {
  text-decoration: underline;
}
.hero__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.hero__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 160px;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #f9ab00;
  margin-top: 20px;
}
.hero__btn:hover {
  color: #fff;
  background-color: rgba(249,171,0,0.05);
}
@media (min-width: 768px) {
  .hero__slide {
    padding: 0 60px;
  }
  .hero__content {
    padding-bottom: 50px;
    padding-right: 25%;
  }
  .hero__title {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (min-width: 992px) {
  .hero__content {
    padding-right: 0;
  }
  .hero__text {
    padding-right: 40%;
  }
}
@media (min-width: 1200px) {
  .hero__slide {
    padding: 0 120px;
  }
  .hero__title {
    font-size: 42px;
  }
  .hero__text {
    padding-right: 50%;
  }
}
@media (min-width: 1400px) {
  .hero__text {
    padding-right: 55%;
  }
}
/*==============================
	Section
==============================*/
.section {
  padding: 50px 0;
  position: relative;
}
.section__title-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.section__title {
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
  margin-bottom: 0;
}
.section__title b {
  font-weight: 600;
}
.section__title--head {
    font-size: 32px;      /* Default for desktop */
    font-weight: 700;
    line-height: 1.3;
	margin-bottom:15px
}

/* Large tablets & small desktops */
@media (max-width: 1199px) {
    .section__title--head {
        font-size: 28px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .section__title--head {
        font-size: 26px;
    }
}

/* Large mobile */
@media (max-width: 767px) {
    .section__title--head {
        font-size: 24px;
    }
}

/* Small mobile */
@media (max-width: 575px) {
    .section__title--head {
        font-size: 18px;
    }
}
.section__title--mt {
  margin-top: 50px;
}
.section__text {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 26px;
  margin-top: 15px;
  margin-bottom: 0;
}
.section__text b {
  font-weight: 600;
  color: #fff;
}
.section__text a {
  color: #f9ab00;
}
.section__text a:hover {
  color: #f9ab00;
  text-decoration: underline;
}
.section__text:first-child {
  margin-top: 0;
}
.section__list ol {
  padding-left: 0;
  list-style: none;
  counter-reset: li;
  margin-bottom: 0;
}
.section__list ol ol {
  padding-left: 15px;
  margin-top: 10px;
}
.section__list ol ol ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.section__list ol ol ol li {
  margin-top: 5px;
}
.section__list ol h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 20px;
}
.section__list ol li {
  font-size: 16px;
  line-height: 26px;
  color: #c0c0c0;
  position: relative;
}
.section__list ol li b {
  font-weight: 600;
  color: #fff;
}
.section__list ol li a {
  color: #f9ab00;
}
.section__list ol li a:hover {
  color: #f9ab00;
  text-decoration: underline;
}
.section__list ol li:last-child {
  margin-bottom: 0;
}
.section__list ol li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
}
.section__view {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 70px;
  padding: 0 15px;
  height: 36px;
  color: #fff;
  border-radius: 8px;
  background-color: #222028;
  font-size: 14px;
  margin-top: 20px;
  text-transform: uppercase;
}
.section__view:hover {
  color: #f9ab00;
}
.section__carousel {
  margin-top: 24px;
}
.section__wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.section__more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 160px;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #f9ab00;
  margin: 50px auto 0;
}
.section__more:hover {
  color: #fff;
  background-color: rgba(249,171,0,0.05);
}
.section__item-filter {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.section__item-select {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-top: 15px;
  margin-right: 15px;
  padding: 0 20px;
  border-radius: 8px;
  border: none;
  background: #222028;
}
.section__item-select:focus {
  box-shadow: none;
}
.section__item-select:last-child {
  margin-right: 0;
}
.section__item-select .ss-single {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  padding: 0;
  margin: 0 !important;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.section__item-select .ss-arrow {
  width: 8px;
  height: 8px;
  margin: 1px 0 0 6px;
}
.section__item-select .ss-arrow path {
  stroke: #fff;
}
.section__item-select .ss-search {
  padding: 0;
  margin-bottom: 15px;
  font-size: 16px;
  color: #c0c0c0;
  width: 100%;
}
.section__item-select .ss-search:last-child {
  margin-bottom: 0;
}
.section__item-select .ss-search input {
  padding: 0;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 40px;
}
.section__item-select .ss-search input:focus {
  box-shadow: none;
}
.section__item-select .ss-search input::placeholder {
  color: #c0c0c0;
}
.section__item-select .ss-list {
  width: 100%;
}
.section__item-select .ss-list .ss-option {
  font-size: 16px;
  color: #fff;
  line-height: 38px;
  padding: 0;
  transition: 0.4s ease;
}
.section__item-select .ss-list .ss-option:hover {
  background-color: transparent;
  color: #f9ab00;
}
.section__item-select .ss-list .ss-option.ss-selected {
  background-color: transparent !important;
  color: #f9ab00 !important;
}
.section__item-select.ss-content {
  flex-direction: column;
  align-items: flex-start;
  border: none;
  border-radius: 8px;
  min-width: 130px;
  padding: 15px 20px;
  background: #222028;
  box-shadow: none;
}
.section__item-select.ss-open-below,
.section__item-select.ss-open-above {
  border-radius: 8px;
}
.section__details-bg {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #1a191f;
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
}
.section__details-bg:after {
  content: '';
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: linear-gradient(0deg, #1a191f 0%, #1a191f 25%, rgba(26,25,31,0) 100%);
}
.section__roadmap {
  display: block;
  position: relative;
  margin-top: 24px;
  width: 100%;
  background-color: #222028;
  border-radius: 8px;
  padding: 30px 20px;
}
.section__roadmap:before {
  content: '';
  position: absolute;
  display: block;
  height: 4px;
  top: 82px;
  right: 20px;
  left: 20px;
  border-radius: 4px;
  background: #f9ab00;
}
.section--catalog {
  padding: 0 0 50px;
}
.section--first {
  margin-top: 70px;
  border-bottom: 1px solid #222028;
}
.section--details {
  margin-top: 41px;
  border-bottom: 1px solid #222028;
}
.section--details .container {
  position: relative;
  z-index: 4;
}
.section--border {
  border-top: 1px solid #222028;
}
.section--blue {
  background-color: #222028;
}
.section--notitle {
  padding-top: 26px;
}
.section--pt {
  padding-top: 0;
}
@media (min-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .section__title-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .section__title {
    font-size: 36px;
    line-height: 46px;
  }
  .section__title--mt {
    margin-top: 70px;
  }
  .section__wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .section__view {
    margin-top: 0;
  }
  .section__view--carousel {
    margin-right: 117px;
  }
  .section__roadmap {
    padding: 30px 30px 40px;
  }
  .section__roadmap:before {
    left: 30px;
    right: 30px;
    top: 87px;
  }
  .section--catalog {
    padding: 0 0 70px;
  }
  .section--first {
    padding: 50px 0;
  }
  .section--first,
  .section--details {
    margin-top: 45px;
  }
  .section--notitle {
    padding-top: 46px;
  }
  .section--pt {
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .section__title--sidebar {
    margin-top: 24px;
  }
}
@media (min-width: 1200px) {
  .section__title--head {
    font-size: 30px;
  }
  .section__title--mt {
    margin-top: 0;
  }
  .section__roadmap {
    padding: 30px;
  }
}
/*==============================
	Content
==============================*/
.content {
  padding-bottom: 50px;
}
.content__head {
  background-color: #1a191f;
  margin-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #222028;
  padding-top: 25px;
}
.content__title {
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  margin-bottom: 15px;
}
.content__tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  border: none;
}
.content__tabs li {
  margin-right: 30px;
}
.content__tabs li:last-child {
  margin-right: 0;
}
.content__tabs button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  color: #fff;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
}
.content__tabs button:hover {
  color: #f9ab00;
}
.content__tabs button:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  display: block;
  background: #f9ab00;
  box-shadow: none;
  transition: 0.4s ease;
  border-radius: 2px 2px 0 0;
}
.content__tabs button.active {
  color: #f9ab00;
}
.content__tabs button.active:before {
  height: 2px;
}
@media (min-width: 768px) {
  .content {
    padding-bottom: 70px;
  }
  .content__title {
    font-size: 36px;
  }
  .content__tabs--profile button {
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .content__tabs li {
    margin-right: 35px;
  }
  .content__tabs li:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .content__tabs li {
    margin-right: 40px;
  }
  .content__tabs li:last-child {
    margin-right: 0;
  }
}
/*==============================
	Breadcrumbs
==============================*/
.breadcrumbs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
}
.breadcrumbs__item {
  font-size: 16px;
  color: #fff;
  transition: 0.4s ease;
  position: relative;
  margin-right: 36px;
}
.breadcrumbs__item:before {
  content: '\ea1c';
  position: absolute;
  font-family: 'tabler-icons';
  color: #c0c0c0;
  left: 100%;
  top: 0;
  font-size: 18px;
  line-height: 26px;
  margin-left: 9px;
}
.breadcrumbs__item:hover {
  color: #fff;
}
.breadcrumbs__item--active {
  cursor: default;
  margin-right: 0;
}
.breadcrumbs__item--active:before {
  display: none;
}
.breadcrumbs__item--active:hover {
  color: #fff;
}
.breadcrumbs a {
  color: #c0c0c0;
}
.breadcrumbs a:hover {
  color: #f9ab00;
}
@media (min-width: 768px) {
  .breadcrumbs {
    margin-top: 0;
  }
}
/*==============================
	Item
==============================*/
.item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  margin-top: 24px;
}
.item--hero,
.item--carousel {
  margin-top: 0;
}
.item__cover {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #000;
}
.item__cover img {
  width: 100%;
  transition: opacity 0.4s;
}
.item__cover:hover img {
  opacity: 0.5;
}
.item__cover:hover .item__play {
  opacity: 1;
  transform: scale(1);
}
.item__play {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  z-index: 3;
  font-size: 24px;
  color: #f9ab00;
  transition: 0.4s ease;
  transform: scale(0.9);
  transition-property: opacity, background-color, color, border-color, transform;
  opacity: 0;
  border: 6px solid rgba(255,255,255,0.15);
}
.item__play i {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
}
.item__play:hover {
  border-color: rgba(249,171,0,0.5);
  color: #f9ab00;
}
.item__content {
  position: relative;
  display: block;
  margin-top: 10px;
  width: 100%;
}
.item__title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  word-wrap: break-word;
  transition: 0.4s ease;
}
.item__title a {
  color: #fff;
}
.item__title a:hover {
  color: #f9ab00;
}
.item__title:hover {
  color: #f9ab00;
}
.item__category {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
}
.item__category a {
  font-size: 14px;
  position: relative;
  color: #f9ab00;
  margin-right: 10px;
}
.item__category a:after {
  content: ',';
  position: absolute;
  display: block;
  left: 100%;
  top: 0;
  color: #f9ab00;
}
.item__category a:last-child {
  margin-right: 0;
}
.item__category a:last-child:after {
  display: none;
}
.item__category a:hover {
  text-decoration: underline;
}
.item__rate {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  top: 15px;
  left: 15px;
  background-color: rgba(26,25,31,0.6);
  border: 2px solid transparent;
  border-radius: 50%;
}
.item__rate--green {
  border-color: #29b474;
}
.item__rate--yellow {
  border-color: #ffc312;
}
.item__rate--red {
  border-color: #eb5757;
}
.item__favorite {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  top: 15px;
  right: 15px;
  background-color: #1a191f;
  border-radius: 8px;
  font-size: 18px;
  color: #fff;
}
.item__favorite:hover {
  color: #f9ab00;
}
.item__favorite--active {
  color: #f9ab00;
}
.item__favorite--active:hover {
  color: #eb5757;
}
.item__meta {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  padding: 10px;
}
.item__meta span {
  color: #fff;
  margin-right: 2px;
}
.item__meta li {
  
  flex-direction: row;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
}
.item__meta li:last-child {
  margin-bottom: 0;
}
.item__meta a {
  font-size: 16px;
  position: relative;
  color: #f9ab00;
  margin-right: 8px;
  text-decoration:underline;
}

.item__meta a:last-child {
  margin-right: 0;
}
.item__meta a:last-child:after {
  display: none;
}
.item__meta a:hover {
  text-decoration: underline;
}
.item__description {
  display: block;
  position: relative;
  margin-top: 24px;
  max-height: 200px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #222028;
}
.item__description p {
  padding: 15px 20px 0;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 0;
}
.item__description p:last-child {
  padding-bottom: 15px;
}
.item--details {
  display: block;
}
.item--details .item__cover {
  max-width: 250px;
}
.item--details .item__cover:hover img {
  opacity: 1;
}
.item--details .item__cover:hover:before {
  opacity: 0;
}
.item--details .item__content {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .item--hero .item__title {
    font-size: 20px;
  }
  .item--hero .item__rate {
    top: 20px;
    left: 20px;
  }
  .item--hero .item__favorite {
    top: 20px;
    right: 20px;
  }
  .item--details .item__cover {
    max-width: 100%;
  }
  .item--details .item__content {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
  }
  .item--details .item__description {
    max-height: 175px;
  }
}
@media (min-width: 992px) {
  .item--details .item__description {
    max-height: 200px;
  }
}
@media (min-width: 1200px) {
  .item--hero .item__title {
    font-size: 22px;
  }
  .item--hero .item__play {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin: -35px 0 0 -35px;
  }
  .item--hero .item__category a {
    font-size: 16px;
  }
  .item--details {
    margin-bottom: 0;
  }
  .item--details .item__description {
    max-height: 140px;
  }
  .item__cover:hover .item__favorite {
    opacity: 1;
    transform: scale(1);
  }
  .item__favorite {
    transition: 0.4s ease;
    transform: scale(0.9);
    transition-property: opacity, background-color, color, border-color, transform;
    opacity: 0;
  }
  .item__favorite--static {
    opacity: 1;
    transform: scale(1);
  }
  .item__favorite--active {
    opacity: 1;
    transform: scale(1);
  }
}
@media (min-width: 1400px) {
  .item--details .item__description {
    max-height: 160px;
  }
}
/*==============================
	Filter
==============================*/
.filter {
  position: relative;
  width: 100%;
  background-color: #1a191f;
  margin-bottom: 10px;
  border-bottom: 1px solid #222028;
}
.filter--fixed {
  position: sticky;
  top: 0;
  z-index: 102;
}
.filter--hidden {
  z-index: 90;
}
.filter__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}
.filter__menu {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 30px;
  font-size: 16px;
  color: #fff;
}
.filter__menu i {
  font-size: 20px;
  margin-right: 4px;
}
.filter__amount {
  font-size: 14px;
  font-weight: 400;
  color: #c0c0c0;
  line-height: 30px;
}
.filter__items {
  display: none;
}
.filter__select {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-width: 120px;
  margin-right: 20px;
  padding: 0 20px;
  border-radius: 8px;
  border: none;
  background: #222028;
}
.filter__select:focus {
  box-shadow: none;
}
.filter__select:last-child {
  margin-right: 0;
}
.filter__select .ss-single {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  padding: 0;
  margin: 0 !important;
  color: #fff;
  font-size: 16px;
}
.filter__select .ss-arrow {
  width: 8px;
  height: 8px;
  margin: 3px 0 0 6px;
}
.filter__select .ss-arrow path {
  stroke: #fff;
}
.filter__select .ss-search {
  padding: 0;
  margin-bottom: 15px;
  font-size: 16px;
  color: #c0c0c0;
  width: 100%;
}
.filter__select .ss-search:last-child {
  margin-bottom: 0;
}
.filter__select .ss-search input {
  padding: 0;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 40px;
}
.filter__select .ss-search input:focus {
  box-shadow: none;
}
.filter__select .ss-search input::placeholder {
  color: #c0c0c0;
}
.filter__select .ss-list {
  width: 100%;
}
.filter__select .ss-list .ss-option {
  font-size: 16px;
  color: #fff;
  line-height: 38px;
  padding: 0;
  transition: 0.4s ease;
}
.filter__select .ss-list .ss-option:hover {
  background-color: transparent;
  color: #f9ab00;
}
.filter__select .ss-list .ss-option.ss-selected {
  background-color: transparent !important;
  color: #f9ab00 !important;
}
.filter__select.ss-content {
  flex-direction: column;
  align-items: flex-start;
  border: none;
  border-radius: 8px;
  min-width: 160px;
  padding: 15px 20px;
  background: #222028;
  box-shadow: none;
}
.filter__select.ss-open-below,
.filter__select.ss-open-above {
  border-radius: 8px;
}
.filter__btn {
  display: none;
}
@media (min-width: 768px) {
  .filter__content {
    padding: 0;
    height: 80px;
  }
  .filter__menu {
    display: none;
  }
  .filter__amount {
    display: none;
  }
  .filter__items {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .filter__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100px;
    border-radius: 8px;
    background-color: transparent;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #f9ab00;
  }
  .filter__btn:hover {
    color: #fff;
    background-color: rgba(249,171,0,0.05);
  }
}
@media (min-width: 992px) {
  .filter__btn {
    width: 120px;
  }
}
@media (min-width: 1200px) {
  .filter__select {
    margin-right: 30px;
    min-width: 124px;
  }
  .filter__select:last-child {
    margin-right: 0;
  }
}
.mfilter {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  z-index: 105;
  top: 70px;
  bottom: 0;
  left: 0;
  width: 300px;
  background-color: #1a191f;
  box-shadow: none;
  transition: transform 0.4s ease;
  transform: translate3d(-300px, 0, 0);
  border-top: 2px solid #f9ab00;
}
.mfilter--active {
  transform: translate3d(0, 0, 0);
}
.mfilter__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.mfilter__title {
  color: #fff;
  font-size: 20px;
  line-height: 100%;
  font-weight: 400;
  margin-bottom: 0;
}
.mfilter__close {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #c0c0c0;
  font-size: 20px;
  width: 20px;
  height: 20px;
}
.mfilter__select-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.mfilter__apply {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100%;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #f9ab00;
  margin-top: auto;
}
.mfilter__apply:hover {
  color: #fff;
  background-color: rgba(249,171,0,0.05);
}
@media (min-width: 768px) {
  .mfilter {
    display: none;
  }
}
/*==============================
	Paginator
==============================*/
.paginator-mob {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}
.paginator-mob--comments {
  margin-top: 24px;
  margin-bottom: 24px;
}
.paginator-mob__pages {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: auto;
  padding: 0 15px;
  color: #c0c0c0;
  border-radius: 8px;
  background-color: #222028;
  font-size: 14px;
}
.paginator-mob__nav {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.paginator-mob__nav li {
  margin-right: 15px;
}
.paginator-mob__nav li:first-child a {
  padding-left: 10px;
}
.paginator-mob__nav li:first-child a span {
  margin-left: 4px;
}
.paginator-mob__nav li:last-child {
  margin-right: 0;
}
.paginator-mob__nav li:last-child a {
  padding-right: 10px;
}
.paginator-mob__nav li:last-child a span {
  margin-right: 4px;
}
.paginator-mob__nav a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: auto;
  padding: 0 15px;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  background-color: #222028;
}
.paginator-mob__nav a span {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}
.paginator-mob__nav a i {
  font-size: 20px;
}
.paginator-mob__nav a:hover {
  color: #f9ab00;
}
@media (min-width: 768px) {
  .paginator-mob {
    display: none;
  }
}
.paginator {
  display: none;
}
@media (min-width: 768px) {
  .paginator {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 50px;
  }
  .paginator--comments {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .paginator__item {
    margin-right: 15px;
  }
  .paginator__item a,
  .paginator__item span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    height: 40px;
    width: 40px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    background-color: #222028;
    border: 1px solid transparent;
  }
  .paginator__item span {
    cursor: default;
  }
  .paginator__item:last-child {
    margin-right: 0;
  }
  .paginator__item:hover a {
    color: #f9ab00;
  }
  .paginator__item--prev a,
  .paginator__item--next a {
    font-size: 20px;
  }
  .paginator__item--active a {
    color: #fff;
    cursor: default;
    border-color: #f9ab00;
  }
  .paginator__item--active a:hover {
    color: #fff;
  }
}
/*==============================
	Profile
==============================*/
.profile {
  background-color: #1a191f;
  border-bottom: 1px solid #222028;
  margin-bottom: 10px;
}
.profile__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding-top: 20px;
}
.profile__user {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}
.profile__avatar {
  display: block;
  position: relative;
  width: 40px;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 15px;
}
.profile__avatar img {
  width: 100%;
}
.profile__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.profile__meta h3 {
  color: #fff;
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
.profile__meta span {
  color: #c0c0c0;
  font-size: 14px;
  line-height: 20px;
}
.profile__logout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 0;
  top: 20px;
  border-radius: 8px;
  background-color: transparent;
  border: 2px solid #f9ab00;
}
.profile__logout:hover {
  background-color: rgba(249,171,0,0.05);
}
.profile__logout span {
  display: none;
}
.profile__logout i {
  color: #fff;
  font-size: 20px;
}
@media (min-width: 768px) {
  .profile__content {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    height: 80px;
  }
  .profile__user {
    margin-bottom: 0;
    margin-right: 60px;
  }
  .profile__logout {
    margin-left: auto;
    margin-top: 0;
    width: 120px;
    position: relative;
    top: auto;
    right: auto;
  }
  .profile__logout i {
    display: none;
  }
  .profile__logout span {
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
  }
}
@media (min-width: 1200px) {
  .profile__user {
    margin-right: 80px;
  }
}
@media (min-width: 1400px) {
  .profile__user {
    margin-right: 100px;
  }
}
/*==============================
	Stats
==============================*/
.stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin-top: 24px;
  padding: 20px;
  border-radius: 8px;
  background-color: #0c0c0c;
  width: 100%;
}
.stats:hover {
  background-color: #4a4a4a;   /* darker shade on hover */
  transform: translateY(-4px); /* slight lift effect */
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  cursor: pointer;
}
.stats span {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
.stats p {
  font-size: 18px;
  line-height: 26px;
  color: #c0c0c0;
  margin-bottom: 0;
}
.stats p a {
  color: #fff;
}
.stats p a:hover {
  color: #f9ab00;
}
.stats i {
  font-size: 42px;
  position: absolute;
  bottom: 15px;
  right: 20px;
  color: #f9ab00;
  line-height: 100%;
}
@media (min-width: 768px) {
  .stats {
    padding: 20px 30px;
	border: 2.5px solid #ffb100;
  }
  .stats i {
    right: 30px;
  }
}
/*==============================
	Dashbox
==============================*/
.dashbox {
  background-color: #222028;
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
}
.dashbox__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #1a191f;
}
.dashbox__title h3 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
}
.dashbox__title h3 i {
  font-size: 20px;
  margin-right: 10px;
  color: #ffc312;
  line-height: 30px;
}
.dashbox__wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.dashbox__more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 30px;
  background-color: #1a191f;
  padding: 0 10px;
  font-size: 14px;
  margin-left: 15px;
  color: #fff;
  border-radius: 8px;
}
.dashbox__more:hover {
  color: #f9ab00;
}
.dashbox__refresh {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 20px;
}
.dashbox__refresh:hover {
  color: #f9ab00;
}
.dashbox__table-wrap {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 0;
}
.dashbox__table {
  width: 100%;
  min-width: 500px;
  border-spacing: 0;
}
.dashbox__table thead {
  border-bottom: 1px solid #1a191f;
}
.dashbox__table thead th {
  font-size: 12px;
  color: #c0c0c0;
  font-weight: 400;
  padding: 0 10px 15px 0;
  line-height: 100%;
  margin-bottom: 0;
  border: none;
}
.dashbox__table thead th:first-child {
  padding-left: 20px;
}
.dashbox__table tbody tr {
  border-bottom: none;
  background-color: transparent;
}
.dashbox__table tbody td {
  padding: 0;
  background-color: transparent;
  border: 0px solid transparent;
}
.dashbox__table tbody td:first-child {
  padding-left: 20px;
}
.dashbox__table tbody td:last-child .dashbox__table-text {
  padding-right: 0;
}
.dashbox__table-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
  padding: 10px 15px 0 0;
  background-color: transparent;
  white-space: nowrap;
}
.dashbox__table-text a {
  color: #fff;
}
.dashbox__table-text a:hover {
  color: #f9ab00;
}
.dashbox__table-text i {
  font-size: 14px;
  margin-right: 6px;
  color: #ffc312;
  line-height: 24px;
  margin-top: 1px;
}
.dashbox__table-text--rate {
  font-weight: 600;
  font-size: 16px;
}
.dashbox__table-text--rate i {
  font-size: 16px;
  font-weight: normal;
}
.dashbox__table-text--red {
  color: #eb5757;
}
.dashbox__table-text--green {
  color: #29b474;
}
.dashbox__table-text--grey {
  color: #c0c0c0;
}
@media (min-width: 768px) {
  .dashbox {
    margin-top: 30px;
  }
  .dashbox__title {
    padding: 20px 30px;
  }
  .dashbox__table thead th:first-child {
    padding-left: 30px;
  }
  .dashbox__table tbody td:first-child {
    padding-left: 30px;
  }
}
/*==============================
	Plan
==============================*/
.plan {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  background-color: #222028;
  border-radius: 8px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.plan:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-color: #f9ab00;
}
.plan--orange:before {
  background-color: #f06629;
}
.plan--orange .plan__price {
  color: #f06629;
}
.plan--orange .plan__btn {
  border-color: #f06629;
}
.plan--orange .plan__btn:hover {
  background-color: rgba(240,102,41,0.05);
}
.plan--red:before {
  background-color: #eb5757;
}
.plan--red .plan__price {
  color: #eb5757;
}
.plan--red .plan__btn {
  border-color: #eb5757;
}
.plan--red .plan__btn:hover {
  background-color: rgba(235,87,87,0.05);
}
.plan--active .plan__btn {
  pointer-events: none;
  opacity: 0.7;
}
.plan__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}
.plan__price {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  color: #f9ab00;
  position: absolute;
  top: 20px;
  right: 20px;
}
.plan__price sub {
  font-size: 14px;
  bottom: 1px;
  font-weight: 600;
}
.plan__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
}
.plan__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}
.plan__item i {
  font-size: 20px;
  margin-right: 10px;
  line-height: 100%;
  color: #29b474;
}
.plan__item--none {
  color: #c0c0c0;
}
.plan__item--none i {
  color: #c0c0c0;
}
.plan__item:last-child {
  margin-bottom: 0;
}
.plan__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 100%;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #f9ab00;
  margin-top: 20px;
}
.plan__btn:hover {
  color: #fff;
  background-color: rgba(249,171,0,0.05);
}
@media (min-width: 768px) {
  .plan {
    padding: 30px;
  }
  .plan__price {
    top: 30px;
    right: 30px;
  }
  .plan__list {
    margin-top: 0px;
  }
  .plan__btn {
    margin-top: 30px;
  }
}
/*==============================
	Accordion
==============================*/
.accordion__card {
  background-color: #222028;
  border-radius: 8px;
  margin-top: 24px;
  border: none;
}
.accordion__card button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 80px;
  padding: 20px 80px 20px 20px;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-align: left;
}
.accordion__card button span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #1a191f;
  position: absolute;
  right: 20px;
  top: 20px;
  overflow: hidden;
}
.accordion__card button span svg {
  width: 20px;
  height: auto;
  fill: #fff;
  position: absolute;
  z-index: 2;
  transition: 0.4s ease;
  transition-property: transform, fill;
}
.accordion__card button span svg:last-child {
  transform: rotate(-90deg);
}
.accordion__card button:hover span svg {
  fill: #f9ab00;
}
.accordion__card button[aria-expanded="true"] span svg {
  fill: #f9ab00;
}
.accordion__card button[aria-expanded="true"] span svg:last-child {
  transform: rotate(0deg);
}
.accordion__card p {
  padding: 0 20px 20px;
  color: #c0c0c0;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.accordion__card p b,
.accordion__card p strong {
  font-weight: 600;
}
.accordion__card p:first-child {
  border-top: 1px solid #1a191f;
  padding: 20px;
}
@media (min-width: 768px) {
  .accordion__card button {
    padding: 20px 90px 20px 30px;
  }
  .accordion__card button span {
    right: 30px;
  }
  .accordion__card p {
    padding: 0 30px 20px;
  }
  .accordion__card p:first-child {
    padding: 20px 30px;
  }
}
/*==============================
	Feature
==============================*/
.feature {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  margin-top: 24px;
  padding-left: 60px;
  padding-right: 15px;
}
.feature i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 42px;
  color: #f9ab00;
}
.feature__title {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 15px;
}
.feature__text {
  display: block;
  color: #c0c0c0;
  font-size: 16px;
  line-height: 26px;
  width: 100%;
  margin-bottom: 0;
}
.feature__text a {
  color: #f9ab00;
}
.feature__text a:hover {
  color: #f9ab00;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .feature {
    margin-top: 34px;
  }
}
@media (min-width: 1200px) {
  .feature {
    padding-right: 40px;
  }
}
/*==============================
	How
==============================*/
.how {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  background-color: #222028;
  border-radius: 8px;
  margin-top: 24px;
  position: relative;
}
.how__number {
  font-size: 46px;
  line-height: 100%;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  color: #f9ab00;
  width: 100%;
}
.how__title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
}
.how__text {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 26px;
  width: 100%;
  margin-bottom: 0;
}
.how__text b {
  font-weight: 600;
}
.how__text a {
  color: #f9ab00;
}
.how__text a:hover {
  color: #f9ab00;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .how {
    padding: 30px;
  }
}
/*==============================
	Roadmap
==============================*/
.roadmap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
}
.roadmap:before,
.roadmap:after {
  content: '';
  position: absolute;
  display: block;
  border-radius: 50%;
}
.roadmap:before {
  width: 24px;
  height: 24px;
  left: 0;
  top: 42px;
  background-color: #fff;
  opacity: 0.12;
  z-index: 1;
}
.roadmap:after {
  width: 10px;
  height: 10px;
  left: 7px;
  top: 49px;
  background-color: #fff;
  z-index: 2;
}
.roadmap--active:before,
.roadmap--active:after {
  background: #f9ab00;
}
.roadmap--active:after {
  width: 16px;
  height: 16px;
  left: 4px;
  top: 46px;
}
.roadmap--active .roadmap__list li:before {
  background: #f9ab00;
}
.roadmap__title {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 400;
  display: block;
  margin-bottom: 50px;
  margin-left: 10px;
}
.roadmap__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(100% - 10px);
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  margin-left: 10px;
}
.roadmap__list li {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}
.roadmap__list li:last-child {
  margin-bottom: 0;
}
.roadmap__list li:before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #fff;
  opacity: 1;
  top: 11px;
  left: 0;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .roadmap:before {
    top: 47px;
  }
  .roadmap:after {
    top: 54px;
  }
  .roadmap--active:before {
    top: 47px;
  }
  .roadmap--active:after {
    top: 51px;
  }
  .roadmap__title {
    margin-bottom: 60px;
  }
  .roadmap__list li {
    margin-bottom: 15px;
  }
  .roadmap__list li:last-child {
    margin-bottom: 0;
  }
}
/*==============================
	Partners
==============================*/
.partner {
  display: block;
  width: 100%;
  margin-top: 30px;
}
.partner__img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  transition: opacity 0.4s ease;
  opacity: 0.7;
}
.partner__img:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .partner {
    margin-top: 36px;
  }
}
/*==============================
	Contacts
==============================*/
.contacts__list {
  margin-top: 20px;
}
.contacts__list li {
  margin-bottom: 10px;
}
.contacts__list li:last-child {
  margin-bottom: 0;
}
.contacts__list a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
}
.contacts__list a:hover {
  color: #f9ab00;
}
.contacts__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}
.contacts__social a {
  margin-right: 20px;
  font-size: 24px;
  color: #fff;
}
.contacts__social a:last-child {
  margin-left: 0;
}
.contacts__social a:hover {
  color: #f9ab00;
}
/*==============================
	Comments
==============================*/
.comments {
  margin-top: 24px;
  margin-bottom: 50px;
}
.comments__autor {
  display: block;
  position: relative;
  padding-left: 55px;
  margin-bottom: 15px;
}
.comments__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  border-radius: 8px;
}
.comments__name {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  font-weight: 400;
}
.comments__time {
  display: block;
  font-size: 12px;
  color: #c0c0c0;
  line-height: 20px;
  font-weight: 400;
}
.comments__text {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  background-color: #1a191f;
  padding: 20px;
  position: relative;
  border-top: 1px solid #222028;
  border-left: 1px solid #222028;
  border-right: 1px solid #222028;
  border-radius: 8px 8px 0 0;
}
.comments__text span {
  display: block;
  background-color: #222028;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  min-height: 80px;
  border-radius: 8px;
  color: #fff;
}
.comments__text span:before {
  content: '\efbe';
  position: absolute;
  display: block;
  font-family: "tabler-icons";
  color: rgba(249,171,0,0.15);
  font-size: 60px;
  top: 10px;
  left: 15px;
  line-height: 100%;
  z-index: 1;
  pointer-events: none;
}
.comments__item {
  margin-bottom: 24px;
  display: block;
}
.comments__item--answer,
.comments__item--quote {
  margin-left: 25px;
}
.comments__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  background-color: #1a191f;
  padding: 15px 20px;
  border: 1px solid #222028;
  position: relative;
  border-radius: 0 0 8px 8px;
}
.comments__actions button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  color: #c0c0c0;
  margin-right: 20px;
  height: 22px;
  text-transform: uppercase;
  font-weight: 400;
}
.comments__actions button i {
  margin-right: 5px;
  font-size: 14px;
}
.comments__actions button:hover {
  color: #f9ab00;
}
.comments__actions button:last-child {
  margin-right: 0;
}
.comments__rate {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -15px;
}
.comments__rate button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #c0c0c0;
  font-size: 14px;
  margin-right: 25px;
  position: relative;
  height: 30px;
}
.comments__rate button i {
  font-size: 18px;
  opacity: 0.6;
  transition: 0.4s ease;
}
.comments__rate button:last-child {
  margin-right: 0;
}
.comments__rate button:last-child i {
  margin-left: 6px;
  color: #eb5757;
  margin-top: 2px;
}
.comments__rate button:first-child i {
  margin-right: 6px;
  color: #29b474;
}
.comments__rate button:first-child:before {
  content: '';
  position: absolute;
  display: block;
  left: 100%;
  margin-left: 12px;
  width: 1px;
  height: 15px;
  background-color: #222028;
  top: 50%;
  transform: translateY(-50%);
}
.comments__rate button:hover {
  color: #fff;
}
.comments__rate button:hover i {
  opacity: 1;
}
@media (min-width: 768px) {
  .comments {
    margin-bottom: 70px;
  }
  .comments__text {
    padding: 20px 30px;
  }
  .comments__actions {
    padding: 15px 30px;
  }
  .comments__rate {
    left: 30px;
  }
  .comments__item {
    margin-bottom: 30px;
  }
  .comments__item--answer,
  .comments__item--quote {
    margin-left: 40px;
  }
}
@media (min-width: 992px) {
  .comments {
    margin-bottom: 0;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .comments {
    padding-right: 50px;
  }
}
@media (min-width: 1400px) {
  .comments {
    padding-right: 60px;
  }
}
/*==============================
	Reviews
==============================*/
.reviews {
  margin-top: 24px;
  margin-bottom: 50px;
}
.reviews__autor {
  display: block;
  position: relative;
  padding-left: 55px;
  margin-bottom: 15px;
  padding-right: 60px;
}
.reviews__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  border-radius: 8px;
}
.reviews__name {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}
.reviews__time {
  display: block;
  font-size: 12px;
  color: #c0c0c0;
  font-weight: 400;
  line-height: 20px;
}
.reviews__text {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  background-color: #1a191f;
  padding: 20px;
  border: 1px solid #222028;
  border-radius: 8px;
}
.reviews__item {
  margin-bottom: 24px;
  display: block;
}
.reviews__rating {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background-color: rgba(26,25,31,0.5);
  border: 2px solid transparent;
  border-radius: 50%;
  margin-top: 2px;
}
.reviews__rating--green {
  border-color: #29b474;
}
.reviews__rating--red {
  border-color: #eb5757;
}
.reviews__rating--yellow {
  border-color: #ffc312;
}
@media (min-width: 400px) {
  .reviews__name {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .reviews {
    margin-bottom: 70px;
  }
  .reviews__text {
    padding: 20px 30px;
  }
  .reviews__item {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .reviews {
    margin-bottom: 0;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .reviews {
    padding-right: 50px;
  }
}
@media (min-width: 1400px) {
  .reviews {
    padding-right: 60px;
  }
}
/*==============================
	Gallery
==============================*/
.gallery {
  margin-top: 24px;
  margin-bottom: 26px;
}
.gallery figure {
  margin: 0 0 24px;
}
.gallery figure a {
  display: block;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}
.gallery figure img {
  width: 100%;
  border-radius: 8px;
}
.gallery figcaption {
  display: none;
}
.gallery--full {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .gallery {
    margin-bottom: 46px;
  }
  .gallery--full {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .gallery {
    padding-right: 30px;
  }
  .gallery--full {
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .gallery {
    padding-right: 50px;
  }
  .gallery--full {
    padding-right: 0;
  }
}
@media (min-width: 1400px) {
  .gallery {
    padding-right: 60px;
  }
  .gallery--full {
    padding-right: 0;
  }
}
/*==============================
	Footer
==============================*/
.footer {
  background-color: #1a191f;
  border-top: 1px solid #222028;
}
.footer__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 50px 0 30px;
  position: relative;
}
.footer__logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  order: 1;
}
.footer__logo img {
  width: auto;
  height: 20px;
  display: block;
}
.footer__nav {
  order: 2;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
}
.footer__nav a {
  font-size: 14px;
  color: #fff;
  margin-right: 20px;
}
.footer__nav a:last-child {
  margin-right: 0;
}
.footer__nav a:hover {
  color: #f9ab00;
}
.footer__copyright {
  display: inline-block;
  order: 3;
  margin-top: 50px;
  font-size: 12px;
  line-height: 16px;
  color: #c0c0c0;
}
.footer__copyright a {
  color: #f9ab00;
}
.footer__copyright a:hover {
  color: #f9ab00;
  text-decoration: underline;
}
.footer__back {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid #f9ab00;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 30px;
  border-radius: 8px;
  font-size: 20px;
}
.footer__back:hover {
  color: #f9ab00;
}
@media (min-width: 768px) {
  .footer__logo img {
    height: 22px;
  }
  .footer__content {
    flex-direction: row;
    align-items: center;
    padding: 0;
    height: 80px;
  }
  .footer__nav {
    order: 3;
    margin-top: 0;
    margin-left: auto;
    margin-right: 80px;
  }
  .footer__nav a {
    margin-right: 30px;
  }
  .footer__nav a:last-child {
    margin-right: 0;
  }
  .footer__copyright {
    order: 2;
    margin-top: 0;
    margin-left: 30px;
  }
  .footer__back {
    bottom: 50%;
    margin-bottom: -20px;
  }
}
@media (min-width: 1200px) {
  .footer__copyright {
    margin-left: 40px;
  }
  .footer__nav a {
    margin-right: 40px;
  }
  .footer__nav a:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .footer__copyright {
    margin-left: 50px;
  }
  .footer__nav {
    margin-right: 95px;
  }
  .footer__nav a {
    margin-right: 50px;
  }
  .footer__nav a:last-child {
    margin-right: 0;
  }
}
/*==============================
	Sign
==============================*/
.sign {
  display: block;
  position: relative;
}
.sign__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 40px 0;
}
.sign__form {
  background-color: #1a191f;
  border: 1px solid #222028;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  position: relative;
  width: 100%;
  max-width: 400px;
}
.sign__form--full {
  max-width: 100%;
  margin-top: 24px;
}
.sign__form--comments {
  max-width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
.sign__logo {
  display: block;
  margin-bottom: 30px;
}
.sign__logo a {
  max-width: 100%;
  width: auto;
}
.sign__logo img {
  width: auto;
  height: 24px;
}
.sign__title {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.sign__label {
  font-size: 14px;
  line-height: 100%;
  color: #c0c0c0;
  width: 100%;
  margin-bottom: 15px;
}
.sign__input {
  width: 100%;
  background-color: #222028;
  border: 2px solid transparent;
  height: 46px;
  position: relative;
  color: #fff;
  font-size: 16px;
  width: 100%;
  border-radius: 8px;
  padding: 0 20px;
}
.sign__input:focus {
  border-color: #f9ab00;
}
.sign__textarea {
  border: 2px solid transparent;
  height: 150px;
  position: relative;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 15px 20px;
  resize: none;
  background-color: #222028;
  border-radius: 8px;
}
.sign__textarea:focus {
  border-color: #f9ab00;
}
.sign__select {
  background: url("../img/angle-down.svg") no-repeat center right 20px #222028;
  background-size: 20px auto;
  border: 2px solid transparent;
  border-radius: 8px;
  height: 46px;
  position: relative;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 0 20px;
  cursor: pointer;
}
.sign__select:focus {
  border-color: #f9ab00;
}
.sign__group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
.sign__group--checkbox {
  width: 100%;
  text-align: left;
}
.sign__group--checkbox input:not(:checked),
.sign__group--checkbox input:checked {
  position: absolute;
  left: -9999px;
}
.sign__group--checkbox input:not(:checked) + label,
.sign__group--checkbox input:checked + label {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  position: relative;
  cursor: pointer;
  padding-left: 34px;
  line-height: 24px;
  margin: 0;
}
.sign__group--checkbox input:not(:checked) + label a,
.sign__group--checkbox input:checked + label a {
  color: #f9ab00;
}
.sign__group--checkbox input:not(:checked) + label a:hover,
.sign__group--checkbox input:checked + label a:hover {
  color: #f9ab00;
  text-decoration: underline;
}
.sign__group--checkbox input:not(:checked) + label:before,
.sign__group--checkbox input:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: #222028;
  border-radius: 8px;
}
.sign__group--checkbox input:not(:checked) + label:after,
.sign__group--checkbox input:checked + label:after {
  font-family: 'tabler-icons';
  content: '\ea5e';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  transition: 0.4s ease;
  color: #f9ab00;
}
.sign__group--checkbox input:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.sign__group--checkbox input:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.sign__group--checkbox label::-moz-selection {
  background: transparent;
  color: #fff;
}
.sign__group--checkbox label::selection {
  background: transparent;
  color: #fff;
}
.sign__radio {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.sign__radio li {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.sign__radio li:last-child {
  margin-bottom: 0;
}
.sign__radio input:not(:checked),
.sign__radio input:checked {
  position: absolute;
  left: -9999px;
}
.sign__radio label {
  display: block;
  margin: 0;
  position: relative;
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
  color: #c0c0c0;
  line-height: 20px;
  padding-left: 30px;
  transition: color 0.4s ease;
}
.sign__radio label:before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #222028;
  background-color: transparent;
  border-radius: 50%;
  left: 0;
  top: 0;
  transition: border-color 0.4s ease;
}
.sign__radio label:hover {
  color: #fff;
}
.sign__radio input:checked + label {
  color: #fff;
}
.sign__radio input:checked + label:before {
  border-color: #f9ab00;
}
.sign__gallery {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 46px;
  overflow: hidden;
  border-radius: 8px;
}
.sign__gallery input {
  position: absolute;
  left: -9999px;
  opacity: 0;
  z-index: 1;
}
.sign__gallery label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 2;
  height: 46px;
  color: #fff;
  padding: 0 60px 0 20px;
  background-color: #222028;
  border: 2px solid transparent;
  font-weight: 400;
  margin: 0;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: 0.4s ease;
  border-radius: 8px;
}
.sign__gallery label:before {
  content: '\eb0a';
  font-family: "tabler-icons";
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 20px;
  font-size: 20px;
}
.sign__gallery label:hover {
  border-color: #f9ab00;
}
.sign__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 100%;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #f9ab00;
  margin-top: 10px;
}
.sign__btn:hover {
  background-color: rgba(249,171,0,0.05);
}
.sign__text {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.sign__text a {
  position: relative;
  color: #f9ab00;
}
.sign__text a:hover {
  color: #f9ab00;
  text-decoration: underline;
}
.sign__delimiter {
  font-size: 14px;
  color: #fff;
  line-height: 100%;
  margin-top: 15px;
}
.sign__social {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 15px;
}
.sign__social a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  height: 40px;
  width: 100%;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
}
.sign__social a i {
  font-size: 20px;
  margin-left: 8px;
}
.sign__social a.fb {
  background-color: #3b5999;
}
.sign__social a.gl {
  background-color: #df4a32;
}
.sign__social a.tw {
  background-color: #1da1f2;
}
.sign__social a:hover {
  background-color: #fff;
}
.sign__social a:hover.fb {
  color: #3b5999;
}
.sign__social a:hover.gl {
  color: #df4a32;
}
.sign__social a:hover.tw {
  color: #1da1f2;
}
@media (min-width: 768px) {
  .sign__form {
    padding: 40px 60px;
  }
  .sign__form--full {
    padding: 30px;
  }
  .sign__form--comments {
    padding: 30px;
  }
  .sign__logo {
    margin-bottom: 40px;
  }
  .sign__btn--small {
    width: 140px;
  }
}
/*==============================
	Page 404
==============================*/
.page-404 {
  display: block;
  position: relative;
}
.page-404__wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 40px 0;
}
.page-404__content {
  background-color: #1a191f;
  border: 1px solid #222028;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  position: relative;
  width: 100%;
  max-width: 400px;
}
.page-404__title {
  position: relative;
  color: #f9ab00;
  line-height: 100%;
  font-size: 120px;
  margin-bottom: 15px;
  font-weight: 600;
}
.page-404__text {
  text-align: center;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}
.page-404__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 100%;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #f9ab00;
  margin-top: 10px;
}
.page-404__btn:hover {
  color: #fff;
  background-color: rgba(249,171,0,0.05);
}
@media (min-width: 768px) {
  .page-404__content {
    padding: 40px 60px;
  }
}
/*==============================
	Modal
==============================*/
.modal .modal-content {
  margin: 0 auto;
  max-width: 420px;
  background-color: transparent;
  border: none;
  border-radius: 8px;
}
.modal__content {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  padding: 30px 20px;
  border-radius: 8px;
  background: #1a191f;
  border: 1px solid #222028;
}
.modal__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.modal__title {
  font-weight: 400;
  color: #fff;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 30px;
}
.modal__close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 1;
  color: #c0c0c0;
  font-size: 20px;
  height: 24px;
}
.modal__close:hover {
  color: #eb5757;
}
@media (min-width: 768px) {
  .modal__content {
    padding: 30px;
  }
  .modal__close {
    top: 30px;
    right: 30px;
  }
}
.modal-backdrop {
  background: rgba(34,32,40,0.9);
}
/*==============================
	Splide
==============================*/
.splide--home .splide__arrows,
.splide--content .splide__arrows {
  display: block !important;
  position: relative;
}
.splide--home .splide__arrow,
.splide--content .splide__arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background-color: #222028;
  position: absolute;
  top: -64px;
  opacity: 1;
  font-size: 20px;
  color: #fff;
  transform: translateY(0);
}
.splide--home .splide__arrow:hover,
.splide--content .splide__arrow:hover {
  color: #f9ab00;
}
.splide--home .splide__arrow--prev,
.splide--content .splide__arrow--prev {
  right: 46px;
  left: auto;
}
.splide--home .splide__arrow--next,
.splide--content .splide__arrow--next {
  right: 0;
}
.splide--home .splide__track,
.splide--content .splide__track {
  border-radius: 8px 8px 0 0;
}
.splide--content .splide__arrow {
  top: -60px;
}
.splide--hero .splide__arrows {
  display: none;
}
.splide--hero .splide__pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  padding: 0 15px;
  bottom: 40px;
}
.splide--hero .splide__pagination li {
  margin-right: 12px;
}
.splide--hero .splide__pagination li:last-child {
  margin-right: 0;
}
.splide--hero .splide__pagination__page {
  display: block;
  height: 4px;
  width: 4px;
  border-radius: 4px;
  background: #fff;
  transition: 0.4s ease;
  opacity: 0.25;
  margin: 0;
}
.splide--hero .splide__pagination__page.is-active {
  transform: scale(1);
  opacity: 1;
}
.splide--hero .splide__track {
  border-radius: 8px;
}
.splide--roadmap .splide__arrows {
  display: block !important;
  position: relative;
}
.splide--roadmap .splide__arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background-color: #222028;
  position: absolute;
  top: -94px;
  opacity: 1;
  font-size: 20px;
  color: #fff;
  transform: translateY(0);
}
.splide--roadmap .splide__arrow:hover {
  color: #f9ab00;
}
.splide--roadmap .splide__arrow--prev {
  right: 26px;
  left: auto;
}
.splide--roadmap .splide__arrow--next {
  right: -20px;
}
.splide--roadmap .splide__track {
  border-radius: 8px 8px 0 0;
}
@media (min-width: 768px) {
  .splide--home .splide__arrow {
    top: -72px;
  }
  .splide--home .splide__arrow--prev {
    right: 51px;
  }
  .splide--content .splide__arrow {
    top: -65px;
  }
  .splide--content .splide__arrow--prev {
    right: 51px;
  }
  .splide--hero .splide__pagination {
    bottom: 50px;
  }
  .splide--roadmap .splide__arrow {
    top: -94px;
  }
  .splide--roadmap .splide__arrow--prev {
    right: 21px;
  }
  .splide--roadmap .splide__arrow--next {
    right: -30px;
  }
}
@media (min-width: 1200px) {
  .splide--hero .splide__arrows {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    bottom: 34px;
    left: 120px;
  }
  .splide--hero .splide__arrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.1);
    position: relative;
    top: auto;
    font-size: 20px;
    color: #fff;
    opacity: 1;
    transition: 0.4s ease;
    transform: translateY(0);
  }
  .splide--hero .splide__arrow:hover {
    color: #f9ab00;
  }
  .splide--hero .splide__arrow--prev {
    margin-right: 15px;
    left: auto;
  }
  .splide--hero .splide__arrow--next {
    right: auto;
  }
  .splide--hero .splide__pagination {
    justify-content: flex-start;
    padding-left: 258px;
  }
}
/*==============================
	Plyr customization
==============================*/
.plyr {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  border-radius: 6px;
  margin-top: 24px;
}
.plyr__video-wrapper {
  background: #222028;
}
.plyr__poster {
  background-color: #222028;
}
.plyr--video {
  background: #222028;
}
@media (min-width: 1200px) {
  .plyr video {
    height: 386px;
  }
  .plyr__poster {
    background-size: cover;
  }
}
@media (min-width: 1400px) {
  .plyr video {
    height: 366px;
  }
}
.plyr__menu__container .plyr__control {
  transition: 0s ease;
}
.plyr__control.plyr__control--overlaid {
  border-radius: 50%;
}
.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
  background: none;
  background-color: #f9ab00;
}
.plyr--video .plyr__control--overlaid {
  box-shadow: none;
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transition: 0.5s;
  transition-property: opacity, background-color, color, border-color, transform;
  color: #f9ab00;
  border: 6px solid rgba(255,255,255,0.15);
  padding: 0;
}
.plyr--video .plyr__control--overlaid:before {
  content: '\f691';
  font-family: "tabler-icons";
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 24px;
  background-color: #fff;
  border: 6px solid rgba(255,255,255,0.15);
}
.plyr--video .plyr__control--overlaid svg {
  display: none;
}
.plyr--video .plyr__control--overlaid:hover,
.plyr--video .plyr__control--overlaid.plyr__tab-focus {
  background-color: rgba(255,255,255,0.2);
  border-color: rgba(249,171,0,0.5);
  color: #f9ab00;
}
.plyr--video .plyr__progress__buffer {
  box-shadow: none;
}
.plyr__progress__buffer {
  border-radius: 0;
}
.plyr--full-ui input[type="range"] {
  color: #f9ab00;
  border-radius: 0;
}
.plyr__tab-focus {
  box-shadow: none;
  outline: none;
}
.plyr__tooltip {
  font-weight: 400;
}
.plyr__control.plyr__tab-focus {
  box-shadow: none;
}
.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::before {
  background: none;
  background-color: #f9ab00;
}
.plyr__control {
  border-radius: 6px;
}
.plyr--video .plyr__control svg {
  filter: none;
}
/*==============================
	PhotoSwipe customization
==============================*/
.pswp__bg {
  background-color: rgba(34,32,40,0.9);
}
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: transparent;
}
.pswp__caption__center {
  font-size: 16px;
  color: #fff;
  padding: 15px;
  font-weight: 400;
}
.pswp__counter {
  font-size: 16px;
  color: #fff;
  padding: 0 15px;
  font-weight: 400;
}
.pswp__button {
  opacity: 0.7;
}
.pswp__button:before {
  transition: 0.4s;
}
.pswp__button:hover {
  opacity: 1;
}
.pswp__button:hover:before {
  color: #f9ab00;
}
.pswp__button--close {
  background: none;
}
.pswp__button--close:before {
  content: '\eb55';
  font-family: "tabler-icons";
  position: absolute;
  display: block;
  font-size: 28px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pswp__button--fs {
  background: none;
}
.pswp__button--fs:before {
  content: '\eaea';
  font-family: "tabler-icons";
  position: absolute;
  display: block;
  font-size: 24px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pswp--fs .pswp__button--fs:before {
  content: '\eaf1';
}
.pswp__button--arrow--right:before,
.pswp__button--arrow--left:before {
  font-family: "tabler-icons";
  position: absolute;
  display: block;
  font-size: 24px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: none;
  background-color: #1a191f;
}
.pswp__button--arrow--left:before {
  content: '\ea60';
}
.pswp__button--arrow--right:before {
  content: '\ea61';
}
/*==============================
	Scrollbar-track
==============================*/
.scrollbar-track-y {
  background-color: #222028 !important;
  top: 0 !important;
  bottom: 0 !important;
  height: auto !important;
  width: 4px !important;
  border-radius: 4px !important;
  right: 0 !important;
  overflow: hidden;
  cursor: pointer;
}
.scrollbar-thumb-y {
  background: #f9ab00 !important;
  width: 4px !important;
  border-radius: 4px !important;
  cursor: pointer;
}
.scrollbar-track-x {
  background-color: #222028 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  width: auto !important;
  border-radius: 4px !important;
  bottom: 0 !important;
  overflow: hidden;
}
.scrollbar-thumb-x {
  background: #f9ab00 !important;
  height: 4px !important;
  border-radius: 4px !important;
  cursor: pointer;
}

.hero_text{
	text-align:center;	
	font-size: 42px;
	font-weight: 600;
	color:white;
	}
	.hero_p{
	text-align:center;
	color:white;
	}
	.mov_nav2{
	padding-bottom:25px;
	}
	
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}
.hero {
  text-align: center;
  padding: 5px 5px;
  
  color: #fff;
}
	.movie-story-box {
    background: #1c1c1c00;
    color: #f5f5f5;
    border-radius: -1px;
    padding: 15px;
    margin: 8px auto;
    max-width: 1280px;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
    margin-bottom: 13px;
}

.movie-story-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.15), rgba(255, 255, 255, 0));
  transform: skewX(-25deg);
  pointer-events: none;
}

.story-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #f39c12;
  border-left: 4px solid #f39c12;
  padding-left: 12px;
}

.story-text {
  font-size: 1.05rem;
  color: #ddd;
  text-align: justify;
  margin-bottom: 0rem;
}
.yellow{
	color:#f9da00!important;
}
.rating-box {
  display: inline-flex;
  align-items: center;
  background: #1c1c1c;
  color: #f5f5f5;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  margin-bottom:12px;
}

.rating-value {
  font-size: 16px;
  font-weight: 600;
  color: #f39c12;
  margin-right: 4px;
}

.rating-text {
  font-size: 16px;
  color: #ccc;
}


.item__meta a {
    font-size: 16px;
    position: relative;
    color: white;
    margin-right: 8px;
}

.item__cover {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.cover-footer {
  text-align: center;
  margin-top: 12px; /* space between image and button */
}

.cover-btn {
    width: 100%;
    display: inline-block;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: black;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
    position: relative;
    text-align: center;
}

/* Add play icon before text */
.cover-btn::before {
    content: "▶";
    font-size: 14px;
    margin-right: 8px;
    vertical-align: middle;
}
/* Button Styling (match your site) */
.trailer-btn {
  background: #f39c12;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}
.trailer-btn:hover {
  background: #e67e22;
}

/* Button */
.trailer-btn {
  background: #f39c12;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}
.trailer-btn:hover { background: #e67e22; }

/* Button */
.trailer-btn {
  background: #f39c12;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}
.trailer-btn:hover { background: #e67e22; }

/* Modal Background */
.trailer-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}

/* Modal Box */
.trailer-modal-content {
  background: #111;
  margin: 5% auto;
  border-radius: 16px;
  width: 70%;
  max-width: 800px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header */
.trailer-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
}
.trailer-modal-header h2 { margin: 0; font-size: 18px; }
.trailer-close {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.trailer-close:hover { color: #f39c12; }

/* Body */
.trailer-modal-body { padding: 0; }
.trailer-modal-body iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* Footer */
.trailer-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px;
  background: #1a1a1a;
}
.trailer-btn-secondary {
  background: #555;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}
.trailer-btn-secondary:hover { background: #666; }
.trailer-btn-primary {
  background: #f39c12;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
}
.trailer-btn-primary:hover { background: #e67e22; }
.movie-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🟢 4 columns desktop */
  gap: 24px;
  margin: 40px auto;
  max-width: 1400px;
  padding: 0 20px;
}

.movie-card {
  background: linear-gradient(135deg, #ffb84d, #ff9933);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.movie-card img {
  width: 100%;
  height: 165px;
  object-fit: cover; /* keeps consistent image size */
  display: block;
}

.movie-card h3 {
  padding: 16px;
  color: #1c1c1c;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  background: #ffc107;
  margin: 0;
}

.movie-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

/* 📱 Tablet Responsive */
@media (max-width: 1200px) {
  .movie-row {
    grid-template-columns: repeat(3, 1fr); /* Large tablet = 3 columns */
  }
}

@media (max-width: 768px) {
  .movie-row {
    grid-template-columns: repeat(2, 1fr); /* Tablet = 2 columns */
  }
}

@media (max-width: 500px) {
  .movie-row {
    grid-template-columns: 1fr; /* Mobile = 1 column */
  }
}

.brown_bg{
	    background: #141414;
}


/* Floating Popup Container */
.floating-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999; /* very high, above everything */
  display: none; /* hidden by default */
  width: 900px;
  max-width: 95vw;
  animation: fadeIn 0.3s ease forwards;
}

/* Popup content */
.floating-popup-content {
  background: #111;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

/* Header */
.floating-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #222;
}

/* Close button */
.floating-popup-header .close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Video */
.floating-popup-video iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Footer */
.floating-popup-footer {
  padding: 15px 20px;
  background: #f8f9fa;
  color: #000;
}

.floating-popup-footer .tags span {
  display: inline-block;
  background: #eee;
  color: #333;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 3px;
  font-size: 0.85rem;
}

.floating-popup-footer .buttons button {
  min-width: 120px;
  margin-right: 10px;
  padding: 8px 20px;
  cursor: pointer;
}

.floating-popup-footer .buttons .next {
  background: #dc3545;
  color: #fff;
  border: none;
}

.floating-popup-footer .buttons .watch {
  background: #343a40;
  color: #fff;
  border: none;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -55%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
/* Toast container */
#toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background: #4caf50; /* green success */
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.5s ease;
  opacity: 0;
}

/* Show animation */
#toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

  /* Hero background with subtle parallax */
  .hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.7s ease-out;
  }

  .hero-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    z-index: -1;
  }

  /* Animate content on load */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }

  .fade-up.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* Fancy button hover effect */
  .btn-fancy {
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
  }

  .btn-fancy::before {
    content: '';
    position: absolute;
    width: 120%; height: 300%;
    background: rgba(255,255,255,0.15);
    top: 100%; left: -10%;
    transform: rotate(25deg);
    transition: all 0.5s ease;
  }

  .btn-fancy:hover::before {
    top: -50%;
  }

  /* Parallax scroll effect */
  .hero-section {
    perspective: 1px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
  }

  .hero-content {
    transform-style: preserve-3d;
  }


	.hero_text{
	text-align:center;	
	font-size: 42px;
	font-weight: 600;
	color:white;
	}
	.hero_p{
	text-align:center;
	color:white;
	}
	.mov_nav2{
	padding-bottom:25px;
	}
	
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.search-box {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.search-box input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 16px;
}

.search-box button {
  background: #f39c12;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background: #d68910;
}
.hero {
  text-align: center;
  padding: 50px 50px;
  
  color: #fff;
}
.movie-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px auto;
  
  padding: 0 20px;
}

.movie-card {
  background: #faac35;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card img {
  width: 100%;
  height: auto;
  display: block;
}

.movie-card h3 {
    padding: 7px;
    color: black;
    font-size: 15px;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}
/* 📱 Mobile Responsive */
@media (max-width: 992px) {
  .movie-row {
    grid-template-columns: repeat(2, 1fr); /* Tablet = 2 columns */
  }
}

@media (max-width: 600px) {
  .movie-row {
    grid-template-columns: 1fr; /* Mobile = 1 column */
  }
}


/* Toast container */
#toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background: #4caf50; /* green success */
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.5s ease;
  opacity: 0;
}

/* Show animation */
#toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.mov_story {
  background: #1e1b22;
  color: #ddd;
  padding: 15px;
  border-radius: 8px;
  max-height: 250px; /* Limit height */
  overflow-y: auto;  /* Scrollbar will appear */
  line-height: 1.6;
}

/* Custom Scrollbar for Webkit (Chrome, Edge, Safari) */
.mov_story::-webkit-scrollbar {
  width: 10px;
}

.mov_story::-webkit-scrollbar-track {
  background: #2a2530;
  border-radius: 10px;
}

.mov_story::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f5c542, #c58a00);
  border-radius: 10px;
}

.mov_story::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffd700, #ff9900);
}

/* Firefox custom scrollbar */
.mov_story {
  scrollbar-width: thin;
  scrollbar-color: #c58a00 #2a2530;
}

.mb25{
	margin-bottom:28px;
}

.inline {
	display: inline; 
}

/* Search container */
.search-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;   /* limit width on desktop */
}

/* Dropdown */
.search-dropdown {
  position: absolute;
  top: 100%;              /* sits just below the search box */
  left: 0;
  width: 100%;            /* match search input width */
  background: #fff;
  border: 1px solid #ccc;
  max-height: 450px;
  overflow-y: auto;
  z-index: 9999;
  display: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-radius: 6px;
}

.center{
	text-align:center;
}
.watch_btn{
	margin-top: 25px;
    background: #007a42 !important;
    padding: 11px 23px;
	margin-left: 1%;
}

.white{
	color:white	;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 50px 0;
}

.p-btn {
    padding: 12px 20px;
    background: #fff;
    color: #111;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.25s ease;
    border: 2px solid #fff;
}

.p-btn:hover {
    background: #f3f3f3;
    border-color: #eee;
    transform: translateY(-2px);
}

/* Active Page */
.p-btn.active {
    background: #FFD235;   /* your yellow brand color */
    border-color: #FFD235;
    color: #000;
    box-shadow: 0 4px 15px rgba(255,210,53,0.45);
    transform: translateY(-3px);
}

.sort-bar-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff59;
    padding: 12px 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    width: fit-content;
	margin-left: 17px;
}

.sort-label {
   font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.sort-btn {
    padding: 8px 16px;
    background: #f4f4f4;
    border-radius: 10px;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    border: 2px solid transparent;
}

.sort-btn:hover {
    background: #eaeaea;
    transform: translateY(-2px);
}

/* Active button */
.sort-btn.active {
    background: #FFD235;
    border-color: #FFD235;
    color: #000;
    box-shadow: 0 3px 12px rgba(255,210,53,0.45);
    transform: translateY(-2px);
}

.tags-hero {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 25px;
	margin-top:5%;
}

.tags-hero h1 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.tags-hero p {
    font-size: 18px;
    font-weight: 500;
    color: #bdbdbd;
    max-width: 700px;
    margin: 0 auto;
}
/* Divider */
.bar-divider {
    width: 2px;
    height: 24px;
    background: #ddd;
    display: inline-block;
    margin: 0 10px;
}

/* Action Buttons */
.action-btn {
  padding: 10px 18px;
    background: #2a6a03de;
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s 
ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.action-btn:hover {
    background: #eaeaea;
    transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    padding: 10px 0;
    min-width: 160px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 10;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 600;
}

.dropdown-menu a:hover {
    background: #f4f4f4;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Fix spacing */
.sort-bar-container {
    gap: 12px;
}
.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f9c521;
    color: #111;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
	margin-left: 18px;
}

.header-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.header-btn i {
    font-size: 18px;
}
.gs-search-box {
background: #2e2d2a;
    padding: 25px;
    border-radius: 3px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.gs-search-container {
    position: relative;
    width: 100%;
}

#gs-search {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #ffffff;
    color: #262626;
    font-size: 18px;
}

#gs-results {
    position: absolute;
    top: 48px;
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    max-height: 350px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.gs-item {
    padding: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #333;
}

.gs-item img {
    width: 45px;
    height: 65px;
    border-radius: 5px;
    object-fit: cover;
}

.gs-item:hover {
    background: #333;
}

.gs-title {
    font-size: 16px;
    color: #fff;
}

.gs-year {
    color: #999;
    font-size: 14px;
}
.neo-load-btn {
    background: #f9c846;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.25s ease;
    box-shadow: 0 4px 12px rgba(255, 138, 61, 0.4);
}

/* Hover Effect */
.neo-load-btn:hover {
    background: #ff7b1f;
    transform: translateY(-2px);
}

/* Spinner icon (auto added by JS) */
.neo-load-btn.loading::after {
    content: "\21BB"; /* Unicode refresh symbol */
    font-size: 20px;
    position: absolute;
    right: 16px;
    animation: spin 0.7s linear infinite;
}

/* Push text left when spinner shows */
.neo-load-btn.loading {
    padding-right: 50px;
}

/* Spinning animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.tv-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.tv-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* Responsive grid */
.tv-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 18px;
}

/* Tablet (2 columns) */
@media (max-width: 992px) {
    .tv-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 column) */
@media (max-width: 576px) {
    .tv-row {
        grid-template-columns: 1fr;
    }
}

/* Outer section */
.movie-section {
    padding: 30px 0;
}

/* Center container with max-width 1200px */
.movie-wrapper {
    max-width: 1200px;
    margin: 0 auto;          /* Centers the whole block */
    text-align: center;      /* Centers title + links */
}

/* Title */
.movie-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Responsive grid */
.movie-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .movie-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
    .movie-row {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.movie-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Images */
.movie-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* Links */
.movie-link {
    display: block;
    padding: 10px;
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    transition: 0.2s ease;
}

.movie-link:hover {
    color: #ff7b1f;
}

.ps-box {
background: #2e2d2a;
    padding: 25px;
    border-radius: 3px;
   
    margin-bottom: 30px;
    color: white;
}
}

.ps-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.ps-sub {
    margin-left: 5px;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 15px;
}

.ps-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.ps-results {
    display: none;
    background: #464646;
    border: 1px solid #ccc;
    border-top: none;
    margin-top: -2px;
    border-radius: 0 0 6px 6px;
    max-height: 300px;
    overflow-y: auto;
    position: absolute;
    width: calc(100% - 0px);
    z-index: 99999;
}

.ps-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f3f3f3;
}

.ps-item:hover {
    background: #ffc107;
	color:black;
}

.ps-item-name {
    font-weight: 600;
}

.position-box {
    position: relative;
}
.movie-row {
    display: grid;
    gap: 20px;
    justify-content: center;
}

/* Mobile 3 columns */
@media (max-width: 575px) {
    .movie-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet 4 columns */
@media (min-width: 576px) and (max-width: 991px) {
    .movie-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop 5 columns */
@media (min-width: 992px) {
    .movie-row {
        grid-template-columns: repeat(5, 1fr);
    }
}

.movie-card {
    background: #222028;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.movie-card img {
    width: 100%;
    border-radius: 8px;
}

.movie-card h3 {
    font-size: 14px;
    margin-top: 8px;
    color: #161515;
}
/* MAIN BLOCK STYLING */
.best-movies-block {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.best-movies-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

/* TITLE */
.best-movies-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: #fff;
}

/* GRID SYSTEM */
.best-movies-grid {
    display: grid;
    gap: 22px;
    justify-content: center;
}

/* MOBILE — 2 columns */
@media (max-width: 576px) {
    .best-movies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TABLET — 3 columns */
@media (min-width: 577px) and (max-width: 991px) {
    .best-movies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* DESKTOP — 4 columns */
@media (min-width: 992px) {
    .best-movies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ITEM CARD */
.best-movie-item {
    background: #24232a;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.best-movie-item img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.best-movie-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,.3);
}

/* TEXT */
.best-movie-text {
    padding: 12px;
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.section-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

.audience-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.audience-pill {
    background: #1c1b22;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #f9ab00;
    border: 1px solid #f9ab00;
    box-shadow: 0 0 6px rgba(249, 171, 0, 0.4);
    transition: 0.3s;
}

.audience-pill:hover {
    background: #f9ab00;
    color: #1a1a1a;
    box-shadow: 0 0 12px rgba(249, 171, 0, 0.8);
}
/* Inline label aligned nicely */
.section-label-inline {
    display: inline-block;
    min-width: 90px; /* keeps alignment consistent with other rows */
    font-weight: 600;
    margin-right: 8px;
}

/* Place list container */
.place-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px 12px; /* vertical + horizontal spacing */
    vertical-align: middle;
}

/* Each place item (simple text style) */
.place-item {
    color: #e0e0e0;
    font-size: 15px;
    border-right: 1px solid #444;
    padding-right: 10px;
    margin-right: 8px;
}

/* Remove the divider from last item */
.place-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

/* Align label like other sections */
.section-label-inline {
    display: inline-block;
    min-width: 90px;
    font-weight: 600;
    margin-right: 8px;
}

/* Container for items */
.plot-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px 12px; /* space between items */
    vertical-align: middle;
}

/* Individual plot tags */
.plot-item {
    color: #e0e0e0;
    font-size: 15px;
    border-right: 1px solid #444;
    padding-right: 10px;
    margin-right: 8px;
}

/* Remove last separator */
.plot-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

/* Consistent label width for every row */
.section-label-inline {
    display: inline-block;
    min-width: 90px;
    font-weight: 600;
    margin-right: 8px;
}

/* Container for multi-item fields (genre, plot, place, etc.) */
.genre-list,
.plot-list,
.place-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}

/* Individual item style */
.info-item,
.plot-item,
.place-item {
    color: #e0e0e0;
    font-size: 15px;
    border-right: 1px solid #444;
    padding-right: 10px;
    margin-right: 8px;
}

/* Remove separator if only one item */
.info-item.no-border {
    border-right: none !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
}

/* No border for last item */
.info-item:last-child,
.plot-item:last-child,
.place-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

/* Movie Row Card */
.gs-list-card {
    background: #222028;
    padding: 16px;
    border-radius: 10px;
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    border: 1px solid #2e2c34;
    transition: 0.3s ease;
}
.gs-list-card:hover {
    background: #2b2933;
    transform: translateY(-2px);
}

/* Left poster */
.gs-list-left img {
    width: 110px;
    height: 160px;
    border-radius: 6px;
    object-fit: cover;
}

/* Right side */
.gs-list-right {
    flex: 1;
}

/* Title */
.gs-list-title {
    color: #fff;
    font-size: 22px;
    margin: 0 0 6px 0;
    font-weight: 600;
}

/* Metadata chips */
.gs-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #c8c8c8;
}
.gs-list-meta span {
    opacity: 0.85;
}

/* Platform color example */
.meta-icon.amazon {
    color: #00c853;
}
.meta-icon.netflix {
    color: #e53935;
}

/* Description */
.gs-list-desc {
    color: #d3d3d3;
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.45;
}

/* Footer: rating + votes */
.gs-list-footer {
    display: flex;
    align-items: center;
    gap: 1px;
}
.gs-rating img {
    width: 20px;
    margin-right: 4px;
    vertical-align: middle;
}
.gs-rating {
    color: #f9ab00;
    font-weight: 600;
    font-size: 15px;
}
.gs-votes {
    color: #9fa1af;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .gs-list-left img {
        width: 90px;
        height: 135px;
    }
    .gs-list-title {
        font-size: 19px;
    }
}
@media (max-width: 480px) {
    .gs-list-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .gs-list-left img {
        width: 140px;
        height: 200px;
    }
    .gs-list-meta {
        justify-content: center;
    }
    .gs-list-footer {
        justify-content: center;
    }
}
/* Buttons Row */
.gs-btn-area {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

/* Trailer button */
.gs-trailer-btn {
    padding: 6px 14px;
    background: #f9ab00;
    color: #1a1a1a;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: .3s ease;
	margin-left: 2px;
}
.gs-trailer-btn:hover {
    background: #ffbd2e;
}

.gs-all-trailer-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #f9ab00;
    color: #1a1a1a;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin: 20px auto;
    text-align: center;

    /* Animation + transitions */
    transition: all 0.35s ease;
    box-shadow: 0 0 0 rgba(249, 171, 0, 0);
    position: relative;
}

/* Hover animation */
.gs-all-trailer-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: #ffbd2e;
    box-shadow: 0 8px 25px rgba(249, 171, 0, 0.45);
}

/* Glow pulse animation */
.gs-all-trailer-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(249, 171, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(249, 171, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 10px rgba(249, 171, 0, 0.4);
    }
}

/* Watchlist button */
.gs-watchlist-btn {
    padding: 6px 14px;
    background: #2d2c34;
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s ease;
}
.gs-watchlist-btn:hover {
    background: #3b3a44;
}

/* Prevent card click when pressing buttons */
.gs-watchlist-btn i {
    font-size: 16px;
}

/* Make entire card clickable */
.gs-list-card {
    cursor: pointer;
}

.gs-desc-box.compact {
    background: #1f1e24;
    border: 1px solid #2b2b31;
    padding: 14px 16px;
    border-radius: 8px;
    margin: 0px 0 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.gs-desc-header {
    font-size: 16px;
    font-weight: 600;
    color: #f9ab00;
    margin-bottom: 6px;
    line-height: 1;
}

.gs-desc-body {
    font-size: 15px;
    color: #cfcfcf;
    line-height: 1.45;
    margin: 0;
}
@media (max-width: 576px) {
    .gs-desc-box.compact {
        padding: 12px 14px;
    }

    .gs-desc-header {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .gs-desc-body {
        font-size: 14px;
        line-height: 1.4;
    }
}
/* Modern Summary Box */
.movie-summary-box.modern {
    background: rgba(35, 34, 40, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px;
    border-radius: 14px;
    margin: 25px 0;
    color: #e8e8e8;
    position: relative;
}

.movie-summary-title {
    font-size: 22px;
    font-weight: 700;
    color: #f9ab00;
    margin-bottom: 14px;
}

/* Container for fade effect */
.movie-summary-wrapper {
    position: relative;
}

/* Collapsed text */
.movie-summary-text {
    font-size: 16px;
    line-height: 1.68;
    max-height: 130px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
    padding-right: 5px;
}

/* Expanded state */
.movie-summary-text.expanded {
    max-height: 2000px;
}

/* Fade overlay */
.summary-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(35, 34, 40, 0), rgba(35, 34, 40, 1) 90%);
    transition: opacity 0.4s ease;
}

/* Hidden fade */
.summary-fade.hide {
    opacity: 0;
}

/* Toggle Button */
.summary-toggle-btn {
    margin-top: 12px;
    padding: 8px 16px;
    color: #f9ab00;
    font-size: 16px;
    font-weight: 600;
    background: #2e2d33;
    border: 1px solid #3b3a42;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    opacity: 0.85;
}

.summary-toggle-btn:hover {
    transform: translateY(-2px);
    opacity: 1;
    background: #35343b;
    color: #ffbd32;
}

/* Button animation class */
.summary-toggle-btn.animate {
    animation: btnFadeSlide 0.4s ease forwards;
}

@keyframes btnFadeSlide {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.watch-icons-box {
    background: #232228;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #2f2e35;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;  /* Fix: Gives breathing space */
}

.watch-icons-title {
    color: #f9ab00;
    font-size: 14px;
    font-weight: 600;
}

.watch-icons-row {
    display: flex;
    align-items: center;
    gap: 8px; /* Slightly smaller spacing */
}

.watch-icon {
    width: 35px;     /* Slightly smaller for balance */
    height: auto;
    border-radius: 6px;  /* Makes icons look premium */
    opacity: 0.9;
    transition: 0.25s ease;
    cursor: pointer;
}

.watch-icon:hover {
    transform: translateY(-3px) scale(1.1); /* Subtle floating animation */
    opacity: 1;
}
.watch-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 6px 10px;
    background: #232228;
    border: 1px solid #2f2e35;
    border-radius: 10px;
    width: fit-content; /* Box auto shrinks */
}

.watch-title {
    color: #f9ab00;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.watch-inline-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.watch-icon {
    width: 35px;  
    height: auto;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.85;
    transition: 0.25s ease;
}

.watch-icon:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.1);
}
.crew-box {
    background: #1e1d24;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
    color: #ddd;
    font-family: Inter, sans-serif;
    margin-top: 20px;
}

.crew-title {
    font-size: 24px;
    color: #f4b400;
    margin-bottom: 18px;
    font-weight: 600;
}

.crew-section {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
}

.crew-label {
    font-weight: 600;
    color: #ffcb50;
    margin-bottom: 4px;
}

.crew-list {
    margin-left: 10px;
    line-height: 1.6;
}

.crew-list li {
    margin-bottom: 4px;
}

@media (min-width: 650px) {
    .crew-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    .crew-label {
        width: 200px;
    }
    .crew-list {
        width: calc(100% - 200px);
    }
}
.flag-icon {
    width: 22px;
    height: auto;
    vertical-align: middle;
    margin-right: 6px;
}
.gs-scroll-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px 0;
    justify-content: center;
    flex-wrap: wrap;
    scrollbar-width: none;
	margin-top: 17px;
}
.gs-scroll-nav::-webkit-scrollbar {
    display: none;
}

.gs-scroll-nav button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #25252b;
    color: #f9ab00;
    border: 1px solid #3a3a3f;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.gs-scroll-nav button i {
    font-size: 16px;
}

.gs-scroll-nav button:hover {
    background: #f9ab00;
    color: #1a1a1a;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .gs-scroll-nav button {
        font-size: 13px;
        padding: 6px 12px;
        gap: 5px;
    }
}

.gs-cta-premium {
    padding: 60px 20px;
    margin-top: 29px;
    position: relative;
    overflow: hidden;
    background: #1b191f;
    border-radius: 28px;
	
}

/* Floating gradient frame */
.gs-cta-premium:before {
    content: "";
    position: absolute;
    width: 180%;
    height: 180%;
    top: -40%;
    left: -40%;
    background: linear-gradient(120deg, #f9ab00, #ffdd8b, #ffb300, #d48800);
    filter: blur(80px);
    opacity: 0.12;
    animation: premiumGlow 12s infinite linear;
}

@keyframes premiumGlow {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gs-cta-premium-inner {
    position: relative;
    max-width: 960px;
    margin: auto;
    text-align: center;
    z-index: 2;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    0% { transform: translateY(25px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.gs-cta-premium-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.gs-cta-premium-sub {
    color: #b8b8b8;
    font-size: 16px;
    margin-bottom: 34px;
}

/* Buttons */
.gs-cta-premium-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.gs-cta-premium-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 14px 26px;
    background: #1f1e25;
    color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 7, 0.26);

    font-weight: 600;
    font-size: 15px;
    cursor: pointer;

    transition: 0.3s ease;
    box-shadow: 0 0 0 rgba(255, 187, 0, 0);
}

/* Hover Glow Animation */
.gs-cta-premium-btn:hover {
    background: #f9ab00;
    color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: 0px 10px 25px rgba(255, 187, 0, 0.35);
}

.gs-cta-premium-btn i {
    font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .gs-cta-premium-title {
        font-size: 24px;
    }
    .gs-cta-premium-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
/* Main container */
.pro-filter-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 40px;
    margin: 40px auto;
    max-width: 1100px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.3s ease-in-out;
}

/* Row layout */
.pro-filter-row {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
    gap: 18px;
}

.pro-filter-row:last-child {
    margin-bottom: 0;
}

.pro-filter-label {
    width: 110px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

/* Button group */
.pro-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Button style */
.pro-btn {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    transition: 0.25s ease;
    letter-spacing: 0.3px;

    /* Smooth click animation */
    transform: translateY(0px);
}

/* Hover effect */
.pro-btn:hover {
    background: rgba(255,255,255,0.22);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

/* Active button */
.pro-btn.active {
    background: #ff9f1c;
    border-color: #ff9f1c;
    color: #000;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(255,159,28,0.4);
}

/* Active hover */
.pro-btn.active:hover {
    background: #ffb43f;
    box-shadow: 0 8px 18px rgba(255,159,28,0.55);
    transform: translateY(-2px);
}

/* Button click animation */
.pro-btn:active {
    transform: scale(0.94);
    transition: 0.1s ease-out;
}

/* Responsive */
@media(max-width: 768px){
    .pro-filter-box { padding: 25px; }
    .pro-filter-row { flex-direction: column; align-items: flex-start; }
    .pro-filter-label { width: auto; }
}
/* Make filter box 2 columns */
.pro-filter-box.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 40px;
    align-items: flex-start;
}

/* Individual section (Type, Year, etc.) */
.pro-filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Label stays same */
.pro-filter-label {
    font-size: 17px;
    font-weight: 700;
}

/* MOBILE: stack into 1 column */
@media (max-width: 768px) {
    .pro-filter-box.columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .pro-btn-group {
        gap: 10px;
    }
    .pro-btn {
        padding: 8px 14px;
        font-size: 14px;
    }
}
.active-filters {
    margin: 12px 0 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ACTIVE FILTER WRAPPER */
.active-filters {
    margin: 18px 0 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* FILTER CHIP */
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 14px;

    /* Glassmorphism look */
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.22);

    /* subtle glow */
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);

    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;

    /* smooth interaction */
    transition: .25s ease;
}

/* HOVER EFFECT */
.filter-chip:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* TEXT INSIDE CHIP */
.chip-text {
    text-transform: capitalize;
    opacity: .95;
}

/* REMOVE BUTTON (X) */
.chip-x {
    background: #ff4d4d;
    color: #000;
    font-weight: bold;
    padding: 0 6px;
    border-radius: 6px;
    font-size: 11px;
    transition: .2s ease;
}

/* Hover on X specifically */
.filter-chip:hover .chip-x {
    background: #ff6666;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .filter-chip {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 12px;
    }
    .chip-x {
        padding: 0 5px;
    }
}
/* ACTIVE FILTER AREA */
.active-filters {
    margin: 10px 0 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 5px 88px; /* desktop padding */
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .active-filters {
        padding: 5px 20px; /* reduce padding on tablet + small screens */
        justify-content: flex-start; /* keeps chips aligned left */
    }
}

@media (max-width: 480px) {
    .active-filters {
        padding: 5px 10px; /* smallest screen padding */
        gap: 8px;          /* tighter spacing on very small screens */
    }
}

/* FILTER CHIP (TAG) */
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;
    border-radius: 12px;

    background: #3c3b40; /* Same gray as your filter buttons */
    border: 1px solid rgba(255,255,255,0.15);

    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    cursor: pointer;

    /* subtle depth */
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);

    transition: 0.25s ease-in-out;
    text-decoration: none;
}

/* MATCH THE ORANGE GLOW OF YOUR ACTIVE FILTER BUTTONS */
.filter-chip:hover {
    background: #ff9e1c;
    color: #000;

    border-color: #ff9e1c;
    box-shadow: 0 6px 14px rgba(255,158,28,0.45);

    transform: translateY(-2px);
}

/* CLOSE BUTTON (X) */
.chip-close {
    background: rgba(0,0,0,0.3);
    padding: 0 6px;
    border-radius: 6px;
    font-size: 11px;
    color: #fff;
    transition: 0.25s;
}

/* CLOSE BUTTON HOVER (inside orange hover) */
.filter-chip:hover .chip-close {
    background: rgba(0,0,0,0.55);
    color: #fff;
}

.tags-hero h1 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

/* TABLET */
@media (max-width: 768px) {
    .tags-hero h1 {
        font-size: 28px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .tags-hero h1 {
        font-size: 22px;
    }
}

/* SMALL MOBILE */
@media (max-width: 360px) {
    .tags-hero h1 {
        font-size: 20px;
    }
}
.tags-hero h1 {
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;

    /* fluid scaling between 22px → 36px */
    font-size: clamp(22px, 4vw, 36px);
}

.load-more-btn {
    background: #ffcc00;
    color: #000;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.load-more-btn:hover {
    background: #ffdd33;
}
.pro-filter-box.columns {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* Left + Right split */
.left-half, .right-half {
    width: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .pro-filter-box.columns {
        flex-direction: column;
    }
    .left-half, .right-half {
        width: 100%;
    }
}

.movie-list-box {
    background: #383838;;
    border-left: 4px solid #ffcc00;
    padding: 18px 20px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.movie-list-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 8px;
}

.movie-list-content {
    font-size: 15px;
    line-height: 1.6;
    color: #e6e6e6;
}