*,
::after,
::before {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAKklEQVQYV2N89+7dfwYoeP36NQMjTADEERUVhQjAOCCFjDdv3vwPkoEBAL8XF+r4Wri+AAAAAElFTkSuQmCC)
    repeat;
  transition: background 0.25s;
}

dl,
ol,
ul {
  margin-top: 0;
  width: 100%;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
}

h1 {
  font-size: 1.5em;
}

h2 {
  font-size: 1.3em;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.67em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
}

img {
  vertical-align: middle;
  border-style: none;
  page-break-inside: avoid;
  border-radius: 10px;
  width: 100%;
}

a {
  color: #fb1114;
  color: var(--red);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #c50003;
}

.show {
  display: none;
}

input[type='search'],
input[type='text'],
input[type='email'],
input[type='password'],
input[type='url'],
textarea {
  border: 1px solid #fb1114;
  border: 1px solid var(--red);
  border-radius: 5px;
  padding: 5px 10px;
  width: 100%;
  font-family: var(--font-primary);
  font-size: 1.05em;
}

input[type='submit'],
input[type='button'] {
  border-radius: 5px;
  background: #fb1114;
  background: var(--red);
  padding: 5px 10px;
  color: white;
  border: 2px solid var(--black);
  font-family: var(--font-primary);
  font-size: 1em;
}

select {
  padding: 5px;
  color: white;
  background: #0a0909;
  background: var(--black);
  width: 80%;
  border: none;
  font-family: var(--font-primary);
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.05em;
}

option {
  color: white;
}

button {
  padding: 0;
}

