/* 940px + 60px padding */
/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

$mq-support: false;
$mq-fixed-value: 1024;

// Renders at fixed value
@include bp (min-width, 300px) { 
    div { color:#000; }
}

// Doesn't render without MQ support
@include bp (min-width, 1200px) { 
    div { color:#FFF; }
}

// Doesn't render without MQ support
@include bp (max-width, 300px) { 
    div { color:#444; }
}

// Renders at fixed value
@include bp (max-width, 1200px) { 
    div { color:#888; }
}

// ----------------------------------------------
*/
/* ============================================ *
 * Reset
 * ============================================ */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-tap-highlight-color: black(0);
  /* Prevent tap highlight on iOS/Android */
  -webkit-text-size-adjust: 100%;
  /* Prevent automatic scaling on iOS */
}

body {
  background: #FFFFFF;
  color: #000000;
  line-height: 1;
}

html,
body,
img,
fieldset,
abbr,
acronym {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

th,
code,
cite,
caption {
  font-weight: normal;
  font-style: normal;
  text-align: left;
}

address {
  font-style: normal;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

img {
  display: block;
}

ol,
ul {
  list-style: none;
}

q:before,
q:after {
  content: '';
}

input:focus,
input[type="search"]:focus {
  outline-offset: -2px;
}

input[type="search"] {
  -webkit-appearance: none;
  /* 1 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* 2 */
  box-sizing: border-box;
}

/*!
Pure v0.6.0
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
https://github.com/yahoo/pure/blob/master/LICENSE.md
*/
.pure-form input[type=text], .pure-form input[type=password], .pure-form input[type=email], .pure-form input[type=url], .pure-form input[type=date], .pure-form input[type=month], .pure-form input[type=time], .pure-form input[type=datetime], .pure-form input[type=datetime-local], .pure-form input[type=week], .pure-form input[type=number], .pure-form input[type=search], .pure-form input[type=tel], .pure-form input[type=color], .pure-form select, .pure-form textarea {
  padding: .5em .6em;
  display: inline-block;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 4px;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.pure-form input:not([type]) {
  padding: .5em .6em;
  display: inline-block;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.pure-form input[type=color] {
  padding: .2em .5em;
}

.pure-form input[type=text]:focus, .pure-form input[type=password]:focus, .pure-form input[type=email]:focus, .pure-form input[type=url]:focus, .pure-form input[type=date]:focus, .pure-form input[type=month]:focus, .pure-form input[type=time]:focus, .pure-form input[type=datetime]:focus, .pure-form input[type=datetime-local]:focus, .pure-form input[type=week]:focus, .pure-form input[type=number]:focus, .pure-form input[type=search]:focus, .pure-form input[type=tel]:focus, .pure-form input[type=color]:focus, .pure-form select:focus, .pure-form textarea:focus {
  outline: 0;
  border-color: #129FEA;
}

.pure-form input:not([type]):focus {
  outline: 0;
  border-color: #129FEA;
}

.pure-form input[type=file]:focus, .pure-form input[type=radio]:focus, .pure-form input[type=checkbox]:focus {
  outline: thin solid #129FEA;
  outline: 1px auto #129FEA;
}

.pure-form .pure-checkbox, .pure-form .pure-radio {
  margin: .5em 0;
  display: block;
}

.pure-form input[type=text][disabled], .pure-form input[type=password][disabled], .pure-form input[type=email][disabled], .pure-form input[type=url][disabled], .pure-form input[type=date][disabled], .pure-form input[type=month][disabled], .pure-form input[type=time][disabled], .pure-form input[type=datetime][disabled], .pure-form input[type=datetime-local][disabled], .pure-form input[type=week][disabled], .pure-form input[type=number][disabled], .pure-form input[type=search][disabled], .pure-form input[type=tel][disabled], .pure-form input[type=color][disabled], .pure-form select[disabled], .pure-form textarea[disabled] {
  cursor: not-allowed;
  background-color: #eaeded;
  color: #cad2d3;
}

.pure-form input:not([type])[disabled] {
  cursor: not-allowed;
  background-color: #eaeded;
  color: #cad2d3;
}

.pure-form input[readonly], .pure-form select[readonly], .pure-form textarea[readonly] {
  background-color: #eee;
  color: #777;
  border-color: #ccc;
}

.pure-form input:focus:invalid, .pure-form textarea:focus:invalid, .pure-form select:focus:invalid {
  color: #b94a48;
  border-color: #e9322d;
}

.pure-form input[type=file]:focus:invalid:focus, .pure-form input[type=radio]:focus:invalid:focus, .pure-form input[type=checkbox]:focus:invalid:focus {
  outline-color: #e9322d;
}

.pure-form select {
  height: 2.25em;
  border: 1px solid #ccc;
  background-color: #fff;
}

.pure-form select[multiple] {
  height: auto;
}

.pure-form label {
  margin: .5em 0 .2em;
}

.pure-form fieldset {
  margin: 0;
  padding: .35em 0 .75em;
  border: 0;
}

.pure-form legend {
  display: block;
  width: 100%;
  padding: .3em 0;
  margin-bottom: .3em;
  color: #333;
  border-bottom: 1px solid #e5e5e5;
}

.pure-form-stacked input[type=text], .pure-form-stacked input[type=password], .pure-form-stacked input[type=email], .pure-form-stacked input[type=url], .pure-form-stacked input[type=date], .pure-form-stacked input[type=month], .pure-form-stacked input[type=time], .pure-form-stacked input[type=datetime], .pure-form-stacked input[type=datetime-local], .pure-form-stacked input[type=week], .pure-form-stacked input[type=number], .pure-form-stacked input[type=search], .pure-form-stacked input[type=tel], .pure-form-stacked input[type=color], .pure-form-stacked input[type=file], .pure-form-stacked select, .pure-form-stacked label, .pure-form-stacked textarea {
  display: block;
  margin: .25em 0;
}

.pure-form-stacked input:not([type]) {
  display: block;
  margin: .25em 0;
}

.pure-form-aligned input, .pure-form-aligned textarea, .pure-form-aligned select, .pure-form-aligned .pure-help-inline, .pure-form-message-inline {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

.pure-form-aligned textarea {
  vertical-align: top;
}

.pure-form-aligned .pure-control-group {
  margin-bottom: .5em;
}

.pure-form-aligned .pure-control-group label {
  text-align: right;
  display: inline-block;
  vertical-align: middle;
  width: 10em;
  margin: 0 1em 0 0;
}

.pure-form-aligned .pure-controls {
  margin: 1.5em 0 0 11em;
}

.pure-form input.pure-input-rounded, .pure-form .pure-input-rounded {
  border-radius: 2em;
  padding: .5em 1em;
}

.pure-form .pure-group fieldset {
  margin-bottom: 10px;
}

.pure-form .pure-group input, .pure-form .pure-group textarea {
  display: block;
  padding: 10px;
  margin: 0 0 -1px;
  border-radius: 0;
  position: relative;
  top: -1px;
}

.pure-form .pure-group input:focus, .pure-form .pure-group textarea:focus {
  z-index: 3;
}

.pure-form .pure-group input:first-child, .pure-form .pure-group textarea:first-child {
  top: 1px;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

.pure-form .pure-group input:first-child:last-child, .pure-form .pure-group textarea:first-child:last-child {
  top: 1px;
  border-radius: 4px;
  margin: 0;
}

.pure-form .pure-group input:last-child, .pure-form .pure-group textarea:last-child {
  top: -2px;
  border-radius: 0 0 4px 4px;
  margin: 0;
}

.pure-form .pure-group button {
  margin: .35em 0;
}

.pure-form .pure-input-1 {
  width: 100%;
}

.pure-form .pure-input-2-3 {
  width: 66%;
}

.pure-form .pure-input-1-2 {
  width: 50%;
}

.pure-form .pure-input-1-3 {
  width: 33%;
}

.pure-form .pure-input-1-4 {
  width: 25%;
}

.pure-form .pure-help-inline, .pure-form-message-inline {
  display: inline-block;
  padding-left: .3em;
  color: #666;
  vertical-align: middle;
  font-size: .875em;
}

.pure-form-message {
  display: block;
  color: #666;
  font-size: .875em;
}

@media only screen and (max-width: 480px) {
  .pure-form button[type=submit] {
    margin: .7em 0 0;
  }

  .pure-form input:not([type]), .pure-form input[type=text], .pure-form input[type=password], .pure-form input[type=email], .pure-form input[type=url], .pure-form input[type=date], .pure-form input[type=month], .pure-form input[type=time], .pure-form input[type=datetime], .pure-form input[type=datetime-local], .pure-form input[type=week], .pure-form input[type=number], .pure-form input[type=search], .pure-form input[type=tel], .pure-form input[type=color], .pure-form label {
    margin-bottom: .3em;
    display: block;
  }

  .pure-group input:not([type]), .pure-group input[type=text], .pure-group input[type=password], .pure-group input[type=email], .pure-group input[type=url], .pure-group input[type=date], .pure-group input[type=month], .pure-group input[type=time], .pure-group input[type=datetime], .pure-group input[type=datetime-local], .pure-group input[type=week], .pure-group input[type=number], .pure-group input[type=search], .pure-group input[type=tel], .pure-group input[type=color] {
    margin-bottom: 0;
  }

  .pure-form-aligned .pure-control-group label {
    margin-bottom: .3em;
    text-align: left;
    display: block;
    width: 100%;
  }

  .pure-form-aligned .pure-controls {
    margin: 1.5em 0 0;
  }

  .pure-form .pure-help-inline, .pure-form-message-inline, .pure-form-message {
    display: block;
    font-size: .75em;
    padding: .2em 0 .8em;
  }
}
.info {
  font-style: italic;
  color: #1D2B33;
  margin-bottom: 30px;
}

.unavailable {
  margin-bottom: 380px;
}

.footer-container {
  margin-top: -10px;
}

.products {
  display: none;
}

.fancybox-overlay .fancybox-wrap .fancybox-skin {
  padding: 0 !important;
}

.category-title {
  border-bottom: 0px;
  margin-bottom: 0 !important;
}

.skip {
  display: block;
  height: 45px;
}

@media only screen and (max-width: 770px) {
  .fancybox-overlay .fancybox-wrap .fancybox-skin {
    padding: 0 !important;
  }

  .page-title h1 {
    margin-bottom: 10px;
    height: 36px;
    line-height: 36px;
    font-size: 36px;
  }

  .info {
    border-bottom: 0;
    padding-left: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .main-container {
    padding-bottom: 0;
  }

  .info {
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 30px;
    padding-bottom: 24px;
  }

  .page-title h1 {
    height: 25px;
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
  }
}
/* Form */
.category-title {
  border-bottom: 0 !important;
  margin-bottom: 10px !important;
}
.category-title h1 {
  font-size: 2em;
}

.pure-form fieldset:after {
  content: "";
  display: table;
  clear: both;
}
.pure-form legend {
  font-weight: bold;
  margin-bottom: 2em;
}
.pure-form button {
  margin-left: 0;
  margin-bottom: 20px;
  background-color: #A4C33C;
  text-transform: uppercase;
  font-weight: bold;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  padding: 0;
  color: white;
  border: 0;
  width: 200px;
}
.pure-form button:hover {
  cursor: pointer;
  background-color: #F58426;
}
.pure-form label {
  width: 200px;
  text-align: right;
  line-height: 1.2;
  padding-top: 5px;
  font-size: 14px;
  font-weight: normal;
  font-family: "Roboto", Verdana, Arial, sans-serif;
}
.pure-form label em {
  color: #F58426;
  font-size: 18px;
  margin-left: 5px;
}
.pure-form label input {
  margin-right: 20px;
  margin-top: -3px;
}
.pure-form textarea,
.pure-form input {
  border: 1px solid #C0C0C0;
  border-radius: 0;
}
.pure-form input[type=text][disabled] {
  background-color: #eee;
  color: #5A6870;
}
.pure-form input:focus:invalid, .pure-form textarea:focus:invalid, .pure-form select:focus:invalid {
  border: 1px solid #F58426;
  color: #F58426;
}
.pure-form input#telephone {
  width: 278px;
}
.pure-form select {
  padding-top: 0;
  padding-bottom: 0;
  height: 30px;
}
.pure-form select#state, .pure-form select#purchasedonline {
  width: 165px;
}
.pure-form a {
  color: #F58426;
}

label.pure-checkbox {
  width: 100%;
  text-align: left;
}

.pure-form-aligned .pure-control-group {
  width: 65%;
  margin-bottom: 1em;
}
.pure-form-aligned .pure-control-group:after {
  content: "";
  display: table;
  clear: both;
}
.pure-form-aligned .pure-control-group label {
  width: 32%;
  padding: 3px 20px 0 0;
  margin: 0;
  float: left;
}
.pure-form-aligned .pure-control-group input[type="text"],
.pure-form-aligned .pure-control-group input[type="email"],
.pure-form-aligned .pure-control-group select#mailing_city {
  width: 66%;
  margin-right: 2%;
  float: left;
}
.pure-form-aligned .pure-control-group input#telephone {
  width: 46%;
}
.pure-form-aligned .pure-control-group select#phone_type {
  width: 18%;
  margin-right: 2%;
  float: left;
}
.pure-form-aligned .pure-control-group:after {
  clear: both;
  overflow: hidden;
  display: block;
  content: "";
}
.pure-form-aligned .pure-control-group input.serial-input {
  width: 90px;
}
.pure-form-aligned .pure-control-group #datepicker {
  width: 30%;
}

.invisible {
  display: none;
}

.info-frame {
  width: 100%;
  height: 1400px;
}

#popup {
  display: none;
}

#popup_content {
  text-align: center;
  padding: 0;
}
#popup_content #msg {
  font-size: 18px;
  line-height: 20px;
  text-transform: none;
  letter-spacing: 0.5px;
  margin-top: 10px;
}
#popup_content h3 {
  color: #F58426;
  font-weight: bold;
  margin-top: 0;
}
#popup_content img {
  max-height: none;
  width: auto;
  margin: 0 auto 25px;
}
#popup_content form {
  width: 100%;
}
#popup_content form input[type="text"] {
  width: 90%;
  margin: 0;
}
#popup_content a.button, #popup_content button {
  width: 90%;
  display: block;
  margin: 0 auto 15px;
  padding: 9px 15px;
  font-weight: normal;
}
#popup_content a.button.home, #popup_content a.button.edit, #popup_content button.home, #popup_content button.edit {
  background: #5A6870;
}
#popup_content a.button:hover, #popup_content button:hover {
  background: #F58426;
}
#popup_content #detail {
  color: #636363;
  margin: 10px 20px 20px;
  line-height: 14px;
  font-size: 12px;
}
#popup_content .terms {
  width: 90%;
  text-align: left;
  margin: 20px auto 30px;
  height: 16px;
  line-height: 16px;
}
#popup_content .terms input {
  display: inline-block;
}
#popup_content .terms label {
  vertical-align: top;
  padding-left: 10px;
  line-height: 15px;
  width: 90%;
}
#popup_content p.required, #popup_content .validation-advice {
  width: 90%;
  display: block;
  margin: 0 auto 10px;
}
#popup_content ::-webkit-input-placeholder {
  text-align: center;
}
#popup_content :-moz-placeholder {
  /* Firefox 18- */
  text-align: center;
}
#popup_content ::-moz-placeholder {
  /* Firefox 19+ */
  text-align: center;
}
#popup_content :-ms-input-placeholder {
  text-align: center;
}

