/*@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");*/
@font-face {
   font-family: 'Kanit';
   font-style: normal;
   font-weight: 400;
   font-display: swap;
   /*src: url(https://fonts.gstatic.com/s/kanit/v15/nKKZ-Go6G5tXcraBGwCKd6xBDFs.woff2) format('woff2');*/
   src: url("../font/Kanit-Regular.ttf");
   /*unicode-range: U+0E01-0E5B, U+200C-200D, U+25CC;*/
}

/*@font-face {*/
/*   font-family: "Kanit";*/
/*   src: url("../font/Kanit-Regular.ttf");*/
/*}*/

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: "Kanit";
   color: var(--white);
}

html {
   scroll-behavior: smooth;
   background-color: #2a2a2a;
   min-height: 100%;
   /*overflow: hidden;*/
   /*overscroll-behavior: none;*/
}

body {
   font-family: inherit;
   /*background: var(--black-gra);*/
   /*color: var(--dark-grey);*/
   letter-spacing: -0.4px;
   min-height: 100vh;
   overflow: auto;
   color: #fff;
   background-color: #2a2a2a;
   /*background-image: url('../images/wallpp-web.jpg'),url('../images/wallpp-web.jpg');*/
   /*background-repeat: no-repeat, no-repeat;*/
   /*background-attachment: fixed, fixed;*/
   /*background-position-x: -30rem, 33rem;*/
   /*background-size: auto auto;*/
   /* set relative for button scroll to top */
   /* don't remove its... */
   position: relative;
}