/*=============================================
  =>> INITIALIZING FONTS
=============================================*/
@font-face {
  font-family: 'Exo';
  src: url('type-fonts/Exo-Regular.eot');
  /* IE9 Compat Modes */
  src: url('type-fonts/Exo-Regular.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */ url('type-fonts/Exo-Regular.woff2') format('woff2'),
    /* Modern Browsers */ url('type-fonts/Exo-Regular.woff') format('woff'),
    /* Modern Browsers */ url('type-fonts/Exo-Regular.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('type-fonts/Exo-Regular.svg') format('svg');
  /* Legacy iOS */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Exo';
  src: url('type-fonts/Exo-SemiBold.eot');
  /* IE9 Compat Modes */
  src: url('type-fonts/Exo-SemiBold.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */ url('type-fonts/Exo-SemiBold.woff2') format('woff2'),
    /* Modern Browsers */ url('type-fonts/Exo-SemiBold.woff') format('woff'),
    /* Modern Browsers */ url('type-fonts/Exo-SemiBold.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('type-fonts/Exo-SemiBold.svg') format('svg');
  /* Legacy iOS */
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google';
  src: url('./type-fonts/GoogleSans-Regular.eot');
  /* IE9 Compat Modes */
  src: url('./type-fonts/GoogleSans-Regular.eot?#iefix')
      format('embedded-opentype'),
    /* IE6-IE8 */ url('./type-fonts/GoogleSans-Regular.woff2') format('woff2'),
    /* Modern Browsers */ url('./type-fonts/GoogleSans-Regular.woff')
      format('woff'),
    /* Modern Browsers */ url('./type-fonts/GoogleSans-Regular.ttf')
      format('truetype'),
    /* Safari, Android, iOS */ url('./type-fonts/GoogleSans-Regular.svg')
      format('svg');
  /* Legacy iOS */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*=============================================
  =>> CUSTOM PROPERTIES / VARIABLES
=============================================*/
:root {
  --font-primary: 'Exo', sans-serif;
  --font-secondary: 'Google', sans-serif;
  --red: #fb1114;
  --black: #0a0909;
  --grey: #535353;
}

/*=============================================
  =>> HEADER SECTION
=============================================*/
header {
  background: white;
  transition: background-color 0.25s;
}

.container-fluid {
  padding: 0;
}

.bar {
  background: #0a0909;
  background: var(--black);
  height: 45px;
  line-height: 45px;
  font-family: var(--font-primary);
  text-align: center;
}

.bar a {
  color: white;
  font-weight: 600;
}

.bar a:hover {
  color: #fb1114;
  color: var(--red);
}

.social-bar {
  text-align: center;
  color: white;
  font-weight: 600;
}

.night-mode {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.site-info {
  text-align: center;
  font-size: 20px;
  padding: 10px 5px;
}

img.custom-logo {
  width: 100%;
  height: auto;
  padding: 0 25px 0;
}

.page-bar {
  display: flex;
  position: relative;
  z-index: 9999999;
}

div.nav-bar ul {
  list-style-type: none;
  padding: 0;
}

div.nav-bar {
  position: absolute;
  width: 100%;
  background: #0a0909;
  background: var(--black);
  top: 45px;
  z-index: 999999999;
  display: none;
}

div.nav-bar ul li {
  padding: 0 10px;
  display: block;
}

.current-menu-item a {
  color: #fb1114;
}

form.search-form {
  display: flex;
  width: 100%;
}

form.search-form input {
  flex: 1;
  width: 100%;
  border-radius: 0 0 3px 3px;
  border: 1px solid var(--black);
  padding: 10px;
}

form.search-form button {
  flex: 0;
  white-space: nowrap;
  border-radius: 0 3px 3px 0;
  border: none;
  background: #0a0909;
  background: var(--black);
  cursor: pointer;
}

.ab-search,
.ab-menu {
  padding: 0 15px;
  color: white;
  font-weight: 700;
  font-size: 20px;
  line-height: 45px;
}

div.sticky-bar {
  position: sticky;
  top: 0;
  z-index: 2;
}

.notice-board {
  padding: 10px;
  text-align: center;
  font-size: 15px;
  font-family: var(--font-secondary);
}

.notice-board img {
  max-height: 200px;
}

/*=============================================
  =>> MAIN POST AREA
=============================================*/
img.wp-post-image {
  transition: 0.3s;
}

img.wp-post-image:hover {
  opacity: 0.7;
}

.section-title {
  margin: 25px auto;
  text-align: center;
}

.section-title span {
  position: relative;
  padding: 5px 10px;
  background: #fb1114;
  background: var(--red);
  border: 2px solid var(--black);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
}

.section-title span::after {
  content: '';
  position: absolute;
  height: 140%;
  width: 87%;
  background: var(--black);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 10px;
}

.single-post-content {
  background: white;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  margin-top: 10px;
  box-shadow: 0 4px 6px #888;
}

.type-page {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px #888;
}

.single-post-content * {
  margin: 0 auto;
}

.page-title {
  margin: 10px 0;
}

.featured-post {
  z-index: -1;
}

div.featured-post {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--black);
}

div.title {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  font-family: var(--font-primary);
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.62) 74.67%
  );
}

div.title h3 {
  position: absolute;
  bottom: 5px;
  color: white;
  font-weight: 600;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 5px;
  transition: 0.25s;
}

.slider-post a:hover h3 {
  color: var(--red);
}

.featured-slider {
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.slider-post {
  width: 100%;
}

button.next,
button.prev {
  position: absolute;
  border: none;
  background: #555;
  font-size: 20px;
  border-radius: 50%;
  color: white;
  font-weight: bolder;
  margin: 0;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  transform: translateY(-50%);
  transition: 0.25;
}

button.next {
  top: 50%;
  right: 10px;
}

button.prev {
  top: 50%;
  left: 10px;
}

button.next:hover,
button.prev:hover {
  background: #333;
}

.thumb {
  background: white;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 5px 10px #999;
}

.post-desc {
  padding: 5px;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid rgb(88, 88, 88);
  margin-bottom: 10px;
  font-family: var(--font-secondary);
  font-size: 12px;
  background: white;
  box-shadow: 0 5px 10px #999;
}

.post-title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--black);
  transition: color 0.2s;
}

.post-title:hover {
  color: var(--red);
}

.post-meta .post-meta-item {
  display: inline-block;
  margin: 3px;
  color: #555;
  font-family: var(--font-secondary);
}

.post-meta .post-meta-item a {
  color: #555;
}

.post-meta .post-meta-item a:hover {
  border-bottom: 1px dotted #555;
}

.single-post hr {
  margin: 0;
}

.view-more button {
  border: 2px solid var(--red);
  background: #0a0909;
  background: var(--black);
  font-family: var(--font-secondary);
  border-radius: 10px;
  color: white;
  font-size: 1em;
  padding: 10px 15px;
}

.upcoming-movies {
  margin-top: 20px;
  background: #fb1114;
  background: var(--red);
  color: white;
  position: relative;
  padding: 5px;
  overflow: hidden;
  font-family: var(--font-secondary);
  border-radius: 7px;
}

.upcoming-movies::after {
  content: 'Upcoming:';
  position: absolute;
  height: 100%;
  padding: 0 10px;
  line-height: 34px;
  background: var(--black);
  color: white;
  font-family: var(--font-primary);
  font-weight: 600;
  left: 0;
  top: 0;
}

.upcoming-movies::before {
  content: '';
  position: absolute;
  border-left: 17px solid var(--black);
  border-bottom: 17px solid var(--black);
  border-top: 17px solid transparent;
  border-right: 17px solid transparent;
  left: 98px;
  top: 0;
  z-index: 1;
}

.review-post {
  background: white;
  box-shadow: 1px 1px 5px #888;
  border-radius: 10px;
  overflow: hidden;
  height: 90px;
  margin-bottom: 10px;
  border-right: 2px solid #666;
}

.review-post hr {
  margin: 0;
}

.review-thumb {
  height: 90px;
  width: 90px;
  float: left;
}

.review-thumb img {
  height: 100%;
  width: 100%;
  border-radius: 10px 0 0 10px;
}

.review-desc {
  margin-left: 100px;
  margin-right: 10px;
}

.review-desc a {
  color: #fb1114;
  color: var(--red);
  font-weight: 600;
}

.review-desc a:hover {
  border-bottom: 1px dotted var(--red);
}

.review-desc h4 {
  margin: 0;
  height: 40px;
  line-height: 20px;
  font-size: 0.9em;
  overflow: hidden;
}

.review-desc p {
  margin: 0;
  height: 60px;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8em;
}

/*=============================================
  =>> PAGINATION STYLING
=============================================*/
.paginav {
  text-align: center;
}

.paginav a.page-numbers,
.page-numbers.dots {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #fb1114;
  background: var(--red);
  color: white;
  margin: 1px;
  border-radius: 4px;
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: 0.25s;
  font-family: var(--font-secondary);
  border: 1px solid var(--black);
}

.mks {
  font-size: 0px;
}

.paginav span.current {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin: 1px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.25s;
  background: var(--black);
  color: white;
  box-shadow: 0 0.5px 0.5px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--red);
}

.paginav a.prev {
  border-radius: 20px 4px 4px 20px;
  width: 50px;
}

.paginav a.next {
  border-radius: 4px 20px 20px 4px;
  width: 50px;
}

.paginav a:hover {
  background: var(--black);
  color: #fff;
  box-shadow: 0 0.5px 0.5px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--red);
}

