/*

Theme Name: NobarDrakor
Theme URI: https://google.com/
Author: Sativa Wahyu Priyanto
Author URI: https://google.com/
Description: Template yang cocok untuk website drama.
Text Domain: NobarDrama
Version: 1.0

*/

body {
  font-family: "Quicksand", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #ffffff;
}

ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ol li {
  list-style-type: decimal;
}

a {
  text-decoration: none;
  color: #82aaff;
}

a:hover {
  color: #b3e5fc;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
}

.content_bagi {
  display: grid;
  grid-template-columns: auto 300px;
  gap: 25px;
}

.wrapper-index {
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* Header */

header {
  background-color: #1e1e1e;
}

.header-wapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 15px;
  box-sizing: border-box;
  align-items: center;
  margin-bottom: 20px;
}

.header-wapper .logo img {
  max-width: 250px;
  height: auto;
  margin: 10px 0;
}

.header-wapper .primary_menu {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-wapper .primary_menu li {
  font-size: 15px;
}

.header-wapper .primary_menu li a {
  font-weight: 600;
  color: #ffffff;
  padding: 7px 10px;
  background-color: #2a2a2a;
  border-radius: 6px;
  display: block;
  transition: all 0.2s;
}

.header-wapper .primary_menu li a:hover {
  background-color: #3a3a3a;
  color: #ffffff;
}

.header-wapper .primary_menu li:first-child a {
  background-color: #d32f2f;
  color: #ffffff;
}

.header-wapper .primary_menu li:first-child a:hover {
  background-color: #c62828;
  color: #ffffff;
}

/* Search */

.search {
  margin-bottom: 20px;
  text-align: center;
  padding: 0 20px;
}

.title_blog {
  font-size: 27px;
  margin-bottom: 15px;
  color: #ffffff;
}

.title_blog span {
  color: #ff8a80;
}

.search-form {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-form .searchfield {
  width: 100%;
  height: 40px;
  outline: none;
  border: none;
  padding: 0 15px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #2a2a2a;
  color: #ffffff;
}

.search-form .searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  padding: 0 15px;
  border-radius: 12px;
  background-color: #d32f2f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
}

.search-form .searchsubmit:hover {
  background-color: #c62828;
  color: #ffffff;
}

/* Sidebar */

.sidebar {
  width: 300px;
}

.sidebar aside .sidebar_title {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffffff;
}

.sidebar aside {
  margin-bottom: 20px;
}

aside .content .list_taxonomy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

aside .content .list_taxonomy li a {
  color: #ffffff;
  background-color: #2a2a2a;
  padding: 7px 12px;
  display: block;
  text-align: center;
  font-size: 14px;
  border-radius: 12px;
  font-weight: 600;
}

aside .content .list_taxonomy li:nth-child(odd) a {
  background-color: #d32f2f;
}

aside .content .list_taxonomy li a:hover {
  opacity: 0.8;
}

/* Index */

.list-post-utama {
  margin-bottom: 20px;
}

.title_index {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffffff;
}

.style_post_1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.style_post_1 .thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.style_post_1 .thumbnail {
  width: 120px;
  height: 170px;
}

.style_post_1 article {
  margin-bottom: 20px;
}

.style_post_1 .title_post {
  margin-bottom: 10px;
}

.style_post_1 .title_post a {
  color: #82aaff;
}

.style_post_1 .title_post a:hover {
  color: #b3e5fc;
}

.style_post_1 article .info-wrapper {
  display: flex;
  gap: 15px;
}

.style_post_1 article .info-wrapper .info ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 15px;
  color: #ffffff;
}

.style_post_1 article .info-wrapper .info ul li {
  list-style-type: disc;
  margin-left: 15px;
}

.style_post_1 article .info-wrapper .info .date {
  font-size: 14px;
  color: #ffffff;
  background-color: #3a3a3a;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 5px;
}

.link_pagination {
  text-align: center;
}

.link_pagination a {
  color: #ffffff;
  background-color: #3a3a3a;
  display: inline-block;
  padding: 7px 20px;
  border-radius: 20px;
}