body::before {
   content: '';
   position: fixed;
   background-color: #2a2a2a;
   height: 100vh;
   width: 1300px;
   z-index: -1;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

body::after {
   content: '';
   position: fixed;
   left: 0;
   top: 0;
   background-color: rgba(0,0,0,.45);
   width: 100vw;
   height: 100vh;
   z-index: 0;
}

/******************************************************************************/
/* line 6, ../../src/js-offcanvas.mixins.scss */
.c-offcanvas {
   transform: translate3d(0, 0, 0);
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden;
}

/* line 11, ../../src/js-offcanvas.mixins.scss */
.c-offcanvas, .c-offcanvas-content-wrap, .c-offcanvas-bg.c-offcanvas-bg--reveal, .c-offcanvas-bg.c-offcanvas-bg--push {
   transition: transform 300ms cubic-bezier(0.4, 0, 0.6, 1);
}

/* line 15, ../../src/js-offcanvas.mixins.scss */
.c-offcanvas.is-open {
   transform: translate3d(0, 0, 0);
   visibility: visible;
}

/**
 * Offcanvas-content-wrap
*/
/* line 11, ../../src/js-offcanvas.scss */
.c-offcanvas-content-wrap {
   z-index: 3;
}

/**
 * Offcanvas Panel
*/
/* line 20, ../../src/js-offcanvas.scss */
.c-offcanvas {
   position: fixed;
   min-height: 100%;
   max-height: none;
   top: 0;
   display: block;
   background: #fff;
   overflow-x: hidden;
   overflow-y: auto;
}
/* line 35, ../../src/js-offcanvas.scss */
.c-offcanvas--opening {
   transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
}
/* line 38, ../../src/js-offcanvas.scss */
.c-offcanvas.is-closed {
   max-height: 100%;
   overflow: hidden;
   visibility: hidden;
   box-shadow: none;
}

/* line 48, ../../src/js-offcanvas.scss */
.c-offcanvas--overlay {
   z-index: 1080;
}

/* line 52, ../../src/js-offcanvas.scss */
.c-offcanvas--reveal {
   z-index: 2;
}

/**
 * Offcanvas BG-Overlay
*/
/* line 59, ../../src/js-offcanvas.scss */
.c-offcanvas-bg {
   position: fixed;
   top: 0;
   height: 100%;
   width: 100%;
   z-index: 1079;
   left: -100%;
   background-color: transparent;
   transition: background-color 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
/* line 69, ../../src/js-offcanvas.scss */
.c-offcanvas-bg.is-animating, .c-offcanvas-bg.is-open {
   left: 0;
   background-color: rgba(0, 0, 0, 0.68);
   visibility: visible;
}
/* line 76, ../../src/js-offcanvas.scss */
.c-offcanvas-bg.is-closed {
   visibility: hidden;
}
/* line 78, ../../src/js-offcanvas.scss */
.c-offcanvas-bg--closing.is-animating {
   background: transparent;
}

/**
 * Position Left
 *
*/
/* line 88, ../../src/js-offcanvas.scss */
.c-offcanvas--left {
   height: 100%;
   width: 17em;
   transform: translate3d(-17em, 0, 0);
}

/**
 *  Position Right
 *
*/
/* line 117, ../../src/js-offcanvas.scss */
.c-offcanvas--right {
   height: 100%;
   width: 17em;
   right: 0;
   transform: translate3d(17em, 0, 0);
}

/**
 * Position Top
 *
*/
/* line 129, ../../src/js-offcanvas.scss */
.c-offcanvas--top {
   left: 0;
   right: 0;
   top: 0;
   height: 12.5em;
   min-height: auto;
   width: 100%;
   transform: translate3d(0, -12.5em, 0);
}

/**
 * Position Bottom
 *
*/
/* line 139, ../../src/js-offcanvas.scss */
.c-offcanvas--bottom {
   top: auto;
   left: 0;
   right: 0;
   bottom: 0;
   height: 12.5em;
   min-height: auto;
   width: 100%;
   transform: translate3d(0, 12.5em, 0);
}

/**
 * Reveal
 *
*/
/* line 148, ../../src/js-offcanvas.scss */
.c-offcanvas-content-wrap {
   z-index: 3;
}

/* line 71, ../../src/js-offcanvas.mixins.scss */
.c-offcanvas-content-wrap--reveal.c-offcanvas-content-wrap--left.is-open {
   transform: translate3d(17em, 0, 0);
}
/* line 66, ../../src/js-offcanvas.mixins.scss */
.c-offcanvas-content-wrap--reveal.c-offcanvas-content-wrap--right.is-open {
   transform: translate3d(-17em, 0, 0);
}

/* line 166, ../../src/js-offcanvas.scss */
.c-offcanvas--reveal {
   z-index: 0;
   transform: translate3d(0, 0, 0);
}

/* line 87, ../../src/js-offcanvas.mixins.scss */
.c-offcanvas-bg.c-offcanvas-bg--reveal.c-offcanvas-bg--left.is-open {
   transform: translate3d(17em, 0, 0);
}
/* line 82, ../../src/js-offcanvas.mixins.scss */
.c-offcanvas-bg.c-offcanvas-bg--reveal.c-offcanvas-bg--right.is-open {
   transform: translate3d(-17em, 0, 0);
}

/**
 * Push
 *
*/
/* line 192, ../../src/js-offcanvas.scss */
.c-offcanvas--push {
   z-index: 6;
}
/* line 194, ../../src/js-offcanvas.scss */
.c-offcanvas--push--opening {
   transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/* line 198, ../../src/js-offcanvas.scss */
.c-offcanvas-content-wrap {
   z-index: 3;
}

/* line 71, ../../src/js-offcanvas.mixins.scss */
.c-offcanvas-content-wrap--push.c-offcanvas-content-wrap--left.is-open {
   transform: translate3d(17em, 0, 0);
}
/* line 66, ../../src/js-offcanvas.mixins.scss */
.c-offcanvas-content-wrap--push.c-offcanvas-content-wrap--right.is-open {
   transform: translate3d(-17em, 0, 0);
}

/* line 87, ../../src/js-offcanvas.mixins.scss */
.c-offcanvas-bg.c-offcanvas-bg--push.c-offcanvas-bg--left.is-open {
   transform: translate3d(17em, 0, 0);
}
/* line 82, ../../src/js-offcanvas.mixins.scss */
.c-offcanvas-bg.c-offcanvas-bg--push.c-offcanvas-bg--right.is-open {
   transform: translate3d(-17em, 0, 0);
}
/******************************************************************************/

#main-content {
   min-height: 72vh!important;
   box-shadow: 0 0 9px 0 #090907e0;
   position: relative;
   z-index: 2;
}

.container {
   background: linear-gradient(135deg, #2a2a2a, #202020); /* สี gradient ส้ม */
   /*border-radius: 10px; !* ขอบมนแบบมน *!*/
   padding: 20px; /* ระยะห่างของเนื้อหาข้างในคอนเทนเนอร์ */
}

#movie-page.container {
   border-radius: unset;
   background: #2a2a2a;
   padding: 2em !important;
   box-shadow: 0 0 9px 0 #090907e0;
   position: relative;
   z-index: 2;
}



/* สีพื้นหลังและสีตัวอักษรของส่วนหัวของเนื้อหาหน้าเว็บ */
.page-header {
   color: #f3f3f3;
}

.content-col-movie {
   display: flex;
   justify-content: center;
   margin: 1em 0;
}

.wrap-block-img {
   display: block;
   width: 100%;
   height: inherit;
   text-align: center;
   padding: 4px 15%;
}

.wrap-block-img img {
   width: 100%;
   height: auto;
   padding: 4px;
}

.block-b-img-mb, .block-img-top-mb {
   display: none;
}

.b-side-left, .b-side-right {
   position: absolute;
   top: 91px;
   z-index: 1111;
   display: flex;
   flex-direction: column;
   justify-items: center;
}

.b-side-left a, .b-side-right a {
   text-align: center;
   width: 163px;
}

.b-side-left img, .b-side-right img {
   width: 100%;
   height: auto;
}

.close-side-left, .close-side-right {
   display: block;
   width: 100%;
   text-align: center;
   cursor: pointer;
}

.b-side-left {
   left: -15%;
}

.b-side-right {
   right: -15%;
}

.wrap-img-content img {
   display: block;
   width: 100%;
   border-radius: 18px;
   max-width: 441px;
   height: auto; /* maintain aspect ratio*/
   margin: auto;
   box-shadow: 0 0 11px 2px #96d441;
   transition: all .3s ease-in-out;
}

.wrap-poster {
   display: flex;
   flex-wrap: nowrap;
   align-items: center;
   flex-direction: column;
   justify-content: space-evenly;
}

.view-all-cat {
   font-size: 16px;
   color: #f9f250;
}

.view-all-cat:hover {
   color: #ffca2c;
}

/*poster cover block*/
div.block {
   color: #fff;
   line-height: 24px;
   width: 180px;
   min-width: 180px;
   /*width: 231px;*/
   margin: 2px 3px;
   height: 254px;
   min-height: 180px;
   /*height: 310px;*/
   background: #1c1303;
   position: relative;
   display: inline-block;
   z-index: 1;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.39);
   border: 4px solid #f5f5d9;
   cursor: pointer;
}
div.block .ribbon {
   position: absolute;
   transition: 0.3s all ease;
   line-height: 30px;
   font-weight: 700;
   z-index: 999999;
   transform: rotate(-40deg);
   text-align: center;
}
div.block .ribbon.ribbon1 {
   top: 20px;
   left: -60px;
   background: #dc3545;
   width: 200px;
   box-shadow: 0 0 4px 0px #000;
}
div.block .ribbon.ribbon2 {
   top: 45px;
   left: -45px;
   background: #bf0909;
   width: 220px;
   box-shadow: 0 0 4px 0px #000;
}
div.block .back-image {
   position: absolute;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   z-index: -1;
   background-repeat: no-repeat;
   opacity: 0.3;
}
div.block .quarter-image {
   position: absolute;
   height: calc(247px / 2);
   transition: 0.5s all cubic-bezier(1, 0.05, 0.74, 1.18);
   z-index: 99999;
   background-size: 200% 200%;
}
div.block .quarter-image.img1 {
   top: 0;
   right: 0;
   width: calc(173px / 2);
   background-position: top right;
}
div.block .quarter-image.img2 {
   top: 0;
   left: 0;
   width: calc(173px / 2);
   background-position: top left;
}
div.block .quarter-image.img3 {
   bottom: 0;
   right: 0;
   width: calc(173px / 2);
   background-position: bottom right;
}
div.block .quarter-image.img4 {
   bottom: 0;
   left: 0;
   width: calc(173px / 2);
   background-position: bottom left;
}
div.block .title {
   position: absolute;
   top: 18%;
   /*bottom: 96px;*/
   opacity: 0;
   left: 0;
   transform: translate(0px, -40px) scale(0.4);
   z-index: 10000;
   font-size: 17px;
   line-height: 27px;
   width: 100%;
   padding: 7px 5px;
   transition: 0.5s 0.2s all cubic-bezier(0.4, -0.56, 0.42, 2.28);
   font-weight: 700;
   text-align: center;
}
div.block .description {
   position: absolute;
   bottom: 0;
   left: 0;
   opacity: 0;
   z-index: 9999;
   font-size: 17px;
   line-height: 24px;
   transition: 0.5s 0.6s all cubic-bezier(0.26, -0.52, 0, 1.61);
   width: 100%;
   padding: 11px 10px;
   height: 0;
   text-align: center;
}
div.block:after {
   transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
   transition: transform 0.6s;
   box-sizing: border-box;
   pointer-events: none;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(255, 255, 255, 0.5);
   content: "";
   /*transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0);*/
}
@media(hover: hover)  {
   .no-touch div.block:hover:after {
      transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
      transition: transform 0.6s 0.3s;
   }

   .no-touch div.block:hover .img1 {
      transform: translate(50px, -160px) rotate(-10deg);
   }

   .no-touch div.block:hover .img2 {
      transform: translate(-50px, -160px) rotate(10deg);
   }

   .no-touch div.block:hover .img3 {
      transform: translate(50px, 160px) rotate(10deg);
   }

   .no-touch div.block:hover .img4 {
      transform: translate(-50px, 160px) rotate(-10deg);
   }

   .no-touch div.block:hover .title {
      transform: translate(0, -40px);
      opacity: 1;
   }

   .no-touch div.block:hover .description {
      height: auto;
      opacity: 1;
   }

   .no-touch div.block:hover .ribbon1 {
      transform: rotate(-40deg) translate(0, -70px);
   }

   .no-touch div.block:hover .ribbon2 {
      transform: rotate(-40deg) translate(0, -100px);
   }

   .no-touch div.block:hover .play-btn {
      transform: translate(0, -40px) scale(1);
      opacity: 1;
   }
}

/*@media(hover: none) {*/
   /* start toggle class for ios touch*/
   .open-cover-touch:after {
      transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
      transition: transform 0.6s 0.3s;
   }

   .open-cover-touch .img1 {
      transform: translate(50px, -160px) rotate(-10deg);
   }

   .open-cover-touch .img2 {
      transform: translate(-50px, -160px) rotate(10deg);
   }

   .open-cover-touch .img3 {
      transform: translate(50px, 160px) rotate(10deg);
   }

   .open-cover-touch .img4 {
      transform: translate(-50px, 160px) rotate(-10deg);
   }

   .open-cover-touch .title {
      transform: translate(0, -40px) !important;
      opacity: 1 !important;
   }

   .open-cover-touch .description {
      height: auto !important;
      opacity: 1 !important;
   }

   .open-cover-touch .ribbon1 {
      transform: rotate(-40deg) translate(0, -70px) !important;
   }

   .open-cover-touch .ribbon2 {
      transform: rotate(-40deg) translate(0, -100px) !important;
   }

   .open-cover-touch .play-btn {
      transform: translate(0, -40px) scale(1);
      opacity: 1;
   }
/* end toggle class for ios touch*/
/*}*/

.play-btn {
   opacity: 0;
   transition: 0.3s 0.4s all cubic-bezier(0.26, -0.52, 0, 1.61);
   transform: translate(0px, -40px) scale(0.4);

   width: 54px;
   height: 54px;
   background: radial-gradient( rgb(42 47 44 / 60%) 60%, rgb(245 245 243) 62%);
   border-radius: 50%;
   position: relative;
   display: block;
   /*margin: 100px auto;*/
   box-shadow: 0px 0px 8px 1px rgb(255 234 0 / 56%);
}

.play-btn-wait-time {
   cursor: default;
   background: transparent;
   box-shadow: unset !important;
   border: 1px solid #525252;
}

.play-btn-wait-time::after {
   border-left-color: #313131 !important;
}
.play-btn-wait-time::before {
   content: unset !important;
}

/* triangle */
.play-btn::after {
   content: "";
   position: absolute;
   left: 50%;
   top: 50%;
   -webkit-transform: translateX(-40%) translateY(-50%);
   transform: translateX(-40%) translateY(-50%);
   transform-origin: center center;
   width: 0;
   height: 0;
   border-top: 9px solid transparent;
   border-bottom: 9px solid transparent;
   border-left: 17px solid #fff;
   z-index: 100;
   -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
   transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
   content: "";
   position: absolute;
   width: 160%;
   height: 160%;
   -webkit-animation-delay: 0s;
   animation-delay: 0s;
   -webkit-animation: pulsate1 2s;
   animation: pulsate1 2s;
   -webkit-animation-direction: forwards;
   animation-direction: forwards;
   -webkit-animation-iteration-count: infinite;
   animation-iteration-count: infinite;
   -webkit-animation-timing-function: steps;
   animation-timing-function: steps;
   opacity: 1;
   border-radius: 50%;
   border: 5px solid rgb(210 215 9 / 75%);
   top: -30%;
   left: -30%;
   background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
   0% {
      -webkit-transform: scale(0.6);
      transform: scale(0.6);
      opacity: 1;
      box-shadow: inset 0px 0px 25px 3px rgba(235, 237, 12, 0.75), 0px 0px 25px 10px rgba(175, 141, 17, 0.75);
   }
   100% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0;
      box-shadow: none;

   }
}