/*=============================================
  =>> WIDGET AREA STYLING
=============================================*/
.widget-title {
  position: relative;
}

.widget-title span {
  display: inline-block;
  padding: 5px 10px;
  background: #fb1114;
  background: var(--red);
  border-radius: 10px;
  color: white;
  font-family: var(--font-primary);
  font-weight: 600;
  margin: 15px 0;
  border: 2px solid var(--black);
  position: relative;
}

.widget-title::before {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--black);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  border-radius: 10px;
}

.widget-title span::after {
  content: '';
  position: absolute;
  height: 130%;
  width: 87%;
  background: var(--black);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 10px;
}

.widget-title a {
  color: white;
  transition: 0.25s;
}

.widget-title a:hover {
  color: var(--black);
}

.widget_categories ul {
  display: grid;
  grid-gap: 5px;
  align-items: center;
  list-style-type: none;
  padding: 12px 10px;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #fb1114;
  border: 1px solid var(--red);
  border-radius: 10px;
  grid-template-rows: minmax(min-content, max-content);
  background: white;
  box-shadow: 0px 2px 5px #333;
}

.widget_categories ul li.cat-item {
  margin: 5px auto;
  padding: 0 10px;
  text-align: center;
  width: 100%;
  height: 100%;
  background: #0a0909;
  background: var(--black);
  display: table;
  border-radius: 8px;
}