.pagination ul {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.pagination ul li {
  list-style-type: none !important;
  margin-left: 0 !important;
}

.pagination ul li a {
  color: #ffffff;
  padding: 7px 15px;
  border-radius: 12px;
  background-color: #3a3a3a;
  transition: all 0.2s;
}

.pagination ul li a:hover {
  background-color: #d32f2f;
}

.pagination ul li.active a {
  background-color: #c62828;
}

/* Single */

.wrapper-single {
  margin-bottom: 20px;
  background-color: #1e1e1e;
}

.single .single-title {
  font-size: 27px;
  margin-bottom: 20px;
  color: #ffffff;
}

.single .top-single {
  padding: 20px;
}

.single .info-top-single {
  border-bottom: 1px solid #444;
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
}

.single .info-top-single-2 {
  flex: 1;
}

.single .top-single .date {
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 3px solid #c62828;
}

.single .top-single .episode {
  margin-bottom: 15px;
  border-left: 3px solid #444;
  background-color: #2a2a2a;
  padding: 10px 15px;
  font-weight: 19px;
}

.single .thumbnail {
  margin-bottom: 20px;
  max-width: 300px;
}

.single .thumbnail img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.single .table-of-content {
  margin-bottom: 15px;
}

.single .table-of-content ul {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.single .table-of-content ul li a {
  background-color: #3a3a3a;
  color: #ffffff;
  padding: 7px 15px;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.2s;
}

.single .table-of-content ul li a:hover {
  background-color: #c62828;
  color: #ffffff;
}

.title-sub-single {
  margin-bottom: 15px;
  font-size: 22px;
  color: #ffffff;
}

.title-sub-single span {
  background-color: #444;
  padding: 0 5px;
}

.single .synopsis {
  margin-bottom: 20px;
  line-height: 24px;
  color: #ffffff;
}

.single .synopsis p {
  margin-bottom: 15px;
}

.single .synopsis p:last-child {
  margin-bottom: 0;
}

.single .top-single .info ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 15px;
  color: #ffffff;
}

.single .top-single .info ul li {
  list-style-type: disc;
  margin-left: 15px;
}

.single .sub-title-info {
  margin: 15px 0;
  color: #ffffff;
}

.single .daftar-foto {
  width: 100%;
  overflow-x: auto;
}

.single .daftar-foto-sub {
  display: flex;
  gap: 10px;
}

.single .daftar-foto-sub img {
  width: auto;
  height: 300px;
}

.single .single_h2 {
  padding: 20px;
  font-size: 20px;
  background-color: #444;
  text-align: center;
  color: #ffffff;
}

.single .nonton .informasi {
  padding: 20px;
  color: #ffffff;
}

.streaming-box {
  width: 100%;
  padding-top: 56.25%;
  height: 0px;
  position: relative;
  background-color: #555;
}

.streaming-box .streaming_load_notif {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #fff;
  background-color: #333;
  padding: 20px;
  cursor: pointer;
  text-align: center;
}

.streaming-box iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  z-index: 1000;
}

.streaming-box .error_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #c62828;
  justify-content: center;
  align-items: center;
  display: flex;
}

.single .info-streaming-box-wrapper {
  padding: 20px;
}

.single .title-nonton-eps h3 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid #444;
  display: inline-block;
  color: #ffffff;
}

.single .title-nonton-eps h3 span {
  color: #5ea0fd;
  margin-left: 5px;
}

.single .info-streaming-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.single .info-streaming-box .st-resolusi h4,
.single .info-streaming-box .st-server h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

.single .info-streaming-box .st-resolusi .resolusi-list,
.single .info-streaming-box .st-server .server-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.single .info-streaming-box .st-resolusi .resolusi-list li {
  padding: 5px 15px;
  background-color: #444;
  border-radius: 12px;
  cursor: pointer;
  color: #ffffff;
}

.single .info-streaming-box .st-resolusi .resolusi-list li:hover,
.single .info-streaming-box .st-resolusi .resolusi-list li.active {
  background-color: #5ea0fd;
  color: #ffffff;
}

.single .info-streaming-box .st-server .server-list li {
  background-color: #d32f2f;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  padding: 10px 20px !important;
  border: 3px solid #b71c1c;
  color: #ffffff;
}

.single .info-streaming-box .st-server .server-list li:hover {
  background-color: #c62828;
}

.single .info-streaming-box .st-server .server-list li.active {
  background-color: #c62828;
}

.single .list-episode-streaming {
  background-color: #2a2a2a;
  padding: 20px;
}

