/*
Theme Name: Biosymm
Theme URI: 
Author: Joel Seneque
Author URI: 
Description: 
Version: 1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

This theme, like WordPress, is licensed under the GPL.
UnderStrap is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.

Resource Licenses:
Font Awesome: http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
Bootstrap: http://getbootstrap.com | https://github.com/twbs/bootstrap/blob/master/LICENSE (Code licensed under MIT, documentation under CC BY 3.0.)
Owl Carousel 2: http://www.owlcarousel.owlgraphic.com/ | https://github.com/smashingboxes/OwlCarousel2/blob/develop/LICENSE (Code licensed under MIT)
and of course
jQuery: https://jquery.org | (Code licensed under MIT)
WP Bootstrap Navwalker by Edward McIntyre: https://github.com/twittem/wp-bootstrap-navwalker | GNU GPL
*/

/*
This file is just used to identify the theme in WordPress.
The compiled CSS output can be found in /css/theme.css
The SASS sources for it can be found in /sass/
The dependencies can be found in /src/ after running "gulp copy-assets" terminal command

...and now go out and play!
*/

.dropdown-button{
  position:relative;
}
.header-buttons > div, .header-buttons > a{
  display:inline-block;
  min-width: 120px;
} 
.booking-buttons{
  display:none;
  position: absolute;
  right: 0;
  top: 45px;
  width: 180px;
  background: #1a204c;
  border: solid thin #fff;
  border-top: 0;
  z-index: 1000;
}
.booking-buttons.booking-buttons-bottom{
  top:auto;
  bottom:50px;
}
.dropdown-button:hover .booking-buttons{
  display:block;
}
.booking-buttons ul{
  list-style:none;
  padding:0;
  margin:0;
}
.booking-buttons ul li a{
  display:block;
  color:#fff;
  padding:10px 20px !important;
}
.booking-buttons ul li a:hover{
  color:#4780bf;
}

/* Second-layer flyout: children of a top-level booking item (e.g. Private)
   open in a panel to the LEFT of the main Book Now dropdown on hover. */
.booking-buttons ul li{
  position:relative;
}
.booking-buttons ul li ul.dropdown-submenu{
  display:none;
  position:absolute;
  top:-1px;                 /* align with parent, account for 1px border */
  right:100%;               /* open to the left of the main panel */
  width:180px;
  background:#1a204c;
  border:solid thin #fff;
  z-index:1001;
}
.booking-buttons ul li:hover > ul.dropdown-submenu{
  display:block;
}
/* suppress Bootstrap's downward dropdown caret inside the booking menu */
.booking-buttons ul li.dropdown > a.dropdown-toggle:after{
  display:none;
}
/* left-pointing indicator on items that have a flyout */
.booking-buttons ul li.dropdown > a:before,
.booking-buttons ul li.dropdown-submenu > a:before{
  content:"\2039";          /* ‹ */
  float:left;
  margin-right:8px;
  line-height:inherit;
}