@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --hd-navy-950: #071a35;
  --hd-navy-900: #0b2853;
  --hd-navy-800: #144184;
  --hd-blue-600: #2f76da;
  --hd-blue-500: #3e8afa;
  --hd-blue-400: #69a7ff;
  --hd-blue-100: #e9f2ff;
  --hd-orange: #ff8a1f;
  --hd-yellow: #ffd21c;
  --hd-bg: #f4f7fb;
  --hd-surface: #ffffff;
  --hd-surface-soft: #eef3f9;
  --hd-text: #13223a;
  --hd-muted: #6c7a8f;
  --hd-border: #dce5f0;
  --hd-border-strong: #c9d6e6;
  --hd-radius-sm: 9px;
  --hd-radius-md: 14px;
  --hd-radius-lg: 20px;
  --hd-shadow-sm: 0 8px 24px rgba(12, 37, 74, .08);
  --hd-shadow-md: 0 16px 44px rgba(12, 37, 74, .12);
  --hd-shadow-lg: 0 24px 70px rgba(7, 26, 53, .18);
  --hd-transition: 180ms ease;
}

html {
  scroll-behavior: smooth;
  background: var(--hd-bg);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 2%, rgba(62, 138, 250, .09), transparent 31rem),
    radial-gradient(circle at 88% 24%, rgba(255, 138, 31, .045), transparent 25rem),
    var(--hd-bg);
  color: var(--hd-text);
  font-family: Inter, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: #fff;
  background: var(--hd-blue-500);
}

body::-webkit-scrollbar,
#sidebar_menu::-webkit-scrollbar,
.dropdown-menu::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-thumb,
#sidebar_menu::-webkit-scrollbar-thumb,
.dropdown-menu::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(62, 138, 250, .55);
  background-clip: padding-box;
}

a {
  color: var(--hd-text);
  transition: color var(--hd-transition), background-color var(--hd-transition), border-color var(--hd-transition), box-shadow var(--hd-transition), transform var(--hd-transition), opacity var(--hd-transition);
}

a:hover,
a:focus {
  color: var(--hd-blue-500);
}

button,
input,
select,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(62, 138, 250, .28);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1440px;
  padding-right: 24px;
  padding-left: 24px;
}

.btn {
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: none;
  transition: transform var(--hd-transition), box-shadow var(--hd-transition), background-color var(--hd-transition), border-color var(--hd-transition), color var(--hd-transition);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-primary,
.btn-focus {
  border-color: var(--hd-blue-500) !important;
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600)) !important;
  color: #fff !important;
  box-shadow: 0 9px 22px rgba(47, 118, 218, .24);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-focus:hover,
.btn-focus:focus {
  border-color: #245fb5 !important;
  background: linear-gradient(135deg, #347ddb, #245fb5) !important;
  box-shadow: 0 12px 28px rgba(47, 118, 218, .31);
}

.btn-secondary,
.btn-light {
  border: 1px solid var(--hd-border) !important;
  background: var(--hd-surface) !important;
  color: var(--hd-text) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-light:hover,
.btn-light:focus {
  border-color: var(--hd-blue-400) !important;
  background: var(--hd-blue-100) !important;
  color: var(--hd-blue-600) !important;
}

.btn-radius {
  border-radius: 999px;
}

/* Header */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 76px;
  margin: 0 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(135deg, var(--hd-navy-950) 0%, var(--hd-navy-800) 68%, #1d58a4 100%);
  box-shadow: 0 10px 34px rgba(7, 26, 53, .18);
}

#header .container {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

#header #logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  height: 44px;
  margin: 0 30px 0 0;
  float: none;
  line-height: 0;
}

#header #logo img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0;
  float: none;
  object-fit: contain;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, .16));
}

#header_menu {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  float: none;
}

#header_menu ul.header_menu-list {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  gap: 3px;
}

#header_menu ul.header_menu-list .nav-item {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
}

#header_menu ul.header_menu-list .nav-item > a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 15px;
  border-radius: 11px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0;
  text-transform: none;
}

#header_menu ul.header_menu-list .nav-item:hover > a,
#header_menu ul.header_menu-list .nav-item:focus-within > a {
  color: #fff;
  background: rgba(255, 255, 255, .11);
}

#header_menu ul.header_menu-list .nav-item.active > a::before {
  right: 14px;
  bottom: 6px;
  left: 14px;
  width: auto;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--hd-orange), var(--hd-yellow));
}

#header_menu .header_menu-sub {
  top: 68px;
  width: min(760px, 80vw);
  padding: 10px;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-md);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--hd-shadow-lg);
  backdrop-filter: blur(16px);
}

#header_menu .header_menu-sub::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  height: 10px;
}

#header_menu .header_menu-sub ul.sub-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin: 0;
  padding: 5px;
  overflow: visible;
}

#header_menu .header_menu-sub ul.sub-menu li {
  width: auto;
  margin: 0;
  float: none;
}

#header_menu .header_menu-sub ul.sub-menu li a {
  display: block;
  height: auto;
  padding: 9px 11px;
  border-radius: 8px;
  color: #34445b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

#header_menu .header_menu-sub ul.sub-menu li:hover a,
#header_menu .header_menu-sub ul.sub-menu li a:focus {
  color: var(--hd-blue-600) !important;
  background: var(--hd-blue-100);
}

#header_right {
  position: static;
  display: flex;
  align-items: center;
  margin-left: auto;
}

#search {
  width: 310px;
  margin: 0 12px 0 0;
  color: var(--hd-text);
  position: relative;
  float: none;
}

.search-content input.search-input {
  height: 44px;
  padding: 0 18px 0 43px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
  background: rgba(255, 255, 255, .11);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06) !important;
}

.search-content input.search-input::placeholder {
  color: rgba(255, 255, 255, .64);
}

.search-content input.search-input:focus {
  border-color: rgba(105, 167, 255, .75);
  background: #fff;
  color: var(--hd-text);
  box-shadow: 0 0 0 4px rgba(62, 138, 250, .14) !important;
}

.search-content input.search-input:focus::placeholder {
  color: #8b97a8;
}

.search-content .search-icon,
.search-content .search-submit {
  width: 43px;
  height: 44px;
  color: rgba(255, 255, 255, .8);
  line-height: 44px;
}

.search-content input.search-input:focus ~ .search-icon,
.search-content:focus-within .search-icon {
  color: var(--hd-blue-500);
}

.search-content .search-result-pop,
#block-result,
#search-loading {
  top: 52px;
  overflow: hidden;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-md);
  background: #fff;
  box-shadow: var(--hd-shadow-lg);
}

.search-content .search-result-pop .nav-item {
  padding: 11px 12px;
  border-bottom: 1px solid #edf1f6;
  color: var(--hd-muted);
}

.search-content .search-result-pop .nav-item:hover {
  background: #f5f8fc;
}

.search-content .search-result-pop .nav-bottom {
  padding: 13px 16px;
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600)) !important;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

#user-slot {
  display: inline-flex;
  align-items: center;
  height: 44px;
  float: none;
}

#header .btn-on-header,
.header_right-user.logged > .dropdown > .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin: 0;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .17) !important;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1) !important;
  color: #fff !important;
  line-height: 42px;
  box-shadow: none;
}

#header .btn-on-header:hover,
.header_right-user.logged > .dropdown > .btn-primary:hover {
  border-color: rgba(255, 255, 255, .28) !important;
  background: rgba(255, 255, 255, .17) !important;
  color: #fff !important;
}

.header_right-user.logged {
  margin: 0;
}

.header_right-user.logged .dropdown-menu {
  top: calc(100% + 9px);
  padding: 7px;
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  box-shadow: var(--hd-shadow-md);
}

.header_right-user.logged .dropdown-menu .dropdown-item {
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 600;
}

#mobile_menu {
  color: #fff;
}