@keyframes pulsate1 {
   0% {
      -webkit-transform: scale(0.6);
      transform: scale(0.6);
      opacity: 1;
      box-shadow: inset 0px 0px 25px 3px rgba(255, 252, 56, 0.75), 0px 0px 25px 10px rgba(212, 164, 42, 0.75);
   }
   100% {
      -webkit-transform: scale(1, 1);
      transform: scale(1);
      opacity: 0;
      box-shadow: none;

   }
}

.no-movie {
   font-size: 22px;
   color: red;
   text-align: center;
}

.wrap-slider-container {
   display: block;
   height: auto;
   width: 100%;
   min-height: 80vh;
}

#relate-movies .wrap-slider-container {
   height: auto;
   min-height: 10vh;
}

.block-slider {
   margin: 1% auto;
   display: block;
   overflow: hidden;
   min-height: 285px;
}

.link-play {
   color: inherit;
   position: absolute;
   bottom: -11%;
   display: flex;
   right: 35%;
}

/*swiper slider*/
.swiper {
   padding: 0 27px !important;
   margin: 11px 0;
   -webkit-overflow-scrolling: touch;
}

.swiper-wrapper { /* this fix width to zero pixel bug not touch .block on ios */
   -webkit-overflow-scrolling: touch;
   width: 0; /* fix first and second item on mobile can't click on 1row swiper not cover multi row*/
}

