.nav-tabs > li.active > a:after, .nav-tabs > li:hover > a:after {
    position: absolute;
    content: " ";
    background: white;
    width: 7px;
    height: 7px;
    border-radius: 3px 0 0 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    box-shadow: none;
    bottom: 2px;
    right: 74%;   
 }
 
 .nav-tabs > li.active, .nav-tabs > li:hover{
    background: var(--secondaryColor);   
 }
 
 .nav-tabs > li.active{
    border-bottom: 5px solid white;
 }
 .main-game-group{
   width: 100%;
   background: var(--titleColor); 
   margin: 10px 15px;
   display: flex;
   justify-content: space-between;   
   padding: 15px 5px;
   overflow: auto;
}
.main-game-group-mobile{
   width: 100%;
   background: var(--titleColor);  
   margin: 10px 15px;
   display: flex;
   justify-content: space-between;   
   /* padding: 15px 5px; */
   overflow: auto;
}
.card-row{   
   min-width: 1000px;
   width: 100%;
   display: flex;
   justify-content: space-between;
}
.card-container{         
   background: var(--titleColor);  
   padding: 5px;
   border: 1px solid #786f6f;      
}
 .nav-group{
    padding-left: 15px;
     padding-right: 15px;
     margin-top: 10px;     
 }
 
 .nav-tabs{
    background: var(--sidebarColor);
    color: white;
    border: none !important;
 }
 
 .nav-tabs li{
    width: 50%;   
    border-bottom: 5px solid var(--effectColor);
    text-align: center;
 }
 
 .nav-tabs > li > a{
    display: block;
    padding: 10px;
 }
 
 #sportbar{
   margin-left: 15px;
    margin-right: 15px;
    background: var(--secondaryColor);
    padding: 10px;
    margin-bottom: 10px;  
    overflow: auto;  
    margin-top: 5px;
}

.carousel-wrap {
   margin: 90px auto;
   padding: 0 5%;
   width: 80%;
   position: relative;
 }
 
 /* fix blank or flashing items on carousel */
 .owl-carousel .item {
   position: relative;
   z-index: 100; 
   -webkit-backface-visibility: hidden; 
 }
 
 /* end fix */
 .owl-nav > div {
   margin-top: -26px;
   position: absolute;
   top: 50%;
   color: #cdcbcd;
 }
 
 .owl-nav i {
   font-size: 52px;
 }
 
 .owl-nav .owl-prev {
   left: -30px;
 }
 
 .owl-nav .owl-next {
   right: -30px;
 }