/*++++++++++++++++++++++
	PARTIALS
++++++++++++++++++++++*/
/*
	Sass for the BGM Advertisers Homepage
*/
/*++++++++++++++++++++++
	MIXINS
++++++++++++++++++++++*/
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: map-get($icon-home, 'width');
}

At the bottom of this section, we provide information about the spritesheet itself
*/
/*
The provided mixins are intended to be used with variables directly

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites(map-get($spritesheet, 'sprites'));
*/
/*
 * Global Mixins and Extends
 */
/*++++++++++++++++++++++
	VARIABLES
++++++++++++++++++++++*/
/*++++++++++++++++++++++
	FONTS
++++++++++++++++++++++*/
@import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,600,700,900");
body {
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  font-family: 'Source Sans Pro', sans-serif;
  background: #1a1a1a;
  width: 100%;
  height: 50px;
}

.header .veggie-hamburger {
  background-image: url("../images/sprites/cs-sprite.png");
  background-position: 0px -134px;
  width: 22px;
  height: 14px;
  float: left;
  top: 17px;
  left: 16px;
  position: relative;
  cursor: pointer;
}

.header .veggie-hamburger-close {
  background-image: url("../images/sprites/cs-sprite.png");
  background-position: 0px -196px;
  width: 24px;
  height: 24px;
  float: left;
  top: 13px;
  left: 15px;
  position: relative;
  cursor: pointer;
}

.header .bgm-logo {
  background-image: url("../images/sprites/cs-sprite.png");
  background-position: 0px -325px;
  width: 176px;
  height: 42px;
  float: left;
  top: 4px;
  left: 35px;
  position: relative;
}

.veggie-hamburger-menu {
  font-family: 'Source Sans Pro', sans-serif;
  background: #333333;
  color: #fff;
  display: none;
  max-width: 550px;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
  position: absolute;
  z-index: 20;
}

@media screen and (max-width: 735px) {
  .veggie-hamburger-menu {
    padding: 25px;
  }
  .veggie-hamburger-menu h2.next-section {
    padding-top: 25px;
  }
}

.veggie-hamburger-menu h2 {
  color: #808080;
  text-transform: uppercase;
  font-weight: 500;
}

.veggie-hamburger-menu h2.next-section {
  padding-top: 50px;
}

.veggie-hamburger-menu ul.sections {
  list-style: none;
  padding: 0px;
}

.veggie-hamburger-menu ul.sections li {
  border-bottom: 1px solid #808080;
  padding: 10px;
  padding-right: 0px;
  width: 40%;
  float: left;
  box-sizing: border-box;
  cursor: pointer;
}

.veggie-hamburger-menu ul.sections li:hover {
  background: #ba0c2f;
}

.veggie-hamburger-menu ul.sections li:hover::before {
  content: "";
  background-image: url("../images/sprites/cs-sprite.png");
  background-position: 0px 0px;
  width: 5px;
  height: 8px;
  display: inline-block;
  margin-right: 0.4375em;
}

.veggie-hamburger-menu ul.sections li a {
  background-color: transparent;
  color: white;
  text-decoration: none;
}

.veggie-hamburger-menu ul.sections li:nth-child(odd) {
  margin-right: 20%;
}

.veggie-hamburger-menu ul.sections li:nth-child(1), .veggie-hamburger-menu ul.sections li:nth-child(2) {
  border-top: 1px solid #808080;
}

.veggie-hamburger-menu ul.sections:after {
  content: "";
  display: table;
  clear: both;
}

.veggie-hamburger-menu ul.brands {
  list-style: none;
  padding: 0px;
}

.veggie-hamburger-menu ul.brands li {
  border-bottom: 1px solid #808080;
  padding: 10px 0px;
  width: 100%;
  position: relative;
}

.veggie-hamburger-menu ul.brands li:after {
  content: "";
  display: table;
  clear: both;
}

.veggie-hamburger-menu ul.brands li .logo-container {
  width: 50%;
  float: left;
  text-transform: uppercase;
}

.veggie-hamburger-menu ul.brands li .logo-container img {
  max-height: 30px;
}

@media screen and (max-width: 735px) {
  .veggie-hamburger-menu ul.brands li .logo-container img {
    max-height: 18px;
  }
}

.veggie-hamburger-menu ul.brands li .links {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
}

.veggie-hamburger-menu ul.brands li .links .advertise {
  width: 50%;
  float: left;
  text-align: center;
}

.veggie-hamburger-menu ul.brands li .links .advertise a, .veggie-hamburger-menu ul.brands li .links .advertise a:visited {
  color: #fff;
}

.veggie-hamburger-menu ul.brands li .links .advertise .seperator {
  width: 1px;
  height: 25px;
  background: white;
  float: right;
}

.veggie-hamburger-menu ul.brands li .links .view {
  width: 50%;
  float: left;
  text-align: center;
}

.veggie-hamburger-menu ul.brands li .links .view a, .veggie-hamburger-menu ul.brands li .links .view a:visited {
  color: #fff;
}

.veggie-hamburger-menu ul.brands li:nth-child(1), .veggie-hamburger-menu ul.brands li:nth-child(2) {
  border-top: 1px solid #808080;
}

.veggie-hamburger-menu ul.brands:after {
  content: "";
  display: table;
  clear: both;
}