.unsuccessful {
  color: red;
  width: 90%;
  margin: 0 auto;
}
.unsuccessful:first-child {
  margin-top: 15px;
}
.unsuccessful:last-child {
  margin-bottom: 15px;
}

@media only screen and (min-width: 599px) {
  #popup_content #msg {
    font-size: 23px;
    line-height: normal;
  }
  #popup_content a.button, #popup_content button {
    font-size: 18px;
    padding: 11px 15px;
  }
  #popup_content #detail {
    margin: 20px 30px;
    line-height: 16px;
    font-size: 14px;
  }
  #popup_content .terms {
    margin: 20px auto;
  }
  #popup_content .terms label {
    line-height: 20px;
  }
}
#overlay {
  display: none;
  position: fixed;
  background: rgba(119, 119, 119, 0.7);
  width: 100%;
  height: 100%;
  z-index: 1000 !important;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 979px) {
  .pure-form-aligned .pure-control-group {
    width: 80%;
  }
}
@media only screen and (max-width: 770px) {
  .pure-form button {
    width: 100%;
  }

  .pure-form-aligned .pure-control-group {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .pure-form input[type="email"], .pure-form input[type="search"], .pure-form input[type="number"], .pure-form input[type="password"], .pure-form input[type="tel"], .pure-form input[type="text"] {
    width: 100%;
  }
  .pure-form .pure-checkbox {
    margin-bottom: 55px;
    line-height: 25px;
  }
  .pure-form label input {
    margin-right: 10px;
  }

  .pure-form-aligned .pure-control-group label {
    width: 100%;
    float: none;
    text-align: left;
  }
  .pure-form-aligned .pure-control-group input[type="text"],
  .pure-form-aligned .pure-control-group input[type="email"],
  .pure-form-aligned .pure-control-group select#mailing_city,
  .pure-form-aligned .pure-control-group select#state,
  .pure-form-aligned .pure-control-group select#purchasedonline {
    width: 99%;
    margin-right: 1%;
  }
  .pure-form-aligned .pure-control-group input#telephone {
    width: 79%;
  }
  .pure-form-aligned .pure-control-group input.serial-input {
    width: 90px;
  }
}
.grid .grid-item {
  width: 32%;
  border: 1px solid #e6e6e6;
  float: left;
  margin-right: 0.666666667%;
  margin-left: 0.666666667%;
  margin-bottom: 20px;
  padding: 20px 20px 10px 20px;
  position: relative;
}
.grid .grid-item img {
  height: 250px;
  width: 250px;
  margin: auto;
}
.grid .grid-item .name {
  min-height: 22px;
  line-height: 1;
  text-transform: uppercase;
  color: #1D2B33;
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-family: "Oswald", Verdana, Arial, sans-serif;
  margin-top: 10px;
}
.grid .grid-item .name h2 {
  width: 90%;
  font-size: 16px;
  margin: auto;
}
.grid .grid-item:hover {
  border-color: #F58426;
  cursor: pointer;
}

@media only screen and (max-width: 960px) {
  .grid {
    padding: 0;
  }
  .grid .grid-item img {
    height: 200px;
    width: 200px;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .grid {
    padding: 0;
  }
  .grid .grid-item {
    width: 47.5%;
    margin-left: 1.25%;
    margin-right: 1.25%;
  }
}
@media only screen and (max-width: 560px) {
  .grid .grid-item {
    font-size: 22px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .grid .grid-item img {
    height: 280px;
    width: 280px;
    margin: auto;
  }
}

