/*kellanova header CSS start */
.kellanova-custom-header nav a[href="#"] {
	pointer-events: auto;
}
.skip-content-div{
	display: none;
}

header.kellanova-custom-header{
  background: transparent;
  height: auto;
}

.header-logo{
        z-index: 0;
        min-width: 140px;
        height: auto;
        background: none;
    }

/* global-header */
  .global-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    padding: 10px 20px;
  }
  .global-left, .global-right{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .global-left li a, .global-right li a{
    text-decoration: none;
    color: #686868;
  }
  .global-left li a img{
    width: 12px;
    height: auto;
  }
/* global-header-end */

.wrapper{
    display: flex;
    align-items: center;
    padding: 0 30px;
}
.brand {
    max-width: 150px;
    margin-right: 40px;
    background: #fff;
    padding: 0 10px;
}
.brand a img{
    width: 100%;
}
 .nav-container {
     max-width: 1000px;
     margin: 0 auto;
}
 nav ul, .global-head ul {
     list-style: none;
     margin: 0;
     padding: 0;
}
 nav ul li, .global-head ul li{
     float: left;
     position: relative;
     /* border-bottom: 0.5px solid rgba(255,255,255,0.5); */
}
 nav ul li a,nav ul li a:visited {
     display: block;
     padding: 0 20px;
     line-height: 55px;
     text-decoration: none;
}
 nav ul li a{
     background: transparent;
     color: #000;
     display: flex;
    align-items: center;
    justify-content: space-between;
}
 nav ul li a:hover, nav ul li a:visited:hover {
     background: #790202;
     color: #ffffff;
}
nav.global-head{
  padding:0;
}
nav.global-head .navbar-dropdown li a{
  color: #fff;
}
 .navbar-dropdown li a{
     background: #BD0706;
     color: #fff;
}
 nav ul li ul li {
     min-width: 190px;
     height: 0;
     transition: all 0.3s;
}
 nav ul li ul li a {
     padding: 15px;
     line-height: 20px;
     transition: all 0.3s;
}
 .navbar-dropdown {
     position: absolute;
     /* display: none; */
     opacity: 0;
     visibility: hidden;
     height: 0;
     width: 0;
     z-index: 1;
     transition: all 0.3s;
}
/* Mobile navigation */
 .nav-mobile {
     display: none;
     position: absolute;
     top: 0;
     left: 0;
     background: #000;
     height: 55px;
     width: 70px;
}
.mobile-menus{
    display: none;
}
 @media only screen and (max-width: 768px) {
  header{
    background: transparent;
  }
  .wrapper {
      display: block;
      padding: 0;
      width: 100%;
      margin-top:55px;
    }
    .global-head{
      display: none;
    }
    .mobile-menus, .global-left, .global-right{
      display: block;
    }
    .global-left li:not(:last-child), .global-right li:not(:last-child) {
        margin-right: 0;
    }
    .global-left li a {
        color: #fff;
    }

    /* ----------------- */

	.kellanova-search-button{
        position: absolute;
        right:0;
        margin: 0;
	}


    .nav-mobile {
         display: block;
    }
     nav, .mobile-menus {
         width: 100%;
    	 position: relative;
         z-index: 1;
    }
     nav ul, .mobile-menus ul{
         display: none;
    }
     nav ul li, .mobile-menus ul li {
         float: none;
    	 display: block;
    }
     nav ul li a{
         padding: 15px;
         line-height: 20px;
         display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .global-left li a{
        padding: 15px;
        line-height: 20px;
        background: purple;
        
    }
    .global-right li a{
        padding: 15px;
        line-height: 20px;
        background: #e9e8e8;
        color: #131313
    }
     nav ul li ul li a, .mobile-menus ul li ul li a{
         padding-left: 30px;
    }
     .navbar-dropdown {
         position: static;
    }

	nav li a img{
    	display:block;
	}

	/* to remove the desktop menu from mobile view */
	nav > ul.nav-list {
    display: none!important;
	}

	.nav--featured { z-index: 0;}

 }
 @media screen and (min-width:769px) {
     .nav-list {
         display: block !important;
    }

}
 #navbar-toggle {
     position: absolute;
     left: 18px;
     top: 15px;
     cursor: pointer;
     padding: 10px 35px 16px 0px;
}
 #navbar-toggle span, #navbar-toggle span:before, #navbar-toggle span:after {
     cursor: pointer;
     border-radius: 1px;
     height: 3px;
     width: 30px;
     background: #ffffff;
     position: absolute;
     display: block;
     content: '';
     transition: all 300ms ease-in-out;
}
 #navbar-toggle span:before {
     top: -10px;
}
 #navbar-toggle span:after {
     bottom: -10px;
}
 #navbar-toggle.active span {
     background-color: transparent;
}
 #navbar-toggle.active span:before, #navbar-toggle.active span:after {
     top: 0;
}
 #navbar-toggle.active span:before {
     transform: rotate(45deg);
}
 #navbar-toggle.active span:after {
     transform: rotate(-45deg);
}