/* Home search hero */
@media screen and (min-width: 1200px) {
  #header.header-home-fix {
    position: relative;
    height: 330px;
    margin-bottom: 92px;
    overflow: visible;
    background:
      linear-gradient(180deg, rgba(7, 26, 53, .18), rgba(7, 26, 53, .74)),
      linear-gradient(105deg, rgba(20, 65, 132, .93), rgba(31, 92, 167, .72)),
      url("../../images/header-bg.jpg") center top / cover no-repeat;
    box-shadow: 0 22px 60px rgba(7, 26, 53, .18);
  }

  #header.header-home-fix::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(244, 247, 251, 0), var(--hd-bg));
    pointer-events: none;
  }

  #header.header-home-fix .container {
    display: block;
    height: auto;
    min-height: 100%;
  }

  #header.header-home-fix #logo {
    top: 16px;
    left: 24px;
    height: 43px;
    margin: 0;
  }

  #header.header-home-fix #header_menu {
    display: inline-flex;
    height: 76px;
  }

  #header.header-home-fix #header_right {
    position: absolute;
    top: 16px;
    right: 24px;
  }

  #header.header-home-fix .btn-on-header {
    height: 43px;
    margin: 0;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    background: rgba(255, 255, 255, .11) !important;
    color: #fff !important;
    line-height: 41px;
  }

  #header.header-home-fix .header-home-add {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    margin: 44px 0 0;
    clear: both;
    text-align: center;
  }

  #header.header-home-fix .sht-heading {
    margin: 0 0 24px !important;
    color: #fff;
    font-size: clamp(28px, 2.7vw, 39px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.035em;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .16);
  }

  #header.header-home-fix #search-home {
    width: min(900px, calc(100% - 100px));
    max-width: none;
  }

  #header.header-home-fix #search-home .search-content {
    bottom: 0;
    margin: 0;
  }

  #header.header-home-fix #search-home .search-content input.search-input {
    height: 68px;
    padding: 0 86px 0 64px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    color: var(--hd-text);
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0 22px 54px rgba(7, 26, 53, .22) !important;
  }

  #header.header-home-fix #search-home .search-content input.search-input::placeholder {
    color: #8995a6;
  }

  #header.header-home-fix #search-home .search-content .search-icon {
    width: 64px;
    height: 68px;
    color: var(--hd-blue-500);
    font-size: 18px;
    line-height: 68px;
  }

  #header.header-home-fix #search-home .search-content .btn-primary-submit {
    top: 7px;
    right: 7px;
    width: 54px;
    height: 54px;
    border-radius: 13px;
    line-height: 54px;
    box-shadow: 0 10px 24px rgba(47, 118, 218, .28);
  }

  #header.header-home-fix #search-home .search-content .search-result-pop {
    top: 76px;
    padding: 7px;
    border-radius: 16px;
  }
}

/* Sidebar */
#sidebar_menu_bg {
  background: rgba(4, 13, 28, .68);
  backdrop-filter: blur(4px);
}

#sidebar_menu {
  width: min(330px, 88vw);
  padding: 24px;
  background: linear-gradient(180deg, var(--hd-navy-950), #0d2f62);
  color: rgba(255, 255, 255, .72);
  box-shadow: 22px 0 70px rgba(4, 13, 28, .35);
}

#sidebar_menu .toggle-sidebar {
  height: 40px;
  padding: 0 16px;
  border-color: rgba(255, 255, 255, .14) !important;
  background: rgba(255, 255, 255, .08) !important;
  color: #fff !important;
}

#sidebar_menu .sidebar_menu-list {
  margin-top: 22px;
}

#sidebar_menu .sidebar_menu-list > .nav-item {
  border-bottom-color: rgba(255, 255, 255, .09);
}

#sidebar_menu .sidebar_menu-list > .nav-item > .nav-link {
  padding: 15px 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

#sidebar_menu .sidebar_menu-list > .nav-item .nav > .nav-item > .nav-link {
  padding: 8px 4px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}

#sidebar_menu .sidebar_menu-list > .nav-item .nav > .nav-item > .nav-link:hover {
  color: var(--hd-blue-400);
}

/* Partner banner */
.partner-banner {
  width: 100%;
  max-width: 1440px;
  margin: -18px auto 34px;
  padding: 0 24px;
  text-align: center;
}

.partner-banner__link {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--hd-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--hd-shadow-sm);
}

.partner-banner .hianime-banner-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 112px !important;
  margin: 0 !important;
  object-fit: cover !important;
  border: 0 !important;
}

/* Main layout and headings */
#main-wrapper {
  min-height: calc(100vh - 310px);
  margin-bottom: 72px;
}

.block_area {
  margin-bottom: 66px;
}

.block_area .block_area-header {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 23px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--hd-border);
}

.block_area .block_area-header .bah-heading {
  display: flex;
  align-items: center;
}

.block_area .block_area-header .cat-heading {
  position: relative;
  margin: 0 !important;
  padding: 0 0 0 15px;
  color: var(--hd-text);
  font-size: clamp(22px, 2vw, 29px) !important;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.block_area .block_area-header .cat-heading::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 5px;
  border-radius: 5px;
  background: linear-gradient(180deg, var(--hd-orange), var(--hd-yellow));
}

.section-id-01 .block_area-header .cat-heading {
  display: block;
}

.block_area .block_area-header-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 25px;
}

.block_area .block_area-header-tabs .pre-tabs {
  display: inline-flex;
  gap: 7px;
  margin: 0;
  padding: 4px;
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  background: var(--hd-surface);
  box-shadow: 0 4px 16px rgba(12, 37, 74, .04);
}

.pre-tabs .nav-item {
  margin: 0 !important;
}

.pre-tabs .nav-item .nav-link {
  min-height: 34px;
  padding: 8px 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--hd-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.pre-tabs .nav-item .nav-link i {
  display: inline-block;
}

.pre-tabs .nav-item .nav-link:hover {
  background: var(--hd-surface-soft);
  color: var(--hd-blue-600);
}

.pre-tabs .nav-item .nav-link.active {
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600));
  color: #fff;
  box-shadow: 0 8px 18px rgba(47, 118, 218, .23);
}

.bah-filter .btn-in-headcat {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0;
  padding: 0 15px;
  border: 1px solid var(--hd-border) !important;
  border-radius: 10px !important;
  background: var(--hd-surface) !important;
  color: var(--hd-text) !important;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--hd-shadow-sm);
}

.bah-filter .btn-in-headcat:hover {
  border-color: var(--hd-blue-400) !important;
  color: var(--hd-blue-600) !important;
}

.sharethis-inline-share-buttons {
  min-height: 38px;
}

/* Movie and show cards */
.film_list .film_list-wrap {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px 18px;
  margin: 0 !important;
}

.film_list .film_list-wrap > .clearfix {
  display: none !important;
}

.film_list .film_list-wrap .flw-item {
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  float: none !important;
}

.film_list .film_list-wrap .flw-item > .clearfix {
  display: none;
}

.film-poster {
  overflow: hidden;
  border: 1px solid rgba(19, 34, 58, .1);
  border-radius: 15px;
  background: linear-gradient(145deg, #dce6f2, #edf3f9);
  box-shadow: 0 10px 26px rgba(12, 37, 74, .1);
  transform: translateZ(0);
}

.film-poster .film-poster-img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform 380ms ease, filter 380ms ease;
}

.flw-item:hover .film-poster {
  border-color: rgba(62, 138, 250, .34);
  box-shadow: 0 18px 40px rgba(12, 37, 74, .18);
}

.flw-item:hover .film-poster .film-poster-img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.055);
}

.flw-item .film-poster .film-poster-ahref::after {
  top: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 26, 53, .08), rgba(7, 26, 53, .72));
  opacity: 0;
}

.flw-item .film-poster .film-poster-ahref::before {
  width: 56px;
  height: 56px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(7, 26, 53, .3);
  opacity: 0;
  transform: translate(-50%, -44%) scale(.86);
}

.flw-item .film-poster .film-poster-ahref i {
  width: 56px;
  height: 56px;
  margin: 0;
  color: var(--hd-blue-600);
  font-size: 18px;
  line-height: 56px;
  text-align: center;
  opacity: 0;
  transform: translate(-48%, -44%) scale(.86);
}

.flw-item .film-poster:hover .film-poster-ahref::after {
  opacity: 1;
}

.flw-item .film-poster:hover .film-poster-ahref::before,
.flw-item .film-poster:hover .film-poster-ahref i {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.flw-item .film-poster:hover .film-poster-ahref i {
  transform: translate(-48%, -50%) scale(1);
}

.flw-item .pick {
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .03em;
  box-shadow: 0 7px 18px rgba(7, 26, 53, .18);
  backdrop-filter: blur(8px);
}

.flw-item .pick.film-poster-quality {
  background: linear-gradient(135deg, rgba(62, 138, 250, .97), rgba(31, 98, 197, .97));
  color: #fff;
}

.film_list .film_list-wrap .flw-item .film-poster {
  margin-bottom: 12px;
}

.film_list .film_list-wrap .flw-item .film-detail-fix {
  margin: 0;
  padding: 0 2px;
  background: transparent;
  color: var(--hd-muted);
  text-align: left;
}

.film_list .film_list-wrap .flw-item .film-detail-fix .film-name {
  margin: 0 0 7px;
  color: var(--hd-text);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.film_list .film_list-wrap .flw-item .film-detail-fix .film-name a {
  color: var(--hd-text);
}

.film_list .film_list-wrap .flw-item:hover .film-detail-fix .film-name a {
  color: var(--hd-blue-600);
}

.film_list .film_list-wrap .flw-item .film-detail-fix .fd-infor {
  min-height: 21px;
  color: var(--hd-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.film_list .film_list-wrap .flw-item .film-detail-fix .fd-infor .dot,
.dot {
  width: 4px;
  height: 4px;
  margin: 0 7px;
  vertical-align: 2px;
  background: #9aabc0;
}

.film_list .film_list-wrap .flw-item .film-detail-fix .fd-infor .fdi-type {
  padding: 3px 6px;
  border: 1px solid var(--hd-border-strong);
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
  color: #596a80;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
}

/* Pagination */
.pre-pagination {
  margin: 30px 0 !important;
}

.pre-pagination .pagination {
  flex-wrap: wrap;
  gap: 7px;
}

.pre-pagination .pagination .page-item {
  margin: 0;
}

.pre-pagination .pagination .page-item .page-link,
.pre-pagination .pagination-lg .page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--hd-border);
  border-radius: 10px;
  background: var(--hd-surface);
  color: var(--hd-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  box-shadow: 0 4px 14px rgba(12, 37, 74, .04);
}

.pre-pagination .pagination .page-item .page-link:hover {
  border-color: var(--hd-blue-400);
  background: var(--hd-blue-100);
  color: var(--hd-blue-600);
}

.pre-pagination .pagination .page-item.active .page-link {
  border-color: var(--hd-blue-500);
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600));
  color: #fff;
  box-shadow: 0 9px 22px rgba(47, 118, 218, .24);
}

/* Filter interface */
.category_filter .category_filter-content,
.is-filter .category-filter {
  padding: 20px;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-md);
  background: var(--hd-surface);
  box-shadow: var(--hd-shadow-sm);
}