.widget_categories ul li.cat-item a {
  color: white;
  display: table-cell;
  vertical-align: middle;
  margin-right: 3px;
  margin-bottom: 3px;
  border-radius: 3px;
  padding: 1px 3px;
  font-family: var(--font-secondary);
  font-size: 0.8em;
  transition: 0.2s;
}

.widget_categories ul li.cat-item:hover a {
  color: var(--red);
}

.cat-post {
  background: white;
  box-shadow: 1px 1px 5px #888;
  border-radius: 10px;
  overflow: hidden;
  height: 93px;
  margin-bottom: 10px;
  border-right: 2px solid #666;
}

.cat-thumb {
  height: 90px;
  width: 90px;
  float: left;
}

.cat-thumb img {
  height: 100%;
  width: 100%;
  border-radius: 10px 0 0 10px;
}

.cat-desc {
  margin-left: 100px;
  margin-right: 10px;
  line-height: 1.45em;
}

.cat-desc a {
  color: #fb1114;
  color: var(--red);
  font-weight: 600;
}

.cat-desc a:hover {
  border-bottom: 1px dotted var(--red);
}

/* 
* Popular Posts Widget
*/
.tab-button-group {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tab-button {
  display: inline-block;
  background-color: var(--black);
  color: white;
  font-weight: 600;
  padding: 5px 10px;
  border: 2px solid var(--red);
  border-radius: 10px;
  font-family: var(--font-secondary);
  cursor: default;
}

.tab-button.is-active {
  background-color: var(--red);
}

.popular-posts-container {
  display: none;
}
.popular-posts-container.is-open {
  display: block;
}

.comments-area ul {
  list-style-type: none;
}

.comments-area img {
  width: auto;
}

.comment-meta {
  text-align: left;
}

.comment-meta a {
  font-family: var(--font-secondary);
  font-weight: 700;
}

.comment-list {
  background: white;
  border-radius: 10px;
  padding: 10px;
}

/*=============================================
  =>> FOOTER AREA
=============================================*/
footer {
  font-family: var(--font-secondary);
  font-size: 15px;
  text-align: center;
}

.footer-top {
  padding: 10px 0 22px 0;
  background: #535353;
  background: var(--grey);
  color: white;
}

.footer-bottom {
  position: relative;
  padding: 22px 0 10px 0;
  background: #0a0909;
  background: var(--black);
  color: #a5a5a5;
}

.footer-links {
  text-align: right;
  margin-bottom: 10px;
}

.footer-links ul {
  background: #535353;
  background: var(--grey);
  padding: 0 10px 0 0;
  margin: 0;
  position: relative;
  right: 0;
}

.footer-links ul li {
  display: inline-block;
  margin-left: 10px;
}

.footer-links ul::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 28%;
  background: var(--black);
  transform: skewX(25deg);
  top: 0;
  left: -10px;
}

.footer-links a {
  color: white;
  font-family: var(--font-primary);
}

.footer-links a:hover {
  color: rgb(211, 211, 211);
}

span.mlsbd {
  position: absolute;
  display: inline-block;
  padding: 5px 15px;
  background: #fb1114;
  background: var(--red);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  color: white;
}

