/*
 Theme Name:   Divi Child
 Description:  Divi Child Theme
 Author:       Injac Design
 Author URI:   https://www.injacdesign.com
 Template:     Divi
 Version:      1.0.0
*/

/* - PLACE YOUR CUSTOM CSS CODE BELOW THIS LINE. DO NOT EDIT ANYTHING ABOVE - */

/* --------------------------------------------------------------------------
   BIG TITLES GOES HERE
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   TOP NAVIGATION
   -------------------------------------------------------------------------- */

/* - Show Polylang Language Bar Open on Mobile Devices - */
.lwp-hide-mobile-menu.et_pb_menu .et_pb_menu__menu,.lwp-hide-mobile-menu.et_pb_fullwidth_menu .et_pb_menu__menu {
    display: flex!important;
}
 
.lwp-hide-mobile-menu .et_mobile_nav_menu {
    display: none;
}


/* - Next On Air Live Button - */
  .flashing-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    background-color: white;
    border-radius: 50%;
    animation: blink 1s infinite;
    vertical-align: middle;
  }

  .live-link {
    color: white;
    font-weight: bold;
    text-decoration: none;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }



/* --------------------------------------------------------------------------
   MOBILE MAIN NAVOGATION
   -------------------------------------------------------------------------- */

/* Hamburger X when Opened */
.mobile_nav.opened .mobile_menu_bar:before {
 content: '\4d';
}

/* Rotate the Divi Menu icon on click */
.mobile_nav.opened .mobile_menu_bar::before {
	transition: all .4s ease;
	transform: rotate(90deg);
	display: block;
}


/* --------------------------------------------------------------------------
   MAIN MENU
   -------------------------------------------------------------------------- */

/* Fullwidth Menu on Mobile */
.et_mobile_menu {
min-width: 100vw;
margin-left: -10vw;
}