.single .list-episode-streaming h3 {
  font-size: 19px;
  text-align: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.single .list-episode-streaming ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-height: 250px;
  overflow: auto;
}

.single .list-episode-streaming ul li a {
  padding: 7px 15px;
  border-radius: 20px;
  background-color: #d32f2f;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.title_episode_2 {
  margin-bottom: 5px;
  color: #ffffff;
}

.date_episode_2 {
  font-size: 14px;
  background-color: #c62828;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
}

.single .list-episode-streaming ul li:hover a,
.single .list-episode-streaming ul li.active a {
  background-color: #b71c1c;
  color: #ffffff;
}

.download .download-box {
  background-color: #2a2a2a;
  padding: 30px;
}

.single .download-box h2 {
  font-size: 19px;
  margin-bottom: 15px;
  color: #ffffff;
}

.single .download-box li {
  list-style-type: disc;
  margin-left: 15px;
  margin-bottom: 10px;
  color: #ffffff;
}

.single .download-box li:last-child {
  margin-bottom: 0;
}

.single .download-box li .link_download {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.single .download-box li .link_download .subtitle_link {
  background-color: #5ea0fd;
  color: #ffffff;
  margin-right: 10px;
}

.single .download-box li .link_download strong {
  margin-right: 5px;
  color: #ffffff;
}

.single .download-box li a {
  color: #ffffff;
  background-color: #ffbd7f;
  padding: 4px 7px;
  display: inline-block;
  border-radius: 6px;
}

.single .download-box li a:last-child {
  margin-right: 0;
}

.single .komentar {
  padding: 20px;
}

.single .content-komentar p {
  margin-bottom: 15px;
  color: #ffffff;
}

.single .load-komentar {
  border-radius: 20px;
  border: none;
  outline: none;
  padding: 10px 20px;
  background-color: #5ea0fd;
  color: #fff;
  cursor: pointer;
}

.single .load-komentar:hover {
  background-color: #4d88da;
}

.single .peringatan {
  padding: 20px;
  background-color: #444;
}

.single .peringatan h3,
.single .peringatan-dl h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}

.single .peringatan p,
.single .peringatan-dl p {
  margin-bottom: 5px;
  line-height: 23px;
  color: #ffffff;
}

.single .peringatan p:last-child,
.single .peringatan-dl p:last-child {
  margin-bottom: 0;
}

.single .peringatan-dl {
  padding: 20px;
  background-color: #2a2a2a;
  margin-bottom: 20px;
}

.single .content-footer {
  padding: 20px;
  background-color: #1e1e1e;
}

.single .content-footer h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #ffffff;
}

.single .content-footer .tags li {
  list-style-type: disc;
  margin-left: 15px;
  margin-bottom: 5px;
  color: #ffffff;
}

/* Page */

.single-page {
  padding: 20px;
  color: #ffffff;
}

.single-page .title-page {
  font-size: 27px;
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 20px;
  color: #ffffff;
}

.single-page .content-single h1,
.single-page .content-single h2,
.single-page .content-single h3,
.single-page .content-single h4 {
  margin-bottom: 20px;
  color: #ffffff;
}

.single-page .content-single p {
  margin-bottom: 20px;
  color: #ffffff;
}

.single-page .content-single li {
  list-style-type: disc;
  margin-left: 15px;
  color: #ffffff;
}

.single-page .content-single {
  line-height: 24px;
}

/* Recommended */

.recommended-drama {
  padding: 20px;
}

/* Footer */