/* this class use on javascript for fix iphone use cover flow to slide*/
.stop-3d-for-iphone {
   transform-style: unset !important;
}

#relate-movies .swiper-wrapper {
   /*width: 0 !important;*/
}

.no-touch #relate-movies .swiper-wrapper {
   width: 100%;
}

.swiper-slide {
   display: flex !important;
   justify-content: center;
   -webkit-overflow-scrolling: touch;
   /*width: 218px;*/
   /*margin: 0 11px;*/
}
.swiper-slide::before {
   content: '';
   transform: translateZ(-1px);
}

.swiper-button-next, .swiper-button-prev {
   opacity: 1;
   transition: 0.5s ease-in-out;
   color: #ffda18 !important;
   width: 9px !important;
}

.swiper-button-disabled {
   visibility: hidden;
   opacity: 0;
   transition: 0.5s ease-in-out;
}

.swiper-slide {
   padding-bottom: 27px;
   -webkit-overflow-scrolling: touch;
   -moz-filter: blur(0.08px);
   -webkit-filter: blur(0.08px);
   -ms-filter: blur(0.08px);
   filter: blur(0.08px);
}

.swiper-scrollbar-drag {
   background: #513b37 !important;
   cursor: move;
}

.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
   -webkit-overflow-scrolling: touch;
}

