
* {
  box-sizing: border-box;
}
body {
  margin-top: 50px;
  color: white;
  background: url("../images/bagels.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

/*    MAIN MENU   */
/*——————————————————————————————————————*/
.bobs-bagels-menu {
  background: rgba(0,0,0,0.5);
}

.product {
  position: relative;
  margin-bottom: 20px;
  border-bottom: 1px solid white;
}

.options .option {
  display: inline-block;
  margin: 5px 10px;
}

div.product p span {
  margin: 10px 10px;
  display: block;
}

div.product span.product-price {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 24px;
}

.product img {
  width: 200px;
  height: 200px;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

form.lineitem_submit div {
  display: inline-block;
  margin: 10px 10px;
}

/* NAVBAR */
/*——————————————————————————————————————*/
nav.navbar {
  margin-bottom: 0px;
  background: #000;
  background: rgba(0,0,0,0.8);
}
a.navbar-brand { 
  color: white; 
  font-weight: normal;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
}

a.navbar-brand:hover { 
  font-weight: bold;
}
nav.navbar ul li a {
  color: white;
}

/* CART */
/*——————————————————————————————————————*/
.shopping-cart {
  position: fixed;
  overflow-y: scroll;
  height: 100%;
  top: 60px;
  right: 2%;
  width: 46%;
  padding-bottom: 100px;
}
div.line-items,
div.line-item {
  clear: both;
}
div.line-item div.item-info,
div.line-item form.update-line-item {
  float: left;
  width: 50%;
}

div.line-item p.line-item-description, 
div.line-item p.line-item-price {
  display: inline-block;
}

span.price {
  font-weight: bold;
  font-size: 1.1em;
}

input[type="number"] {
  color: white;
  -webkit-appearance: none;
  border: none;
  background: none;
  width: 50px;
  margin-left: 10px;
  padding: 4px 0 5px 10px;
  border-radius: 4px;
  outline-style: auto;
  outline-width: 5px;
  outline-color: white;
}
input[type="number"].line-item-quantity {
  margin-right: 10px;
}

.shopping-cart h4{
  text-align: center;
  background-color: #E1674D;
  /*padding: 10px;*/
  margin-top: 0;
  margin-bottom: 30px;
}

form#clear-cart {
  clear: both;
  padding-top: 20px;
  border-top: 1px solid white;
}
a#price_total_trigger {
  visibility: hidden;
}
p#price_total {
  font-weight: bold;
  font-size: 2.5em;
  float: right;
}