.dropdown-open > a{
 background: #BD0706;
 color: #fff;
}
.dropdown-open a span{
  transform: scaleY(-1);
}
.nav-list li a span{
  line-height: normal;
  margin-left: 6px;
  margin-top: 0;
  transition: all 0.3s;
}
.comicon{
  display: none!important;
}
.dropdown-container .comicon{
  display: block!important;
}
.comicon img{
  width: 18px;
  /* filter: brightness(0) invert(1); */
}
.global-head .comicon img{
  filter: brightness(1) invert(0);
}

.dropdown-container {
  position: relative;
  display: block;
  transition: all ease-in-out 0.3s;
}
  .dropdown-toggle {
    cursor: pointer;
    position: relative;
    transition: all ease-in-out 0.3s;
  }

  .dropdown-open .navbar-dropdown.dropdown-active {
      opacity: 1;
      visibility: visible;
      height: auto;
      width: auto;
      transition: all 0.3s;
  }
  nav .dropdown-open ul li {
    height: auto;
    display: block;
    transition: all 0.3s;
  }
  .dropdown-open .nav-list li a span{
    margin-top: 4px;
  }
  .dropdown-open .comicon img{
    filter: brightness(0) invert(1);
  }
.dropdown-toggle::after{display: none;}
.search-button {
  padding-right: 70px;
}
.search-text {
  white-space: nowrap;
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
}

/*kellanova header CSS end */
/* omni soccer header CSS starts */
header.kellanova-custom-header {
    position: fixed;
    background: #ffffff;
    color: #215da1;
    z-index: 1001;
    width: 100%;
}
header.kellanova-custom-header nav ul li a{
    background: transparent;
    color: #215da1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    font-size: 1.125rem;
}
header.kellanova-custom-header nav ul li a:hover,
header.kellanova-custom-header nav ul li a:visited:hover {
    color: #00367d;
    color: #FFFFFF;
    background: #215da1;
    border-radius: 10px;
}
header.kellanova-custom-header .kellanova-search-button {
    display: none;
}
header .content_wrapper{
    display:flex;
    flex:0 1 auto;
    flex-direction:row;
    flex-wrap:wrap;
    -ms-flex-pack:justify;
    align-items:center;
    position:relative;
    max-width: 75em;
    width:calc(100% - 2em);
    margin:0 8rem;
}
.wrapper{
    display: flex;
    justify-content: center;
    padding: 10px 30px;
}
/* Mobile navigation */
@media (min-width: 320px) and (max-width: 768px) {
  .nav-mobile {
    background: #215da1;
    text-align: center;
  }
  header.kellanova-custom-header nav ul li a{
    padding: 1.5rem 4rem;
    color: #215da1;
    background: #ffffff;
    font-weight: bolder;
    font-size: 1.25rem;
  }
  header.kellanova-custom-header nav ul li a:hover{
    color: #ffffff !important;
    background: #215da1;
  }
  .wrapper{
    padding: 0;
    margin-top: 0;
  } 
  header .content_wrapper{
      margin:0;
      width: 100%;
	}
    .header-logo{
       margin:auto;
    }

    header.kellanova-custom-header{
      height: 54px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
	header.kellanova-custom-header nav ul li a{
    	padding: 0 10px;
	}
}

/* mobile view ends */
/* omni soccer header CSS ends */