:root {
  --mr-1: #3a4a4e;
  --mr-1-rgb: rgb(58 74 78);
  --mr-2: #505036;
  --mr-3: #28a745;
  --mr-text: #ffc107;
  --mr-h: #ffc107;
  --mr-bg1: #dc3545;
  --mr-bg2: #333;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sofia Sans Condensed', sans-serif;
}

body, html {
  max-width: 100%;
  overflow-x: hidden;
}

.custom-media-item {
    width: 13%;
    min-width: 160px;
    max-width: 160px;
}
@media (max-width: 1024px) {
    .custom-media-item {
        width: 20%; /* Larger on medium screens */
        min-width: 100px;
    }
}
@media (max-width: 640px) {
    .custom-media-item {
        width: 30%; /* Larger on small screens for usability */
        min-width: 90px;
    }
}


a {
    overflow: hidden;
}
.btn-active {
    background: var(--mr-2);
    padding: 5px 10px;
    border-radius: 5px;
}
.btn-active i {
    color: #fff;
}
#genreMenu {
    min-width: 200px;
}

#listsModal,
#rateModal {
    z-index: 99;
}

#rating-section-inner {
    margin: auto;
}
.poster_img {
    max-width: 400px;
}

.list {
    margin-bottom: 0;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #5f913e;
    box-shadow: 0px 0px 20px 4px #3333331a;
}
.list.new {
    background: cornsilk;
}
.list h2 {
    color: #fff;
    padding: 16px 30px;
    width: 100%;
    border-radius: 12px 12px 0 0;
}
.list ul {
    padding: 14px 40px 30px;
}

.bg-gradient {
    background: linear-gradient( var(--mr-1), var(--mr-2) );
}

.header-container nav {
    padding-left: 40px;
    padding-right: 40px;
}

.border-40 {
    border-radius: 50px;
}
.mrating {
    height: 65px;
    border: 1px solid #4f4f375e;
}
.mr {
    background-color: rgb(255 255 255);
    box-shadow: 10px 10px 0px var(--mr-2);
    margin-bottom: 12px;
    border: 2px solid var(--mr-2);
}
.mr .text-lg {
    font-size: 17px;
    color: var(--mr-2);
}
.mrating img {
    width: 80px;
    height: auto;
    margin-right: 15px;
    flex: 1;
}
.mrating > div:not(.mrating-img) {
    flex: 4;
}
.mrating-img img {
    max-width: 50px;
}
.plot {
    padding-bottom: 12px;
    margin-bottom: 30px;
    border-bottom: 6px solid #6b7280;
}

.hsection {
    border-radius: 25px;
    overflow: hidden;
}
.hsection .p-6 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.hsection .bdiv {
    padding-top: 8px;
    padding-bottom: 10px;
}
.poster-col {
    min-width: 36%;
}

/* SWIPER */
.swiper-container {
    position: relative;
    overflow: hidden;
}

/* Replies */
.replies {
    display: none;
}
.replies.show {
    display: block;
}


/* */

.mobile-header {
  position: relative;
  display: none;
  width: 360px;
  margin: 100px auto 0;
  box-shadow: 0 0 65px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 3px;
  background: #F1F1F1;
}
.mobile-header .header {
  position: inherit;
  display: block;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transition: all 0.5s ease-out, background 1s ease-out;
  transition-delay: 0.2s;
  z-index: 6;
}

.mobile-header .header.fixedh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  z-index: 1000;
}

body.has-fixed-header {
  padding-top: 60px; /* same as header height */
}

.mobile-header .header .burger-container {
  position: relative;
  display: inline-block;
  width: auto;
  height: 50px;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-header .header .col2h{
  width: 78%;
  float: right;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
.mobile-header .header .burger-container #burger {
  width: 18px;
  height: 8px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}
.mobile-header .header .burger-container #burger .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #FFF;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0s;
}
.mobile-header .header .burger-container #burger .bar.topBar {
  transform: translateY(0px) rotate(0deg);
}
.mobile-header .header .burger-container #burger .bar.btmBar {
  transform: translateY(6px) rotate(0deg);
}
.mobile-header .header .icon {
  display: inline-block;
  position: absolute;
  height: 100%;
  line-height: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #FFF;
  font-size: 22px;
  left: 50%;
  transform: translateX(-50%);
}
.mobile-header .header .icon.icon-bag {
  right: 0;
  top: 0;
  left: auto;
  transform: translateX(0px);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.65s;
}
.mobile-header .header ul.menu {
  position: relative;
  display: block;
  padding: 0px 48px 0;
  list-style: none;
  z-index: -1;
}
.mobile-header .header ul.menu li.menu-item {
  border-bottom: 1px solid #333;
  margin-top: 5px;
  transform: scale(1.15) translateY(-30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.mobile-header .header ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.49s;
}
.mobile-header .header ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.42s;
}
.mobile-header .header ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.35s;
}
.mobile-header .header ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.28s;
}
.mobile-header .header ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.21s;
}
.mobile-header .header ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.14s;
}
.mobile-header .header ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.07s;
}
.mobile-header .header ul.menu li.menu-item a {
  display: block;
  position: relative;
  color: #aeaeae;
  text-decoration: none;
  font-size: 18px;
  line-height: 2.35;
  font-weight: 400;
  width: 100%;
}
.mobile-header .header.menu-opened {
  height: 100%;
  background-color: #000;
  transition: all 0.3s ease-in, background 0.5s ease-in;
  transition-delay: 0.25s;
}
.mobile-header .header.menu-opened .burger-container {
  transform: rotate(90deg);
}
.mobile-header .header.menu-opened .burger-container #burger .bar {
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.2s;
}
.mobile-header .header.menu-opened .burger-container #burger .bar.topBar {
  transform: translateY(4px) rotate(45deg);
}
.mobile-header .header.menu-opened .burger-container #burger .bar.btmBar {
  transform: translateY(3px) rotate(-45deg);
}
.mobile-header .header.menu-opened ul.menu li.menu-item {
  transform: scale(1) translateY(0px);
  opacity: 1;
}
.mobile-header .header.menu-opened ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.27s;
}
.mobile-header .header.menu-opened ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.34s;
}
.mobile-header .header.menu-opened ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.41s;
}
.mobile-header .header.menu-opened ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.48s;
}
.mobile-header .header.menu-opened ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.55s;
}
.mobile-header .header.menu-opened ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.62s;
}
.mobile-header .header.menu-opened ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.69s;
}
.mobile-header .header.menu-opened .icon.icon-bag {
  transform: translateX(75px);
  transition-delay: 0.3s;
}
.mobile-header .content {
  font-family: "Ek Mukta", sans-serif;
  padding: 67px 4% 0;
  text-align: justify;
  overflow: scroll;
  max-height: 100%;
}
.mobile-header .content::-webkit-scrollbar {
  display: none;
}
.mobile-header .content h2 {
  margin-bottom: 0px;
  letter-spacing: 1px;
}
.mobile-header .content img {
  width: 95%;
  position: relative;
  display: block;
  margin: 75px auto 75px;
}
.mobile-header .content img:nth-of-type(2) {
  margin: 75px auto;
}
@media (max-width: 1100px) {
  .mobile-header {
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 0px;
  }
  .hsection {
    margin-bottom: 20px;
  }
  .dh-nav {
    display: none;
  }
}