.copyright {
  color: white;
  font-family: var(--font-primary);
}

a#go-top {
  display: inline-block;
  position: fixed;
  bottom: 20px;
  right: 25px;
  font-size: 20px;
  padding: 0 10px;
  background: #fb1114;
  color: white;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

a#go-top.show {
  opacity: 0.7;
}

/*=============================================
  =>> INNER POST AREA STYLES
=============================================*/
.SDC {
  border: 2px groove #ddd;
  margin-top: 1em;
  width: 100%;
  border-radius: 9px;
  padding: 10px;
  text-align: center;
}

.SDC div {
  font-size: large;
  text-align: left;
  text-indent: 10px;
  font-weight: 600;
}

.SDC div span {
  display: inline;
  border: 2px groove #ddd;
  background: #fff;
  padding: 5px;
  position: relative;
  top: -1.1em;
  border-radius: 5px;
  font-family: var(--font-primary);
}

.SDC,
.SDC div,
.SDC div span {
  box-sizing: border-box;
}

p.none {
  color: transparent;
  height: 25px;
}

.d4pbbc-bold:first-of-type {
  display: none;
}

.movie-info {
  display: grid;
  grid-template-columns: auto;
  font-family: var(--font-secondary);
  text-align: left;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 10px;
  margin: 15px auto;
}

.movie-info .poster img {
  width: 100%;
  height: auto;
  margin: 0 0 15px 0;
}

.movie-info .ratings {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
}

.movie-info .ratings .star-imdb {
  position: relative;
  margin-right: 15px;
  font-weight: bold;
  font-size: 2em;
  font-family: var(--font-primary);
}

.movie-info .ratings .star-imdb:before {
  font-family: 'ABfont';
  content: '\e9d5';
  margin-right: 5px;
  color: #f5de50;
  -webkit-text-stroke: 0.5px var(--black);
}

.movie-info strong {
  font-family: var(--font-primary);
  font-weight: 600;
}

.movie-info .details {
  margin: 0;
}

.movie-info hr {
  margin: 5px 0;
}

.Dbtn {
  text-decoration: none;
  background: #636363;
  color: #fff;
  padding: 10px 15px 10px 50px;
  position: relative;
  display: table;
  border-radius: 30px;
  height: 50px;
  box-sizing: border-box;
  font-family: var(--font-secondary);
  transition: 0.5s;
  margin-bottom: 5px;
  font-size: 0.9em;
  white-space: nowrap;
  max-width: 100%;
}

.Dbtn:before {
  font-family: abfont;
  position: absolute;
  left: 2px;
  top: 2px;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  height: 46px;
  width: 46px;
  border-radius: 30px;
  text-align: center;
  line-height: 46px;
  transition: all 0.3s;
  font-size: 20px;
}

.Dbtn.hevc:before,
.Dbtn.hd:before,
.Dbtn.sd:before {
    content: "\f0c7";
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900;
}

.Dbtn.sub:before {
  content: '\e964';
}

.Dbtn.watch:before {
    content: "\f06e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}


.Dbtn:hover:before {
  width: 98.3%;
  background: rgba(255, 255, 255, 0.8);
  font-size: 30px;
  color: #555;
}

.Dbtn:hover {
  padding: 10px 20px;
}

.Dbtn.hevc {
  background: #8bc34a;
}

.Dbtn.sd {
  background: #ffc107;
}

.Dbtn.hd {
  background: #ff5722;
}

.Dbtn.sub {
  background: #03a9f4;
}

.Dbtn.watch {
  background: #8d6e63;
}

div.mDb {
  margin: 20px 0;
}

div.mDb div a {
  text-decoration: none;
}

div.mDb div:nth-child(1) a {
  color: black;
}

div.mDb div:nth-child(2) a {
  color: white;
}

div.mDb div {
  padding: 15px;
  text-align: center;
  margin: 5px;
  font-weight: 700;
  font-family: var(--font-secondary);
  border-radius: 5px;
  transition: 0.3s;
}

div.mDb div:nth-child(1) {
  background: #f3ce13;
}

div.mDb div:nth-child(2) {
  background: #fa320a;
  color: white;
}

/*=============================================
  =>> MEDIA QUERIES
=============================================*/
@media only screen and (min-width: 980px) {
  .grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    grid-gap: 20px;
  }

  .site-logo {
    text-align: left;
  }

  img.custom-logo {
    height: 100px;
    width: auto;
  }

  .recent-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }

  footer {
    margin-top: 10px;
  }

  .show {
    display: initial;
  }

  .site-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }

  .site-logo {
    height: auto;
    width: 50%;
    padding: 20px;
  }

  .notice-board {
    font-size: 20px;
    width: 50%;
  }

  .hide {
    display: none;
  }

  .widget_categories ul {
    grid-template-columns: 1fr;
  }

  .widget_categories ul li.cat-item {
    margin: 5px auto;
    padding: 0 10px;
    text-align: left;
    position: relative;
  }

