/*
Theme Name: TheTVApp
Theme URI: https://thetvapps.com/
Description: Professional Live Sports Streaming Theme
Version: 2.0
Author: Sabbir Hasan
Author URI: https://thetvapps.com/
*/

/* =====================================================
   ROOT
===================================================== */

:root{
  --bg:#13151d;
  --header:#13151d;
  --card:#1b1e2952;
  --border:#252525;
  --border-light:#525252;
  --text:#ffffff;
  --muted:#dbdbdb;
  --blue:#0084ef;
  --blue-dark:#006ab7;
  --gradient:#1b1e2952;
}


*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Roboto",Arial,sans-serif;
  line-height:1.5;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  transition:.2s ease;
}

/* =====================================================
   HEADER
===================================================== */

.main_header{
  width:100%;
  background:var(--header);
  color:#fff;
  position:relative;
  z-index:999;
  box-shadow:0 2px 6px #001f35;
}

.main_header::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #164c81 45%,
        #005fbd 50%,
        #164c81 50%,
        transparent 100%
    );
}

.Second_header{
  max-width:1200px;
  margin:auto;
  padding:15px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  border:2px solid transparent;
}

.navbar-brand img{
  height:35px;
  width:auto;
}

.logo-line,
.logo-link{
  display:flex;
  align-items:center;
}

.logo-link{
  text-decoration:none;
}

.logo-img{
  width:50px;
  height:35px;
  margin-right:5px;
}

.logo-text{
  margin:0;
  color:#fff;
  font-size:25px;
}

.site-name{
  color:#fff;
  font-size:22px;
  font-weight:700;
  text-transform:uppercase;
  text-decoration:none;
  letter-spacing:1px;
}

.nav{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:0;
}

.nav li{
  margin:0;
}

.nav-link{
  color:#fff;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  padding:8px;
}

.nav-link:hover{
  color:var(--blue);
}

/* =====================================================
   BUTTON
===================================================== */

.btn{
  border:0;
  border-radius:6px;
  padding:10px 14px;
  cursor:pointer;
  font-weight:600;
  transition:.2s ease;
}

.btn-outline-light{
  background:transparent;
  border:1px solid #fff;
  color:#fff;
}

.btn-outline-light:hover{
  background:#fff;
  color:#111;
}

.btn-primary{
  background:var(--blue-dark);
  color:#fff;
}