.is-filter .category-filter {
  display: flex;
  align-items: end;
  gap: 14px;
}

.is-filter .filter-flex {
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 10px;
}

.is-filter .filter-flex > .item {
  position: relative;
  min-width: 0;
}

.is-filter .item-inner {
  min-height: 54px;
  padding: 8px 12px;
  border: 1px solid var(--hd-border);
  border-radius: 10px;
  background: #f8fafc;
  cursor: pointer;
}

.is-filter .item-inner:hover,
.is-filter .item.show .item-inner {
  border-color: var(--hd-blue-400);
  background: var(--hd-blue-100);
}

.is-filter .subtext {
  margin-bottom: 3px;
  color: #8794a5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.1;
  text-transform: uppercase;
}

.is-filter .display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--hd-text);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.is-filter .filter-button {
  flex: 0 0 auto;
}

.is-filter .btn-filter {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(47, 118, 218, .25);
}

.is-filter .filter-dropdown {
  min-width: 220px;
  max-height: 360px;
  padding: 7px;
  overflow: auto;
  border: 1px solid var(--hd-border);
  border-radius: 12px;
  box-shadow: var(--hd-shadow-md);
}

.is-filter .filter-dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 2px;
  min-width: 330px;
}

.is-filter .dropdown-item {
  padding: 0;
  border-radius: 8px;
  cursor: pointer;
}

.is-filter .choice,
.is-filter .sort-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  color: #46566d;
  font-size: 12px;
  font-weight: 600;
}

.is-filter .dropdown-item:hover .choice,
.is-filter .sort-item:hover,
.is-filter .sort-item.active {
  background: var(--hd-blue-100);
  color: var(--hd-blue-600);
}

.is-filter .box-c {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--hd-border-strong);
  border-radius: 5px;
  color: transparent;
  font-size: 9px;
}

.is-filter .filter-item.active .box-c {
  border-color: var(--hd-blue-500);
  background: var(--hd-blue-500);
  color: #fff;
}

.modal-content,
.premodal .modal-content {
  overflow: hidden;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-lg);
  background: #fff;
  box-shadow: var(--hd-shadow-lg);
}

/* Player and detail pages */
.main-wrapper-detail {
  margin-top: -12px;
}

.watching {
  margin-top: 0;
  padding: 10px 0 28px;
}

.watching .prebreadcrumb,
.prebreadcrumb {
  display: block;
  margin: 0 0 16px;
}

.prebreadcrumb .breadcrumb {
  gap: 3px;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--hd-muted);
  font-size: 12px;
  font-weight: 600;
}

.prebreadcrumb .breadcrumb a {
  color: var(--hd-blue-600);
}

.prebreadcrumb .breadcrumb-item.active,
.prebreadcrumb .breadcrumb-item::before {
  color: #8492a5 !important;
}

.watching .alert {
  padding: 13px 16px;
  border: 1px solid rgba(255, 170, 0, .36);
  border-radius: 11px;
  background: #fff7df !important;
  color: #725000 !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  box-shadow: 0 6px 18px rgba(116, 80, 0, .06);
}

.watching_player {
  overflow: hidden;
  border: 1px solid rgba(7, 26, 53, .32);
  border-radius: 18px;
  background: #030b16;
  box-shadow: 0 22px 58px rgba(7, 26, 53, .24);
}

.watching_player-area {
  overflow: hidden;
  background: #030b16;
}

#mask-player,
#watch-iframe {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 56.25% !important;
  background: radial-gradient(circle at center, #102b52, #030b16 72%);
}

.watching_player-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, #0c1e38, #071528);
  color: rgba(255, 255, 255, .72);
}

.watching_player-control .btn,
.watching_player-control #wl-content,
.watching_player-control #wl-content-login {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 !important;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .11) !important;
  border-radius: 9px;
  background: rgba(255, 255, 255, .07) !important;
  color: rgba(255, 255, 255, .88) !important;
  font-size: 12px;
  font-weight: 700;
}

.watching_player-control .btn .btn {
  min-height: auto;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
}

.watching_player-control .btn:hover,
.watching_player-control #wl-content:hover,
.watching_player-control #wl-content-login:hover {
  border-color: rgba(105, 167, 255, .58) !important;
  background: rgba(62, 138, 250, .17) !important;
  color: #fff !important;
}

#list_of {
  max-width: 1440px;
  margin: 0 auto 20px;
}

.detail_page-watch .detail_page-infor {
  min-height: 0;
  margin: 30px 0 !important;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hd-text);
  font-size: 14px;
  line-height: 1.6;
}

.detail_page-watch .detail_page-infor .dp-i-content,
.watch_page .detail_page-infor .dp-i-content {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  min-height: 0;
  padding: 28px !important;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-lg);
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: var(--hd-shadow-md) !important;
}

.detail_page .dp-i-c-poster,
.watch_page .dp-i-c-poster {
  position: static;
  top: auto;
  left: auto;
  width: 100%;
}

.detail_page .dp-i-c-right,
.watch_page .dp-i-c-right {
  min-width: 0;
  padding: 0;
}

.detail_page-watch .dp-i-content > .clearfix {
  display: none;
}

.detail_page .dp-i-c-poster .film-poster {
  margin: 0 0 13px;
  border-radius: 14px;
}

.heading-name {
  margin: 0 0 14px;
  color: var(--hd-text);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.heading-name a {
  color: var(--hd-text);
}

.detail_page-watch .detail_page-infor .dp-i-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.detail_page-watch .detail_page-infor .dp-i-stats .item {
  margin: 0 !important;
  padding: 0;
  border: 0;
}

.dp-i-stats .btn-trailer,
.dp-i-stats .btn-quality,
.dp-i-stats .btn-warning {
  min-height: 34px;
  padding: 0 11px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.dp-i-stats .btn-trailer {
  border: 1px solid var(--hd-blue-400) !important;
  background: var(--hd-blue-100) !important;
  color: var(--hd-blue-600) !important;
}

.dp-i-stats .btn-quality {
  border: 1px solid var(--hd-blue-500) !important;
  background: var(--hd-blue-500) !important;
  color: #fff !important;
}

.dp-i-stats .btn-warning {
  border: 1px solid rgba(255, 138, 31, .34) !important;
  background: #fff2e5 !important;
  color: #a85000 !important;
}

.detail_page .detail_page-watch .detail_page-infor .description {
  max-width: 980px;
  margin: 0 0 20px;
  color: #53647a;
  font-size: 14px;
  line-height: 1.75;
}

.dp-i-c-right .elements {
  margin: 0;
  padding-top: 17px;
  border-top: 1px solid #edf1f6;
}

.dp-i-c-right .elements .row-line {
  margin: 0 0 9px;
  color: #65758a;
  line-height: 1.6;
}

.dp-i-c-right .elements .row-line .type,
.dp-i-c-right .elements .row-line strong {
  color: var(--hd-text);
  font-weight: 750;
}

.dp-i-c-right .elements .row-line a {
  display: inline;
  color: var(--hd-blue-600);
  font-weight: 600;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 30px !important;
}

.detail-tags .btn-dtag {
  margin: 0;
  padding: 7px 10px;
  border: 1px solid var(--hd-border) !important;
  border-radius: 8px;
  background: #fff !important;
  color: var(--hd-muted) !important;
  font-size: 10px;
  font-weight: 600;
}

.block-rating .rating-result {
  padding: 10px 12px;
  border: 1px solid var(--hd-border);
  border-radius: 10px;
  background: #f8fafc;
}

.block-rating .rating-result .rr-mark {
  color: var(--hd-muted);
}

.block-rating .rating-result .rr-mark span {
  color: var(--hd-blue-600);
}

/* Servers, seasons and episodes */
.detail_page-servers,
.seasons-list {
  overflow: visible;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-lg);
  background: #fff;
  box-shadow: var(--hd-shadow-sm);
}

.detail_page-servers .dp-s-line {
  padding: 20px;
}

.detail_page-servers .dp-s-line .nav .nav-item .nav-link {
  padding: 28px 16px 11px 46px;
  border: 1px solid var(--hd-border) !important;
  border-radius: 10px !important;
  background: #f7f9fc;
  color: var(--hd-text);
  font-weight: 700;
}

.detail_page-servers .dp-s-line .nav .nav-item .nav-link:hover {
  border-color: var(--hd-blue-400) !important;
  background: var(--hd-blue-100);
  color: var(--hd-blue-600);
}

.detail_page-servers .dp-s-line .nav .nav-item .nav-link.active {
  border-color: var(--hd-blue-500) !important;
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600));
  color: #fff;
  box-shadow: 0 10px 22px rgba(47, 118, 218, .22);
}