.widget_categories ul li.cat-item::before {
    content: "\f111";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}


  .widget_categories ul li.cat-item a {
    padding-left: 30px;
  }

  div.nav-bar {
    white-space: nowrap;
    width: 80%;
    position: static;
    display: block;
  }

  div.nav-bar ul li {
    padding: 0 10px;
    display: inline-block;
  }

  .current-menu-item {
    display: inline-block;
    position: relative;
  }

  .current-menu-item a {
    color: white;
  }

  .current-menu-item a:hover {
    color: white;
  }

  .current-menu-item::after {
    content: '';
    position: absolute;
    background: var(--red);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .ab-menu {
    display: none;
  }

  .related-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }

  .extra {
    display: grid;
    grid-template-areas: 'copyright . links';
    grid-gap: 10px;
  }

  .footer-links {
    grid-area: links;
  }

  .copyright {
    grid-area: copyright;
    text-align: left;
    padding-left: 10px;
  }

  .movie-info {
    grid-template-columns: max-content auto;
  }

  .movie-info .poster img {
    height: auto;
    width: 300px;
    margin: 0 15px 0 0;
  }
}

/*=============================================
  =>> STYLES OF DARK UI
=============================================*/
.dark-ui body {
  background: #202529
    url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAKUlEQVQYV2NUUNX8zwAFAtzsDIwwARDnw9efEAEYB6SQ0cDA4D9IBgYAwKgO20hyNUEAAAAASUVORK5CYII=)
    repeat;
}

.dark-ui h1,
.dark-ui h2,
.dark-ui h3,
.dark-ui h4,
.dark-ui h5,
.dark-ui h6,
.dark-ui p {
  color: #eaeaea;
}