.btn-primary:hover{
  background:#0b5ed7;
  transform:translateY(-1px);
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

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

h2{
  font-size:20px;
  text-transform:uppercase;
  line-height:1.2;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.container {
 display: flex;
 flex-wrap: wrap;
 width: min(100%, 1400px);
 gap: 5px;
 margin: 10px auto;
 padding: 0 5px
}

.left-content{
  flex:2;
  min-width:0;
}

.right-sidebar{
  flex:1;
  min-width:280px;
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-left:5px;
  margin-right:2px;
}

/* =====================================================
   HOME CONTENT
===================================================== */

.home-main-content,
.home-sidebar-content{
  background:var(--card);
  border-radius:5px;
  padding-top: 30px;
  border: 1px solid #2121225c;
}

.home-main-content h1{
  font-size:20px;
  text-align:center;
  text-transform:uppercase;
  color:#fff;
}

.home-main-content p,
.home-sidebar-content p{
  margin:20px;
  font-size:.95rem;
  line-height:1.6;
  color:var(--muted);
}

.home-sidebar-content h2,
.home-sidebar-content h3,
.home-sidebar-content h5{
  text-align:center;
  text-transform:uppercase;
  color:#fff;
}

.home-sidebar-content h2{
  font-size:1.2rem;
}

.home-sidebar-content h3 {
  margin: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.home-sidebar-content h5{
  font-size:1rem;
}

.home-sidebar-content ol{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}

.home-sidebar-content ol li{
  margin-bottom:8px;
  color:var(--muted);
}

.home-sidebar-content ol li strong{
  color:#fff;
}

.home-sidebar-content ul {
  list-style: none !important;
  margin: 10px 0 20px !important;
  padding: 20px !important;
}

.home-sidebar-content ul li {
  position: relative;
  display: block !important;
  margin: 0 !important;
  padding: 10px 5px 10px 28px !important;
  color: #ddd !important;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.home-sidebar-content ul li::before {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 10px;
  color: #b6ff00;
  font-weight: 700;
}

/* =====================================================
   FOOTER
===================================================== */

.main_footer{
  position: relative;
  background:var(--gradient);
  color:#fff;
  padding-top:20px;
	
}
.main_footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #f6d44a 45%,
        #b6ff00 50%,
        #f6d44a 55%,
        transparent 100%
    );
}

.footer_container{
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-wrap:wrap;
}

.footer_left h2{
  font-size:22px;
  color:#fff;
}

.footer_left p{
  font-size:14px;
  line-height:1.5;
  color:#ccc;
  text-align:center;
}

.footer_links{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer_links a{
  color:#ccc;
  text-decoration:none;
  font-size:14px;
}

.footer_links a:hover{
  color:#fff;
  text-decoration:underline;
}

.footer_social{
  width:100%;
  margin-top:-12px;
  text-align:center;
  font-size:13px;
  color:#aaa;
}

/* =====================================================
   TOP NAVBAR
===================================================== */

.top_navbar{
  background:#121212;
  color:#eee;
  padding:5px 10px;
  border-bottom:1px solid #444;
  font-size:14px;
  white-space:nowrap;
  overflow-x:auto;
}

/* =====================================================
   CLEARFIX
===================================================== */

.clearfix::before,
.clearfix::after,
.container::before,
.container::after,
.container-fluid::before,
.container-fluid::after,
.row::before,
.row::after{
  content:"";
  display:table;
}

.clearfix::after,
.container::after,
.container-fluid::after,
.row::after{
  clear:both;
}

/* =====================================================
   SCHEDULE
===================================================== */

.mls_schedule_container{
  width:100%;
  border-collapse:collapse;
  background:var(--gradient);
}

.mls_schedule_shot_code{
 border-radius:15px 15px 0 0;
  background:#0a0a0a;
}

tr {
  background-color: #131314;
}

tr:hover {
  background-color: #1b1b1c;
  transition: 0.3s ease;
}

table {
  font-size: 15px;
  text-align: center !important;
  box-shadow: 0 3px 6px rgb(0 0 0 / 0%), 0 1px 2px rgb(0 0 0 / 40%);
  border-collapse: collapse !important;
  border-spacing: 0 !important;
}

table td,
table th {
  padding: 6px;
  vertical-align: middle;
  box-shadow: 0 1px 1px rgb(0 0 0 / 0%), 0 1px 1px rgb(0 0 0 / 13%);
  border: 1px solid #1b1b1c !important;
}

td.vs {
  text-align: center;
  padding: 5px;
}

/* TEAMS NAME */

td.teams span {
  font-size: 14px;
  color: #f5f5f5;
  font-weight: 700;
  text-transform: capitalize;
}

/* TIME + DATE */

td.vs .game_time {
  display: block;
  margin: 2px 0;
  font-size: 13px;
  color: #f5f5f5;
  font-weight: 700;
  text-transform: capitalize;
}

td.vs .schedule_date {
  display: block;
  margin: 2px 0;
  font-size: 11px;
  color: #f5f5f5;
  font-weight: 500;
  text-transform: capitalize;
}

td.vs .main_vs {
  font-weight: 900;
  color: #ff8204;
  font-size: 15px;
  display: block;
}

/* TEAM NAME */

td.teamvs span {
  font-size: 14px;
  color: #f5f5f5;
  font-weight: 700;
  text-transform: capitalize;
}

/* TEAM LOGO */

td.teamlogo img {
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease-in-out;
  vertical-align: middle;
}

td.teamlogo:hover img {
  transform: scale(1.2);
}

/* GENERAL TIME + DATE */

.game_time {
  text-align: center;
  font-weight: 700;
  border-radius: 0;
  font-size: 14px;
}

.game_date {
  font-size: 12px;
  text-align: center;
  font-weight: 700;
}

.season_title{
  margin:10px;
  padding-top:10px;
  color:#fff;
  text-align:center;
  text-transform:uppercase;
}

.season_title h2{
  margin:0 0 10px;
  padding:12px 0;
  color:#fff;
  text-align:center;
  font-size:20px;
  letter-spacing:2px;
  border-bottom:1px solid #333;
}

h1.team_schedule_heading{
  color:#fff !important;
  font-size:18px;
  font-weight:600;
  text-align:center;
}



.game_time.badge{
  background:#111;
  color:#aaa;
  border:1px solid #222;
  border-radius:3px;
  padding:4px 8px;
  font-weight:700;
  white-space:nowrap;
}

/* BUTTON */

.watch_btn,
.hd{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  vertical-align:middle;
  border-radius:5px;
  background:#000;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition:.2s;
}

.watch_btn{
  width:75px;
  height:40px;
  border:1px solid var(--blue-dark);
  font-size:13px;
}

.hd{
  width:50px;
  height:38px;
  border:1px solid var(--blue);
  font-size:17px;
}

.watch_btn:hover,
.hd:hover{
  background:var(--blue);
}

.watch_btn:active,
.hd:active{
  transform:scale(.96);
}

/* =====================================================
   PLAYER
===================================================== */

.player_area{
  display:none;
  margin:0 3px 30px 0;
  background:var(--gradient);
}

.player_container{
  position:relative;
  width:100%;
  padding-top:56.25%;
}

.player_container iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:1px solid var(--border-light);
}

.iframe-links{
  width:100%;
  display:flex;
  text-align:center;
  margin:0;
}

.theatre_btn{
  width:20.2%;
  padding:15px;
  border-right:1px solid var(--border-light);
  color:#fff;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
}

.theatre_btn.active{
  background:#014a01;
}

.theatre_btn:hover{
  background:#710202;
}

/* MINI BANNER */

.mini_banner_area{
  display:flex;
  align-items:center;
  margin-right:-2px;
  border:1px solid var(--border-light);
  background:var(--gradient);
  color:#fff;
  font-weight:700;
}

.mini_banner{
  flex:1;
  padding:15px;
  text-align:center;
}

.hd_image{
  flex:0 0 53px;
  padding:20px 10px;
  text-align:center;
  background:#000;
}

.hd_image img{
  width:30px;
}

.minibanner_text{
  display:inline-block;
  position:relative;
  overflow:hidden;
  color:#fff;
  font-weight:700;
  text-transform:uppercase;
  text-decoration:none;
}

.minibanner_text span{
  display:inline-block;
  font-size:13px;
  transition:.3s;
}

.minibanner_text:hover span{
  transform:translateX(-200%);
}

/* =====================================================
   STREAM GRID
===================================================== */
.streams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 10px;
}

