@font-face {
  font-family: "ProximaNovaThin";
  src: url("webfonts/ProximaNova-ThinWeb.woff") format("woff");
}

@font-face {
  font-family: "ProximaNova";
  src: url("webfonts/ProximaNova-RegWeb.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "ProximaNova";
  src: url("webfonts/ProximaNova-RegItWeb.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "ProximaNova";
  src: url("webfonts/ProximaNova-BoldWeb.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

/* Colors
#EC008A - Pink (Background Elements)
#E50681 - Pink (Text)
#EE3A43 - Red
#5D9732 - Green
#702C91 - Purple
#5955A5 - Blue
#F47937 - Orange
#A3238E - Fuchsia
#FCB040 - Yellow
*/

/* Reset CSS */
html, body, div, span,
h1, h2, h3, h4, h5, h6, p, pre,
a, em, img, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline
}
table {border-collapse: separate; border-spacing: 0; empty-cells: show}
caption, th, td {font-weight: normal}
table, td, th {vertical-align: middle}
a img {border: none}

/* General */
html {
  background-color: #eee;
  height: 100%;
}
body {
  color: #666;
  font-family: "ProximaNova", helvetica, arial, sans-serif;
  font-size: 81.25%;
  font-style: normal;
  font-weight: normal;
  overflow-x: hidden;
  text-align: center;
  width: 100%;
}
a:link,
a:visited {
  color: #ec008a;
  text-decoration: none;
}
a:hover,
a:active {
  color: #ec008a;
  text-decoration: underline;
}
h1 {
  color: #702c91;
  font-family: "ProximaNovaThin", helvetica, arial, sans-serif;
  font-size: 2.3em;
  font-weight: normal;
  margin-bottom: 10px;
}
h2 {
  color: #702c91;
  font-family: "ProximaNovaThin", helvetica, arial, sans-serif;
  font-size: 1.85em;
  font-weight: normal;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.38em;
  font-weight: normal;
  margin-bottom: 0.2em;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
  font-weight: normal;
}
input,
select {
  font-family: "ProximaNova", helvetica, arial, sans-serif;
  vertical-align: middle;
}
input[type="text"] {
  border: 1px solid #ccc;
  padding: 5px;
}
p,
ul,
ol {
  margin-bottom: 1.3em;
}
ul {
  padding-left: 1.1em;
}
ol {
  padding-left: 1.5em;
}

button,
.button {
  background-color: #ec008a;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-family: "ProximaNova", helvetica, arial, sans-serif;
  font-size: 1.2em;
  padding: 10px 30px;
}

.secondary-button {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
  font-family: "ProximaNova", helvetica, arial, sans-serif;
  font-size: 1.2em;
  padding: 10px 30px;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.hidden {
  display: none;
}

header {
  text-align: center;
}

.logo {
  background-color: #ec008a;
  color: #fff;
  height: 55px;
  line-height: 55px;
  z-index: 5;
}
.logo svg {
  vertical-align: middle;
}
.logo-notions {
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 3px;
  margin: 0 5px 0 10px;
  vertical-align: middle;
}
.logo-qs {
  font-size: 21px;
  font-family: "ProximaNovaThin", Helvetica, Arial, sans-serif;
  font-weight: normal;
  letter-spacing: 3px;
  vertical-align: middle;
}
nav {
  background-color: #d6d6d6;
  color: #5c5c5c;
  height: 24px;
  line-height: 24px;
  z-index: 5;
}
nav div {
  box-sizing: border-box;
  cursor: pointer;
  flex-grow: 1;
}
.inner-nav {
  display: flex;
}
.nav-quantities {

}
.nav-how-to {
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
}
.nav-utilities {

}

.barcodes {
  position: relative;
}
.barcode {
  margin: 10px auto 20px;
  text-align: center;
}
.barcode img {
  width: 100%;
}
.barcode img.small {
  width: 50%;
}
.utilities {
  background-color: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  height: 370px;
  overflow-y: scroll;
  padding: 20px;
  position: absolute;
  right: -305px;
  top: 0;
  transition: transform 0.5s;
  width: 300px;
}
.utilities.active {
  transform: translateX(-305px);
}
.quantities {
  background-color: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  height: 370px;
  overflow-y: scroll;
  padding: 20px;
  position: absolute;
  left: -305px;
  top: 0;
  transition: transform 0.5s;
  width: 300px;
}
.quantities.active {
  transform: translateX(305px);
}
.how-to {
  background-color: #fff;
  border: 1px solid #ccc;
  left: 0;
  margin: 0 auto;
  padding: 20px;
  position: absolute;
  right: 0;
  text-align: left;
  top: -400px;
  transition: transform 0.5s;
  width: 300px;
  z-index: 1;
}
.how-to.active {
  transform: translateY(400px);
}

.status {
  border: 1px solid #ccc;
  margin: 10px auto;
  max-width: 500px;
  text-align: left;
  width: 90%;
}
.status svg {
  float: left;
  margin: 7px 15px 0;
  width: 42px;
}
.status-heading {
  background-color: #5d9732;
  color: #fff;
  padding: 10px;
  text-align: center;
}
.status-heading-nojs {
  background-color: #ee3a43;
  color: #fff;
  padding: 10px;
  text-align: center;
}
.status-note {
  min-height: 38px;
  padding: 10px;
}


main {
  background-color: #fff;
  border-bottom: 1px solid #d6d6d6;
  border-left: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
  margin: 0 auto;
  max-width: 520px;
  padding: 15px 0;
  text-align: center;
}
.last-session {
  margin-bottom: 20px;
}
.last-session,
.last-session-options {
  display: none;
}
.last-session-options button {
  display: inline-block;
  margin: 10px 5px;
}

.item-count {
  margin: 15px auto;
  padding: 10px;
  width: 60%;
}

.no-storage {
  background-color: #eee;
  margin: 0 auto 20px;
  padding: 10px;
  width: 90%;
}

.values {
  list-style-type: none;
  margin: 15px 0;
  padding: 0;
  text-align: left;
}
.values li {
  background-color: #fff;
  border-top: 1px solid #ccc;
  padding: 15px 20px;
  position: relative;
  transition: background-color 0.5s;
}
.values li:last-of-type {
  border-bottom: 1px solid #ccc;
}
.values li.quantity-entry {
  background-color: #ddd;
}
.values li.delete {
  background-color: #555;
  color: #fff;
}
.undo {
  background-color: #ec008a;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  position: absolute;
  right: 10px;
  text-decoration: underline;
  top: 10px;
}
.remove {
  background-color: #ee3a43;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 10px;
  width: 20px;
}

.send-cart {
  margin: 0;
}

.send-success {

}
.send-fail {
  background-color: #EE3A43;
  color: #fff;
}
.send-status {
  margin: 10px auto 0;
  padding: 10px;
  text-align: center;
  width: 90%;
}
.store-link {
  margin-top: 30px;
}
.store-link a:link,
.store-link a:visited,
.store-link a:hover,
.store-link a:active {
  color: #fff;
}


input[type="text"],
input[type="password"] {
  border: 1px solid #ccc;
  font-family: "ProximaNova", helvetica, arial, sans-serif;
  padding: 5px;
}
.remodal p {
  line-height: 1.3;
}
.account-input {
  margin: 10px 0;
}
.account-input input {
  width: 70px;
}
.name-input {
  margin: 25px 0 10px;
}
.name-input input {
  width: 80%;
}
.send-button {
  margin: 20px 0;
}
.cancel {
  color: #ec008a;
}


@media only screen and (min-width: 525px) {
  .inner-nav {
    margin: 0 auto;
    width: 500px;
  }
  .quantities {
    height: auto;
  }
  .utilities {
    height: auto;
  }
  .values {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    margin: 15px auto;
    width: 470px;
  }
}


/* Remodal */

.remodal-overlay.remodal-is-closing,.remodal-overlay.remodal-is-opening,.remodal.remodal-is-closing,.remodal.remodal-is-opening{animation-duration:.3s;animation-fill-mode:forwards}html.remodal-is-locked{overflow:hidden;touch-action:none}.remodal,[data-remodal-id]{display:none}.remodal-overlay{position:fixed;z-index:9999;top:-5000px;right:-5000px;bottom:-5000px;left:-5000px;display:none;background:rgba(43,46,56,.9)}.remodal-wrapper{position:fixed;z-index:10000;top:0;right:0;bottom:0;left:0;display:none;overflow:auto;text-align:center;-webkit-overflow-scrolling:touch;padding:10px 10px 0}.remodal-wrapper:after{display:inline-block;height:100%;margin-left:-.05em;content:""}.remodal-overlay,.remodal-wrapper{backface-visibility:hidden}.remodal{position:relative;outline:0;text-size-adjust:100%;box-sizing:border-box;width:100%;margin-bottom:10px;padding:35px;transform:translate3d(0,0,0);color:#2b2e38;background:#fff}.remodal-cancel,.remodal-close,.remodal-confirm{overflow:visible;margin:0;cursor:pointer;text-decoration:none;outline:0;border:0}.remodal-is-initialized{display:inline-block}.remodal-close,.remodal-close:before{position:absolute;top:0;left:0;display:block;width:35px}.remodal-bg.remodal-is-opened,.remodal-bg.remodal-is-opening{filter:blur(3px)}.remodal-overlay.remodal-is-opening{animation-name:remodal-overlay-opening-keyframes}.remodal-overlay.remodal-is-closing{animation-name:remodal-overlay-closing-keyframes}.remodal.remodal-is-opening{animation-name:remodal-opening-keyframes}.remodal.remodal-is-closing{animation-name:remodal-closing-keyframes}.remodal,.remodal-wrapper:after{vertical-align:middle}.remodal-close{height:35px;padding:0;transition:color .2s;color:#95979c;background:0 0}.remodal-close:focus,.remodal-close:hover{color:#2b2e38}.remodal-close:before{font-size:25px;line-height:35px;content:"\00d7";text-align:center}.remodal-cancel,.remodal-confirm{font:inherit;display:inline-block;min-width:110px;padding:12px 0;transition:background .2s;text-align:center;vertical-align:middle}.remodal-confirm{color:#fff;background:#81c784}.remodal-confirm:focus,.remodal-confirm:hover{background:#66bb6a}.remodal-cancel{color:#fff;background:#e57373}.remodal-cancel:focus,.remodal-cancel:hover{background:#ef5350}.remodal-cancel::-moz-focus-inner,.remodal-close::-moz-focus-inner,.remodal-confirm::-moz-focus-inner{padding:0;border:0}@keyframes remodal-opening-keyframes{from{transform:scale(1.05);opacity:0}to{transform:none;opacity:1;filter:blur(0)}}@keyframes remodal-closing-keyframes{from{transform:scale(1);opacity:1}to{transform:scale(.95);opacity:0;filter:blur(0)}}@keyframes remodal-overlay-opening-keyframes{from{opacity:0}to{opacity:1}}@keyframes remodal-overlay-closing-keyframes{from{opacity:1}to{opacity:0}}@media only screen and (min-width:641px){.remodal{max-width:700px}}.lt-ie9 .remodal-overlay{background:#2b2e38}.lt-ie9 .remodal{width:700px}