.swiper-button-next:before {
   content: '';
   position: absolute;
   display: block;
   width: 35px;
   height: 28vh;
   background: #1b180ac2;
   z-index: -1;
   border-radius: 27px 0 0 27px;
   right: -17px;
   filter: blur(9px);
}

.swiper-button-prev:before {
   content: '';
   position: absolute;
   display: block;
   width: 35px;
   height: 28vh;
   background: #1b180ac2;
   z-index: -1;
   border-radius: 0 27px 27px 0;
   left: -17px;
   filter: blur(9px);
}

/* movie detail + player */
img.cover-img-player {
   display: block;
   margin: 0 auto;
   width: inherit;
   height: auto;
   min-width: 72%;
}

.indent {
   text-indent: 40px;
}

.movie-detail-table {
   max-width: 800px;
}

.wrap-movie-player {
   display: block;
   max-width: 720px;
   width: 80%;
   margin: 0 auto;
}

.wrap-btn-choose-other {
   display: block;
   width: 100%;
   text-align: center;
   margin-top: 1em;
}

.btn-player {
   margin: 9px;
   width: 44%;
   max-width: 100%;
   background: rgba(82, 82, 82, 0.69);
   border-color: #47422e;
   font-size: 18px;
}

/*menu offcanvas override */
.offcanvas-nav .navbar { display: none}
.c-offcanvas.is-open .navbar { display: block;}
.is-hidden {  visibility: hidden;}