.seasons-list {
  margin: 0 0 30px !important;
  padding: 0;
}

.seasons-list .sl-content {
  padding: 25px;
}

.seasons-list .sl-content .slc-eps {
  width: 100%;
  padding: 0;
  float: none;
}

.seasons-list .sl-content .sl-title {
  margin: 0 0 18px;
  color: var(--hd-text);
  font-size: 18px;
  font-weight: 800;
}

.seasons-list .btn-seasons {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--hd-border) !important;
  border-radius: 10px;
  background: #f7f9fc;
  color: var(--hd-text);
  font-weight: 750;
}

.seasons-list .dropdown-menu-new {
  padding: 7px;
  border: 1px solid var(--hd-border);
  border-radius: 11px;
  box-shadow: var(--hd-shadow-md);
}

.seasons-list .dropdown-menu-new .dropdown-item {
  padding: 9px 12px;
  border-radius: 8px;
  color: #53647a;
  font-size: 13px;
  font-weight: 650;
}

.seasons-list .dropdown-menu-new .dropdown-item:hover,
.seasons-list .dropdown-menu-new .dropdown-item.active {
  background: var(--hd-blue-100);
  color: var(--hd-blue-600);
}

.seasons-list .sl-content .slc-eps .slce-list ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.seasons-list .sl-content .slc-eps .slce-list li {
  width: auto;
  margin: 0;
  float: none;
}

.seasons-list .sl-content .slc-eps .slce-list .nav-link {
  height: auto;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--hd-border);
  border-radius: 9px;
  background: #f8fafc;
  color: #53647a;
  font-size: 12px;
  font-weight: 650;
}

.seasons-list .sl-content .slc-eps .slce-list .nav-link:hover,
.seasons-list .sl-content .slc-eps .slce-list .nav-link.active {
  border-color: var(--hd-blue-400);
  background: var(--hd-blue-100);
  color: var(--hd-blue-600);
}

/* Search suggestions loaded through AJAX */
.loading-wrap {
  overflow: hidden;
  border: 1px solid var(--hd-border);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--hd-shadow-lg);
}

.loading-wrap .item,
.loading-wrap .item:nth-child(2n+1) {
  display: block;
  min-height: 86px;
  padding: 8px 10px;
  border-bottom: 1px solid #edf1f6;
  background: #fff;
}

.loading-wrap .item:hover {
  background: #f5f8fc;
}

.loading-wrap .poster {
  width: 48px;
  height: 70px;
  border-radius: 8px;
}

.loading-wrap .title {
  margin: 10px 0 4px;
  color: var(--hd-text);
  font-size: 14px;
  font-weight: 750;
}

.loading-wrap .title:hover {
  color: var(--hd-blue-600);
}

.loading-wrap .meta {
  padding: 0;
  color: var(--hd-muted);
  font-size: 11px;
}

.loading-wrap .more {
  padding: 11px;
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600));
  color: #fff;
  font-weight: 750;
}

/* General content cards */
.block_area_boxed,
.block_area_manager,
#film_comments {
  border-radius: var(--hd-radius-lg);
}

.block_area_boxed .block_area-content,
.block_area_manager .block_area-content,
#film_comments {
  border: 1px solid var(--hd-border);
  background: #fff;
  box-shadow: var(--hd-shadow-sm);
}

.form-control {
  border-color: var(--hd-border);
  border-radius: 10px;
  color: var(--hd-text);
  box-shadow: none;
}

.form-control:focus {
  border-color: var(--hd-blue-400);
  box-shadow: 0 0 0 4px rgba(62, 138, 250, .12);
}

/* Footer */
#footer {
  position: relative;
  overflow: hidden;
  padding: 54px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 16% 0%, rgba(62, 138, 250, .21), transparent 25rem),
    linear-gradient(135deg, #06162d, #0c2b58 72%, #123d78);
  color: rgba(255, 255, 255, .67);
}

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hd-orange), var(--hd-yellow), var(--hd-blue-500));
}

#footer .container {
  display: block;
  padding-right: 24px;
  padding-left: 24px;
}

.hdt-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(150px, .55fr));
  gap: 42px;
  align-items: start;
}

.hdt-footer-brand img {
  display: block;
  width: auto;
  height: 44px;
  margin-bottom: 17px;
}

.hdt-footer-brand p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .63);
  font-size: 13px;
  line-height: 1.7;
}

.hdt-footer-title {
  margin: 4px 0 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hdt-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hdt-footer-links li + li {
  margin-top: 9px;
}

#footer .hdt-footer-links a {
  color: rgba(255, 255, 255, .67);
  font-size: 13px;
  font-weight: 600;
}

#footer .hdt-footer-links a:hover {
  color: #fff;
}

.hdt-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
}

.hdt-footer-bottom p {
  margin: 0;
}

.hdt-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .63);
}

.hdt-footer-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hd-blue-400);
  box-shadow: 0 0 0 4px rgba(105, 167, 255, .13);
}

/* Tablet */
@media screen and (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  #header {
    position: relative;
    height: 126px;
    margin-bottom: 34px;
    text-align: center;
  }

  #header .container {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }

  #mobile_menu {
    top: 8px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
  }

  #mobile_menu i {
    height: auto;
    font-size: 18px;
    line-height: 1;
  }

  #header #logo {
    position: absolute;
    top: 10px;
    left: 50%;
    width: auto;
    height: 40px;
    margin: 0;
    transform: translateX(-50%);
  }

  #header_right {
    position: static;
    display: block;
  }

  #user-slot {
    position: absolute;
    top: 9px;
    right: 10px;
    height: 46px;
    margin: 0;
  }

  #header .btn-on-header,
  .header_right-user.logged > .dropdown > .btn-primary {
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 12px;
  }

  #header .btn-on-header.btn-login {
    width: 46px;
    height: 46px;
    padding: 0;
  }

  #header .btn-on-header.btn-login i {
    margin: 0 !important;
    font-size: 17px;
    line-height: 46px;
  }

  #search {
    position: absolute;
    top: 65px;
    right: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0 16px 15px;
    background: transparent;
  }

  .search-content input.search-input {
    height: 46px;
    border-color: rgba(255, 255, 255, .18);
    border-radius: 12px;
    background: rgba(255, 255, 255, .96) !important;
    color: var(--hd-text);
  }

  .search-content input.search-input::placeholder {
    color: #8794a5;
  }

  .search-content .search-icon {
    height: 46px;
    color: var(--hd-blue-500);
    line-height: 46px;
  }

  #header.header-home-fix {
    height: 126px;
    margin-bottom: 34px;
  }

  .partner-banner {
    margin-top: -10px;
  }

  .film_list .film_list-wrap {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .is-filter .filter-flex {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }

  .seasons-list .sl-content .slc-eps .slce-list ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 991px) {
  .film_list .film_list-wrap {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px 15px;
  }

  .detail_page-watch .detail_page-infor .dp-i-content,
  .watch_page .detail_page-infor .dp-i-content {
    grid-template-columns: 165px minmax(0, 1fr);
    gap: 24px;
    padding: 23px !important;
  }

  .heading-name {
    font-size: 31px;
  }

  .is-filter .category-filter {
    align-items: stretch;
    flex-direction: column;
  }

  .is-filter .btn-filter {
    width: 100%;
  }

  .hdt-footer-grid {
    grid-template-columns: 1.4fr .7fr .7fr;
    gap: 28px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  #header {
    margin-bottom: 28px;
  }

  .partner-banner {
    margin: -6px auto 28px;
    padding: 0 15px;
  }

  .block_area {
    margin-bottom: 48px;
  }

  .block_area .block_area-header {
    align-items: flex-start;
    min-height: 40px;
    margin-bottom: 18px;
    padding-bottom: 11px;
  }

  .block_area .block_area-header-tabs {
    align-items: flex-start;
  }

  .film_list .film_list-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px 13px;
  }

  .film_list .film_list-wrap .flw-item .film-detail-fix .film-name {
    font-size: 13px;
  }

  .detail_page-watch .detail_page-infor .dp-i-content,
  .watch_page .detail_page-infor .dp-i-content {
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 20px;
    padding: 20px !important;
  }

  .heading-name {
    font-size: 27px;
  }

  .detail_page .detail_page-watch .detail_page-infor .description {
    font-size: 13px;
  }

  .is-filter .filter-flex {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seasons-list .sl-content {
    padding: 20px;
  }

  .seasons-list .sl-content .slc-eps .slce-list ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hdt-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hdt-footer-brand {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 575px) {
  body {
    font-size: 13px;
  }

  #header {
    height: 120px;
    margin-bottom: 24px;
  }

  #header #logo {
    top: 13px;
    height: 34px;
  }

  #mobile_menu,
  #user-slot,
  #header .btn-on-header,
  #header .btn-on-header.btn-login,
  .header_right-user.logged > .dropdown > .btn-primary {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  #mobile_menu {
    top: 9px;
    left: 9px;
  }

  #user-slot {
    top: 9px;
    right: 9px;
  }

  #header .btn-on-header.btn-login i {
    line-height: 42px;
  }

  #search {
    top: 60px;
    padding-right: 11px;
    padding-left: 11px;
  }

  .search-content input.search-input {
    height: 45px;
  }

  .search-content .search-icon {
    height: 45px;
    line-height: 45px;
  }

  #header.header-home-fix {
    height: 120px;
    margin-bottom: 24px;
  }

  .partner-banner {
    display: none;
  }

  #main-wrapper {
    margin-bottom: 48px;
  }

  .block_area .block_area-header .cat-heading {
    padding-left: 12px;
    font-size: 20px !important;
  }

  .block_area .block_area-header .cat-heading::before {
    width: 4px;
  }

  .block_area .block_area-header-tabs .pre-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .pre-tabs .nav-item .nav-link {
    white-space: nowrap;
  }

  .film_list .film_list-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .film-poster {
    border-radius: 13px;
  }

  .flw-item .pick {
    top: 8px;
    right: 8px;
  }

  .film_list .film_list-wrap .flw-item .film-detail-fix .fd-infor .fdi-type {
    display: inline-block;
  }

  .pre-pagination .pagination {
    display: flex;
    height: auto;
    overflow: visible;
    white-space: normal;
  }

  .pre-pagination .pagination .page-item .page-link,
  .pre-pagination .pagination-lg .page-item .page-link {
    min-width: 38px;
    height: 38px;
    padding: 0 9px;
    line-height: 36px;
  }

  .watching .container {
    padding-right: 11px;
    padding-left: 11px;
  }

  .watching_player {
    border-radius: 13px;
  }

  .watching_player-control {
    padding: 9px;
  }

  .watching_player-control .btn,
  .watching_player-control #wl-content,
  .watching_player-control #wl-content-login {
    min-height: 36px;
    padding: 0 9px;
    font-size: 0;
  }

  .watching_player-control .btn i,
  .watching_player-control #wl-content i,
  .watching_player-control #wl-content-login i {
    margin: 0 !important;
    font-size: 15px;
  }

  .detail_page-watch .detail_page-infor .dp-i-content,
  .watch_page .detail_page-infor .dp-i-content {
    display: block;
    padding: 18px !important;
    border-radius: 15px;
  }

  .detail_page .dp-i-c-poster,
  .watch_page .dp-i-c-poster {
    width: 132px;
    margin: 0 auto 19px;
  }

  .heading-name {
    font-size: 25px;
    text-align: center;
  }

  .detail_page-watch .detail_page-infor .dp-i-stats {
    justify-content: center;
  }

  .detail_page .detail_page-watch .detail_page-infor .description {
    text-align: left;
  }

  .dp-i-c-right .elements {
    padding-top: 14px;
  }

  .is-filter .filter-flex {
    grid-template-columns: 1fr;
  }

  .is-filter .filter-dual {
    grid-template-columns: 1fr;
    min-width: 220px;
  }

  .seasons-list .sl-content {
    padding: 16px;
  }

  .seasons-list .sl-content .slc-eps .slce-list ul {
    display: grid;
    max-height: 440px;
    grid-template-columns: 1fr;
    overflow: auto;
  }

  #footer {
    padding-top: 44px;
  }

  #footer .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hdt-footer-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .hdt-footer-brand {
    grid-column: auto;
  }

  .hdt-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }
}

