@import url("assets/css/fonts.css");
:root {
  --background: #000;
  --default-color: #fff;
  --seconday-background: #121212;
  --font-hellix: "Hellix";
}
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  font-weight: 600;
  color: var(--default-color);
  background: var(--background);
  font-family: var(--font-hellix);
}
* {
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  display: none;
}
a {
  color: inherit;
  text-decoration: none;
}
.page_root {
  height: 100vh;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  color: var(--default-color);
  background-color: var(--background);
}
.page_wrapper {
  margin: 0 auto;
  max-width: 1110px;
}
.page_container {
  display: flex;
  height: calc(100vh - 15px - 80px);
}
.sidebar {
  width: 250px;
  border-radius: 8px;
  padding-inline: 15px;
  background-color: var(--seconday-background);
  overflow-x: hidden;
  overflow-y: auto;
}
.sidebar .logo {
  display: flex;
  margin-block: 30px;
  align-items: center;
  justify-content: center;
}
.sidebar .logo img {
  width: auto;
  height: 50px;
  max-width: 100%;
}
.sidebar .sidebar_navigation {
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.nav-link_navLink {
  height: 38px;
  display: flex;
  cursor: pointer;
  padding-left: 15px;
  border-radius: 6px;
  align-items: center;
  padding-right: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.nav-link_navLink:hover,
.nav-link_navLink.nav-link_active,
.nav-link_navLink.nav-link_active:hover {
  background-color: #1f1f1f;
}
.main {
  flex: 1 1;
  overflow-y: auto;
  margin-left: 15px;
  border-radius: 8px;
  overflow-x: hidden;
  padding: 30px 30px 0;
  background-color: var(--seconday-background);
}
#mainContent {
  position: relative;
}
.main .page_title {
  font-size: 26px;
  font-weight: 500;
}
.slider_slidesWrapper {
  margin: 0 !important;
}
.slider_slidesWrapper .slick-list {
  border-radius: 8px;
}
.slider_slidesWrapper .slider_slide {
  overflow: hidden;
  border-radius: 8px;
}
.slider_slidesWrapper .slider_slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.slider_slidesWrapper .slick-dots {
  gap: 8px;
  bottom: 0;
  display: flex;
  margin-top: 16px;
  position: relative;
  justify-content: center;
}
.slider_slidesWrapper .slick-dots li {
  margin: 0;
  width: 8px;
  height: 8px;
}
.slider_slidesWrapper .slick-dots li button {
  padding: 0;
  width: 8px;
  height: 8px;
}
.slider_slidesWrapper .slick-dots li button:before {
  opacity: 1;
  width: 8px;
  height: 8px;
  border: none;
  font-size: 0;
  cursor: pointer;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.slider_slidesWrapper .slick-dots li.slick-active button:before {
  opacity: 1;
  transform: scale(1.2);
  background-color: rgba(255, 255, 255, 0.8);
}
.slider_slidesWrapper .slick-dots li:hover button:before {
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}
.slider_slidesWrapper_home > button,
.shows-grid_SliderWrapper > button {
  top: 50%;
  opacity: 0;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  cursor: pointer;
  margin-top: -8px;
  position: absolute;
  align-items: center;
  border-radius: 20px;
  justify-content: center;
  transform: translateY(-50%);
  background-color: rgba(18, 18, 18, 0.8);
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.slider_slidesWrapper_home > button:hover,
.shows-grid_SliderWrapper > button:hover {
  background-color: rgba(18, 18, 18, 1);
}
.slider_slidesWrapper_home > button:hover svg,
.shows-grid_SliderWrapper > button:hover svg {
  fill: rgba(255, 255, 255, 1);
}
.slider_slidesWrapper_home,
.shows-grid_SliderWrapper {
  position: relative;
}
.slider_slidesWrapper_home:hover > button,
.shows-grid_SliderWrapper:hover button {
  opacity: 1;
}
.slider_slidesWrapper_home > button.slider_navButtonLeft,
.shows-grid_SliderWrapper > button.thumbSlider_navButtonLeft {
  left: 10px;
}
.slider_slidesWrapper_home > button.slider_navButtonRight,
.shows-grid_SliderWrapper > button.thumbSlider_navButtonRight {
  right: 10px;
}
.shows-grid_Slider {
  margin-top: 20px;
}
.shows-grid_Slider .slick-list {
  margin: 0 -15px;
}
.shows-grid_Slider .slick-list .slick-slide {
  margin: 0 15px;
}
.shows-grid_showsGrid {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  user-select: none;
}
.shows-grid_showsGrid > div {
  flex: 0 0 calc((100% - 60px) / 4);
}
.show-card_showCardCover {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin-bottom: 20px;
  background-color: #2a2a2a;
}
.show-card_showCardCover::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.show-card_showCardCover img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.show-card_showCardTitle {
  font-size: 16px;
  margin-bottom: 10px;
}
.show-card_hostsContainer {
  overflow: hidden;
  position: relative;
  margin-bottom: 7px;
}
.hostBox {
  font-size: 14px;
  overflow: hidden;
  margin-bottom: 7px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: rgb(179, 179, 179);
}
.show-card_hostsContainer .hostBox {
  margin-bottom: 0;
}
.show-card_hostSlideIn {
  animation: show-card_slideInFromTop 0.6s ease forwards;
}
.show-card_hostSlideOut {
  animation: show-card_slideOutToBottom 0.6s ease forwards;
}
.show-card_timeDate {
  font-size: 12px;
  color: rgb(179, 179, 179);
}
@keyframes show-card_slideInFromTop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes show-card_slideOutToBottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
.about_img_wrapper {
  overflow: hidden;
  border-radius: 8px;
  margin: 0px auto 30px;
}
.about_img_wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about_content_wrapper {
  margin-top: 30px;
}
.about_content_wrapper p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #b3b3b3;
  text-align: justify;
  margin: 0px 0px 20px;
}
.about_content_wrapper p a {
  font-weight: 700;
  color: var(--default-color);
}
.contact_field_inner {
  margin-top: 30px;
}
.contact_field_inner.two_col {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.form-field_fieldContainer {
  gap: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form-field_fieldContainer .form-field_label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.form-field_fieldContainer .form-field_label .form-field_required {
  color: #ff6b6b;
  margin-left: 2px;
}
.form-field_fieldContainer .form-field_input {
  width: 100%;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 6px;
  background-color: #1f1f1f;
  color: var(--default-color);
  border: 1px solid transparent;
  font-family: var(--font-hellix);
  transition: border-color 0.2s ease;
}
.form-field_fieldContainer textarea.form-field_input {
  resize: none;
  line-height: 1.5;
  min-height: 120px;
}
.form-field_fieldContainer .form-field_input:hover {
  border-color: rgba(255, 255, 255, 0.1);
}
.form-field_fieldContainer .form-field_input::placeholder {
  opacity: 1;
  color: #b3b3b3;
}
.contact_error {
  font-size: 14px;
  margin-top: 20px;
  border-radius: 4px;
  padding: 12px 16px;
  color: rgb(239, 68, 68);
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.contact_success {
  top: 20px;
  left: 50%;
  color: #000;
  z-index: 1000;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  padding: 12px 20px;
  border-radius: 8px;
  pointer-events: none;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
.button_primary {
  height: 40px;
  border: none;
  outline: none;
  font-size: 14px;
  cursor: pointer;
  padding: 0 15px;
  font-weight: 600;
  min-width: 140px;
  border-radius: 6px;
  font-family: var(--font-hellix);
  background: var(--default-color);
  transition: background-color 0.2s ease, transform 0.1s ease,
    box-shadow 0.2s ease;
}
.button_primary:hover {
  background-color: #f5f5f5;
}
.social_links {
  gap: 16px;
  display: flex;
  margin-block: 40px;
  align-items: center;
  justify-content: center;
}
.social_links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  display: inline-flex;
  text-decoration: none;
  justify-content: center;
  background-color: rgb(31, 31, 31);
  transition: background-color 0.3s;
}
.footer {
  height: 80px;
  display: flex;
  padding: 20px 0;
  justify-content: space-between;
}
.footer .player_playerContainer {
  gap: 15px;
  display: flex;
  align-items: center;
}
.footer .player_playerContainer .player_pausePlayButtonContainer span {
  width: 40px;
  height: 40px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: calc(40px / 2);
  background-color: var(--default-color);
  transition: transform 0.2s ease;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: center;
}
.footer
  .player_playerContainer
  .player_pausePlayButtonContainer
  .player_listenLiveText {
  font-size: 16px;
  font-weight: 600;
  color: var(--default-color);
}
.footer .whatsapp-button_container {
  gap: 15px;
  border: none;
  height: 40px;
  display: flex;
  cursor: pointer;
  padding: 0 15px;
  border-radius: 6px;
  align-items: center;
  transition: all 0.2s ease;
  background-color: #1f1f1f;
}
.mobile-drawer_drawer,
.mobile-drawer_overlay,
.mobile-header_header,
.contact_error:empty,
.contact_success:empty {
  display: none;
}
.loader {
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  width: 20px !important;
  height: 20px !important;
  border: 3px solid #000;
  border-bottom-color: transparent;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1110.98px) {
  .loader {
    width: 15px;
    height: 15px;
    border-width: 2px;
  }
  .mobile-header_header {
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1001;
    display: flex;
    padding: 0 15px;
    position: fixed;
    align-items: center;
    background-color: #000;
    justify-content: space-between;
  }
  .mobile-header_menuButton {
    padding: 0;
    border: none;
    display: flex;
    cursor: pointer;
    background: none;
    align-items: center;
  }
  .mobile-header_menuIcon {
    width: 24px;
    height: 18px;
    position: relative;
  }
  .mobile-header_bar1,
  .mobile-header_bar2,
  .mobile-header_bar3 {
    height: 2px;
    position: absolute;
    border-radius: 1px;
    background-color: #fff;
  }
  .mobile-header_bar1 {
    top: 0;
    left: 0;
    width: 24px;
    transition: top 0.15s ease 0.15s, transform 0.15s ease;
  }
  .mobile-header_bar2 {
    left: 0;
    top: 8px;
    width: 15px;
    transition: opacity 0.15s ease 0.15s;
  }
  .mobile-header_bar3 {
    left: 0;
    top: 16px;
    width: 24px;
    transition: top 0.15s ease 0.15s, transform 0.15s ease;
  }
  .mobile-header_menuIcon.mobile-header_open .mobile-header_bar1 {
    top: 8px;
    transform: rotate(45deg);
    transition: top 0.15s ease, transform 0.15s ease 0.15s;
  }
  .mobile-header_menuIcon.mobile-header_open .mobile-header_bar2 {
    opacity: 0;
    transition: opacity 0.15s ease;
  }
  .mobile-header_menuIcon.mobile-header_open .mobile-header_bar3 {
    top: 8px;
    transform: rotate(-45deg);
    transition: top 0.15s ease, transform 0.15s ease 0.15s;
  }
  .mobile-header_logoContainer {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
  .mobile-header_logoContainer img {
    height: 30px;
  }
  .mobile-drawer_overlay {
    left: 0;
    right: 0;
    top: 60px;
    opacity: 1;
    bottom: 75px;
    z-index: 1001;
    display: block;
    position: fixed;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .mobile-drawer_drawer {
    left: 0;
    right: 0;
    top: 60px;
    width: 100%;
    bottom: 75px;
    color: #fff;
    display: flex;
    padding: 15px;
    z-index: 1002;
    position: fixed;
    overflow-y: auto;
    flex-direction: column;
    transform: translateX(0);
    background-color: #121212;
    transition: transform 0.3s ease;
  }
  .mobile-drawer_navigation {
    gap: 8px;
    display: flex;
    flex-direction: column;
  }
  .page_root {
    padding: 60px 15px;
  }
  .page_wrapper {
    max-width: 100%;
  }
  .page_container {
    height: auto;
    display: block;
    min-height: calc(100vh - 60px - 60px);
  }
  .main {
    margin-left: 0;
    border-radius: 0;
    overflow-y: auto;
    padding: 30px 0 0;
    overflow-x: hidden;
    background-color: #000;
    height: calc(100vh - 60px - 60px);
  }
  .footer {
    left: 0;
    right: 0;
    gap: 30px;
    bottom: 0;
    padding: 0;
    height: 83px;
    z-index: 1000;
    position: fixed;
    align-items: center;
    justify-content: center;
    background-color: #1f1f1f;
    border-top: 1px solid #303030;
  }
  .footer .player_playerContainer .player_pausePlayButtonContainer span {
    width: 32px;
    height: 32px;
    border-radius: calc(32px / 2);
  }
  .player_listenLiveText,
  .whatsapp-button_whatsappText {
    font-size: 14px;
  }
  .footer .whatsapp-button_container svg {
    width: 18px;
    height: 18px;
  }
  .footer .whatsapp-button_container {
    gap: 10px;
    padding: 0 12px;
    border-radius: 4px;
    background-color: #313131;
  }
}
@media (max-width: 767.98px) {
  .shows-grid_showsGrid > div {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}
@media (max-width: 575.98px) {
  .shows-grid_showsGrid > div {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