.c-offcanvas {
   background: #1b1b19;
   box-shadow: 0 0 8px 0px #090907e0;
}

.c-offcanvas--right.is-open {
   width: 306px;
   padding-top: 1em;
}

.c-offcanvas-bg {
   z-index: 40000;
}
.c-offcanvas--overlay {
   z-index: 40001;
}
/*clear outline native browser (ios)*/
.c-offcanvas-nav a.link-b:focus-visible, .c-offcanvas-nav img:focus-visible {
   outline: unset !important;
   outline-offset: unset !important;
}

.c-offcanvas .link-b:-webkit-any-link:focus-visible {
   outline: unset;
}

.offcanvas-nav .navbar-nav {
   flex-direction: column;
   width: 100%;
}

.offcanvas-nav .navbar-nav .nav-item {
   text-indent: 8%;
}

.offcanvas-nav .navbar-nav .nav-item {
   text-indent: 8%;
}

.offcanvas-nav .nav-item:first-child {
   border-top: 1px solid #81817de0;
}
.offcanvas-nav a.nav-link {
   display: block;
   margin: 0 auto;
   width: inherit;
   height: auto;
   padding: 11px 0 11px;
   border-bottom: 1px solid #81817de0;
}

.offcanvas-nav a.nav-link:hover {
   background-color: #81817de0;
}

.offcanvas-nav a.nav-link span {
   padding-left: 8px;
}

.offcanvas-nav .navbar-nav .dropdown-menu {
   position: unset;
   background: #1d1b13 !important;
   border-radius: unset;
   padding: 0;
   max-height: unset;
}

.offcanvas-nav .navbar-nav .dropdown-menu li {
   border-bottom: 1px solid #46463f;
   background-color: #0e0e0d;
}

.offcanvas-nav .navbar-nav .dropdown-item {
   height: 44px;
   display: flex;
   text-indent: 11%;
   margin: auto 0;
   width: 100%;
   flex-direction: column;
   flex-wrap: nowrap;
   justify-content: center;
   text-align: left;
}