@media (hover: none) {
  .flw-item .film-poster .film-poster-ahref::after {
    background: linear-gradient(180deg, transparent 58%, rgba(7, 26, 53, .22));
    opacity: 1;
  }

  .flw-item .film-poster .film-poster-ahref::before,
  .flw-item .film-poster .film-poster-ahref i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   HDToday professional interface fixes, version 2
   Live search, season navigation, active episodes and filters
   ========================================================= */

/* Reliable live search */
.search-content {
  position: relative;
}

.hdt-live-search[hidden] {
  display: none !important;
}

.hdt-live-search {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 1200;
  max-height: min(530px, calc(100vh - 110px));
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid var(--hd-border);
  border-radius: 16px;
  background: #fff;
  color: var(--hd-text);
  box-shadow: 0 26px 70px rgba(7, 26, 53, .24);
  opacity: 0;
  transform: translateY(-6px) scale(.985);
  transform-origin: top center;
  transition: opacity 160ms ease, transform 160ms ease;
  overscroll-behavior: contain;
}

.hdt-live-search.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#search .hdt-live-search {
  right: 0;
  left: auto;
  width: min(440px, calc(100vw - 32px));
}

#search-home .hdt-live-search {
  width: 100%;
}

.hdt-live-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 28px;
  gap: 13px;
  align-items: center;
  min-height: 91px;
  padding: 10px 12px;
  border-bottom: 1px solid #eaf0f7;
  background: #fff;
  color: var(--hd-text) !important;
  text-align: left;
}

.hdt-live-item:hover,
.hdt-live-item:focus,
.hdt-live-item.is-keyboard-active {
  background: linear-gradient(90deg, #f4f8ff, #fff);
  color: var(--hd-blue-600) !important;
}

.hdt-live-item:focus {
  position: relative;
  z-index: 1;
  outline: 0;
  box-shadow: inset 4px 0 0 var(--hd-blue-500);
}

.hdt-live-poster {
  display: block;
  width: 58px;
  height: 72px;
  overflow: hidden;
  border-radius: 9px;
  background: #e8eef6;
  box-shadow: 0 5px 13px rgba(7, 26, 53, .14);
}

.hdt-live-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hdt-live-copy,
.hdt-live-title-row {
  min-width: 0;
}

.hdt-live-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hdt-live-title {
  display: block;
  overflow: hidden;
  color: var(--hd-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hdt-live-item:hover .hdt-live-title,
.hdt-live-item:focus .hdt-live-title {
  color: var(--hd-blue-600);
}

.hdt-live-type {
  flex: 0 0 auto;
  padding: 4px 7px;
  border: 1px solid #d6e3f3;
  border-radius: 999px;
  background: #f6f9fd;
  color: #6f7f94;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.hdt-live-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
  color: #738197;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.hdt-live-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hdt-live-meta .fa-star {
  color: var(--hd-yellow);
  font-size: 9px;
}

.hdt-live-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b6c2d1;
}

.hdt-live-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef4fc;
  color: #8290a3;
  font-size: 10px;
}

.hdt-live-item:hover .hdt-live-arrow,
.hdt-live-item:focus .hdt-live-arrow {
  background: var(--hd-blue-500);
  color: #fff;
}

.hdt-live-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 13px 16px;
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600));
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
}

.hdt-live-more:hover,
.hdt-live-more:focus {
  background: linear-gradient(135deg, #4f96fb, #245fb8);
  color: #fff !important;
}

.hdt-live-status,
.hdt-live-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 82px;
  padding: 20px;
  color: var(--hd-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
  text-align: center;
}

.hdt-live-empty strong {
  color: var(--hd-text);
}

.hdt-live-spinner,
.hdt-episode-spinner {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(62, 138, 250, .18);
  border-top-color: var(--hd-blue-500);
  border-radius: 50%;
  animation: hdtSpinV2 .75s linear infinite;
}

@keyframes hdtSpinV2 {
  to {
    transform: rotate(360deg);
  }
}

/* Stable, accessible season dropdown */
#content-episodes,
.seasons-list-new,
.seasons-list-new .sl-content,
.seasons-list-new .slc-eps,
.seasons-list-new .sl-title,
.seasons-list-new .slt-seasons-dropdown {
  overflow: visible !important;
}

.seasons-list-new .slt-seasons-dropdown {
  position: relative;
  display: inline-flex;
  vertical-align: top;
}

.seasons-list-new .btn-seasons {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 168px;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid #cfdbea !important;
  border-radius: 11px !important;
  background: linear-gradient(180deg, #fff, #f4f7fb) !important;
  color: var(--hd-text) !important;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(12, 37, 74, .08);
}

.seasons-list-new .btn-seasons:hover,
.seasons-list-new .btn-seasons[aria-expanded="true"] {
  border-color: var(--hd-blue-400) !important;
  background: var(--hd-blue-100) !important;
  color: var(--hd-blue-600) !important;
}

.seasons-list-new .btn-seasons:disabled {
  cursor: wait;
  opacity: .72;
}

.seasons-list-new .dropdown-menu-new {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  z-index: 1250;
  width: 230px;
  max-height: 330px;
  margin: 0 !important;
  padding: 8px;
  overflow-y: auto;
  border: 1px solid var(--hd-border) !important;
  border-radius: 13px !important;
  background: #fff;
  box-shadow: 0 22px 55px rgba(7, 26, 53, .2) !important;
  transform: none !important;
}

.seasons-list-new .dropdown-menu-new .dropdown-item {
  display: flex;
  align-items: center;
  min-height: 40px;
  margin: 2px 0;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #526278;
  font-size: 12px;
  font-weight: 750;
}

.seasons-list-new .dropdown-menu-new .dropdown-item::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border: 2px solid #bdc9d8;
  border-radius: 50%;
}

.seasons-list-new .dropdown-menu-new .dropdown-item:hover,
.seasons-list-new .dropdown-menu-new .dropdown-item:focus {
  border-color: #d9e6f6;
  background: #f3f7fd;
  color: var(--hd-blue-600);
}

.seasons-list-new .dropdown-menu-new .dropdown-item.active {
  border-color: #bed7fb;
  background: var(--hd-blue-100);
  color: var(--hd-blue-600);
}

.seasons-list-new .dropdown-menu-new .dropdown-item.active::before {
  border-color: var(--hd-blue-500);
  background: var(--hd-blue-500);
  box-shadow: inset 0 0 0 2px #fff;
}

.seasons-list-new .dropdown-menu-new .dropdown-item.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: auto;
  border: 2px solid rgba(62, 138, 250, .2);
  border-top-color: var(--hd-blue-500);
  border-radius: 50%;
  animation: hdtSpinV2 .7s linear infinite;
}