.stream-link {
  width: 100%;
  text-decoration: none;
}

.stream-card {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px;
  text-align: center;
  background: rgb(19 19 20);
  border: 1px solid #252525;
  border-radius: 10px;
  transition: .25s ease;
}

.stream-card img {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 0px;
  object-fit: contain;
  margin-bottom: 10px;
}

.stream-title {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.stream-card:hover {
  transform: translateY(-3px);
  border-color: #444;
  background: #202020;
}

/* =====================================================
   PRICING
===================================================== */

.pricing-box{
  margin-top:0;
  padding:20px;
  text-align:center;
  background:#1b1e2952;
  border:1px solid #2121225c;
  border-radius:5px;
}

.pricing-box .price{
  color:#fff;
  font-size:24px;
  font-weight:900;
}

.pricing-box .price1{
  margin:10px 0;
  color:#f9f9f9;
  font-size:20px;
  font-weight:900;
  text-transform:uppercase;
}

.pricing-box ul{
  padding:0;
  list-style:none;
  color:#fff;
  font-size:15px;
}

.pricing-box li{
  padding:10px;
}

.pricing-box .button a{
  display:inline-block;
  padding:15px 30px;
  background:linear-gradient(135deg,#33b5ff,#0047ff);
  color:#fff;
  text-decoration:none;
  border-radius:4px;
}

.pricing-box .button a:hover{
  background:linear-gradient(to right,#111,#205c87,#0b0b0b,#000);
}

/* =====================================================
   CATEGORY LOGO
===================================================== */

.top_logo{
  position:relative;
  padding:25px 10px 30px;
  text-align:center;
  background:#1b1e2952;
  box-shadow:0 3px 12px rgba(0,0,0,.6);
}

.top_logo .category-icon{
  width:80px;
  height:80px;
  margin:auto auto 10px;
  filter:drop-shadow(0 0 10px #0aff0a);
}

.top_logo h1{
  margin:8px 0 4px;
  color:#fff;
  font-size:1.5rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}

.top_logo p{
  margin:0;
  color:#bfbfbf;
}

/* =====================================================
   CHAT
===================================================== */

#darkChat{
  display:none;
  opacity:0;
  height:550px;
  background:var(--gradient);
  border:1px solid var(--border-light);
  border-radius:5px;
  transition:opacity .4s;
}

#darkChat[style*="display: block"]{
  opacity:1;
}

/* =====================================================
   LIST
===================================================== */

.list-group-numbered{
  height:calc(100vh - 12rem);
  max-height:calc(100vh - 12rem);
  overflow-y:auto;
  overflow-x:hidden;
  padding:0;
  margin:0;
  color:#fff;
  counter-reset:list-counter;
}

.list-group-numbered>li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:.75rem 1rem;
  background:#1a1a1b;
  color:#fff;
  border-bottom:1px solid #242222;
  font-size:15px;
}

.list-group-numbered>li:hover{
  background:#373737;
}

.list-group-numbered>li::before{
  counter-increment:list-counter;
  content:counter(list-counter) ".";
  color:#ffa804;
  font-weight:700;
}

/* Scrollbar */

.list-group-numbered::-webkit-scrollbar{
  width:8px;
}

.list-group-numbered::-webkit-scrollbar-track{
  background:#0a0a0a;
}

.list-group-numbered::-webkit-scrollbar-thumb{
  background:#444;
  border-radius:4px;
}

/* =====================================================
   TIMEZONE
===================================================== */

.timezone-selector{
  width:160px;
}

.match-time{
  padding:0 10px;
  background:#333;
  color:#fff;
  border-radius:5px;
  font-size:15px;
  font-weight:600;
}

/* =====================================================
   NATIVE
===================================================== */

.native{
  width:30%;
  margin:10px auto -20px;
  padding:10px;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media(max-width:992px){

.Second_header{
  flex-direction:column;
  text-align:center;
}

.nav{
  flex-wrap:wrap;
  justify-content:center;
}

.m-2{
  width:100%;
  display:flex;
  justify-content:center;
  gap:10px;
}

.btn{
  min-width:130px;
}
.streams-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}
	
}

/* =====================================================
   RESPONSIVE MOBILE
===================================================== */

@media(max-width:767px){
.container {
 padding: 0px;
}
.main_header{
  padding:0;
  overflow:auto;
  box-shadow:none;
}

.Second_header{
  padding:0;
  gap:0;
}

.navbar-brand{
  width:100%;
  text-align:center;
}

.navbar-brand img{
  height:35px;
  max-width:110px;
  margin:20px auto 10px;
}

.nav{
  width:100%;
  justify-content:center;
  margin:0;
  padding:0;
}

.nav-link{
  padding:3px;
  font-size:12px;
}

.m-2{
  gap:8px;
  padding-bottom:20px;
}

.btn{
  min-width:110px;
  padding:6px 8px;
  font-size:13px;
}

.container{
  flex-direction:column;
}

.left-content{
  margin:0 5px;
}

.right-sidebar{
  margin:0 5px;
}

.teamvs span {
   font-size: 12px;
 }

 /* TEAMS NAME */

 td.teams span {
   font-size: 12px;
   font-weight: 600;
 }

 .vs .game_time,
 .vs .schedule_date {
   font-size: 10px;
 }

 .vs .main_vs {
   font-size: 13px;
 }

 .teamlogo img {
   height: 30px;
 }

 table td,
 table th {
   font-size: 12px;
   color: #FFF9E5;
   font-weight: 700;
 }

 .teamvs,
 .themvs {
   display: none;
 }

 td.vs {
   text-align: center;
   padding: 2px;
 }

 td.vs .game_time {
   display: block;
   margin: 2px 0;
   font-size: 11px;
 }

 td.vs .main_vs {
   font-weight: 700;
   font-size: 13px;
 }

 td.vs .schedule_date {
   display: block;
   margin: 2px 0;
   font-size: 9px;
 }

 td.teamlogo img {
   width: 40px;
   height: 40px;
 }

 .watch_btn {
   width: 65px;
   height: 35px;
   font-size: 12px;
 }

 .schedule_hd {
   width: 50px;
   height: 35px;
   font-size: 14px;
 }

 .game_date {
   font-size: 10px;
   text-align: center;
   font-weight: 700;
 }

 .game_time {
   text-align: center;
   font-weight: 700;
   border-radius: 0;
   font-size: 11px;
 }

 td.vs {
   padding: 6px;
 }

 td.vs .game_time,
 td.vs .main_vs,
 td.vs .schedule_date {
   font-size: 10px;
   font-weight: 700;
 }

 td.vs .main_vs {
   font-size: 12px;
   font-weight: 700;
 }

 td.vs .schedule_date {
   font-size: 8px;
   font-weight: 700;
 }
	
.theatre_btn{
  width:20%;
  padding:10px;
  font-size:11px;
}

.iframe-links{
  width:100%;
}

.player_area{
  margin-right:3px;
}

#darkChat{
  display:none!important;
}

.pricing-box{
  margin-top:100px;
}

.native{
  width:50%;
  margin:-20px auto -25px;
}

.top_logo .category-icon{
  width:60px;
  height:60px;
}

.top_logo h1{
  font-size:1.4rem;
}

.top_logo p{
  font-size:.9rem;
}

.list-group-numbered>li{
  background:#3c3c3c;
  border:1px solid rgba(0,0,0,.125);
  border-radius:4px;
}

.streams-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 0
}

.stream-card img {
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
}

.stream-card {
  padding: 15px 25px
}

.stream-title {
  font-size: 12px;
  line-height: 1.25
}
.home-main-content{
  margin-bottom: 40px;
}
.main-navigation {
  width: 100%;
  overflow-x: auto
}

.main-navigation .nav {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none
}

.main-navigation .nav li {
  flex: 0 0 auto;
  margin: 0;
  padding: 0
}

.main-navigation .nav-link {
  display: block;
  white-space: nowrap;
  padding: 10px 12px;
  font-size: 12px;
  text-decoration: none
}

}

/* =====================================================
   END
===================================================== */