/* /// ============= MOBILE MENU ============= /// */

/**  /// MOBILE MENU HEADER ///  */
#mobile.bannerCon {
  background-image: url(/images/ODbanner.png);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0;
}


/*+  /// -----  MEDIA QUERIES  ----- ///  */
 

/**  ///  MIN-WIDTH 701PX  ///  */

@media (min-width: 701px) {

  #burgerMenuCon {
    display: none;
  }

  .mobileBar {
    display: none;
  }

  .burger-icon {
    display: none;
  }

/** } end min-width-701px */
}


/**  ///  MAX-WIDTH 700PX  ///  */

@media (max-width: 700px) {

  #mainMenu,
  #sticky_navigation_wrapper {
    display: none;
  }

  /**  /// HAMBURGER & SLIDER ///  */

  [data-circle] {
    content: "\2B24";
  }


  #burgerMenuCon {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    overflow-x: hidden;
    background: rgba(0, 0, 0, .55);
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    z-index: 9975;
  }

  .burger-icon {
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    z-index: 9999;
  }

  .burger-icon span {
    position: static;
    width: 25px;
    height: 3px;
    display: block;
    background-color: rgba(255, 255, 255, .9);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    margin: 3px auto;
    transition: 1s;
  }


  /**  ///  SLIDE OUT PANEL  ///  */

  .mobileBar {
    --od-bg: var(--od-bg-lgk);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    left: -100vw;
    height: 100%;
    width: 100vw;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #323232 0%, #3F3F3F 40%, #1C1C1C 150%), linear-gradient(to top, rgba(255, 255, 255, 0.40) 0%, rgba(0, 0, 0, 0.25) 200%);
    background-blend-mode: multiply;
    z-index: 9950;
    opacity: 0;
    transition: ease-in-out 500ms;
    overflow: hidden;
  }

  .mobileBar.active {
    position: fixed;
    top: 0;
    bottom: 0;
    transform: translateX(100vw);
    width: 100vw;
    height: 100%;
    opacity: 1;
  }


  #accordian {
    position: relative;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }


/** } end max-width-700px */
}


/**  ///  MAX-WIDTH 640PX  ///  */

@media (max-width: 640px) {
  #accordian {
    margin: 0;
  }

  #mobileMenuCon .accordNav {
    margin: 0;
    padding: 0px 0 40px 0;
  }

  #mobileMenuCon .accordNav li {
    list-style: none;
    font-family: sans-serif;
  }

  #mobileMenuCon .accordNav li a {
    display: block;
    padding: 10px 0;
    text-transform: uppercase;
    color: white;
    font-size: 14px;
    text-decoration: none;
  }

  #mobileMenuCon .accordNav li a:hover {
    background-color: #b01243;
  }

  .burger-icon.active span:nth-child(1) {
    transform: rotate(45deg);
  }

  .burger-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .burger-icon.active span:nth-child(2) {
    transform: translateX(300px);
    transition: all ease-in-out .75s;
    /* display: none; */
  }

  .burger-icon.active span {
    position: absolute;
    top: 15px;
    left: 8px;
  }
  /** end of hamburger slider menu */


/** } end max-width-640px */
}


.sticky {
  position: fixed;
  top: 0;
}


/*  ///  end of mobile css file  ///  */


 