/* Episode cards and unmistakable active state */
.seasons-list-new .slce-list {
  width: 100%;
}

.seasons-list-new .sl-content .slc-eps .slce-list ul#episodes {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 10px !important;
  width: 100%;
  max-height: none;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible;
}

.seasons-list-new #episodes > .nav-item {
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0;
  float: none !important;
}

.seasons-list-new #episodes .eps-item {
  display: grid !important;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 9px 11px !important;
  overflow: hidden;
  border: 1px solid #d8e2ee !important;
  border-radius: 10px !important;
  background: #f8fafc !important;
  color: #4f5f75 !important;
  text-align: left;
  white-space: normal !important;
  box-shadow: none !important;
}

.seasons-list-new #episodes .eps-item:hover,
.seasons-list-new #episodes .eps-item:focus {
  border-color: var(--hd-blue-400) !important;
  background: var(--hd-blue-100) !important;
  color: var(--hd-blue-600) !important;
  transform: translateY(-1px);
}

.seasons-list-new #episodes .eps-item.active,
.seasons-list-new #episodes .eps-item.active:hover,
.seasons-list-new #episodes .eps-item.active:focus {
  border-color: var(--hd-blue-600) !important;
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600)) !important;
  color: #fff !important;
  box-shadow: 0 11px 24px rgba(47, 118, 218, .26) !important;
}

.hdt-episode-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #e8eff8;
  color: #6d7c91;
  font-size: 10px;
}

.eps-item:hover .hdt-episode-play,
.eps-item:focus .hdt-episode-play {
  background: #fff;
  color: var(--hd-blue-600);
}

.eps-item.active .hdt-episode-play {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.hdt-episode-copy {
  display: block;
  min-width: 0;
}

.hdt-episode-copy strong,
.hdt-episode-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hdt-episode-copy strong {
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.hdt-episode-copy small {
  margin-top: 4px;
  color: #7e8ca0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
}

.eps-item.active .hdt-episode-copy small {
  color: rgba(255, 255, 255, .78);
}

.hdt-episodes-loading,
.hdt-episodes-empty {
  display: flex !important;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 88px;
  padding: 18px;
  border: 1px dashed #cad7e7;
  border-radius: 11px;
  background: #f8fafc;
  color: var(--hd-muted);
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

/* Professional catalog filter */
#modalfilter {
  z-index: 1300;
  padding-right: 0 !important;
}

#modalfilter + .modal-backdrop,
.modal-backdrop.show {
  background: #06152c !important;
  opacity: .72 !important;
}

.hdt-filter-modal .modal-dialog {
  width: calc(100% - 36px);
  max-width: 1040px;
  margin: 28px auto;
}

.hdt-filter-modal .modal-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: 0 38px 100px rgba(3, 15, 34, .42) !important;
}

.hdt-filter-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 105px;
  padding: 24px 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(62, 138, 250, .3), transparent 18rem),
    linear-gradient(135deg, #071a35, #123f7f);
  color: #fff;
}

.hdt-filter-modal__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.hdt-filter-modal__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 15px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hdt-filter-modal__eyebrow {
  margin: 0 0 5px;
  color: var(--hd-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hdt-filter-modal__header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 3vw, 29px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.18;
}

.hdt-filter-modal__close {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 12px;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  cursor: pointer;
}

.hdt-filter-modal__close:hover,
.hdt-filter-modal__close:focus {
  background: rgba(255, 255, 255, .17);
}

.hdt-filter-modal__body {
  max-height: calc(100vh - 270px);
  padding: 26px 28px 28px;
  overflow-y: auto;
  background: #f7f9fc;
}

.hdt-filter-section {
  min-width: 0;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.hdt-filter-section legend,
.hdt-filter-control-label {
  display: block;
  width: auto;
  margin: 0 0 9px;
  padding: 0;
  color: #64748a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hdt-filter-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hdt-filter-type-option {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.hdt-filter-type-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hdt-filter-type-option > span {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid var(--hd-border);
  border-radius: 13px;
  background: #fff;
  color: var(--hd-text);
  box-shadow: 0 5px 15px rgba(12, 37, 74, .045);
  transition: border-color var(--hd-transition), background-color var(--hd-transition), box-shadow var(--hd-transition), transform var(--hd-transition);
}

.hdt-filter-type-option > span > i {
  display: inline-flex;
  grid-row: 1 / 3;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #edf3fb;
  color: #718198;
  font-size: 15px;
}

.hdt-filter-type-option strong {
  align-self: end;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.hdt-filter-type-option small {
  align-self: start;
  margin-top: 3px;
  color: #8491a3;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
}

.hdt-filter-type-option:hover > span {
  border-color: #bdd3f0;
  transform: translateY(-1px);
}

.hdt-filter-type-option input:focus-visible + span {
  outline: 3px solid rgba(62, 138, 250, .24);
  outline-offset: 3px;
}

.hdt-filter-type-option input:checked + span {
  border-color: var(--hd-blue-500);
  background: linear-gradient(135deg, #f1f7ff, #fff);
  color: var(--hd-blue-600);
  box-shadow: 0 10px 24px rgba(47, 118, 218, .13);
}

.hdt-filter-type-option input:checked + span > i {
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600));
  color: #fff;
}

.hdt-filter-search,
.hdt-filter-control {
  display: block;
  margin: 0;
}

.hdt-filter-input-wrap,
.hdt-filter-select-wrap {
  position: relative;
  display: block;
}

.hdt-filter-input-wrap > i {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  color: #8290a3;
  font-size: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hdt-filter-input-wrap input,
.hdt-filter-select-wrap select {
  display: block;
  width: 100%;
  height: 50px;
  margin: 0;
  border: 1px solid var(--hd-border);
  border-radius: 11px;
  background: #fff;
  color: var(--hd-text);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 13px rgba(12, 37, 74, .04);
}

.hdt-filter-input-wrap input {
  padding: 0 15px 0 42px;
}

.hdt-filter-select-wrap select {
  padding: 0 42px 0 14px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.hdt-filter-input-wrap input:hover,
.hdt-filter-select-wrap select:hover {
  border-color: #c2d3e8;
}

.hdt-filter-input-wrap input:focus,
.hdt-filter-select-wrap select:focus {
  border-color: var(--hd-blue-400);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(62, 138, 250, .11);
}

.hdt-filter-select-wrap > i {
  position: absolute;
  top: 50%;
  right: 15px;
  color: #8390a2;
  font-size: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hdt-filter-control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px 14px;
}

.hdt-filter-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 16px 28px;
  border-top: 1px solid var(--hd-border);
  background: #fff;
}

.hdt-filter-selected-summary {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--hd-muted);
  font-size: 11px;
  font-weight: 700;
}

.hdt-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--hd-blue-500);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.hdt-filter-count.is-empty {
  background: #dfe7f1;
  color: #718096;
}

.hdt-filter-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hdt-filter-reset,
.hdt-filter-submit,
.hdt-filter-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 18px;
  border-radius: 11px !important;
  font-size: 12px;
  font-weight: 800;
}

.hdt-filter-reset {
  border: 1px solid var(--hd-border) !important;
  background: #fff !important;
  color: #617086 !important;
}

.hdt-filter-reset:hover {
  border-color: #bdcce0 !important;
  background: #f5f8fc !important;
  color: var(--hd-text) !important;
}

.hdt-filter-submit,
.hdt-filter-edit {
  border: 1px solid var(--hd-blue-500) !important;
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600)) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(47, 118, 218, .22);
}

.hdt-filter-submit:hover,
.hdt-filter-edit:hover {
  color: #fff !important;
  box-shadow: 0 13px 27px rgba(47, 118, 218, .28);
}

/* Filter results */
.hdt-filter-results-page {
  padding-top: 10px;
}

.hdt-filter-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 24px 26px;
  border: 1px solid var(--hd-border);
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0%, rgba(62, 138, 250, .11), transparent 20rem),
    #fff;
  box-shadow: var(--hd-shadow-sm);
}