.dark-ui hr {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-ui header {
  background: #202529;
  color: #eaeaea;
}

.dark-ui .bar,
.dark-ui .bar a,
.dark-ui .ab-menu,
.dark-ui .ab-search,
.dark-ui p.copyright,
.dark-ui .post-title,
.dark-ui div.title h3,
.dark-ui .review-desc p {
  color: #eaeaea;
}

.dark-ui .bar a:hover,
.dark-ui .post-title:hover,
.dark-ui .slider-post a:hover h3 {
  color: var(--red);
}

.dark-ui .thumb {
  background: #2d2d2d;
  box-shadow: 0 5px 10px var(--black);
}

.dark-ui .post-desc {
  background: #2d2d2d;
  border-bottom-color: #fb1114;
  border-bottom-color: var(--red);
  box-shadow: 0 3px 10px var(--black);
}

.dark-ui .post-meta-item,
.dark-ui .post-meta-item a {
  color: #ababab;
}

.dark-ui .review-post,
.dark-ui .cat-post {
  background: #2d2d2d;
  border-right-color: #fb1114;
  border-right-color: var(--red);
  box-shadow: 1px 1px 5px var(--black);
}

.dark-ui .review-post hr {
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 2px;
}

.dark-ui .widget_categories ul {
  background: #2d2d2d;
  box-shadow: 0 2px 5px var(--black);
}

.dark-ui .single-post-content,
.dark-ui .type-page,
.dark-ui .comment-list {
  background: #2d2d2d;
  color: #eaeaea;
  box-shadow: 0 4px 6px var(--black);
}

.dark-ui .SDC div span {
  background: #2d2d2d;
}

.dark-ui p.none {
  color: transparent;
}

.dark-ui input[type='search'],
.dark-ui input[type='text'],
.dark-ui input[type='email'],
.dark-ui input[type='password'],
.dark-ui input[type='url'],
.dark-ui textarea {
  background: #2d2d2d;
  color: #eaeaea;
}

.dark-ui .searchwp-live-search-results {
  background: #2d2d2d;
  border: 1px solid var(--red);
  color: #eaeaea;
}

.dark-ui .searchwp-live-search-result p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-ui .footer-bottom p {
  color: #a5a5a5;
}

.dark-ui .movie-info {
  background: #202529;
}

.dark-ui .movie-info .ratings .star-imdb:before {
  -webkit-text-stroke: 0px transparent;
}

/*=============================================
  =>> Toggle Button
=============================================*/

.toggleWrapper {
  display: inline-block;
  height: 25px;
  position: relative;
  top: 9px;
  margin-left: 5px;
}

.toggleWrapper input {
  position: absolute;
  left: -99em;
}

.toggle {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 44px;
  height: 25px;
  background-color: #83d8ff;
  border-radius: 84px;
  transition: background-color 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.toggle__handler {
  display: inline-block;
  position: relative;
  z-index: 1;
  top: -4px;
  left: -10px;
  width: 23px;
  height: 23px;
  background-color: #ffcf96;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: rotate(-45deg);
}

.toggle__handler .crater {
  position: absolute;
  background-color: #e8cda5;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
  border-radius: 100%;
}

.toggle__handler .crater--1 {
  top: 12px;
  left: 6px;
  width: 4px;
  height: 4px;
}

.toggle__handler .crater--2 {
  top: 15px;
  left: 13px;
  width: 6px;
  height: 6px;
}

.toggle__handler .crater--3 {
  top: 3px;
  left: 12px;
  width: 8px;
  height: 8px;
}

.star {
  position: absolute;
  background-color: #ffffff;
  transition: all 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  border-radius: 50%;
}

.star--1 {
  top: 5px;
  left: 14px;
  z-index: 0;
  width: 25px;
  height: 3px;
}

.star--2 {
  top: 12px;
  left: 11px;
  z-index: 1;
  width: 25px;
  height: 3px;
}

.star--3 {
  top: 19px;
  left: 15px;
  z-index: 0;
  width: 25px;
  height: 3px;
}

input:checked + .toggle {
  background-color: #749dd6;
}

input:checked + .toggle .toggle__handler {
  background-color: #ffe5b5;
  transform: translate3d(19.5px, 0, 0) rotate(0);
}

input:checked + .toggle .toggle__handler .crater {
  opacity: 1;
}

input:checked + .toggle .star--1 {
  width: 2px;
  height: 2px;
}

input:checked + .toggle .star--2 {
  width: 4px;
  height: 4px;
  transform: translate3d(-5px, 0, 0);
}

input:checked + .toggle .star--3 {
  width: 2px;
  height: 2px;
  transform: translate3d(-7px, 0, 0);
}

.filterWrapper {
  position: relative;
  text-align: center;
}

.filterWrapper input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  opacity: 0;
}

.filterWrapper .filterButton {
  background: #f44336;
  padding: 3px 8px;
  border-radius: 5px;
  color: white;
}

.filterWrapper input:checked + .filterButton {
  background: #4caf50;
}

/*=============================================
  =>> MISCELLANEOUS
=============================================*/
.telegram-join-btn {
  display: block;
  width: max-content;
  padding: 8px 16px;
  color: white;
  background-color: #0088cc;
  border-radius: 5px;
  border: 2px solid var(--black);
  font-family: 'Exo', sans-serif;
  font-size: 1.1em;
  margin: 10px auto;
  transition: transform 0.25s, color 0.25s;
}

.telegram-join-btn:hover {
  color: var(--black);
  transform: scale(1.05);
  cursor: pointer;
}.custom-logo {
	max-width: 100%;
	height: auto;
}

.thumb a img,
.cat-thumb a img,
.review-thumb a img,
.featured-post img{
	width: 100%!important;
	transition: 0.3s;
}

img {
	object-fit: cover;
}

@media only screen and (min-width: 980px) {
	 .movie-info .poster img {
    height: auto;
    width: 300px;
    margin: 0 15px 0 0;
  }
}

.review-rw {
	background: #f5f5f5;
	border: 1.5px solid #1a7ae8!important;
	padding: 7px 15px;
	border-radius: 5px;
	color: #1a7ae8;
	font-family: 'Exo';
	transition: transform 0.25s;
	display: none;
}

.review-rw:hover {
	color: #1a7ae8;
	transform: scale(0.97);
}

.dark-ui .review-rw {
	background: #202529;
	color: #fb1114;
	border-color: #fb1114!important;
}

.post-section-title {
	font-family: 'Exo';
	color: white;
	font-size: 1.4em;
	font-weight: bold;
	background: #fb1114;
	padding: 10px 30px;
	border: 3px solid #0a0909;
	border-radius: 10px 10px 25px 10px;
	position: relative;
	box-sizing: border-box;
	margin: 20px 0;
}

.post-section-title::before {
    content: "\f019"; /* Font Awesome icon Unicode */
    font-family: "Font Awesome 6 Free"; /* Free বা Solid version অনুযায়ী পরিবর্তন */
    font-weight: 900; /* Solid icons এর জন্য */
    font-size: 1.35em;
    position: absolute;
    height: 64px;
    width: 64px;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px 10px 25px 10px;
    background: #0a0909;
    display: inline-block;
    line-height: 64px;
    box-sizing: border-box;
    text-align: center;
}


.post-section-title.download::before {
    content: "\f019"; /* Font Awesome icon, উদাহরণ: download icon */
    font-family: "Font Awesome 6 Free"; /* Font Awesome 6 Free ব্যবহার */
    font-weight: 900; /* Solid icons এর জন্য */
}


.post-section-title.screenshots::before {
	content: '\e928';
}

.post-section-title::after {
	content: '';
	position: absolute;
	width: 57px;
	height: 56px;
	background: transparent;
	border: 2px solid #fb1114;
	border-radius: 10px 10px 25px 10px;
	left: 1px;
	top: 50%;
	transform: translateY(-50%);
}

a[href="//app.mlsbd.co/?ref=mlsbd_post"] {
	display: none;
}

.slider-post {
	display: none;
}

.slider-post:first-of-type {
	display: inline-block;
}

.notice-board img {
	height:100%;
	width: auto;
	max-width: 100%;
}

a.btn {
	display: block;
	width: max-content;
	padding: 8px 16px;
	color: white;
	background-color: var(--red);
	border-radius: 5px;
	border: 2px solid var(--black);
	font-family: var(--font-primary);
	margin: 10px auto;
	transition: transform 0.25s, 	color 0.25s;
}

a.btn:hover {
	transform: scale(1.05);
	cursor: pointer;
}

.movie-info.stream .info {
	align-self: center;
}

/* Hide UnRated Category */
/* .cat-item.cat-item-1816,
.cat-item-12{
	display: none!important;
} */
.thumb a img, .cat-thumb a img, .review-thumb a img   {
    width: 100%!important;
    transition: 0.3s;
    height: 150px !important;
}
 .featured-post img {
    width: 100%!important; 
	 height: 300px ;}
.srzads, .xxb{overflow: hidden;}
.srzblock{overflow: hidden;}