.wrap-close-canvas {
   display: flex;
   justify-content: end;
   margin: 1em;
   position: absolute;
   right: 0;
   top: 0;
}
.wrap-close-canvas i {
   font-size: 27px;
}

.wrap-search-offcanvas {
   display: flex;
   justify-content: center;
   position: relative;
}

.wrap-search-offcanvas input[name='search'] {
   height: 44px;
   border: 1px solid inherit;
}
.wrap-search-offcanvas i.bx-search {
   left: 44px;
}

.wrap-banner-menu-mobile {
   display: block;
   width: 100%;
   height: initial;
   margin: 1em 0;
}

.b-img-mb, .b-row-img {
   width: 100%;
   height: auto;
   outline: unset !important;
}

.b-row-img {
   margin: 8px 0;
}

/*footer*/
.footer ul{
   list-style: none;
   padding: 0;
}
.footer{
   background-color: #2a2a2a;
   padding: 9px 0;
   box-shadow: 0px -1px 8px 0px #000;
   position: relative;
   z-index: 2;
}
.footer .container {
   background: #2a2a2a;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
   font-size: 18px;
   color: #ffffff;
   text-transform: capitalize;
   margin-bottom: 35px;
   font-weight: 500;
   position: relative;
}
.footer-col h4::before{
   content: '';
   position: absolute;
   left:0;
   bottom: -10px;
   background-color: #dcde0f;
   height: 2px;
   box-sizing: border-box;
   width: 50px;
}
.footer-col ul li:not(:last-child){
   margin-bottom: 10px;
}
.footer-col ul li a{
   font-size: 16px;
   text-transform: capitalize;
   /*color: #ffffff;*/
   text-decoration: none;
   font-weight: 300;
   color: #bbbbbb;
   display: block;
   transition: all 0.3s ease;
}
.footer-col ul li a:hover{
   color: #ffffff;
   padding-left: 8px;
}
.footer-col .social-links a{
   display: inline-block;
   height: 40px;
   width: 40px;
   background-color: rgba(255,255,255,0.2);
   margin:0 10px 10px 0;
   text-align: center;
   line-height: 40px;
   border-radius: 50%;
   color: #ffffff;
   transition: all 0.5s ease;
}
.footer-col .social-links a:hover {
   background-color: #bedd1e;
}

.footer-col .social-links a:hover i {
   color: #24262b !important;
}

/*responsive*/
@media(max-width: 767px){
   .footer-col{
      width: 50%;
      margin-bottom: 30px;
   }
}
@media(max-width: 574px){
   .footer-col{
      width: 100%;
   }
}

.link-footer-bl {
   color: #ffca2c;
   text-decoration: underline;
   font-weight: bold;
}

.link-footer-bl:hover {
   color: #00b400;
}

.footer-logo {
   width: auto;
   height: 54px;
   /*margin: 1em 0 2em;*/
}

/*footer end*/

.text-bg-badge {
   background: #4e4c48 !important;
   color: #fff !important;
   font-size: 16px;
   margin: 7px 4px;
   line-height: 26px;
   white-space: pre-wrap;
   font-weight: 100;
}

.wrap-tag {
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   justify-content: center;
   align-items: flex-start;
   margin: 3em 0 1em;
   padding: 1em;
   background-color: #2a2a2a;
   border-radius: 26px;
}

/*card override*/
.card {
   border: 2px solid #2f2f2f;
   border-radius: 9px;
}

.card-header *, .card-footer * {
   color: #fff;
   font-size: 27px;
   margin: 0;
}

.card-header {
   /*background-color: #4a4232;*/
   background-color: #1a1d1dd6;
   color: #afafaf;
}

.card-footer {
   background-color: #212321;
   color: #fff;
}

.card-body, #relate-movies.container {
   background: #100e05f5;
   color: #fff;
}

#relate-movies.container {
   background: #191818;
}

.card-body .table-responsive table * {
   background: transparent;
   color: #fff;
   vertical-align: middle;
}