.hdt-filter-results-eyebrow {
  margin: 0 0 5px;
  color: var(--hd-blue-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hdt-filter-results-header h1 {
  margin: 0;
  color: var(--hd-text);
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.12;
}

.hdt-filter-results-count {
  margin: 7px 0 0;
  color: var(--hd-muted);
  font-size: 12px;
  font-weight: 650;
}

.hdt-filter-active-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 13px 15px;
  border: 1px solid var(--hd-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, .78);
}

.hdt-filter-active-list span,
.hdt-filter-active-list a {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
}

.hdt-filter-active-list span {
  border: 1px solid #cfe0f5;
  background: var(--hd-blue-100);
  color: var(--hd-blue-600);
}

.hdt-filter-active-list a {
  margin-left: auto;
  border: 1px solid var(--hd-border);
  background: #fff;
  color: var(--hd-muted);
}

.hdt-filter-empty-state {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  padding: 42px 22px;
  border: 1px dashed #c8d5e5;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  text-align: center;
}

.hdt-filter-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 17px;
  border-radius: 20px;
  background: var(--hd-blue-100);
  color: var(--hd-blue-600);
  font-size: 23px;
}

.hdt-filter-empty-state h2 {
  margin: 0 0 8px;
  color: var(--hd-text);
  font-size: 23px;
  font-weight: 800;
}

.hdt-filter-empty-state p {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--hd-muted);
  font-size: 12px;
  line-height: 1.65;
}

.hdt-filter-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 34px 0 10px;
}

.hdt-filter-pagination a,
.hdt-filter-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 41px;
  height: 41px;
  padding: 0 10px;
  border: 1px solid var(--hd-border);
  border-radius: 10px;
  background: #fff;
  color: var(--hd-muted);
  font-size: 12px;
  font-weight: 750;
}

.hdt-filter-pagination a:hover {
  border-color: var(--hd-blue-400);
  background: var(--hd-blue-100);
  color: var(--hd-blue-600);
}

.hdt-filter-pagination a.active {
  border-color: var(--hd-blue-500);
  background: linear-gradient(135deg, var(--hd-blue-500), var(--hd-blue-600));
  color: #fff;
  box-shadow: 0 8px 19px rgba(47, 118, 218, .22);
}

@media screen and (max-width: 991px) {
  #search .hdt-live-search {
    width: min(410px, calc(100vw - 32px));
  }

  .hdt-filter-control-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seasons-list-new .sl-content .slc-eps .slce-list ul#episodes {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media screen and (max-width: 767px) {
  #search .hdt-live-search {
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 142px);
  }

  .hdt-live-item {
    grid-template-columns: 54px minmax(0, 1fr) 24px;
    min-height: 86px;
    padding: 9px 10px;
  }

  .hdt-live-poster {
    width: 54px;
    height: 68px;
  }

  .hdt-live-title-row {
    align-items: flex-start;
  }

  .hdt-live-meta {
    gap: 5px;
  }

  .hdt-filter-modal .modal-dialog {
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .hdt-filter-modal__header {
    min-height: 88px;
    padding: 19px 20px;
  }

  .hdt-filter-modal__icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .hdt-filter-modal__body {
    max-height: calc(100vh - 226px);
    padding: 21px 20px 23px;
  }

  .hdt-filter-type-grid {
    grid-template-columns: 1fr;
  }

  .hdt-filter-type-option > span {
    min-height: 64px;
  }

  .hdt-filter-modal__footer {
    align-items: stretch;
    flex-direction: column;
    padding: 14px 20px 18px;
  }

  .hdt-filter-selected-summary {
    justify-content: center;
  }

  .hdt-filter-actions {
    width: 100%;
  }

  .hdt-filter-actions .btn {
    flex: 1 1 0;
  }

  .hdt-filter-results-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 21px;
  }

  .hdt-filter-edit {
    width: 100%;
  }

  .hdt-filter-active-list a {
    margin-left: 0;
  }
}

@media screen and (max-width: 575px) {
  .hdt-live-search {
    border-radius: 13px;
  }

  .hdt-live-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    min-height: 78px;
  }

  .hdt-live-poster {
    width: 48px;
    height: 62px;
  }

  .hdt-live-arrow {
    display: none;
  }

  .hdt-live-type {
    padding: 3px 6px;
    font-size: 8px;
  }

  .hdt-live-meta span:nth-of-type(n+4),
  .hdt-live-meta .hdt-live-dot:nth-of-type(n+3) {
    display: none;
  }

  .seasons-list-new .sl-content {
    padding: 15px !important;
  }

  .seasons-list-new .slt-seasons-dropdown,
  .seasons-list-new .btn-seasons {
    width: 100%;
  }

  .seasons-list-new .dropdown-menu-new {
    width: 100%;
    max-height: 280px;
  }

  .seasons-list-new .sl-content .slc-eps .slce-list ul#episodes {
    grid-template-columns: 1fr !important;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 3px !important;
  }

  .hdt-filter-control-grid {
    grid-template-columns: 1fr;
  }

  .hdt-filter-modal .modal-dialog {
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: 100%;
    margin: 0;
  }

  .hdt-filter-modal .modal-content {
    max-height: calc(100vh - 12px);
    border-radius: 20px 20px 0 0 !important;
  }

  .hdt-filter-modal__header {
    min-height: 82px;
    padding: 17px 16px;
  }

  .hdt-filter-modal__heading {
    gap: 11px;
  }

  .hdt-filter-modal__icon {
    width: 40px;
    height: 40px;
  }

  .hdt-filter-modal__header h2 {
    font-size: 19px;
  }

  .hdt-filter-modal__body {
    max-height: calc(100vh - 218px);
    padding: 18px 15px 20px;
  }

  .hdt-filter-modal__footer {
    padding: 12px 15px 15px;
  }

  .hdt-filter-reset,
  .hdt-filter-submit {
    padding: 0 13px;
  }

  .hdt-filter-results-page {
    padding-top: 0;
  }

  .hdt-filter-results-header {
    border-radius: 14px;
  }
}

/* ========================================================================
   HDToday v3 episode navigator
   A compact, cohesive season and episode component for series pages.
   ======================================================================== */

.seasons-list-new {
  margin: 0 0 32px !important;
  overflow: visible !important;
  border: 1px solid #d7e2ef !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow: 0 16px 42px rgba(12, 37, 74, .10) !important;
}

.seasons-list-new.border-bottom-block {
  border-bottom: 1px solid #d7e2ef !important;
}

.seasons-list-new .sl-content {
  padding: 18px 20px 20px !important;
}

.seasons-list-new .sl-content .slc-eps {
  width: 100% !important;
  padding: 0 !important;
}

.hdt-episodes-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid #e6edf5;
}

.hdt-episodes-heading {
  display: flex;
  align-items: center;
  min-width: 0;
}

.hdt-episodes-heading-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eaf3ff, #f5f9ff);
  color: var(--hd-blue-600);
  font-size: 13px;
  box-shadow: inset 0 0 0 1px #d8e7fa;
}

.hdt-episodes-heading-copy {
  display: block;
  min-width: 0;
}

.hdt-episodes-heading-copy strong,
.hdt-episodes-heading-copy small {
  display: block;
}

.hdt-episodes-heading-copy strong {
  color: var(--hd-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.015em;
}

.hdt-episodes-heading-copy small {
  margin-top: 3px;
  color: #7b899c;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.25;
}

.seasons-list-new .sl-title {
  flex: 0 0 auto;
  margin: 0 !important;
  font-size: inherit !important;
  line-height: normal;
}

.seasons-list-new .slt-seasons-dropdown {
  position: relative;
  display: block;
}

.seasons-list-new .btn-seasons {
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: 10px;
  width: 174px;
  min-width: 174px;
  min-height: 44px;
  padding: 5px 11px !important;
  border: 1px solid #cedbea !important;
  border-radius: 12px !important;
  background: #f8fafc !important;
  color: var(--hd-text) !important;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 5px 15px rgba(12, 37, 74, .055) !important;
}

.seasons-list-new .btn-seasons > i {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 !important;
  border-radius: 9px;
  background: #e8f1ff;
  color: var(--hd-blue-600);
  font-size: 11px;
}

.seasons-list-new .btn-seasons #current-ss {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seasons-list-new .btn-seasons.dropdown-toggle::after {
  flex: 0 0 auto;
  margin-left: auto;
  color: #718096;
}

.seasons-list-new .btn-seasons:hover,
.seasons-list-new .btn-seasons:focus,
.seasons-list-new .btn-seasons[aria-expanded="true"] {
  border-color: #a9c9f4 !important;
  background: #f1f7ff !important;
  color: var(--hd-blue-600) !important;
  box-shadow: 0 8px 20px rgba(47, 118, 218, .10) !important;
  transform: none;
}

.seasons-list-new .dropdown-menu-new {
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: auto !important;
  width: 220px;
  min-width: 220px;
  max-height: 300px;
  padding: 7px;
  border: 1px solid #d5e0ed !important;
  border-radius: 13px !important;
  background: #fff;
  box-shadow: 0 20px 52px rgba(7, 26, 53, .18) !important;
}

.seasons-list-new .dropdown-menu-new .dropdown-item {
  min-height: 39px;
  margin: 2px 0;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 750;
}

.seasons-list-new .slce-list,
.seasons-list-new .tab-content,
.seasons-list-new .ss-episodes {
  width: 100%;
  min-width: 0;
}