footer {
  background-color: #1e1e1e;
  padding: 20px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info {
  margin-bottom: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: 75% 25%;
}

.footer h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer_menu a {
  padding: 7px 12px;
  color: #ffffff;
  background-color: #f09494;
  display: inline-block;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.2s;
}

.content_about p {
  margin-bottom: 10px;
  line-height: 25px;
  color: #ffffff;
}

.footer_menu a:hover {
  background-color: #c62828;
}

.title_about {
  margin-bottom: 12px;
  font-size: 22px;
  color: #ffffff;
}

.credit a {
  color: #e57373;
}

/* OTHER */

.episode_all {
  padding: 20px;
}

.info-episode {
  padding: 20px;
  background-color: #2a2a2a;
  border-radius: 10px;
  color: #ffffff;
  margin-bottom: 15px;
}

.info-episode p {
  margin-bottom: 15px;
}

.info-episode ul {
  margin-left: 15px;
}

.info-episode li {
  list-style-type: disc;
}

.daftar-episode {
  max-height: 250px;
  overflow: auto;
}

.daftar-episode li {
  margin-bottom: 10px;
}

.daftar-episode li a {
  display: block;
  background-color: #444;
  padding: 10px 15px;
  border-left: 4px solid #666;
  font-size: 17px;
  color: #ffffff;
  font-weight: 600;
}

.daftar-episode li:nth-child(odd) a {
  background-color: #3a3a3a;
  border-left: 4px solid #555;
}

.title_episode {
  margin-bottom: 5px;
  color: #ffffff;
}

.date_episode {
  font-size: 15px;
  color: #b86326;
}

.next_prev_eps {
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.next_prev_eps a {
  background-color: #61a9da;
  border: 1px solid #61a9da;
  display: inline-block;
  padding: 7px 15px;
  border-radius: 20px;
  color: #fff;
  transition: all 0.2s;
  margin-bottom: 10px;
  text-align: center;
}

.next_prev_eps a:hover {
  background-color: #fff;
  color: #111;
}

.next_prev_eps a:last-child {
  margin-right: 0;
}

.kembali_ke a {
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
}
.kembali_ke a span {
  padding: 15px 20px;
  background-color: #ff8dbe;
  display: inline-block;
  color: #fff;
  margin-right: 10px;
}

.trailer {
  margin-top: 20px;
}

.navigation-episode {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.navigation-episode div {
  flex: 1;
}

.navigation-episode a {
  background-color: #3fa2cc;
  border: 1px solid #3fa2cc;
  display: block;
  color: #fff;
  padding: 15px 25px;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
  border-radius: 20px;
  transition: all 0.2s;
}

.navigation-episode a:hover {
  color: #111;
  background-color: #fff;
}

.info-nonton {
  padding: 20px;
  background-color: #333;
  color: #fff;
}

.info-nonton p {
  margin-bottom: 15px;
}

.info-nonton p:last-child {
  margin-bottom: 0;
}

.content-single ol,
.content-single ul {
  margin-bottom: 20px;
}

.pages_footer {
  margin-bottom: 20px;
}

.pages_footer h3 {
  margin-bottom: 15px;
  color: #ffffff;
}

.header-wapper {
  position: relative;
}

.bungkus_genres {
  display: none;
}

.menu_genres .show_genres {
  background: #7ebff0;
  padding: 10px 20px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.menu_genres .show_genres:hover {
  background: #508fbf;
}

.menu_genres .show_genres span {
  font-size: 13px;
  background: #508fbf;
  padding: 5px;
  border-radius: 6px;
  margin-left: 5px;
}

.menu_genres ul {
  position: absolute;
  top: 100%;
  right: 0;
  background: #1e1e1e;
  max-width: 250px;
  z-index: 9999;
  border-top: 1px solid #444;
}

.menu_genres ul a {
  padding: 10px 15px;
  display: block;
  color: #ffffff;
}

.menu_genres ul a:hover {
  background: #333;
}

.follow {
  margin-top: 15px;
}

.title_follow {
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Download */

.dl-episodes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dl-episodes .box_download_streaming {
  background-color: #2a2a2a;
  border: 1px solid #444;
}

.box_download_streaming h3 {
  padding: 15px;
  background-color: #c62828;
  color: #ffffff;
}

.box_download_streaming ul {
  padding: 15px;
}

.box_download_streaming ul li {
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
  align-items: center;
  color: #ffffff;
}

.box_download_streaming ul li:last-child {
  margin-bottom: 0;
}

.box_download_streaming ul li span {
  display: flex;
  gap: 15px;
}

.box_download_streaming ul li a {
  color: #fff;
  padding: 5px 12px;
  box-sizing: border-box;
  border-radius: 12px;
}

.for_download {
  background-color: #df5757;
  padding: 15px;
}

.for_streaming {
  background-color: #1976d2;
  padding: 15px;
}

.nonton_online_notif {
  padding: 20px;
}

.box_download li a {
  background-color: #508fbf;
}

.box_download li a.link_subtitle {
  background-color: #6faddd;
}

.box_download li a:hover {
  background-color: #6faddd;
}

.box_streaming li a {
  background-color: #ff85bc;
}

.box_streaming li a:hover {
  background-color: #d56397;
}