.seasons-list-new .sl-content .slc-eps .slce-list ul#episodes {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 11px !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.seasons-list-new #episodes > .nav-item {
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.seasons-list-new #episodes .eps-item {
  position: relative;
  display: grid !important;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 10px 12px !important;
  overflow: hidden;
  border: 1px solid #d8e3ef !important;
  border-radius: 12px !important;
  background: #f8fafc !important;
  color: #4d5d73 !important;
  text-align: left;
  white-space: normal !important;
  box-shadow: 0 4px 12px rgba(12, 37, 74, .035) !important;
  transform: translateZ(0);
  transition: border-color var(--hd-transition), background-color var(--hd-transition), color var(--hd-transition), box-shadow var(--hd-transition), transform var(--hd-transition);
}

.seasons-list-new #episodes .eps-item::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: transparent;
}

.seasons-list-new #episodes .eps-item:hover,
.seasons-list-new #episodes .eps-item:focus {
  border-color: #a9c9f4 !important;
  background: #f2f7ff !important;
  color: var(--hd-blue-600) !important;
  box-shadow: 0 9px 22px rgba(47, 118, 218, .10) !important;
  transform: translateY(-1px);
}

.seasons-list-new #episodes .eps-item:hover::after,
.seasons-list-new #episodes .eps-item:focus::after {
  background: var(--hd-blue-400);
}

.seasons-list-new #episodes .eps-item.active,
.seasons-list-new #episodes .eps-item.active:hover,
.seasons-list-new #episodes .eps-item.active:focus {
  border-color: var(--hd-blue-600) !important;
  background: linear-gradient(135deg, #4f8bea 0%, #3974d6 100%) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(47, 118, 218, .24) !important;
  transform: none;
}

.seasons-list-new #episodes .eps-item.active::after {
  background: #fff;
  opacity: .72;
}

.seasons-list-new .hdt-episode-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8eff8;
  color: #7a8ba1;
  font-size: 10px;
  box-shadow: inset 0 0 0 1px rgba(117, 139, 167, .07);
}

.seasons-list-new .eps-item:hover .hdt-episode-play,
.seasons-list-new .eps-item:focus .hdt-episode-play {
  background: #fff;
  color: var(--hd-blue-600);
  box-shadow: 0 4px 12px rgba(47, 118, 218, .10);
}

.seasons-list-new .eps-item.active .hdt-episode-play {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.seasons-list-new .hdt-episode-copy strong {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.seasons-list-new .hdt-episode-copy small {
  margin-top: 4px;
  color: #7d8ca0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
}

.seasons-list-new .eps-item.active .hdt-episode-copy small {
  color: rgba(255, 255, 255, .80);
}

.seasons-list-new .hdt-episodes-loading,
.seasons-list-new .hdt-episodes-empty {
  min-height: 76px;
  border-radius: 12px;
  background: #f8fafc;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .seasons-list-new .sl-content .slc-eps .slce-list ul#episodes {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media screen and (max-width: 991px) {
  .seasons-list-new .sl-content .slc-eps .slce-list ul#episodes {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media screen and (max-width: 575px) {
  .seasons-list-new {
    border-radius: 15px !important;
  }

  .seasons-list-new .sl-content {
    padding: 14px !important;
  }

  .hdt-episodes-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 13px;
    padding-bottom: 13px;
  }

  .hdt-episodes-heading-icon {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    border-radius: 10px;
  }

  .hdt-episodes-heading-copy strong {
    font-size: 14px;
  }

  .seasons-list-new .sl-title,
  .seasons-list-new .slt-seasons-dropdown,
  .seasons-list-new .btn-seasons {
    width: 100% !important;
    min-width: 0;
  }

  .seasons-list-new .dropdown-menu-new {
    right: auto !important;
    left: 0 !important;
    width: 100%;
    min-width: 100%;
  }

  .seasons-list-new .sl-content .slc-eps .slce-list ul#episodes {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    max-height: 460px;
    padding-right: 2px !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
  }

  .seasons-list-new #episodes .eps-item {
    min-height: 60px;
  }
}
/* =========================================================
   HDToday mobile header, dropdown and home sharing corrections
   ========================================================= */

/* Never truncate names inside desktop genre/country dropdowns */
#header_menu .header_menu-sub ul.sub-menu li {
  min-width: 0;
}

#header_menu .header_menu-sub ul.sub-menu li a {
  display: flex;
  align-items: center;
  min-height: 40px;
  height: auto !important;
  padding: 9px 11px;
  white-space: normal !important;
  overflow: visible !important;
  overflow-wrap: anywhere;
  text-overflow: clip !important;
  line-height: 1.3;
}

/* Use three columns when four columns would compress the names */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  #header_menu .header_menu-sub {
    width: min(650px, 78vw);
  }

  #header_menu .header_menu-sub ul.sub-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet and mobile header */
@media screen and (max-width: 1199px) {
  #header,
  #header.header-home-fix {
    height: 148px !important;
    margin-bottom: 36px;
  }

  /* The hamburger opens the mobile sidebar, so the desktop menu
     must not remain behind the search field. */
  #header #header_menu {
    display: none !important;
  }

  #header #search {
    top: 68px !important;
    right: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0 20px 24px !important;
    background: transparent;
  }

  #header #search .search-content {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  #header #search .search-content input.search-input {
    width: 100%;
    height: 52px !important;
    padding: 0 18px 0 48px;
    border: 1px solid rgba(62, 138, 250, 0.38);
    border-radius: 14px;
    background: #ffffff !important;
    color: #0d2344;
    font-size: 14px;
    box-shadow:
      0 8px 24px rgba(7, 26, 53, 0.13),
      0 0 0 3px rgba(255, 255, 255, 0.06) !important;
  }

  #header #search .search-content input.search-input:focus {
    border-color: #69a7ff;
    box-shadow:
      0 10px 28px rgba(7, 26, 53, 0.16),
      0 0 0 4px rgba(62, 138, 250, 0.15) !important;
  }

  #header #search .search-content .search-icon {
    width: 48px;
    height: 52px !important;
    color: #3e8afa;
    line-height: 52px !important;
  }

  #header #search .hdt-live-search {
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 180px);
  }
}

/* Mobile sidebar genre and country names */
#sidebar_menu .sidebar_menu-list > .nav-item .sub-menu,
#sidebar_menu .sidebar_menu-list > .nav-item .nav.sub-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 8px;
  width: 100%;
  margin: 0 0 18px;
  padding: 4px 0 0;
}

#sidebar_menu .sidebar_menu-list > .nav-item .sub-menu > .nav-item,
#sidebar_menu .sidebar_menu-list > .nav-item .nav > .nav-item {
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  float: none !important;
}

#sidebar_menu .sidebar_menu-list > .nav-item .sub-menu .nav-link,
#sidebar_menu .sidebar_menu-list > .nav-item .nav > .nav-item > .nav-link {
  display: flex;
  align-items: center;
  min-height: 38px;
  height: auto;
  padding: 7px 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  white-space: normal !important;
  overflow: visible !important;
  overflow-wrap: anywhere;
  text-overflow: clip !important;
  line-height: 1.25;
}

/* Keep two columns only on very narrow devices */
@media screen and (max-width: 380px) {
  #sidebar_menu .sidebar_menu-list > .nav-item .sub-menu,
  #sidebar_menu .sidebar_menu-list > .nav-item .nav.sub-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #sidebar_menu .sidebar_menu-list > .nav-item .sub-menu .nav-link,
  #sidebar_menu .sidebar_menu-list > .nav-item .nav > .nav-item > .nav-link {
    font-size: 12px;
  }
}

/* Extra breathing room on phones */
@media screen and (max-width: 575px) {
  #header,
  #header.header-home-fix {
    height: 146px !important;
    margin-bottom: 30px;
  }

  #header #search {
    top: 66px !important;
    padding: 0 14px 26px !important;
  }

  #header #search .search-content input.search-input {
    height: 52px !important;
    padding-right: 16px;
    padding-left: 47px;
    border-radius: 14px;
  }

  #header #search .search-content .search-icon {
    height: 52px !important;
    line-height: 52px !important;
  }

  #header #search .hdt-live-search {
    max-height: calc(100vh - 172px);
  }
}

/* Home ShareThis spacing and separation */
.section-id-01 > .sharethis-inline-share-buttons {
  position: relative;
  z-index: 2 !important;
  display: block !important;
  clear: both;
  width: 100%;
  min-height: 66px;
  margin: 0 0 32px !important;
  padding: 16px 0 20px !important;
  border-bottom: 1px solid rgba(19, 34, 58, 0.1);
  text-align: center !important;
}

.section-id-01 > .sharethis-inline-share-buttons::after {
  content: "";
  display: block;
  clear: both;
}

.section-id-01 > .sharethis-inline-share-buttons .st-btn {
  margin: 0 5px 8px !important;
}

.section-id-01 > .block_area-header {
  clear: both;
  margin-top: 0 !important;
}

@media screen and (max-width: 575px) {
  .section-id-01 > .sharethis-inline-share-buttons {
    min-height: 62px;
    margin-bottom: 26px !important;
    padding: 12px 0 17px !important;
  }

  .section-id-01 > .sharethis-inline-share-buttons .st-btn {
    margin: 0 3px 7px !important;
  }
}